diff --git a/.editorconfig b/.editorconfig index bc56445..724cf51 100644 --- a/.editorconfig +++ b/.editorconfig @@ -5,7 +5,7 @@ root = true charset = utf-8 indent_style = tab indent_size = 4 -insert_final_newline = true +# insert_final_newline = true trim_trailing_whitespace = true max_line_length = off diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..9df9453 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,10 @@ +node_modules/** +dist/ +build/ +**/*.css +**/*.sass +**/*.scss +package.json +package-lock.json +.editorconfig +README.md \ No newline at end of file diff --git a/.prettierrc.js b/.prettierrc.js new file mode 100644 index 0000000..d983564 --- /dev/null +++ b/.prettierrc.js @@ -0,0 +1,8 @@ +module.exports = { + semi: true, + trailingComma: 'all', + singleQuote: true, + printWidth: 120, + tabWidth: 2, + tabs: true, +}; diff --git a/e2e/src/app.e2e-spec.ts b/e2e/src/app.e2e-spec.ts index 574c450..9431d16 100644 --- a/e2e/src/app.e2e-spec.ts +++ b/e2e/src/app.e2e-spec.ts @@ -15,9 +15,14 @@ describe('workspace-project App', () => { afterEach(async () => { // Assert that there are no errors emitted from the browser - const logs = await browser.manage().logs().get(logging.Type.BROWSER); - expect(logs).not.toContain(jasmine.objectContaining({ - level: logging.Level.SEVERE, - })); + const logs = await browser + .manage() + .logs() + .get(logging.Type.BROWSER); + expect(logs).not.toContain( + jasmine.objectContaining({ + level: logging.Level.SEVERE, + }), + ); }); }); diff --git a/karma.conf.js b/karma.conf.js index 3eab3f5..7dae64f 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -1,32 +1,31 @@ // Karma configuration file, see link for more information // https://karma-runner.github.io/1.0/config/configuration-file.html -module.exports = function (config) { - config.set({ - basePath: '', - frameworks: ['jasmine', '@angular-devkit/build-angular'], - plugins: [ - require('karma-jasmine'), - require('karma-chrome-launcher'), - require('karma-jasmine-html-reporter'), - require('karma-coverage-istanbul-reporter'), - require('@angular-devkit/build-angular/plugins/karma') - ], - client: { - clearContext: false // leave Jasmine Spec Runner output visible in browser - }, - coverageIstanbulReporter: { - dir: require('path').join(__dirname, '../coverage/my-app'), - reports: ['html', 'lcovonly', 'text-summary'], - fixWebpackSourcePaths: true - }, - reporters: ['progress', 'kjhtml'], - port: 9876, - colors: true, - logLevel: config.LOG_INFO, - autoWatch: true, - browsers: ['Chrome'], - singleRun: false - }); - }; - \ No newline at end of file +module.exports = function(config) { + config.set({ + basePath: '', + frameworks: ['jasmine', '@angular-devkit/build-angular'], + plugins: [ + require('karma-jasmine'), + require('karma-chrome-launcher'), + require('karma-jasmine-html-reporter'), + require('karma-coverage-istanbul-reporter'), + require('@angular-devkit/build-angular/plugins/karma'), + ], + client: { + clearContext: false, // leave Jasmine Spec Runner output visible in browser + }, + coverageIstanbulReporter: { + dir: require('path').join(__dirname, '../coverage/my-app'), + reports: ['html', 'lcovonly', 'text-summary'], + fixWebpackSourcePaths: true, + }, + reporters: ['progress', 'kjhtml'], + port: 9876, + colors: true, + logLevel: config.LOG_INFO, + autoWatch: true, + browsers: ['Chrome'], + singleRun: false, + }); +}; diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index a0c59c8..31f59c5 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -8,9 +8,9 @@ const routes: Routes = [ // leave the path value empty to enter into nested router in ThemeModule // {path: '', loadChildren: 'app/views/themes/default/theme.module#ThemeModule'}, - {path: '', redirectTo: 'steps', pathMatch: 'full'}, - {path: 'steps', loadChildren: 'app/views/themes/steps/theme.module#ThemeModule'}, - {path: '**', redirectTo: 'steps/error/403', pathMatch: 'full'}, + { path: '', redirectTo: 'steps', pathMatch: 'full' }, + { path: 'steps', loadChildren: 'app/views/themes/steps/theme.module#ThemeModule' }, + { path: '**', redirectTo: 'steps/error/403', pathMatch: 'full' }, /** START: remove this themes list on production */ // list of routers specified by demos, for demo purpose only! // {path: 'default', loadChildren: 'app/views/themes/default/theme.module#ThemeModule'}, @@ -20,10 +20,7 @@ const routes: Routes = [ ]; @NgModule({ - imports: [ - RouterModule.forRoot(routes) - ], - exports: [RouterModule] + imports: [RouterModule.forRoot(routes)], + exports: [RouterModule], }) -export class AppRoutingModule { -} +export class AppRoutingModule {} diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 63f5fed..1872e78 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -19,7 +19,7 @@ import { locale as frLang } from './core/_config/i18n/fr'; selector: 'body[kt-root]', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'], - changeDetection: ChangeDetectionStrategy.OnPush + changeDetection: ChangeDetectionStrategy.OnPush, }) export class AppComponent implements OnInit, OnDestroy { // Public properties @@ -35,11 +35,12 @@ export class AppComponent implements OnInit, OnDestroy { * @param layoutConfigService: LayoutCongifService * @param splashScreenService: SplashScreenService */ - constructor(private translationService: TranslationService, - private router: Router, - private layoutConfigService: LayoutConfigService, - private splashScreenService: SplashScreenService) { - + constructor( + private translationService: TranslationService, + private router: Router, + private layoutConfigService: LayoutConfigService, + private splashScreenService: SplashScreenService, + ) { // register translations this.translationService.loadTranslations(enLang, chLang, esLang, jpLang, deLang, frLang); } diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 2cd755b..1d014ca 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -1,57 +1,69 @@ // Angular -import { BrowserModule, HAMMER_GESTURE_CONFIG } from '@angular/platform-browser'; -import { APP_INITIALIZER, NgModule } from '@angular/core'; -import { TranslateModule } from '@ngx-translate/core'; +import 'hammerjs'; + +import { OverlayModule } from '@angular/cdk/overlay'; import { HttpClientModule } from '@angular/common/http'; -import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; +import { APP_INITIALIZER, NgModule } from '@angular/core'; import { GestureConfig, MatProgressSpinnerModule } from '@angular/material'; -import { OverlayModule } from '@angular/cdk/overlay'; -// Angular in memory +import { BrowserModule, HAMMER_GESTURE_CONFIG } from '@angular/platform-browser'; +import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; +import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; +import { EffectsModule } from '@ngrx/effects'; +import { StoreRouterConnectingModule } from '@ngrx/router-store'; +import { StoreModule } from '@ngrx/store'; +import { StoreDevtoolsModule } from '@ngrx/store-devtools'; +import { TranslateModule } from '@ngx-translate/core'; import { HttpClientInMemoryWebApiModule } from 'angular-in-memory-web-api'; +import * as json from 'highlight.js/lib/languages/json'; +import * as scss from 'highlight.js/lib/languages/scss'; +import * as typescript from 'highlight.js/lib/languages/typescript'; +import * as xml from 'highlight.js/lib/languages/xml'; +import { InlineSVGModule } from 'ng-inline-svg'; +import { HIGHLIGHT_OPTIONS, HighlightLanguage } from 'ngx-highlightjs'; +import { PERFECT_SCROLLBAR_CONFIG, PerfectScrollbarConfigInterface } from 'ngx-perfect-scrollbar'; +import { NgxPermissionsModule } from 'ngx-permissions'; + +import { environment } from '../environments/environment'; +import { AppRoutingModule } from './app-routing.module'; +import { AppComponent } from './app.component'; +import { HttpUtilsService, LayoutUtilsService, TypesUtilsService } from './core/_base/crud'; +import { + KtDialogService, + LayoutConfigService, + LayoutRefService, + MenuAsideService, + MenuConfigService, + MenuHorizontalService, + PageConfigService, + SplashScreenService, + SubheaderService, +} from './core/_base/layout'; +import { DataTableService, FakeApiService } from './core/_base/metronic'; +import { LayoutConfig } from './core/_config/default/layout.config'; +import { AuthService } from './core/auth'; +import { CoreModule } from './core/core.module'; +import { metaReducers, reducers } from './core/reducers'; +import { AuthModule } from './views/pages/auth/auth.module'; +import { PartialsModule } from './views/partials/partials.module'; + +// Angular in memory // NgBootstrap -import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; // Perfect Scroll bar -import { PERFECT_SCROLLBAR_CONFIG, PerfectScrollbarConfigInterface } from 'ngx-perfect-scrollbar'; // SVG inline -import { InlineSVGModule } from 'ng-inline-svg'; // Env -import { environment } from '../environments/environment'; // Hammer JS -import 'hammerjs'; // NGX Permissions -import { NgxPermissionsModule } from 'ngx-permissions'; // NGRX -import { StoreModule } from '@ngrx/store'; -import { EffectsModule } from '@ngrx/effects'; -import { StoreRouterConnectingModule } from '@ngrx/router-store'; -import { StoreDevtoolsModule } from '@ngrx/store-devtools'; // State -import { metaReducers, reducers } from './core/reducers'; // Copmponents -import { AppComponent } from './app.component'; // Modules -import { AppRoutingModule } from './app-routing.module'; -import { CoreModule } from './core/core.module'; // Partials -import { PartialsModule } from './views/partials/partials.module'; // Metronic Services -import { DataTableService, FakeApiService } from './core/_base/metronic'; // Layout Services -import { LayoutConfigService, LayoutRefService, MenuAsideService, MenuConfigService, MenuHorizontalService, PageConfigService, SplashScreenService, SubheaderService, - KtDialogService } from './core/_base/layout'; // Auth -import { AuthModule } from './views/pages/auth/auth.module'; -import { AuthService, PermissionEffects, permissionsReducer, RoleEffects, rolesReducer } from './core/auth'; // CRUD -import { HttpUtilsService, LayoutUtilsService, TypesUtilsService } from './core/_base/crud'; // Config -import { LayoutConfig } from './core/_config/default/layout.config'; // Highlight JS -import { HIGHLIGHT_OPTIONS, HighlightLanguage } from 'ngx-highlightjs'; -import * as typescript from 'highlight.js/lib/languages/typescript'; -import * as scss from 'highlight.js/lib/languages/scss'; -import * as xml from 'highlight.js/lib/languages/xml'; -import * as json from 'highlight.js/lib/languages/json'; // tslint:disable-next-line:class-name const DEFAULT_PERFECT_SCROLLBAR_CONFIG: PerfectScrollbarConfigInterface = { @@ -72,10 +84,10 @@ export function initializeLayoutConfig(appConfig: LayoutConfigService) { export function hljsLanguages(): HighlightLanguage[] { return [ - {name: 'typescript', func: typescript}, - {name: 'scss', func: scss}, - {name: 'xml', func: xml}, - {name: 'json', func: json} + { name: 'typescript', func: typescript }, + { name: 'scss', func: scss }, + { name: 'xml', func: xml }, + { name: 'json', func: json }, ]; } @@ -86,23 +98,25 @@ export function hljsLanguages(): HighlightLanguage[] { BrowserModule, AppRoutingModule, HttpClientModule, - environment.isMockEnabled ? HttpClientInMemoryWebApiModule.forRoot(FakeApiService, { - passThruUnknownUrl: true, - dataEncapsulation: false - }) : [], + environment.isMockEnabled + ? HttpClientInMemoryWebApiModule.forRoot(FakeApiService, { + passThruUnknownUrl: true, + dataEncapsulation: false, + }) + : [], NgxPermissionsModule.forRoot(), PartialsModule, CoreModule, OverlayModule, - StoreModule.forRoot(reducers, {metaReducers}), + StoreModule.forRoot(reducers, { metaReducers }), EffectsModule.forRoot([]), - StoreRouterConnectingModule.forRoot({stateKey: 'router'}), + StoreRouterConnectingModule.forRoot({ stateKey: 'router' }), StoreDevtoolsModule.instrument(), AuthModule.forRoot(), NgbModule, TranslateModule.forRoot(), MatProgressSpinnerModule, - InlineSVGModule.forRoot() + InlineSVGModule.forRoot(), ], exports: [], providers: [ @@ -116,21 +130,22 @@ export function hljsLanguages(): HighlightLanguage[] { SplashScreenService, { provide: PERFECT_SCROLLBAR_CONFIG, - useValue: DEFAULT_PERFECT_SCROLLBAR_CONFIG + useValue: DEFAULT_PERFECT_SCROLLBAR_CONFIG, }, { provide: HAMMER_GESTURE_CONFIG, - useClass: GestureConfig + useClass: GestureConfig, }, { // layout config initializer provide: APP_INITIALIZER, useFactory: initializeLayoutConfig, - deps: [LayoutConfigService], multi: true + deps: [LayoutConfigService], + multi: true, }, { provide: HIGHLIGHT_OPTIONS, - useValue: {languages: hljsLanguages} + useValue: { languages: hljsLanguages }, }, // template services SubheaderService, @@ -140,7 +155,6 @@ export function hljsLanguages(): HighlightLanguage[] { TypesUtilsService, LayoutUtilsService, ], - bootstrap: [AppComponent] + bootstrap: [AppComponent], }) -export class AppModule { -} +export class AppModule {} diff --git a/src/app/core/_base/crud/models/_base.datasource.ts b/src/app/core/_base/crud/models/_base.datasource.ts index abd6932..ccab84a 100644 --- a/src/app/core/_base/crud/models/_base.datasource.ts +++ b/src/app/core/_base/crud/models/_base.datasource.ts @@ -31,21 +31,23 @@ export class BaseDataSource implements DataSource { this.paginatorTotal$ = this.paginatorTotalSubject.asObservable(); // subscribe hasItems to (entitySubject.length==0) - const hasItemsSubscription = this.paginatorTotal$.pipe( - distinctUntilChanged(), - skip(1) - ).subscribe(res => this.hasItems = res > 0); + const hasItemsSubscription = this.paginatorTotal$ + .pipe( + distinctUntilChanged(), + skip(1), + ) + .subscribe(res => (this.hasItems = res > 0)); this.subscriptions.push(hasItemsSubscription); } connect(collectionViewer: CollectionViewer): Observable { // Connecting data source - return this.entitySubject.asObservable(); - } + return this.entitySubject.asObservable(); + } disconnect(collectionViewer: CollectionViewer): void { // Disonnecting data source - this.entitySubject.complete(); + this.entitySubject.complete(); this.paginatorTotalSubject.complete(); this.subscriptions.forEach(sb => sb.unsubscribe()); } diff --git a/src/app/core/_base/crud/models/http-extentsions-model.ts b/src/app/core/_base/crud/models/http-extentsions-model.ts index 2029f9d..73a6fff 100644 --- a/src/app/core/_base/crud/models/http-extentsions-model.ts +++ b/src/app/core/_base/crud/models/http-extentsions-model.ts @@ -3,7 +3,6 @@ import { QueryParamsModel } from './query-models/query-params.model'; import { QueryResultsModel } from './query-models/query-results.model'; export class HttpExtenstionsModel { - /** * Filtration with sorting * First do Sort then filter @@ -93,13 +92,19 @@ export class HttpExtenstionsModel { }); Object.keys(_queryObj).forEach(key => { - const searchText = _queryObj[key].toString().trim().toLowerCase(); + const searchText = _queryObj[key] + .toString() + .trim() + .toLowerCase(); if (key && !_filtrationFields.some(e => e === key) && searchText) { doSearch = true; try { _incomingArray.forEach((element, index) => { if (element[key]) { - const _val = element[key].toString().trim().toLowerCase(); + const _val = element[key] + .toString() + .trim() + .toLowerCase(); if (_val.indexOf(searchText) > -1 && indexes.indexOf(index) === -1) { indexes.push(index); } diff --git a/src/app/core/_base/crud/models/query-models/query-params.model.ts b/src/app/core/_base/crud/models/query-models/query-params.model.ts index fcb6837..7f17236 100644 --- a/src/app/core/_base/crud/models/query-models/query-params.model.ts +++ b/src/app/core/_base/crud/models/query-models/query-params.model.ts @@ -7,11 +7,13 @@ export class QueryParamsModel { pageSize: number; // constructor overrides - constructor(_filter: any, + constructor( + _filter: any, _sortOrder: string = 'asc', _sortField: string = '', _pageNumber: number = 0, - _pageSize: number = 10) { + _pageSize: number = 10, + ) { this.filter = _filter; this.sortOrder = _sortOrder; this.sortField = _sortField; diff --git a/src/app/core/_base/crud/utils/intercept.service.ts b/src/app/core/_base/crud/utils/intercept.service.ts index 2039764..b68f71b 100644 --- a/src/app/core/_base/crud/utils/intercept.service.ts +++ b/src/app/core/_base/crud/utils/intercept.service.ts @@ -12,10 +12,7 @@ import { debug } from 'util'; @Injectable() export class InterceptService implements HttpInterceptor { // intercept request and add token - intercept( - request: HttpRequest, - next: HttpHandler - ): Observable> { + intercept(request: HttpRequest, next: HttpHandler): Observable> { // tslint:disable-next-line:no-debugger // modify request // request = request.clone({ @@ -30,7 +27,7 @@ export class InterceptService implements HttpInterceptor { return next.handle(request).pipe( tap( event => { - if (event instanceof HttpResponse) { + if (event instanceof HttpResponse) { // console.log('all looks good'); // http response status code // console.log(event.status); @@ -44,8 +41,8 @@ export class InterceptService implements HttpInterceptor { console.error(error.status); console.error(error.message); // console.log('--- end of response---'); - } - ) + }, + ), ); } } diff --git a/src/app/core/_base/crud/utils/layout-utils.service.ts b/src/app/core/_base/crud/utils/layout-utils.service.ts index 8320951..b91ea7a 100644 --- a/src/app/core/_base/crud/utils/layout-utils.service.ts +++ b/src/app/core/_base/crud/utils/layout-utils.service.ts @@ -2,17 +2,18 @@ import { Injectable } from '@angular/core'; import { MatSnackBar, MatDialog } from '@angular/material'; // Partials for CRUD -import { ActionNotificationComponent, +import { + ActionNotificationComponent, DeleteEntityDialogComponent, FetchEntityDialogComponent, - UpdateStatusDialogComponent + UpdateStatusDialogComponent, } from '../../../../views/partials/content/crud'; export enum MessageType { Create, Read, Update, - Delete + Delete, } @Injectable() @@ -23,8 +24,7 @@ export class LayoutUtilsService { * @param snackBar: MatSnackBar * @param dialog: MatDialog */ - constructor(private snackBar: MatSnackBar, - private dialog: MatDialog) { } + constructor(private snackBar: MatSnackBar, private dialog: MatDialog) {} /** * Showing (Mat-Snackbar) Notification @@ -44,7 +44,7 @@ export class LayoutUtilsService { _showCloseButton: boolean = true, _showUndoButton: boolean = true, _undoButtonDuration: number = 3000, - _verticalPosition: 'top' | 'bottom' = 'bottom' + _verticalPosition: 'top' | 'bottom' = 'bottom', ) { const _data = { message: _message, @@ -54,12 +54,12 @@ export class LayoutUtilsService { undoButtonDuration: _undoButtonDuration, verticalPosition: _verticalPosition, type: _type, - action: 'Undo' + action: 'Undo', }; return this.snackBar.openFromComponent(ActionNotificationComponent, { duration: _duration, data: _data, - verticalPosition: _verticalPosition + verticalPosition: _verticalPosition, }); } @@ -73,7 +73,7 @@ export class LayoutUtilsService { deleteElement(title: string = '', description: string = '', waitDesciption: string = '') { return this.dialog.open(DeleteEntityDialogComponent, { data: { title, description, waitDesciption }, - width: '440px' + width: '440px', }); } @@ -85,7 +85,7 @@ export class LayoutUtilsService { fetchElements(_data) { return this.dialog.open(FetchEntityDialogComponent, { data: _data, - width: '400px' + width: '400px', }); } @@ -99,7 +99,7 @@ export class LayoutUtilsService { updateStatusForEntities(title, statuses, messages) { return this.dialog.open(UpdateStatusDialogComponent, { data: { title, statuses, messages }, - width: '480px' + width: '480px', }); } } diff --git a/src/app/core/_base/crud/utils/types-utils.service.ts b/src/app/core/_base/crud/utils/types-utils.service.ts index d9faa5d..c2a2568 100644 --- a/src/app/core/_base/crud/utils/types-utils.service.ts +++ b/src/app/core/_base/crud/utils/types-utils.service.ts @@ -59,11 +59,11 @@ export class TypesUtilsService { let stringDate: string = ''; if (date) { stringDate += this.isNumber(date.month) ? this.padNumber(date.month) + '/' : ''; - stringDate += this.isNumber(date.day) ? this.padNumber(date.day) + '/' : ''; + stringDate += this.isNumber(date.day) ? this.padNumber(date.day) + '/' : ''; stringDate += date.year; - } - return stringDate; + } + return stringDate; } /** @@ -78,8 +78,8 @@ export class TypesUtilsService { { year: this.toInteger(dateParts[2]), month: this.toInteger(dateParts[0]), - day: this.toInteger(dateParts[1]) - } + day: this.toInteger(dateParts[1]), + }, ]; } @@ -88,8 +88,8 @@ export class TypesUtilsService { { year: _date.getFullYear(), month: _date.getMonth() + 1, - day: _date.getDay() - } + day: _date.getDay(), + }, ]; } @@ -115,7 +115,6 @@ export class TypesUtilsService { return new Date(); } - /** * Convert Date to string with format 'MM/dd/yyyy' * @param _date: Date? diff --git a/src/app/core/_base/layout/directives/content-animate.directive.ts b/src/app/core/_base/layout/directives/content-animate.directive.ts index 126af19..cdae38b 100644 --- a/src/app/core/_base/layout/directives/content-animate.directive.ts +++ b/src/app/core/_base/layout/directives/content-animate.directive.ts @@ -10,7 +10,7 @@ import { Subscription } from 'rxjs'; * */ @Directive({ - selector: '[ktContentAnimate]' + selector: '[ktContentAnimate]', }) export class ContentAnimateDirective implements OnInit, OnDestroy { // Public properties @@ -24,11 +24,7 @@ export class ContentAnimateDirective implements OnInit, OnDestroy { * @param router: Router * @param animationBuilder: AnimationBuilder */ - constructor( - private el: ElementRef, - private router: Router, - private animationBuilder: AnimationBuilder) { - } + constructor(private el: ElementRef, private router: Router, private animationBuilder: AnimationBuilder) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -68,12 +64,9 @@ export class ContentAnimateDirective implements OnInit, OnDestroy { style({ transform: 'translateY(-3%)', opacity: 0, - position: 'static' + position: 'static', }), - animate( - '0.5s ease-in-out', - style({transform: 'translateY(0%)', opacity: 1}) - ) + animate('0.5s ease-in-out', style({ transform: 'translateY(0%)', opacity: 1 })), ]) .create(this.el.nativeElement); } diff --git a/src/app/core/_base/layout/directives/header.directive.ts b/src/app/core/_base/layout/directives/header.directive.ts index 5df7861..ae2a561 100644 --- a/src/app/core/_base/layout/directives/header.directive.ts +++ b/src/app/core/_base/layout/directives/header.directive.ts @@ -23,8 +23,7 @@ export class HeaderDirective implements AfterViewInit { * Directive Constructor * @param el: ElementRef */ - constructor(private el: ElementRef) { - } + constructor(private el: ElementRef) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/core/_base/layout/directives/menu.directive.ts b/src/app/core/_base/layout/directives/menu.directive.ts index 73be111..1cdb67e 100644 --- a/src/app/core/_base/layout/directives/menu.directive.ts +++ b/src/app/core/_base/layout/directives/menu.directive.ts @@ -26,8 +26,7 @@ export class MenuDirective implements AfterViewInit { * Directive Constructor * @param el: ElementRef */ - constructor(private el: ElementRef) { - } + constructor(private el: ElementRef) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/core/_base/layout/directives/sticky.directive.ts b/src/app/core/_base/layout/directives/sticky.directive.ts index c625ce0..0866597 100644 --- a/src/app/core/_base/layout/directives/sticky.directive.ts +++ b/src/app/core/_base/layout/directives/sticky.directive.ts @@ -1,4 +1,16 @@ -import { AfterViewInit, Directive, ElementRef, HostBinding, HostListener, Inject, Input, isDevMode, OnDestroy, OnInit, PLATFORM_ID } from '@angular/core'; +import { + AfterViewInit, + Directive, + ElementRef, + HostBinding, + HostListener, + Inject, + Input, + isDevMode, + OnDestroy, + OnInit, + PLATFORM_ID, +} from '@angular/core'; import { isPlatformBrowser } from '@angular/common'; import { BehaviorSubject, combineLatest, Observable, Subject } from 'rxjs'; import { animationFrame } from 'rxjs/internal/scheduler/animationFrame'; @@ -22,10 +34,9 @@ export interface StickyStatus { } @Directive({ - selector: '[ktSticky]' + selector: '[ktSticky]', }) export class StickyDirective implements OnInit, AfterViewInit, OnDestroy { - filterGate = false; marginTop$ = new BehaviorSubject(0); marginBottom$ = new BehaviorSubject(0); @@ -47,24 +58,20 @@ export class StickyDirective implements OnInit, AfterViewInit, OnDestroy { private componentDestroyed = new Subject(); constructor(private stickyElement: ElementRef, @Inject(PLATFORM_ID) private platformId: string) { - /** Throttle the scroll to animation frame (around 16.67ms) */ - this.scrollThrottled$ = this.scroll$ - .pipe( - throttleTime(0, animationFrame), - map(() => window.pageYOffset), - share() - ); + this.scrollThrottled$ = this.scroll$.pipe( + throttleTime(0, animationFrame), + map(() => window.pageYOffset), + share(), + ); /** Throttle the resize to animation frame (around 16.67ms) */ - this.resizeThrottled$ = this.resize$ - .pipe( - throttleTime(0, animationFrame), - // emit once since we are currently using combineLatest - startWith(null), - share() - ); - + this.resizeThrottled$ = this.resize$.pipe( + throttleTime(0, animationFrame), + // emit once since we are currently using combineLatest + startWith(null), + share(), + ); this.status$ = combineLatest( this.enable$, @@ -73,13 +80,13 @@ export class StickyDirective implements OnInit, AfterViewInit, OnDestroy { this.marginBottom$, this.extraordinaryChange$, this.resizeThrottled$, - ) - .pipe( - filter(([enabled]) => this.checkEnabled(enabled)), - map(([enabled, pageYOffset, marginTop, marginBottom]) => this.determineStatus(this.determineElementOffsets(), pageYOffset, marginTop, marginBottom, enabled)), - share(), - ); - + ).pipe( + filter(([enabled]) => this.checkEnabled(enabled)), + map(([enabled, pageYOffset, marginTop, marginBottom]) => + this.determineStatus(this.determineElementOffsets(), pageYOffset, marginTop, marginBottom, enabled), + ), + share(), + ); } @Input() set marginTop(value: number) { @@ -95,9 +102,7 @@ export class StickyDirective implements OnInit, AfterViewInit, OnDestroy { } ngAfterViewInit(): void { - this.status$ - .pipe(takeUntil(this.componentDestroyed)) - .subscribe((status) => this.setSticky(status)); + this.status$.pipe(takeUntil(this.componentDestroyed)).subscribe(status => this.setSticky(status)); } public recalculate(): void { @@ -144,7 +149,6 @@ export class StickyDirective implements OnInit, AfterViewInit, OnDestroy { * turns the filter in "filter, but let the first pass". */ private checkEnabled(enabled: boolean): boolean { - if (!isPlatformBrowser(this.platformId)) { return false; } @@ -165,13 +169,19 @@ export class StickyDirective implements OnInit, AfterViewInit, OnDestroy { return true; } } - - } - private determineStatus(originalVals: StickyPositions, pageYOffset: number, marginTop: number, marginBottom: number, enabled: boolean): StickyStatus { + private determineStatus( + originalVals: StickyPositions, + pageYOffset: number, + marginTop: number, + marginBottom: number, + enabled: boolean, + ): StickyStatus { const stickyElementHeight = this.getComputedStyle(this.stickyElement.nativeElement).height; - const reachedLowerEdge = this.boundaryElement && window.pageYOffset + stickyElementHeight + marginBottom >= (originalVals.bottomBoundary - marginTop); + const reachedLowerEdge = + this.boundaryElement && + window.pageYOffset + stickyElementHeight + marginBottom >= originalVals.bottomBoundary - marginTop; return { isSticky: enabled && pageYOffset > originalVals.offsetY, reachedLowerEdge, @@ -180,7 +190,6 @@ export class StickyDirective implements OnInit, AfterViewInit, OnDestroy { }; } - /** * Gets the offset for element. If the element * currently is sticky, it will get removed @@ -200,16 +209,17 @@ export class StickyDirective implements OnInit, AfterViewInit, OnDestroy { bottomBoundary = boundaryElementHeight + boundaryElementOffset; } - return {offsetY: (getPosition(this.stickyElement.nativeElement).y - this.marginTop$.value), bottomBoundary}; + return { offsetY: getPosition(this.stickyElement.nativeElement).y - this.marginTop$.value, bottomBoundary }; } private makeSticky(boundaryReached: boolean = false, marginTop: number, marginBottom: number): void { - this.boundaryReached = boundaryReached; // do this before setting it to pos:fixed - const {width, height, left} = this.getComputedStyle(this.stickyElement.nativeElement); - const offSet = boundaryReached ? (this.getComputedStyle(this.boundaryElement).bottom - height - this.marginBottom$.value) : this.marginTop$.value; + const { width, height, left } = this.getComputedStyle(this.stickyElement.nativeElement); + const offSet = boundaryReached + ? this.getComputedStyle(this.boundaryElement).bottom - height - this.marginBottom$.value + : this.marginTop$.value; this.sticky = true; this.stickyElement.nativeElement.style.position = 'fixed'; @@ -239,7 +249,6 @@ Then pass the spacer element as input: } } - private setSticky(status: StickyStatus): void { if (status.isSticky) { this.makeSticky(status.reachedLowerEdge, status.marginTop, status.marginBottom); @@ -249,7 +258,6 @@ Then pass the spacer element as input: } private removeSticky(): void { - this.boundaryReached = false; this.sticky = false; diff --git a/src/app/core/_base/layout/models/layout-config.model.ts b/src/app/core/_base/layout/models/layout-config.model.ts index d9fc749..e5135ee 100644 --- a/src/app/core/_base/layout/models/layout-config.model.ts +++ b/src/app/core/_base/layout/models/layout-config.model.ts @@ -3,14 +3,14 @@ export interface LayoutConfigModel { self: { layout?: string; body?: { - 'background-image'?: string + 'background-image'?: string; }; logo: any | string; }; portlet?: { sticky: { - offset: number - } + offset: number; + }; }; loader: { enabled: boolean; @@ -31,8 +31,8 @@ export interface LayoutConfigModel { }; base: { label: string[]; - shape: string[] - } + shape: string[]; + }; }; width?: string; header: { @@ -41,8 +41,8 @@ export interface LayoutConfigModel { layout?: string; fixed: { desktop: any; - mobile: boolean - } + mobile: boolean; + }; }; topbar: { search: { @@ -50,42 +50,42 @@ export interface LayoutConfigModel { layout: 'offcanvas' | 'dropdown'; dropdown?: { style: 'light' | 'dark'; - } + }; }; notifications: { display: boolean; layout: 'offcanvas' | 'dropdown'; dropdown: { style: 'light' | 'dark'; - } + }; }; 'quick-actions': { display: boolean; layout: 'offcanvas' | 'dropdown'; dropdown: { style: 'light' | 'dark'; - } + }; }; user: { display: boolean; layout: 'offcanvas' | 'dropdown'; dropdown: { style: 'light' | 'dark'; - } + }; }; languages: { - display: boolean + display: boolean; }; cart?: { - display: boolean + display: boolean; }; - 'my-cart'?: any + 'my-cart'?: any; 'quick-panel': { - display: boolean - } + display: boolean; + }; }; search?: { - display: boolean + display: boolean; }; menu?: { self: { @@ -98,21 +98,21 @@ export interface LayoutConfigModel { toggle: string; submenu: { skin?: string; - arrow: boolean - } + arrow: boolean; + }; }; mobile: { submenu: { skin: string; - accordion: boolean - } - } - } + accordion: boolean; + }; + }; + }; }; brand?: { self: { - skin: string - } + skin: string; + }; }; aside?: { self: { @@ -121,13 +121,13 @@ export interface LayoutConfigModel { fixed?: boolean | any; minimize?: { toggle: boolean; - default: boolean - } + default: boolean; + }; }; footer?: { self: { - display: boolean - } + display: boolean; + }; }; menu: { dropdown: boolean; @@ -136,16 +136,16 @@ export interface LayoutConfigModel { accordion: boolean; dropdown: { arrow: boolean; - 'hover-timeout': number - } - } - } + 'hover-timeout': number; + }; + }; + }; }; 'aside-secondary'?: { self: { display: boolean; - layout: string - } + layout: string; + }; }; subheader?: { display: boolean; @@ -153,14 +153,14 @@ export interface LayoutConfigModel { layout?: 'subheader-v1' | 'subheader-v2' | 'subheader-v3' | 'subheader-v4' | 'subheader-v5' | 'subheader-v6'; style?: 'light' | 'solid' | 'transparent'; daterangepicker?: { - display: boolean - } + display: boolean; + }; }; content?: any; footer?: { self?: any; }; 'quick-panel'?: { - display?: boolean + display?: boolean; }; } diff --git a/src/app/core/_base/layout/services/kt-dialog.service.ts b/src/app/core/_base/layout/services/kt-dialog.service.ts index e76333d..4d45c3e 100644 --- a/src/app/core/_base/layout/services/kt-dialog.service.ts +++ b/src/app/core/_base/layout/services/kt-dialog.service.ts @@ -10,7 +10,7 @@ export class KtDialogService { // Public properties constructor() { - this.ktDialog = new KTDialog({'type': 'loader', 'placement': 'top center', 'message': 'Loading ...'}); + this.ktDialog = new KTDialog({ type: 'loader', placement: 'top center', message: 'Loading ...' }); } show() { diff --git a/src/app/core/_base/layout/services/layout-config.service.ts b/src/app/core/_base/layout/services/layout-config.service.ts index e048ba0..df621de 100644 --- a/src/app/core/_base/layout/services/layout-config.service.ts +++ b/src/app/core/_base/layout/services/layout-config.service.ts @@ -40,8 +40,7 @@ export class LayoutConfigService { const config = localStorage.getItem('layoutConfig'); try { return JSON.parse(config); - } catch (e) { - } + } catch (e) {} } /** @@ -103,8 +102,7 @@ export class LayoutConfigService { try { const logos = objectPath.get(this.layoutConfig, 'self.logo'); logo = logos[Object.keys(logos)[0]]; - } catch (e) { - } + } catch (e) {} } return logo; } diff --git a/src/app/core/_base/layout/services/menu-aside.service.ts b/src/app/core/_base/layout/services/menu-aside.service.ts index 8f16eb5..6535242 100644 --- a/src/app/core/_base/layout/services/menu-aside.service.ts +++ b/src/app/core/_base/layout/services/menu-aside.service.ts @@ -19,9 +19,7 @@ export class MenuAsideService { * @param menuConfigService: MenuConfigService * @param store: Store */ - constructor( - private menuConfigService: MenuConfigService - ) { + constructor(private menuConfigService: MenuConfigService) { this.loadMenu(); } diff --git a/src/app/core/_base/layout/services/splash-screen.service.ts b/src/app/core/_base/layout/services/splash-screen.service.ts index 57724c8..05e5d41 100644 --- a/src/app/core/_base/layout/services/splash-screen.service.ts +++ b/src/app/core/_base/layout/services/splash-screen.service.ts @@ -13,8 +13,7 @@ export class SplashScreenService { * * @param animationBuilder: AnimationBuilder */ - constructor(private animationBuilder: AnimationBuilder) { - } + constructor(private animationBuilder: AnimationBuilder) {} /** * Init @@ -33,10 +32,9 @@ export class SplashScreenService { return; } - const player = this.animationBuilder.build([ - style({opacity: '1'}), - animate(800, style({opacity: '0'})) - ]).create(this.el.nativeElement); + const player = this.animationBuilder + .build([style({ opacity: '1' }), animate(800, style({ opacity: '0' }))]) + .create(this.el.nativeElement); player.onDone(() => { if (typeof this.el.nativeElement.remove === 'function') { diff --git a/src/app/core/_base/layout/services/subheader.service.ts b/src/app/core/_base/layout/services/subheader.service.ts index 2a0dd4e..2a7a51f 100644 --- a/src/app/core/_base/layout/services/subheader.service.ts +++ b/src/app/core/_base/layout/services/subheader.service.ts @@ -23,7 +23,7 @@ export interface BreadcrumbTitle { @Injectable() export class SubheaderService { // Public properties - title$: BehaviorSubject = new BehaviorSubject({title: '', desc: ''}); + title$: BehaviorSubject = new BehaviorSubject({ title: '', desc: '' }); breadcrumbs$: BehaviorSubject = new BehaviorSubject([]); disabled$: Subject = new Subject(); @@ -46,7 +46,8 @@ export class SubheaderService { constructor( private router: Router, private pageConfigService: PageConfigService, - private menuConfigService: MenuConfigService) { + private menuConfigService: MenuConfigService, + ) { const initBreadcrumb = () => { // get updated title current page config this.pageConfig = this.pageConfigService.getCurrentPageConfig(); @@ -84,9 +85,7 @@ export class SubheaderService { initBreadcrumb(); // subscribe to router events - this.router.events - .pipe(filter(event => event instanceof NavigationEnd)) - .subscribe(initBreadcrumb); + this.router.events.pipe(filter(event => event instanceof NavigationEnd)).subscribe(initBreadcrumb); } /** @@ -105,7 +104,8 @@ export class SubheaderService { // if breadcrumb has only 1 item breadcrumbs.length === 1 && // and breadcrumb title is same as current page title - breadcrumbs[0].title.indexOf(objectPath.get(this.pageConfig, 'page.title')) !== -1) { + breadcrumbs[0].title.indexOf(objectPath.get(this.pageConfig, 'page.title')) !== -1 + ) { // no need to display on frontend breadcrumbs = []; } @@ -163,7 +163,7 @@ export class SubheaderService { */ setTitle(title: string) { this.manualTitle[this.router.url] = title; - this.title$.next({title: title}); + this.title$.next({ title: title }); } /** @@ -179,7 +179,7 @@ export class SubheaderService { const path = []; let found = false; - const search = (haystack) => { + const search = haystack => { // tslint:disable-next-line:forin for (const key in haystack) { path.push(key); diff --git a/src/app/core/_base/metronic/directives/offcanvas.directive.ts b/src/app/core/_base/metronic/directives/offcanvas.directive.ts index d080ecb..650a136 100644 --- a/src/app/core/_base/metronic/directives/offcanvas.directive.ts +++ b/src/app/core/_base/metronic/directives/offcanvas.directive.ts @@ -25,7 +25,7 @@ export class OffcanvasDirective implements AfterViewInit { * Directive Constructor * @param el: ElementRef */ - constructor(private el: ElementRef) { } + constructor(private el: ElementRef) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/core/_base/metronic/directives/scroll-top.directive.ts b/src/app/core/_base/metronic/directives/scroll-top.directive.ts index c514e1d..a7ac671 100644 --- a/src/app/core/_base/metronic/directives/scroll-top.directive.ts +++ b/src/app/core/_base/metronic/directives/scroll-top.directive.ts @@ -10,7 +10,7 @@ export interface ScrollTopOptions { * Scroll to top */ @Directive({ - selector: '[ktScrollTop]' + selector: '[ktScrollTop]', }) export class ScrollTopDirective implements AfterViewInit { // Public properties @@ -22,7 +22,7 @@ export class ScrollTopDirective implements AfterViewInit { * Directive Conctructor * @param el: ElementRef */ - constructor(private el: ElementRef) { } + constructor(private el: ElementRef) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/core/_base/metronic/directives/sparkline-chart.directive.ts b/src/app/core/_base/metronic/directives/sparkline-chart.directive.ts index a86dfaa..7d43119 100644 --- a/src/app/core/_base/metronic/directives/sparkline-chart.directive.ts +++ b/src/app/core/_base/metronic/directives/sparkline-chart.directive.ts @@ -21,7 +21,7 @@ export interface SparklineChartOptions { */ @Directive({ selector: '[ktSparklineChart]', - exportAs: 'ktSparklineChart' + exportAs: 'ktSparklineChart', }) export class SparklineChartDirective implements AfterViewInit { // Public properties @@ -35,8 +35,7 @@ export class SparklineChartDirective implements AfterViewInit { * @param el: ElementRef * @param layoutConfigService: LayoutConfigService */ - constructor(private el: ElementRef, private layoutConfigService: LayoutConfigService) { - } + constructor(private el: ElementRef, private layoutConfigService: LayoutConfigService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -46,7 +45,14 @@ export class SparklineChartDirective implements AfterViewInit { * After view init */ ngAfterViewInit(): void { - this.initChart(this.el.nativeElement, this.options.data, this.options.color, this.options.border, this.options.fill, this.options.tooltip); + this.initChart( + this.el.nativeElement, + this.options.data, + this.options.color, + this.options.border, + this.options.fill, + this.options.tooltip, + ); } /** @@ -64,27 +70,38 @@ export class SparklineChartDirective implements AfterViewInit { } // set default values - fill = (typeof fill !== 'undefined') ? fill : false; - tooltip = (typeof tooltip !== 'undefined') ? tooltip : false; + fill = typeof fill !== 'undefined' ? fill : false; + tooltip = typeof tooltip !== 'undefined' ? tooltip : false; const config = { type: 'line', data: { labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October'], - datasets: [{ - label: '', - borderColor: color, - borderWidth: border, + datasets: [ + { + label: '', + borderColor: color, + borderWidth: border, - pointHoverRadius: 4, - pointHoverBorderWidth: 12, - pointBackgroundColor: Chart.helpers.color('#000000').alpha(0).rgbString(), - pointBorderColor: Chart.helpers.color('#000000').alpha(0).rgbString(), - pointHoverBackgroundColor: this.layoutConfigService.getConfig('colors.state.danger'), - pointHoverBorderColor: Chart.helpers.color('#000000').alpha(0.1).rgbString(), - fill: false, - data: data, - }] + pointHoverRadius: 4, + pointHoverBorderWidth: 12, + pointBackgroundColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointBorderColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointHoverBackgroundColor: this.layoutConfigService.getConfig('colors.state.danger'), + pointHoverBorderColor: Chart.helpers + .color('#000000') + .alpha(0.1) + .rgbString(), + fill: false, + data: data, + }, + ], }, options: { title: { @@ -96,45 +113,49 @@ export class SparklineChartDirective implements AfterViewInit { mode: 'nearest', xPadding: 10, yPadding: 10, - caretPadding: 10 + caretPadding: 10, }, legend: { display: false, labels: { - usePointStyle: false - } + usePointStyle: false, + }, }, responsive: true, maintainAspectRatio: true, hover: { - mode: 'index' + mode: 'index', }, scales: { - xAxes: [{ - display: false, - gridLines: false, - scaleLabel: { - display: true, - labelString: 'Month' - } - }], - yAxes: [{ - display: false, - gridLines: false, - scaleLabel: { - display: true, - labelString: 'Value' + xAxes: [ + { + display: false, + gridLines: false, + scaleLabel: { + display: true, + labelString: 'Month', + }, + }, + ], + yAxes: [ + { + display: false, + gridLines: false, + scaleLabel: { + display: true, + labelString: 'Value', + }, + ticks: { + beginAtZero: true, + }, }, - ticks: { - beginAtZero: true - } - }] + ], }, elements: { point: { radius: 4, - borderWidth: 12 + borderWidth: 12, }, }, @@ -143,10 +164,10 @@ export class SparklineChartDirective implements AfterViewInit { left: 0, right: 10, top: 5, - bottom: 0 - } - } - } + bottom: 0, + }, + }, + }, }; this.chart = new Chart(src, config); diff --git a/src/app/core/_base/metronic/directives/tab-click-event.directive.ts b/src/app/core/_base/metronic/directives/tab-click-event.directive.ts index 288c0a3..6fd9adc 100644 --- a/src/app/core/_base/metronic/directives/tab-click-event.directive.ts +++ b/src/app/core/_base/metronic/directives/tab-click-event.directive.ts @@ -4,7 +4,7 @@ import { Directive, ElementRef, HostListener, Renderer2 } from '@angular/core'; * Listen Tab click */ @Directive({ - selector: '[ktTabClickEvent]' + selector: '[ktTabClickEvent]', }) export class TabClickEventDirective { /** @@ -12,7 +12,7 @@ export class TabClickEventDirective { * @param el: ElementRef * @param render: Renderer2 */ - constructor(private el: ElementRef, private render: Renderer2) { } + constructor(private el: ElementRef, private render: Renderer2) {} /** * A directive handler the tab click event for active tab diff --git a/src/app/core/_base/metronic/directives/toggle.directive.ts b/src/app/core/_base/metronic/directives/toggle.directive.ts index 54ea755..73625a6 100644 --- a/src/app/core/_base/metronic/directives/toggle.directive.ts +++ b/src/app/core/_base/metronic/directives/toggle.directive.ts @@ -12,7 +12,7 @@ export interface ToggleOptions { */ @Directive({ selector: '[ktToggle]', - exportAs: 'ktToggle' + exportAs: 'ktToggle', }) export class ToggleDirective implements AfterViewInit { // Public properties @@ -23,7 +23,7 @@ export class ToggleDirective implements AfterViewInit { * Directive constructor * @param el: ElementRef */ - constructor(private el: ElementRef) { } + constructor(private el: ElementRef) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/core/_base/metronic/models/datatable-item.model.ts b/src/app/core/_base/metronic/models/datatable-item.model.ts index 0fcdda5..74feae7 100644 --- a/src/app/core/_base/metronic/models/datatable-item.model.ts +++ b/src/app/core/_base/metronic/models/datatable-item.model.ts @@ -1,5 +1,5 @@ export class DataTableItemModel { - id: number; + id: number; cModel: string; cManufacture: string; cModelYear: number; @@ -9,5 +9,5 @@ export class DataTableItemModel { cPrice: number; cCondition: number; cStatus: number; - cVINCode: string; + cVINCode: string; } diff --git a/src/app/core/_base/metronic/models/external-code-example.ts b/src/app/core/_base/metronic/models/external-code-example.ts index 99f1088..7cf16d2 100644 --- a/src/app/core/_base/metronic/models/external-code-example.ts +++ b/src/app/core/_base/metronic/models/external-code-example.ts @@ -1,4 +1,4 @@ -export class ExternalCodeExample { +export class ExternalCodeExample { beforeCodeTitle: string; beforeCodeDescription: string; htmlCode: string; diff --git a/src/app/core/_base/metronic/pipes/first-letter.pipe.ts b/src/app/core/_base/metronic/pipes/first-letter.pipe.ts index cd518b0..2195469 100644 --- a/src/app/core/_base/metronic/pipes/first-letter.pipe.ts +++ b/src/app/core/_base/metronic/pipes/first-letter.pipe.ts @@ -5,10 +5,9 @@ import { Pipe, PipeTransform } from '@angular/core'; * Returns only first letter of string */ @Pipe({ - name: 'firstLetter' + name: 'firstLetter', }) export class FirstLetterPipe implements PipeTransform { - /** * Transform * @@ -16,6 +15,9 @@ export class FirstLetterPipe implements PipeTransform { * @param args: any */ transform(value: any, args?: any): any { - return value.split(' ').map(n => n[0]).join(''); + return value + .split(' ') + .map(n => n[0]) + .join(''); } } diff --git a/src/app/core/_base/metronic/pipes/get-object.pipe.ts b/src/app/core/_base/metronic/pipes/get-object.pipe.ts index 5b7ba00..605e37b 100644 --- a/src/app/core/_base/metronic/pipes/get-object.pipe.ts +++ b/src/app/core/_base/metronic/pipes/get-object.pipe.ts @@ -7,7 +7,7 @@ import * as objectPath from 'object-path'; * Returns object from parent object */ @Pipe({ - name: 'getObject' + name: 'getObject', }) export class GetObjectPipe implements PipeTransform { /** diff --git a/src/app/core/_base/metronic/pipes/join.pipe.ts b/src/app/core/_base/metronic/pipes/join.pipe.ts index 66542df..63153db 100644 --- a/src/app/core/_base/metronic/pipes/join.pipe.ts +++ b/src/app/core/_base/metronic/pipes/join.pipe.ts @@ -5,7 +5,7 @@ import { Pipe, PipeTransform } from '@angular/core'; * Returns string from Array */ @Pipe({ - name: 'join' + name: 'join', }) export class JoinPipe implements PipeTransform { /** diff --git a/src/app/core/_base/metronic/pipes/safe.pipe.ts b/src/app/core/_base/metronic/pipes/safe.pipe.ts index a814ae2..97246cc 100644 --- a/src/app/core/_base/metronic/pipes/safe.pipe.ts +++ b/src/app/core/_base/metronic/pipes/safe.pipe.ts @@ -6,7 +6,7 @@ import { DomSanitizer, SafeHtml, SafeStyle, SafeScript, SafeUrl, SafeResourceUrl * Sanitize HTML */ @Pipe({ - name: 'safe' + name: 'safe', }) export class SafePipe implements PipeTransform { /** @@ -14,7 +14,7 @@ export class SafePipe implements PipeTransform { * * @param _sanitizer: DomSanitezer */ - constructor(protected _sanitizer: DomSanitizer) { } + constructor(protected _sanitizer: DomSanitizer) {} /** * Transform @@ -38,5 +38,4 @@ export class SafePipe implements PipeTransform { return this._sanitizer.bypassSecurityTrustHtml(value); } } - } diff --git a/src/app/core/_base/metronic/pipes/time-elapsed.pipe.ts b/src/app/core/_base/metronic/pipes/time-elapsed.pipe.ts index 6657a14..bada82c 100644 --- a/src/app/core/_base/metronic/pipes/time-elapsed.pipe.ts +++ b/src/app/core/_base/metronic/pipes/time-elapsed.pipe.ts @@ -6,7 +6,7 @@ import { Pipe, PipeTransform, OnDestroy, ChangeDetectorRef, NgZone } from '@angu * An Angular pipe for converting a date string into a time ago */ @Pipe({ - name: 'kTimeElapsed' + name: 'kTimeElapsed', }) export class TimeElapsedPipe implements PipeTransform, OnDestroy { // Private properties @@ -18,10 +18,7 @@ export class TimeElapsedPipe implements PipeTransform, OnDestroy { * @param changeDetectorRef: ChangeDetectorRef * @param ngZone: NgZone */ - constructor( - private changeDetectorRef: ChangeDetectorRef, - private ngZone: NgZone - ) {} + constructor(private changeDetectorRef: ChangeDetectorRef, private ngZone: NgZone) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -43,16 +40,12 @@ export class TimeElapsedPipe implements PipeTransform, OnDestroy { this.removeTimer(); const d = new Date(value); const now = new Date(); - const seconds = Math.round( - Math.abs((now.getTime() - d.getTime()) / 1000) - ); + const seconds = Math.round(Math.abs((now.getTime() - d.getTime()) / 1000)); const timeToUpdate = this.getSecondsUntilUpdate(seconds) * 1000; this.timer = this.ngZone.runOutsideAngular(() => { if (typeof window !== 'undefined') { return window.setTimeout(() => { - this.ngZone.run(() => - this.changeDetectorRef.markForCheck() - ); + this.ngZone.run(() => this.changeDetectorRef.markForCheck()); }, timeToUpdate); } return null; diff --git a/src/app/core/_base/metronic/server/fake-api/fake-api.service.ts b/src/app/core/_base/metronic/server/fake-api/fake-api.service.ts index 9be02e0..ceafba5 100644 --- a/src/app/core/_base/metronic/server/fake-api/fake-api.service.ts +++ b/src/app/core/_base/metronic/server/fake-api/fake-api.service.ts @@ -41,7 +41,7 @@ export class FakeApiService implements InMemoryDbService { orders: ECommerceDataContext.orders, // data-table - cars: CarsDb.cars + cars: CarsDb.cars, }; return db; } diff --git a/src/app/core/_base/metronic/server/fake-api/fake-db/cars.ts b/src/app/core/_base/metronic/server/fake-api/fake-db/cars.ts index e0b59d9..cc4397e 100644 --- a/src/app/core/_base/metronic/server/fake-api/fake-db/cars.ts +++ b/src/app/core/_base/metronic/server/fake-api/fake-db/cars.ts @@ -1,481 +1,514 @@ export class CarsDb { public static cars: any = [ { - 'id': 1, - 'cModel': 'Elise', - 'cManufacture': 'Lotus', - 'cModelYear': 2004, - 'cMileage': 116879, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Lotus Elise first appeared in 1996 and revolutionised small sports car design with its lightweight extruded aluminium chassis and composite body. There have been many variations, but the basic principle remain the same.`, - 'cColor': 'Red', - 'cPrice': 18347, - 'cCondition': 1, - 'createdDate': '09/30/2017', - 'cStatus': 0, - 'cVINCode': '1FTWX3D52AE575540', - }, { - 'id': 2, - 'cModel': 'Sunbird', - 'cManufacture': 'Pontiac', - 'cModelYear': 1984, - 'cMileage': 99515, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Pontiac Sunbird is an automobile that was produced by Pontiac, initially as a subcompact for the 1976 to 1980 cModel years,and later as a compact for the 1982 to 1994 cModel years. The Sunbird badge ran for 18 years (with a hiatus during the 1981 and 1982 cModel years, as the 1982 cModel was called J2000) and was then replaced in 1995 by the Pontiac Sunfire. Through the years the Sunbird was available in notchback coupé, sedan, hatchback, station wagon, and convertible body styles.`, - 'cColor': 'Khaki', - 'cPrice': 165956, - 'cCondition': 0, - 'createdDate': '03/22/2018', - 'cStatus': 1, - 'cVINCode': 'JM1NC2EF8A0293556' - }, { - 'id': 3, - 'cModel': 'Amigo', - 'cManufacture': 'Isuzu', - 'cModelYear': 1993, - 'cMileage': 138027, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Isuzu MU is a mid-size SUV that was produced by the Japan-based cManufacturer Isuzu. The three-door MU was introduced in 1989, followed in 1990 by the five-door version called Isuzu MU Wizard, both of which stopped production in 1998 to be replaced by a second generation. This time, the five-door version dropped the "MU" prefix, to become the Isuzu Wizard. The acronym "MU" is short for "Mysterious Utility". Isuzu cManufactured several variations to the MU and its derivates for sale in other countries.`, - 'cColor': 'Aquamarine', - 'cPrice': 45684, - 'cCondition': 0, - 'createdDate': '03/06/2018', - 'cStatus': 0, - 'cVINCode': '1G6DG8E56C0973889' - }, { - 'id': 4, - 'cModel': 'LS', - 'cManufacture': 'Lexus', - 'cModelYear': 2004, - 'cMileage': 183068, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Lexus LS (Japanese: レクサス・LS, Rekusasu LS) is a full-size luxury car (F-segment in Europe) serving as the flagship cModel of Lexus, the luxury division of Toyota. For the first four generations, all LS cModels featured V8 engines and were predominantly rear-wheel-drive, with Lexus also offering all-wheel-drive, hybrid, and long-wheelbase variants. The fifth generation changed to using a V6 engine with no V8 option, and the long wheelbase variant was removed entirely.`, - 'cColor': 'Mauv', - 'cPrice': 95410, - 'cCondition': 1, - 'createdDate': '02/03/2018', - 'cStatus': 1, - 'cVINCode': '2T1BU4EE6DC859114' - }, { - 'id': 5, - 'cModel': 'Paseo', - 'cManufacture': 'Toyota', - 'cModelYear': 1997, - 'cMileage': 74884, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Toyota Paseo (known as the Cynos in Japan and other regions) is a sports styled compact car sold from 1991–1999 and was loosely based on the Tercel. It was available as a coupe and in later cModels as a convertible. Toyota stopped selling the car in the United States in 1997, however the car continued to be sold in Canada, Europe and Japan until 1999, but had no direct replacement. The Paseo, like the Tercel, shares a platform with the Starlet. Several parts are interchangeable between the three`, - 'cColor': 'Pink', - 'cPrice': 24796, - 'cCondition': 1, - 'createdDate': '08/13/2017', - 'cStatus': 0, - 'cVINCode': '1D7RB1GP0AS597432' - }, { - 'id': 6, - 'cModel': 'M', - 'cManufacture': 'Infiniti', - 'cModelYear': 2009, - 'cMileage': 194846, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Infiniti M is a line of mid-size luxury (executive) cars from the Infiniti luxury division of Nissan.\r\nThe first iteration was the M30 Coupe/Convertible, which were rebadged JDM Nissan Leopard.\r\nAfter a long hiatus, the M nameplate was used for Infiniti's mid-luxury sedans (executive cars). First was the short-lived M45 sedan, a rebadged version of the Japanese-spec Nissan Gloria. The next generations, the M35/45 and M37/56/35h/30d, became the flagship of the Infiniti brand and are based on the JDM Nissan Fuga.`, - 'cColor': 'Puce', - 'cPrice': 30521, - 'cCondition': 1, - 'createdDate': '01/27/2018', - 'cStatus': 0, - 'cVINCode': 'YV1940AS1D1542424' - }, { - 'id': 7, - 'cModel': 'Phantom', - 'cManufacture': 'Rolls-Royce', - 'cModelYear': 2008, - 'cMileage': 164124, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Rolls-Royce Phantom VIII is a luxury saloon car cManufactured by Rolls-Royce Motor Cars. It is the eighth and current generation of Rolls-Royce Phantom, and the second launched by Rolls-Royce under BMW ownership. It is offered in two wheelbase lengths`, - 'cColor': 'Purple', - 'cPrice': 196247, - 'cCondition': 1, - 'createdDate': '09/28/2017', - 'cStatus': 1, - 'cVINCode': '3VWML7AJ1DM234625' - }, { - 'id': 8, - 'cModel': 'QX', - 'cManufacture': 'Infiniti', - 'cModelYear': 2002, - 'cMileage': 57410, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Infiniti QX80 (called the Infiniti QX56 until 2013) is a full-size luxury SUV built by Nissan Motor Company's Infiniti division. The naming convention originally adhered to the current trend of using a numeric designation derived from the engine's displacement, thus QX56 since the car has a 5.6-liter engine. From the 2014 cModel year, the car was renamed the QX80, as part of Infiniti's cModel name rebranding. The new name carries no meaning beyond suggesting that the vehicle is larger than smaller cModels such as the QX60`, - 'cColor': 'Green', - 'cPrice': 185775, - 'cCondition': 1, - 'createdDate': '11/15/2017', - 'cStatus': 0, - 'cVINCode': 'WDDHF2EB9CA161524' - }, { - 'id': 9, - 'cModel': 'Daytona', - 'cManufacture': 'Dodge', - 'cModelYear': 1993, - 'cMileage': 4444, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Dodge Daytona was an automobile which was produced by the Chrysler Corporation under their Dodge division from 1984 to 1993. It was a front-wheel drive hatchback based on the Chrysler G platform, which was derived from the Chrysler K platform. The Chrysler Laser was an upscale rebadged version of the Daytona. The Daytona was restyled for 1987, and again for 1992. It replaced the Mitsubishi Galant-based Challenger, and slotted between the Charger and the Conquest. The Daytona was replaced by the 1995 Dodge Avenger, which was built by Mitsubishi Motors. The Daytona derives its name mainly from the Dodge Charger Daytona, which itself was named after the Daytona 500 race in Daytona Beach, Florida.`, - 'cColor': 'Maroon', - 'cPrice': 171898, - 'cCondition': 0, - 'createdDate': '12/24/2017', - 'cStatus': 1, - 'cVINCode': 'WBAET37422N752051' - }, { - 'id': 10, - 'cModel': '1500 Silverado', - 'cManufacture': 'Chevrolet', - 'cModelYear': 1999, - 'cMileage': 195310, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Chevrolet Silverado, and its mechanically identical cousin, the GMC Sierra, are a series of full-size and heavy-duty pickup trucks cManufactured by General Motors and introduced in 1998 as the successor to the long-running Chevrolet C/K line. The Silverado name was taken from a trim level previously used on its predecessor, the Chevrolet C/K pickup truck from 1975 through 1998. General Motors continues to offer a GMC-badged variant of the Chevrolet full-size pickup under the GMC Sierra name, first used in 1987 for its variant of the GMT400 platform trucks.`, - 'cColor': 'Blue', - 'cPrice': 25764, - 'cCondition': 0, - 'createdDate': '08/30/2017', - 'cStatus': 1, - 'cVINCode': '1N6AF0LX6EN590806' - }, { - 'id': 11, - 'cModel': 'CTS', - 'cManufacture': 'Cadillac', - 'cModelYear': 2012, - 'cMileage': 170862, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Cadillac CTS is a mid-size luxury car / executive car designed, engineered, cManufactured and marketed by General Motors, and now in its third generation. \r\nInitially available only as a 4-door sedan on the GM Sigma platform, GM had offered the second generation CTS in three body styles: 4-door sedan, 2-door coupe, and 5-door sport wagon also using the Sigma platform — and the third generation in coupe and sedan configurations, using a stretched version of the GM Alpha platform.\r\nWayne Cherry and Kip Wasenko designed the exterior of the first generation CTS, marking the production debut of a design language (marketed as "Art and Science") first seen on the Evoq concept car. Bob Boniface and Robin Krieg designed the exterior of the third generation CTS`, - 'cColor': 'Crimson', - 'cPrice': 80588, - 'cCondition': 0, - 'createdDate': '02/15/2018', - 'cStatus': 0, - 'cVINCode': '1G4HR54KX4U506530' - }, { - 'id': 12, - 'cModel': 'Astro', - 'cManufacture': 'Chevrolet', - 'cModelYear': 1995, - 'cMileage': 142137, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Chevrolet Astro was a rear-wheel drive van/minivan cManufactured and marketed by the American automaker Chevrolet from 1985 to 2005 and over two build generations. Along with its rebadged variant, the GMC Safari, the Astro was marketed in passenger as well as cargo and livery configurations—featuring a V6 engine, unibody construction with a separate front engine/suspension sub-frame, leaf-spring rear suspension, rear bi-parting doors, and a seating capacity of up to eight passengers`, - 'cColor': 'Teal', - 'cPrice': 72430, - 'cCondition': 1, - 'createdDate': '07/31/2017', - 'cStatus': 0, - 'cVINCode': 'KMHGH4JH2DU676107' - }, { - 'id': 13, - 'cModel': 'XL7', - 'cManufacture': 'Suzuki', - 'cModelYear': 2009, - 'cMileage': 165165, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Suzuki XL-7 (styled as XL7 for the second generation) is Suzuki's mid-sized SUV that was made from 1998 to 2009, over two generations. It was slotted above the Grand Vitara in Suzuki's lineup.`, - 'cColor': 'Puce', - 'cPrice': 118667, - 'cCondition': 0, - 'createdDate': '02/04/2018', - 'cStatus': 0, - 'cVINCode': '1N6AF0LX9EN733005' - }, { - 'id': 14, - 'cModel': 'SJ 410', - 'cManufacture': 'Suzuki', - 'cModelYear': 1984, - 'cMileage': 176074, - // tslint:disable-next-line:max-line-length - 'cDescription': `The SJ-Series was introduced to the United States (Puerto Rico (SJ-410) and Canada earlier) in 1985 for the 1986 cModel year. It was cPriced at $6200 and 47,000 were sold in its first year. The Samurai had a 1.3 liter, 63 hp (47 kW), 4-cylinder engine and was available as a convertible or a hardtop, and with or without a rear seat. The Suzuki Samurai became intensely popular within the serious 4WD community for its good off-road performance and reliability compared to other 4WDs of the time. This is due to the fact that while very compact and light, it is a real 4WD vehicle equipped with a transfer case, switchable 4WD and low range. Its lightness makes it a very nimble off-roader less prone to sinking in softer ground than heavier types. It is also considered a great beginner off-roader due to its simple design and ease of engine and suspension modifications.`, - 'cColor': 'Orange', - 'cPrice': 84325, - 'cCondition': 0, - 'createdDate': '12/22/2017', - 'cStatus': 0, - 'cVINCode': '2C3CDYBT6DH183756' - }, { - 'id': 15, - 'cModel': 'F-Series', - 'cManufacture': 'Ford', - 'cModelYear': 1995, - 'cMileage': 53030, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Ford F-Series is a series of light-duty trucks and medium-duty trucks (Class 2-7) that have been marketed and cManufactured by Ford Motor Company since 1948. While most variants of the F-Series trucks are full-size pickup trucks, the F-Series also includes chassis cab trucks and commercial vehicles. The Ford F-Series has been the best-selling vehicle in the United States since 1986 and the best-selling pickup since 1977.[1][2] It is also the best selling vehicle in Canada.[3] As of the 2018 cModel year, the F-Series generates $41.0 billion in annual revenue for Ford, making the F-Series brand more valuable than Coca-Cola and Nike.`, - 'cColor': 'Aquamarine', - 'cPrice': 77108, - 'cCondition': 0, - 'createdDate': '01/09/2018', - 'cStatus': 0, - 'cVINCode': 'WBAVB33526P873481' - }, { - 'id': 16, - 'cModel': 'HS', - 'cManufacture': 'Lexus', - 'cModelYear': 2011, - 'cMileage': 84718, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Lexus HS (Japanese: レクサス・HS, Rekusasu HS) is a dedicated hybrid vehicle introduced by Lexus as a new entry-level luxury compact sedan in 2009.[2] Built on the Toyota New MC platform,[3] it is classified as a compact under Japanese regulations concerning vehicle exterior dimensions and engine displacement. Unveiled at the North American International Auto Show in January 2009, the HS 250h went on sale in July 2009 in Japan, followed by the United States in August 2009 as a 2010 cModel. The HS 250h represented the first dedicated hybrid vehicle in the Lexus lineup, as well as the first offered with an inline-four gasoline engine.[4] Bioplastic materials are used for the vehicle interior.[5] With a total length of 184.8 inches, the Lexus HS is slightly larger than the Lexus IS, but still smaller than the mid-size Lexus ES.`, - 'cColor': 'Purple', - 'cPrice': 140170, - 'cCondition': 0, - 'createdDate': '11/14/2017', - 'cStatus': 1, - 'cVINCode': '1FTWF3A56AE545514' - }, { - 'id': 17, - 'cModel': 'Land Cruiser', - 'cManufacture': 'Toyota', - 'cModelYear': 2008, - 'cMileage': 157019, - // tslint:disable-next-line:max-line-length - 'cDescription': `Production of the first generation Land Cruiser began in 1951 (90 units) as Toyota's version of a Jeep-like vehicle.[2][3] The Land Cruiser has been produced in convertible, hardtop, station wagon and cab chassis versions. The Land Cruiser's reliability and longevity has led to huge popularity, especially in Australia where it is the best-selling body-on-frame, four-wheel drive vehicle.[4] Toyota also extensively tests the Land Cruiser in the Australian outback – considered to be one of the toughest operating environments in both temperature and terrain. In Japan, the Land Cruiser is exclusive to Toyota Japanese dealerships called Toyota Store.`, - 'cColor': 'Crimson', - 'cPrice': 72638, - 'cCondition': 1, - 'createdDate': '08/08/2017', - 'cStatus': 1, - 'cVINCode': '3C3CFFDR2FT957799' - }, { - 'id': 18, - 'cModel': 'Wrangler', - 'cManufacture': 'Jeep', - 'cModelYear': 1994, - 'cMileage': 55857, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Jeep Wrangler is a series of compact and mid-size (Wrangler Unlimited and Wrangler 4-door JL) four-wheel drive off-road vehicle cModels, cManufactured by Jeep since 1986, and currently migrating from its third into its fourth generation. The Wrangler JL was unveiled in late 2017 and will be produced at Jeep's Toledo Complex.`, - 'cColor': 'Red', - 'cPrice': 193523, - 'cCondition': 0, - 'createdDate': '02/28/2018', - 'cStatus': 1, - 'cVINCode': '3C4PDCAB7FT652291' - }, { - 'id': 19, - 'cModel': 'Sunbird', - 'cManufacture': 'Pontiac', - 'cModelYear': 1994, - 'cMileage': 165202, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Pontiac Sunbird is an automobile that was produced by Pontiac, initially as a subcompact for the 1976 to 1980 cModel years, and later as a compact for the 1982 to 1994 cModel years. The Sunbird badge ran for 18 years (with a hiatus during the 1981 and 1982 cModel years, as the 1982 cModel was called J2000) and was then replaced in 1995 by the Pontiac Sunfire. Through the years the Sunbird was available in notchback coupé, sedan, hatchback, station wagon, and convertible body styles.`, - 'cColor': 'Blue', - 'cPrice': 198739, - 'cCondition': 0, - 'createdDate': '05/13/2017', - 'cStatus': 1, - 'cVINCode': '1GD22XEG9FZ103872' - }, { - 'id': 20, - 'cModel': 'A4', - 'cManufacture': 'Audi', - 'cModelYear': 1998, - 'cMileage': 117958, - // tslint:disable-next-line:max-line-length - 'cDescription': `The A4 has been built in five generations and is based on the Volkswagen Group B platform. The first generation A4 succeeded the Audi 80. The automaker's internal numbering treats the A4 as a continuation of the Audi 80 lineage, with the initial A4 designated as the B5-series, followed by the B6, B7, B8 and the B9. The B8 and B9 versions of the A4 are built on the Volkswagen Group MLB platform shared with many other Audi cModels and potentially one Porsche cModel within Volkswagen Group`, - 'cColor': 'Yellow', - 'cPrice': 159377, - 'cCondition': 0, - 'createdDate': '12/15/2017', - 'cStatus': 1, - 'cVINCode': '2C3CDXCT2FH350366' - }, { - 'id': 21, - 'cModel': 'Camry Solara', - 'cManufacture': 'Toyota', - 'cModelYear': 2006, - 'cMileage': 22436, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Toyota Camry Solara, popularly known as the Toyota Solara, is a mid-size coupe/convertible built by Toyota. The Camry Solara is mechanically based on the Toyota Camry and effectively replaced the discontinued Camry Coupe (XV10); however, in contrast with its predecessor's conservative design, the Camry Solara was designed with a greater emphasis on sportiness, with more rakish styling, and uprated suspension and engine tuning intended to provide a sportier feel.[5] The coupe was launched in late 1998 as a 1999 cModel.[1] In 2000, the convertible was introduced, effectively replacing the Celica convertible in Toyota's North American lineup`, - 'cColor': 'Green', - 'cPrice': 122562, - 'cCondition': 0, - 'createdDate': '07/11/2017', - 'cStatus': 0, - 'cVINCode': '3C3CFFHH6DT874066' - }, { - 'id': 22, - 'cModel': 'Tribeca', - 'cManufacture': 'Subaru', - 'cModelYear': 2007, - 'cMileage': 127958, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Subaru Tribeca is a mid-size crossover SUV made from 2005 to 2014. Released in some markets, including Canada, as the Subaru B9 Tribeca, the name "Tribeca" derives from the Tribeca neighborhood of New York City.[1] Built on the Subaru Legacy platform and sold in five- and seven-seat configurations, the Tribeca was intended to be sold alongside a slightly revised version known as the Saab 9-6. Saab, at the time a subsidiary of General Motors (GM), abandoned the 9-6 program just prior to its release subsequent to GM's 2005 divestiture of its 20 percent stake in FHI.`, - 'cColor': 'Yellow', - 'cPrice': 90221, - 'cCondition': 1, - 'createdDate': '11/12/2017', - 'cStatus': 0, - 'cVINCode': 'WVWGU7AN9AE957575' - }, { - 'id': 23, - 'cModel': '1500 Club Coupe', - 'cManufacture': 'GMC', - 'cModelYear': 1997, - 'cMileage': 95783, - // tslint:disable-next-line:max-line-length - 'cDescription': `GMC (General Motors Truck Company), formally the GMC Division of General Motors LLC, is a division of the American automobile cManufacturer General Motors (GM) that primarily focuses on trucks and utility vehicles. GMC sells pickup and commercial trucks, buses, vans, military vehicles, and sport utility vehicles marketed worldwide by General Motors.`, - 'cColor': 'Teal', - 'cPrice': 64376, - 'cCondition': 1, - 'createdDate': '06/28/2017', - 'cStatus': 0, - 'cVINCode': 'SCFBF04BX7G920997' - }, { - 'id': 24, - 'cModel': 'Firebird', - 'cManufacture': 'Pontiac', - 'cModelYear': 2002, - 'cMileage': 74063, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Pontiac Firebird is an American automobile built by Pontiac from the 1967 to the 2002 cModel years. Designed as a pony car to compete with the Ford Mustang, it was introduced 23 February 1967, the same cModel year as GM's Chevrolet division platform-sharing Camaro.[1] This also coincided with the release of the 1967 Mercury Cougar, Ford's upscale, platform-sharing version of the Mustang. The name "Firebird" was also previously used by GM for the General Motors Firebird 1950s and early-1960s`, - 'cColor': 'Puce', - 'cPrice': 94178, - 'cCondition': 1, - 'createdDate': '09/13/2017', - 'cStatus': 0, - 'cVINCode': '3C63D2JL5CG563879' - }, { - 'id': 25, - 'cModel': 'RAV4', - 'cManufacture': 'Toyota', - 'cModelYear': 1996, - 'cMileage': 99461, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Toyota RAV4 (Japanese: トヨタ RAV4 Toyota Ravufō) is a compact crossover SUV (sport utility vehicle) produced by the Japanese automobile cManufacturer Toyota. This was the first compact crossover SUV;[1] it made its debut in Japan and Europe in 1994,[2] and in North America in 1995. The vehicle was designed for consumers wanting a vehicle that had most of the benefits of SUVs, such as increased cargo room, higher visibility, and the option of full-time four-wheel drive, along with the maneuverability and fuel economy of a compact car. Although not all RAV4s are four-wheel-drive, RAV4 stands for "Recreational Activity Vehicle: 4-wheel drive", because the aforementioned equipment is an option in select countries`, - 'cColor': 'Goldenrod', - 'cPrice': 48342, - 'cCondition': 0, - 'createdDate': '12/29/2017', - 'cStatus': 0, - 'cVINCode': '2C4RDGDG6DR836144' - }, { - 'id': 26, - 'cModel': 'Amanti / Opirus', - 'cManufacture': 'Kia', - 'cModelYear': 2007, - 'cMileage': 189651, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Kia Opirus was an executive car cManufactured and marketed by Kia Motors that was launched in April 2003 and was marketed globally under various nameplates, prominently as the Amanti. It was considered to be Kia's flagship vehicle.`, - 'cColor': 'Indigo', - 'cPrice': 44292, - 'cCondition': 1, - 'createdDate': '09/01/2017', - 'cStatus': 1, - 'cVINCode': '1C4SDHCT2CC055294' - }, { - 'id': 27, - 'cModel': 'S60', - 'cManufacture': 'Volvo', - 'cModelYear': 2001, - 'cMileage': 78963, - // tslint:disable-next-line:max-line-length - 'cDescription': `First introduced in 2004, Volvo's S60 R used a Haldex all-wheel-drive system mated to a 300 PS (221 kW; 296 hp) / 400 N⋅m (300 lbf⋅ft) inline-5. The 2004–2005 cModels came with a 6-speed manual transmission, or an available 5-speed automatic which allowed only 258 lb⋅ft (350 N⋅m) torque in 1st and 2nd gears. The 2006–2007 cModels came with a 6-speed manual or 6-speed automatic transmission (which was no longer torque-restricted)`, - 'cColor': 'Goldenrod', - 'cPrice': 9440, - 'cCondition': 0, - 'createdDate': '11/06/2017', - 'cStatus': 0, - 'cVINCode': '3C6TD5CT5CG316067', - }, { - 'id': 28, - 'cModel': 'Grand Marquis', - 'cManufacture': 'Mercury', - 'cModelYear': 1984, - 'cMileage': 153027, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Mercury Grand Marquis is an automobile that was sold by the Mercury division of Ford Motor Company from 1975 to 2011. From 1975 to 1982, it was the premium cModel of the Mercury Marquis cModel line, becoming a standalone cModel line in 1983. For its entire production run, the Grand Marquis served as the flagship of the Mercury line, with the Ford (LTD) Crown Victoria serving as its Ford counterpart. In addition, from 1979 to 2011, the Grand Marquis shared the rear-wheel drive Panther platform alongside the Lincoln Town Car`, - 'cColor': 'Goldenrod', - 'cPrice': 76027, - 'cCondition': 0, - 'createdDate': '12/16/2017', - 'cStatus': 1, - 'cVINCode': '3C3CFFJH2DT871398' - }, { - 'id': 29, - 'cModel': 'Talon', - 'cManufacture': 'Eagle', - 'cModelYear': 1991, - 'cMileage': 111234, - // tslint:disable-next-line:max-line-length - 'cDescription': `Cosmetically, differences between the three were found in wheels, availability of cColors, tail lights, front and rear bumpers, and spoilers. The Talon featured two-tone body cColor with a black 'greenhouse' (roof, pillars, door-mounted mirrors) regardless of the body cColor. The variants featured 5-speed manual or 4-speed automatic transmissions and a hood bulge on the left-hand side of the car in order for camshaft clearance on the 4G63 engine. The base cModel DL did not use this engine but still had a bulge as evident in the 1992 Talon brochure. 2nd Generation cars all had such a bulge, even with the inclusion of the 420A engine`, - 'cColor': 'Teal', - 'cPrice': 157216, - 'cCondition': 0, - 'createdDate': '05/08/2017', - 'cStatus': 1, - 'cVINCode': 'YV1902FH1D2957659' - }, { - 'id': 30, - 'cModel': 'Passport', - 'cManufacture': 'Honda', - 'cModelYear': 2002, - 'cMileage': 3812, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Passport was a part of a partnership between Isuzu and Honda in the 1990s, which saw an exchange of passenger vehicles from Honda to Isuzu, such as the Isuzu Oasis, and trucks from Isuzu to Honda, such as the Passport and Acura SLX. This arrangement was convenient for both companies, as Isuzu discontinued passenger car production in 1993 after a corporate restructuring, and Honda was in desperate need a SUV, a segment that was growing in popularity in North America as well as Japan during the 1990s. The partnership ended in 2002 with the discontinuation of the Passport in favor of the Honda-engineered Pilot`, - 'cColor': 'Puce', - 'cPrice': 41299, - 'cCondition': 1, - 'createdDate': '03/08/2018', - 'cStatus': 0, - 'cVINCode': 'WVWEU9AN4AE524071' - }, { - 'id': 31, - 'cModel': 'H3', - 'cManufacture': 'Hummer', - 'cModelYear': 2006, - 'cMileage': 196321, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Hummer H3 is a sport utility vehicle/off-road vehicle from Hummer that was produced from 2005 to 2010. Introduced for the 2006 cModel year, it was based on a highly modified GMT355 underpinning the Chevrolet cColorado/GMC Canyon compact pickup trucks that were also built at GM's Shreveport Operations in Shreveport, Louisiana and the Port Elizabeth plant in South Africa. The H3 was actually the smallest among the Hummer cModels. It was available either as a traditional midsize SUV or as a midsize pickup known as the H3T`, - 'cColor': 'Pink', - 'cPrice': 186964, - 'cCondition': 1, - 'createdDate': '06/04/2017', - 'cStatus': 1, - 'cVINCode': '4T1BF1FK4FU746230', - }, { - 'id': 32, - 'cModel': 'Comanche', - 'cManufacture': 'Jeep', - 'cModelYear': 1992, - 'cMileage': 72285, - // tslint:disable-next-line:max-line-length - 'cDescription': `The Jeep Comanche (designated MJ) is a pickup truck variant of the Cherokee compact SUV (1984–2001)[3] cManufactured and marketed by Jeep for cModel years 1986-1992 in rear wheel (RWD) and four-wheel drive (4WD) cModels as well as two cargo bed lengths: six-feet (1.83 metres) and seven-feet (2.13 metres)`, - 'cColor': 'Mauv', - 'cPrice': 145971, - 'cCondition': 1, - 'createdDate': '09/01/2017', - 'cStatus': 0, - 'cVINCode': '1J4PN2GK1BW745045' - }, { - 'id': 33, - 'cModel': 'Blazer', - 'cManufacture': 'Chevrolet', - 'cModelYear': 1993, - 'cMileage': 189804, - // tslint:disable-next-line:max-line-length - 'cDescription': `The 2014 – 2nd generation, MY14 Duramax 2.8L diesel engines have several new parts, namely a new water-cooled variable-geometry turbocharger, a new high-pressure common-rail fuel delivery system, a new exhaust gas recirculation (EGR) system, a new intake manifold, a new cylinder head, a new cylinder block, a new balance shaft unit and a new Engine Control Module (ECM). and now produce 197 hp and 369 Ft/Lbs of torque`, - 'cColor': 'Indigo', - 'cPrice': 154594, - 'cCondition': 0, - 'createdDate': '09/13/2017', - 'cStatus': 0, - 'cVINCode': '1G6KD57Y43U482896' - }, { - 'id': 34, - 'cModel': 'Envoy XUV', - 'cManufacture': 'GMC', - 'cModelYear': 2004, - 'cMileage': 187960, - // tslint:disable-next-line:max-line-length - 'cDescription': `The GMC Envoy is a mid-size SUV that was produced by General Motors. It was introduced for the 1998 cModel year. After the first generation Envoy was discontinued after the 2000 cModel year, but the Envoy was reintroduced and redesigned for the 2002 cModel year, and it was available in the GMC line of vehicles from the 2002 to 2009 cModel years`, - 'cColor': 'Turquoise', - 'cPrice': 185103, - 'cCondition': 1, - 'createdDate': '12/07/2017', - 'cStatus': 0, - 'cVINCode': '5GAER23D09J658030' - } + id: 1, + cModel: 'Elise', + cManufacture: 'Lotus', + cModelYear: 2004, + cMileage: 116879, + // tslint:disable-next-line:max-line-length + cDescription: `The Lotus Elise first appeared in 1996 and revolutionised small sports car design with its lightweight extruded aluminium chassis and composite body. There have been many variations, but the basic principle remain the same.`, + cColor: 'Red', + cPrice: 18347, + cCondition: 1, + createdDate: '09/30/2017', + cStatus: 0, + cVINCode: '1FTWX3D52AE575540', + }, + { + id: 2, + cModel: 'Sunbird', + cManufacture: 'Pontiac', + cModelYear: 1984, + cMileage: 99515, + // tslint:disable-next-line:max-line-length + cDescription: `The Pontiac Sunbird is an automobile that was produced by Pontiac, initially as a subcompact for the 1976 to 1980 cModel years,and later as a compact for the 1982 to 1994 cModel years. The Sunbird badge ran for 18 years (with a hiatus during the 1981 and 1982 cModel years, as the 1982 cModel was called J2000) and was then replaced in 1995 by the Pontiac Sunfire. Through the years the Sunbird was available in notchback coupé, sedan, hatchback, station wagon, and convertible body styles.`, + cColor: 'Khaki', + cPrice: 165956, + cCondition: 0, + createdDate: '03/22/2018', + cStatus: 1, + cVINCode: 'JM1NC2EF8A0293556', + }, + { + id: 3, + cModel: 'Amigo', + cManufacture: 'Isuzu', + cModelYear: 1993, + cMileage: 138027, + // tslint:disable-next-line:max-line-length + cDescription: `The Isuzu MU is a mid-size SUV that was produced by the Japan-based cManufacturer Isuzu. The three-door MU was introduced in 1989, followed in 1990 by the five-door version called Isuzu MU Wizard, both of which stopped production in 1998 to be replaced by a second generation. This time, the five-door version dropped the "MU" prefix, to become the Isuzu Wizard. The acronym "MU" is short for "Mysterious Utility". Isuzu cManufactured several variations to the MU and its derivates for sale in other countries.`, + cColor: 'Aquamarine', + cPrice: 45684, + cCondition: 0, + createdDate: '03/06/2018', + cStatus: 0, + cVINCode: '1G6DG8E56C0973889', + }, + { + id: 4, + cModel: 'LS', + cManufacture: 'Lexus', + cModelYear: 2004, + cMileage: 183068, + // tslint:disable-next-line:max-line-length + cDescription: `The Lexus LS (Japanese: レクサス・LS, Rekusasu LS) is a full-size luxury car (F-segment in Europe) serving as the flagship cModel of Lexus, the luxury division of Toyota. For the first four generations, all LS cModels featured V8 engines and were predominantly rear-wheel-drive, with Lexus also offering all-wheel-drive, hybrid, and long-wheelbase variants. The fifth generation changed to using a V6 engine with no V8 option, and the long wheelbase variant was removed entirely.`, + cColor: 'Mauv', + cPrice: 95410, + cCondition: 1, + createdDate: '02/03/2018', + cStatus: 1, + cVINCode: '2T1BU4EE6DC859114', + }, + { + id: 5, + cModel: 'Paseo', + cManufacture: 'Toyota', + cModelYear: 1997, + cMileage: 74884, + // tslint:disable-next-line:max-line-length + cDescription: `The Toyota Paseo (known as the Cynos in Japan and other regions) is a sports styled compact car sold from 1991–1999 and was loosely based on the Tercel. It was available as a coupe and in later cModels as a convertible. Toyota stopped selling the car in the United States in 1997, however the car continued to be sold in Canada, Europe and Japan until 1999, but had no direct replacement. The Paseo, like the Tercel, shares a platform with the Starlet. Several parts are interchangeable between the three`, + cColor: 'Pink', + cPrice: 24796, + cCondition: 1, + createdDate: '08/13/2017', + cStatus: 0, + cVINCode: '1D7RB1GP0AS597432', + }, + { + id: 6, + cModel: 'M', + cManufacture: 'Infiniti', + cModelYear: 2009, + cMileage: 194846, + // tslint:disable-next-line:max-line-length + cDescription: `The Infiniti M is a line of mid-size luxury (executive) cars from the Infiniti luxury division of Nissan.\r\nThe first iteration was the M30 Coupe/Convertible, which were rebadged JDM Nissan Leopard.\r\nAfter a long hiatus, the M nameplate was used for Infiniti's mid-luxury sedans (executive cars). First was the short-lived M45 sedan, a rebadged version of the Japanese-spec Nissan Gloria. The next generations, the M35/45 and M37/56/35h/30d, became the flagship of the Infiniti brand and are based on the JDM Nissan Fuga.`, + cColor: 'Puce', + cPrice: 30521, + cCondition: 1, + createdDate: '01/27/2018', + cStatus: 0, + cVINCode: 'YV1940AS1D1542424', + }, + { + id: 7, + cModel: 'Phantom', + cManufacture: 'Rolls-Royce', + cModelYear: 2008, + cMileage: 164124, + // tslint:disable-next-line:max-line-length + cDescription: `The Rolls-Royce Phantom VIII is a luxury saloon car cManufactured by Rolls-Royce Motor Cars. It is the eighth and current generation of Rolls-Royce Phantom, and the second launched by Rolls-Royce under BMW ownership. It is offered in two wheelbase lengths`, + cColor: 'Purple', + cPrice: 196247, + cCondition: 1, + createdDate: '09/28/2017', + cStatus: 1, + cVINCode: '3VWML7AJ1DM234625', + }, + { + id: 8, + cModel: 'QX', + cManufacture: 'Infiniti', + cModelYear: 2002, + cMileage: 57410, + // tslint:disable-next-line:max-line-length + cDescription: `The Infiniti QX80 (called the Infiniti QX56 until 2013) is a full-size luxury SUV built by Nissan Motor Company's Infiniti division. The naming convention originally adhered to the current trend of using a numeric designation derived from the engine's displacement, thus QX56 since the car has a 5.6-liter engine. From the 2014 cModel year, the car was renamed the QX80, as part of Infiniti's cModel name rebranding. The new name carries no meaning beyond suggesting that the vehicle is larger than smaller cModels such as the QX60`, + cColor: 'Green', + cPrice: 185775, + cCondition: 1, + createdDate: '11/15/2017', + cStatus: 0, + cVINCode: 'WDDHF2EB9CA161524', + }, + { + id: 9, + cModel: 'Daytona', + cManufacture: 'Dodge', + cModelYear: 1993, + cMileage: 4444, + // tslint:disable-next-line:max-line-length + cDescription: `The Dodge Daytona was an automobile which was produced by the Chrysler Corporation under their Dodge division from 1984 to 1993. It was a front-wheel drive hatchback based on the Chrysler G platform, which was derived from the Chrysler K platform. The Chrysler Laser was an upscale rebadged version of the Daytona. The Daytona was restyled for 1987, and again for 1992. It replaced the Mitsubishi Galant-based Challenger, and slotted between the Charger and the Conquest. The Daytona was replaced by the 1995 Dodge Avenger, which was built by Mitsubishi Motors. The Daytona derives its name mainly from the Dodge Charger Daytona, which itself was named after the Daytona 500 race in Daytona Beach, Florida.`, + cColor: 'Maroon', + cPrice: 171898, + cCondition: 0, + createdDate: '12/24/2017', + cStatus: 1, + cVINCode: 'WBAET37422N752051', + }, + { + id: 10, + cModel: '1500 Silverado', + cManufacture: 'Chevrolet', + cModelYear: 1999, + cMileage: 195310, + // tslint:disable-next-line:max-line-length + cDescription: `The Chevrolet Silverado, and its mechanically identical cousin, the GMC Sierra, are a series of full-size and heavy-duty pickup trucks cManufactured by General Motors and introduced in 1998 as the successor to the long-running Chevrolet C/K line. The Silverado name was taken from a trim level previously used on its predecessor, the Chevrolet C/K pickup truck from 1975 through 1998. General Motors continues to offer a GMC-badged variant of the Chevrolet full-size pickup under the GMC Sierra name, first used in 1987 for its variant of the GMT400 platform trucks.`, + cColor: 'Blue', + cPrice: 25764, + cCondition: 0, + createdDate: '08/30/2017', + cStatus: 1, + cVINCode: '1N6AF0LX6EN590806', + }, + { + id: 11, + cModel: 'CTS', + cManufacture: 'Cadillac', + cModelYear: 2012, + cMileage: 170862, + // tslint:disable-next-line:max-line-length + cDescription: `The Cadillac CTS is a mid-size luxury car / executive car designed, engineered, cManufactured and marketed by General Motors, and now in its third generation. \r\nInitially available only as a 4-door sedan on the GM Sigma platform, GM had offered the second generation CTS in three body styles: 4-door sedan, 2-door coupe, and 5-door sport wagon also using the Sigma platform — and the third generation in coupe and sedan configurations, using a stretched version of the GM Alpha platform.\r\nWayne Cherry and Kip Wasenko designed the exterior of the first generation CTS, marking the production debut of a design language (marketed as "Art and Science") first seen on the Evoq concept car. Bob Boniface and Robin Krieg designed the exterior of the third generation CTS`, + cColor: 'Crimson', + cPrice: 80588, + cCondition: 0, + createdDate: '02/15/2018', + cStatus: 0, + cVINCode: '1G4HR54KX4U506530', + }, + { + id: 12, + cModel: 'Astro', + cManufacture: 'Chevrolet', + cModelYear: 1995, + cMileage: 142137, + // tslint:disable-next-line:max-line-length + cDescription: `The Chevrolet Astro was a rear-wheel drive van/minivan cManufactured and marketed by the American automaker Chevrolet from 1985 to 2005 and over two build generations. Along with its rebadged variant, the GMC Safari, the Astro was marketed in passenger as well as cargo and livery configurations—featuring a V6 engine, unibody construction with a separate front engine/suspension sub-frame, leaf-spring rear suspension, rear bi-parting doors, and a seating capacity of up to eight passengers`, + cColor: 'Teal', + cPrice: 72430, + cCondition: 1, + createdDate: '07/31/2017', + cStatus: 0, + cVINCode: 'KMHGH4JH2DU676107', + }, + { + id: 13, + cModel: 'XL7', + cManufacture: 'Suzuki', + cModelYear: 2009, + cMileage: 165165, + // tslint:disable-next-line:max-line-length + cDescription: `The Suzuki XL-7 (styled as XL7 for the second generation) is Suzuki's mid-sized SUV that was made from 1998 to 2009, over two generations. It was slotted above the Grand Vitara in Suzuki's lineup.`, + cColor: 'Puce', + cPrice: 118667, + cCondition: 0, + createdDate: '02/04/2018', + cStatus: 0, + cVINCode: '1N6AF0LX9EN733005', + }, + { + id: 14, + cModel: 'SJ 410', + cManufacture: 'Suzuki', + cModelYear: 1984, + cMileage: 176074, + // tslint:disable-next-line:max-line-length + cDescription: `The SJ-Series was introduced to the United States (Puerto Rico (SJ-410) and Canada earlier) in 1985 for the 1986 cModel year. It was cPriced at $6200 and 47,000 were sold in its first year. The Samurai had a 1.3 liter, 63 hp (47 kW), 4-cylinder engine and was available as a convertible or a hardtop, and with or without a rear seat. The Suzuki Samurai became intensely popular within the serious 4WD community for its good off-road performance and reliability compared to other 4WDs of the time. This is due to the fact that while very compact and light, it is a real 4WD vehicle equipped with a transfer case, switchable 4WD and low range. Its lightness makes it a very nimble off-roader less prone to sinking in softer ground than heavier types. It is also considered a great beginner off-roader due to its simple design and ease of engine and suspension modifications.`, + cColor: 'Orange', + cPrice: 84325, + cCondition: 0, + createdDate: '12/22/2017', + cStatus: 0, + cVINCode: '2C3CDYBT6DH183756', + }, + { + id: 15, + cModel: 'F-Series', + cManufacture: 'Ford', + cModelYear: 1995, + cMileage: 53030, + // tslint:disable-next-line:max-line-length + cDescription: `The Ford F-Series is a series of light-duty trucks and medium-duty trucks (Class 2-7) that have been marketed and cManufactured by Ford Motor Company since 1948. While most variants of the F-Series trucks are full-size pickup trucks, the F-Series also includes chassis cab trucks and commercial vehicles. The Ford F-Series has been the best-selling vehicle in the United States since 1986 and the best-selling pickup since 1977.[1][2] It is also the best selling vehicle in Canada.[3] As of the 2018 cModel year, the F-Series generates $41.0 billion in annual revenue for Ford, making the F-Series brand more valuable than Coca-Cola and Nike.`, + cColor: 'Aquamarine', + cPrice: 77108, + cCondition: 0, + createdDate: '01/09/2018', + cStatus: 0, + cVINCode: 'WBAVB33526P873481', + }, + { + id: 16, + cModel: 'HS', + cManufacture: 'Lexus', + cModelYear: 2011, + cMileage: 84718, + // tslint:disable-next-line:max-line-length + cDescription: `The Lexus HS (Japanese: レクサス・HS, Rekusasu HS) is a dedicated hybrid vehicle introduced by Lexus as a new entry-level luxury compact sedan in 2009.[2] Built on the Toyota New MC platform,[3] it is classified as a compact under Japanese regulations concerning vehicle exterior dimensions and engine displacement. Unveiled at the North American International Auto Show in January 2009, the HS 250h went on sale in July 2009 in Japan, followed by the United States in August 2009 as a 2010 cModel. The HS 250h represented the first dedicated hybrid vehicle in the Lexus lineup, as well as the first offered with an inline-four gasoline engine.[4] Bioplastic materials are used for the vehicle interior.[5] With a total length of 184.8 inches, the Lexus HS is slightly larger than the Lexus IS, but still smaller than the mid-size Lexus ES.`, + cColor: 'Purple', + cPrice: 140170, + cCondition: 0, + createdDate: '11/14/2017', + cStatus: 1, + cVINCode: '1FTWF3A56AE545514', + }, + { + id: 17, + cModel: 'Land Cruiser', + cManufacture: 'Toyota', + cModelYear: 2008, + cMileage: 157019, + // tslint:disable-next-line:max-line-length + cDescription: `Production of the first generation Land Cruiser began in 1951 (90 units) as Toyota's version of a Jeep-like vehicle.[2][3] The Land Cruiser has been produced in convertible, hardtop, station wagon and cab chassis versions. The Land Cruiser's reliability and longevity has led to huge popularity, especially in Australia where it is the best-selling body-on-frame, four-wheel drive vehicle.[4] Toyota also extensively tests the Land Cruiser in the Australian outback – considered to be one of the toughest operating environments in both temperature and terrain. In Japan, the Land Cruiser is exclusive to Toyota Japanese dealerships called Toyota Store.`, + cColor: 'Crimson', + cPrice: 72638, + cCondition: 1, + createdDate: '08/08/2017', + cStatus: 1, + cVINCode: '3C3CFFDR2FT957799', + }, + { + id: 18, + cModel: 'Wrangler', + cManufacture: 'Jeep', + cModelYear: 1994, + cMileage: 55857, + // tslint:disable-next-line:max-line-length + cDescription: `The Jeep Wrangler is a series of compact and mid-size (Wrangler Unlimited and Wrangler 4-door JL) four-wheel drive off-road vehicle cModels, cManufactured by Jeep since 1986, and currently migrating from its third into its fourth generation. The Wrangler JL was unveiled in late 2017 and will be produced at Jeep's Toledo Complex.`, + cColor: 'Red', + cPrice: 193523, + cCondition: 0, + createdDate: '02/28/2018', + cStatus: 1, + cVINCode: '3C4PDCAB7FT652291', + }, + { + id: 19, + cModel: 'Sunbird', + cManufacture: 'Pontiac', + cModelYear: 1994, + cMileage: 165202, + // tslint:disable-next-line:max-line-length + cDescription: `The Pontiac Sunbird is an automobile that was produced by Pontiac, initially as a subcompact for the 1976 to 1980 cModel years, and later as a compact for the 1982 to 1994 cModel years. The Sunbird badge ran for 18 years (with a hiatus during the 1981 and 1982 cModel years, as the 1982 cModel was called J2000) and was then replaced in 1995 by the Pontiac Sunfire. Through the years the Sunbird was available in notchback coupé, sedan, hatchback, station wagon, and convertible body styles.`, + cColor: 'Blue', + cPrice: 198739, + cCondition: 0, + createdDate: '05/13/2017', + cStatus: 1, + cVINCode: '1GD22XEG9FZ103872', + }, + { + id: 20, + cModel: 'A4', + cManufacture: 'Audi', + cModelYear: 1998, + cMileage: 117958, + // tslint:disable-next-line:max-line-length + cDescription: `The A4 has been built in five generations and is based on the Volkswagen Group B platform. The first generation A4 succeeded the Audi 80. The automaker's internal numbering treats the A4 as a continuation of the Audi 80 lineage, with the initial A4 designated as the B5-series, followed by the B6, B7, B8 and the B9. The B8 and B9 versions of the A4 are built on the Volkswagen Group MLB platform shared with many other Audi cModels and potentially one Porsche cModel within Volkswagen Group`, + cColor: 'Yellow', + cPrice: 159377, + cCondition: 0, + createdDate: '12/15/2017', + cStatus: 1, + cVINCode: '2C3CDXCT2FH350366', + }, + { + id: 21, + cModel: 'Camry Solara', + cManufacture: 'Toyota', + cModelYear: 2006, + cMileage: 22436, + // tslint:disable-next-line:max-line-length + cDescription: `The Toyota Camry Solara, popularly known as the Toyota Solara, is a mid-size coupe/convertible built by Toyota. The Camry Solara is mechanically based on the Toyota Camry and effectively replaced the discontinued Camry Coupe (XV10); however, in contrast with its predecessor's conservative design, the Camry Solara was designed with a greater emphasis on sportiness, with more rakish styling, and uprated suspension and engine tuning intended to provide a sportier feel.[5] The coupe was launched in late 1998 as a 1999 cModel.[1] In 2000, the convertible was introduced, effectively replacing the Celica convertible in Toyota's North American lineup`, + cColor: 'Green', + cPrice: 122562, + cCondition: 0, + createdDate: '07/11/2017', + cStatus: 0, + cVINCode: '3C3CFFHH6DT874066', + }, + { + id: 22, + cModel: 'Tribeca', + cManufacture: 'Subaru', + cModelYear: 2007, + cMileage: 127958, + // tslint:disable-next-line:max-line-length + cDescription: `The Subaru Tribeca is a mid-size crossover SUV made from 2005 to 2014. Released in some markets, including Canada, as the Subaru B9 Tribeca, the name "Tribeca" derives from the Tribeca neighborhood of New York City.[1] Built on the Subaru Legacy platform and sold in five- and seven-seat configurations, the Tribeca was intended to be sold alongside a slightly revised version known as the Saab 9-6. Saab, at the time a subsidiary of General Motors (GM), abandoned the 9-6 program just prior to its release subsequent to GM's 2005 divestiture of its 20 percent stake in FHI.`, + cColor: 'Yellow', + cPrice: 90221, + cCondition: 1, + createdDate: '11/12/2017', + cStatus: 0, + cVINCode: 'WVWGU7AN9AE957575', + }, + { + id: 23, + cModel: '1500 Club Coupe', + cManufacture: 'GMC', + cModelYear: 1997, + cMileage: 95783, + // tslint:disable-next-line:max-line-length + cDescription: `GMC (General Motors Truck Company), formally the GMC Division of General Motors LLC, is a division of the American automobile cManufacturer General Motors (GM) that primarily focuses on trucks and utility vehicles. GMC sells pickup and commercial trucks, buses, vans, military vehicles, and sport utility vehicles marketed worldwide by General Motors.`, + cColor: 'Teal', + cPrice: 64376, + cCondition: 1, + createdDate: '06/28/2017', + cStatus: 0, + cVINCode: 'SCFBF04BX7G920997', + }, + { + id: 24, + cModel: 'Firebird', + cManufacture: 'Pontiac', + cModelYear: 2002, + cMileage: 74063, + // tslint:disable-next-line:max-line-length + cDescription: `The Pontiac Firebird is an American automobile built by Pontiac from the 1967 to the 2002 cModel years. Designed as a pony car to compete with the Ford Mustang, it was introduced 23 February 1967, the same cModel year as GM's Chevrolet division platform-sharing Camaro.[1] This also coincided with the release of the 1967 Mercury Cougar, Ford's upscale, platform-sharing version of the Mustang. The name "Firebird" was also previously used by GM for the General Motors Firebird 1950s and early-1960s`, + cColor: 'Puce', + cPrice: 94178, + cCondition: 1, + createdDate: '09/13/2017', + cStatus: 0, + cVINCode: '3C63D2JL5CG563879', + }, + { + id: 25, + cModel: 'RAV4', + cManufacture: 'Toyota', + cModelYear: 1996, + cMileage: 99461, + // tslint:disable-next-line:max-line-length + cDescription: `The Toyota RAV4 (Japanese: トヨタ RAV4 Toyota Ravufō) is a compact crossover SUV (sport utility vehicle) produced by the Japanese automobile cManufacturer Toyota. This was the first compact crossover SUV;[1] it made its debut in Japan and Europe in 1994,[2] and in North America in 1995. The vehicle was designed for consumers wanting a vehicle that had most of the benefits of SUVs, such as increased cargo room, higher visibility, and the option of full-time four-wheel drive, along with the maneuverability and fuel economy of a compact car. Although not all RAV4s are four-wheel-drive, RAV4 stands for "Recreational Activity Vehicle: 4-wheel drive", because the aforementioned equipment is an option in select countries`, + cColor: 'Goldenrod', + cPrice: 48342, + cCondition: 0, + createdDate: '12/29/2017', + cStatus: 0, + cVINCode: '2C4RDGDG6DR836144', + }, + { + id: 26, + cModel: 'Amanti / Opirus', + cManufacture: 'Kia', + cModelYear: 2007, + cMileage: 189651, + // tslint:disable-next-line:max-line-length + cDescription: `The Kia Opirus was an executive car cManufactured and marketed by Kia Motors that was launched in April 2003 and was marketed globally under various nameplates, prominently as the Amanti. It was considered to be Kia's flagship vehicle.`, + cColor: 'Indigo', + cPrice: 44292, + cCondition: 1, + createdDate: '09/01/2017', + cStatus: 1, + cVINCode: '1C4SDHCT2CC055294', + }, + { + id: 27, + cModel: 'S60', + cManufacture: 'Volvo', + cModelYear: 2001, + cMileage: 78963, + // tslint:disable-next-line:max-line-length + cDescription: `First introduced in 2004, Volvo's S60 R used a Haldex all-wheel-drive system mated to a 300 PS (221 kW; 296 hp) / 400 N⋅m (300 lbf⋅ft) inline-5. The 2004–2005 cModels came with a 6-speed manual transmission, or an available 5-speed automatic which allowed only 258 lb⋅ft (350 N⋅m) torque in 1st and 2nd gears. The 2006–2007 cModels came with a 6-speed manual or 6-speed automatic transmission (which was no longer torque-restricted)`, + cColor: 'Goldenrod', + cPrice: 9440, + cCondition: 0, + createdDate: '11/06/2017', + cStatus: 0, + cVINCode: '3C6TD5CT5CG316067', + }, + { + id: 28, + cModel: 'Grand Marquis', + cManufacture: 'Mercury', + cModelYear: 1984, + cMileage: 153027, + // tslint:disable-next-line:max-line-length + cDescription: `The Mercury Grand Marquis is an automobile that was sold by the Mercury division of Ford Motor Company from 1975 to 2011. From 1975 to 1982, it was the premium cModel of the Mercury Marquis cModel line, becoming a standalone cModel line in 1983. For its entire production run, the Grand Marquis served as the flagship of the Mercury line, with the Ford (LTD) Crown Victoria serving as its Ford counterpart. In addition, from 1979 to 2011, the Grand Marquis shared the rear-wheel drive Panther platform alongside the Lincoln Town Car`, + cColor: 'Goldenrod', + cPrice: 76027, + cCondition: 0, + createdDate: '12/16/2017', + cStatus: 1, + cVINCode: '3C3CFFJH2DT871398', + }, + { + id: 29, + cModel: 'Talon', + cManufacture: 'Eagle', + cModelYear: 1991, + cMileage: 111234, + // tslint:disable-next-line:max-line-length + cDescription: `Cosmetically, differences between the three were found in wheels, availability of cColors, tail lights, front and rear bumpers, and spoilers. The Talon featured two-tone body cColor with a black 'greenhouse' (roof, pillars, door-mounted mirrors) regardless of the body cColor. The variants featured 5-speed manual or 4-speed automatic transmissions and a hood bulge on the left-hand side of the car in order for camshaft clearance on the 4G63 engine. The base cModel DL did not use this engine but still had a bulge as evident in the 1992 Talon brochure. 2nd Generation cars all had such a bulge, even with the inclusion of the 420A engine`, + cColor: 'Teal', + cPrice: 157216, + cCondition: 0, + createdDate: '05/08/2017', + cStatus: 1, + cVINCode: 'YV1902FH1D2957659', + }, + { + id: 30, + cModel: 'Passport', + cManufacture: 'Honda', + cModelYear: 2002, + cMileage: 3812, + // tslint:disable-next-line:max-line-length + cDescription: `The Passport was a part of a partnership between Isuzu and Honda in the 1990s, which saw an exchange of passenger vehicles from Honda to Isuzu, such as the Isuzu Oasis, and trucks from Isuzu to Honda, such as the Passport and Acura SLX. This arrangement was convenient for both companies, as Isuzu discontinued passenger car production in 1993 after a corporate restructuring, and Honda was in desperate need a SUV, a segment that was growing in popularity in North America as well as Japan during the 1990s. The partnership ended in 2002 with the discontinuation of the Passport in favor of the Honda-engineered Pilot`, + cColor: 'Puce', + cPrice: 41299, + cCondition: 1, + createdDate: '03/08/2018', + cStatus: 0, + cVINCode: 'WVWEU9AN4AE524071', + }, + { + id: 31, + cModel: 'H3', + cManufacture: 'Hummer', + cModelYear: 2006, + cMileage: 196321, + // tslint:disable-next-line:max-line-length + cDescription: `The Hummer H3 is a sport utility vehicle/off-road vehicle from Hummer that was produced from 2005 to 2010. Introduced for the 2006 cModel year, it was based on a highly modified GMT355 underpinning the Chevrolet cColorado/GMC Canyon compact pickup trucks that were also built at GM's Shreveport Operations in Shreveport, Louisiana and the Port Elizabeth plant in South Africa. The H3 was actually the smallest among the Hummer cModels. It was available either as a traditional midsize SUV or as a midsize pickup known as the H3T`, + cColor: 'Pink', + cPrice: 186964, + cCondition: 1, + createdDate: '06/04/2017', + cStatus: 1, + cVINCode: '4T1BF1FK4FU746230', + }, + { + id: 32, + cModel: 'Comanche', + cManufacture: 'Jeep', + cModelYear: 1992, + cMileage: 72285, + // tslint:disable-next-line:max-line-length + cDescription: `The Jeep Comanche (designated MJ) is a pickup truck variant of the Cherokee compact SUV (1984–2001)[3] cManufactured and marketed by Jeep for cModel years 1986-1992 in rear wheel (RWD) and four-wheel drive (4WD) cModels as well as two cargo bed lengths: six-feet (1.83 metres) and seven-feet (2.13 metres)`, + cColor: 'Mauv', + cPrice: 145971, + cCondition: 1, + createdDate: '09/01/2017', + cStatus: 0, + cVINCode: '1J4PN2GK1BW745045', + }, + { + id: 33, + cModel: 'Blazer', + cManufacture: 'Chevrolet', + cModelYear: 1993, + cMileage: 189804, + // tslint:disable-next-line:max-line-length + cDescription: `The 2014 – 2nd generation, MY14 Duramax 2.8L diesel engines have several new parts, namely a new water-cooled variable-geometry turbocharger, a new high-pressure common-rail fuel delivery system, a new exhaust gas recirculation (EGR) system, a new intake manifold, a new cylinder head, a new cylinder block, a new balance shaft unit and a new Engine Control Module (ECM). and now produce 197 hp and 369 Ft/Lbs of torque`, + cColor: 'Indigo', + cPrice: 154594, + cCondition: 0, + createdDate: '09/13/2017', + cStatus: 0, + cVINCode: '1G6KD57Y43U482896', + }, + { + id: 34, + cModel: 'Envoy XUV', + cManufacture: 'GMC', + cModelYear: 2004, + cMileage: 187960, + // tslint:disable-next-line:max-line-length + cDescription: `The GMC Envoy is a mid-size SUV that was produced by General Motors. It was introduced for the 1998 cModel year. After the first generation Envoy was discontinued after the 2000 cModel year, but the Envoy was reintroduced and redesigned for the 2002 cModel year, and it was available in the GMC line of vehicles from the 2002 to 2009 cModel years`, + cColor: 'Turquoise', + cPrice: 185103, + cCondition: 1, + createdDate: '12/07/2017', + cStatus: 0, + cVINCode: '5GAER23D09J658030', + }, ]; } diff --git a/src/app/core/_base/metronic/services/datatable.service.ts b/src/app/core/_base/metronic/services/datatable.service.ts index 71152bb..5ff7a6a 100644 --- a/src/app/core/_base/metronic/services/datatable.service.ts +++ b/src/app/core/_base/metronic/services/datatable.service.ts @@ -15,7 +15,7 @@ export class DataTableService { * * @param http: HttpClient */ - constructor(private http: HttpClient) { } + constructor(private http: HttpClient) {} /** * Returns data from fake server diff --git a/src/app/core/_base/metronic/services/translation.service.ts b/src/app/core/_base/metronic/services/translation.service.ts index 2249a5e..4da697e 100644 --- a/src/app/core/_base/metronic/services/translation.service.ts +++ b/src/app/core/_base/metronic/services/translation.service.ts @@ -10,7 +10,7 @@ export interface Locale { } @Injectable({ - providedIn: 'root' + providedIn: 'root', }) export class TranslationService { // Private properties diff --git a/src/app/core/_config/default/layout.config.ts b/src/app/core/_config/default/layout.config.ts index 827d66f..a447f71 100644 --- a/src/app/core/_config/default/layout.config.ts +++ b/src/app/core/_config/default/layout.config.ts @@ -2,173 +2,163 @@ import { LayoutConfigModel } from '../../_base/layout'; export class LayoutConfig { public defaults: LayoutConfigModel = { - 'demo': 'default', + demo: 'default', // == Base Layout - 'self': { - 'layout': 'fluid', // fluid|boxed - 'body': { + self: { + layout: 'fluid', // fluid|boxed + body: { 'background-image': './assets/media/misc/bg-1.jpg', }, - 'logo': { - 'dark': './assets/media/logos/logo-light.png', - 'light': './assets/media/logos/logo-dark.png', - 'brand': './assets/media/logos/logo-light.png', - 'green': './assets/media/logos/logo-light.png', - } + logo: { + dark: './assets/media/logos/logo-light.png', + light: './assets/media/logos/logo-dark.png', + brand: './assets/media/logos/logo-light.png', + green: './assets/media/logos/logo-light.png', + }, }, // == Portlet Plugin - 'portlet': { - 'sticky': { - 'offset': 50 - } + portlet: { + sticky: { + offset: 50, + }, }, // == Page Splash Screen loading - 'loader': { - 'enabled': true, - 'type': 'spinner-logo', - 'logo': './assets/media/logos/logo-mini-md.png', - 'message': 'Please wait...' + loader: { + enabled: true, + type: 'spinner-logo', + logo: './assets/media/logos/logo-mini-md.png', + message: 'Please wait...', }, // == Colors for javascript - 'colors': { - 'state': { - 'brand': '#5d78ff', - 'dark': '#282a3c', - 'light': '#ffffff', - 'primary': '#5867dd', - 'success': '#34bfa3', - 'info': '#36a3f7', - 'warning': '#ffb822', - 'danger': '#fd3995' + colors: { + state: { + brand: '#5d78ff', + dark: '#282a3c', + light: '#ffffff', + primary: '#5867dd', + success: '#34bfa3', + info: '#36a3f7', + warning: '#ffb822', + danger: '#fd3995', + }, + base: { + label: ['#c5cbe3', '#a1a8c3', '#3d4465', '#3e4466'], + shape: ['#f0f3ff', '#d9dffa', '#afb4d4', '#646c9a'], }, - 'base': { - 'label': [ - '#c5cbe3', - '#a1a8c3', - '#3d4465', - '#3e4466' - ], - 'shape': [ - '#f0f3ff', - '#d9dffa', - '#afb4d4', - '#646c9a' - ] - } }, - 'header': { - 'self': { - 'skin': 'light', - 'fixed': { - 'desktop': true, - 'mobile': true - } + header: { + self: { + skin: 'light', + fixed: { + desktop: true, + mobile: true, + }, }, - 'topbar': { - 'search': { - 'display': true, - 'layout': 'dropdown' + topbar: { + search: { + display: true, + layout: 'dropdown', }, - 'notifications': { - 'display': true, - 'layout': 'dropdown', - 'dropdown': { - 'style': 'dark' - } + notifications: { + display: true, + layout: 'dropdown', + dropdown: { + style: 'dark', + }, }, 'quick-actions': { - 'display': true, - 'layout': 'dropdown', - 'dropdown': { - 'style': 'dark' - } + display: true, + layout: 'dropdown', + dropdown: { + style: 'dark', + }, }, - 'user': { - 'display': true, - 'layout': 'dropdown', - 'dropdown': { - 'style': 'dark' - } + user: { + display: true, + layout: 'dropdown', + dropdown: { + style: 'dark', + }, }, - 'languages': { - 'display': true + languages: { + display: true, }, 'my-cart': { - 'display': true, - 'layout': 'dropdown', - 'dropdown': { - 'style': 'light' - } + display: true, + layout: 'dropdown', + dropdown: { + style: 'light', + }, }, 'quick-panel': { - 'display': true - } + display: true, + }, }, - 'menu': { - 'self': { - 'display': true, - 'layout': 'default', - 'root-arrow': false + menu: { + self: { + display: true, + layout: 'default', + 'root-arrow': false, + }, + desktop: { + arrow: true, + toggle: 'click', + submenu: { + skin: 'light', + arrow: true, + }, }, - 'desktop': { - 'arrow': true, - 'toggle': 'click', - 'submenu': { - 'skin': 'light', - 'arrow': true - } + mobile: { + submenu: { + skin: 'dark', + accordion: true, + }, }, - 'mobile': { - 'submenu': { - 'skin': 'dark', - 'accordion': true - } - } - } + }, }, - 'subheader': { - 'display': true, - 'layout': 'subheader-v1', - 'fixed': true, - 'style': 'transparent' + subheader: { + display: true, + layout: 'subheader-v1', + fixed: true, + style: 'transparent', }, - 'brand': { - 'self': { - 'skin': 'dark' - } + brand: { + self: { + skin: 'dark', + }, }, - 'aside': { - 'self': { - 'skin': 'dark', - 'display': true, - 'fixed': true, - 'minimize': { - 'toggle': true, - 'default': false - } + aside: { + self: { + skin: 'dark', + display: true, + fixed: true, + minimize: { + toggle: true, + default: false, + }, + }, + footer: { + self: { + display: true, + }, }, - 'footer': { - 'self': { - 'display': true - } + menu: { + dropdown: false, + scroll: false, + submenu: { + accordion: true, + dropdown: { + arrow: true, + 'hover-timeout': 500, + }, + }, + }, + }, + footer: { + self: { + fixed: false, }, - 'menu': { - 'dropdown': false, - 'scroll': false, - 'submenu': { - 'accordion': true, - 'dropdown': { - 'arrow': true, - 'hover-timeout': 500 - } - } - } }, - 'footer': { - 'self': { - 'fixed': false - } - } }; /** diff --git a/src/app/core/_config/default/menu.config.ts b/src/app/core/_config/default/menu.config.ts index de3a389..e27ed5a 100644 --- a/src/app/core/_config/default/menu.config.ts +++ b/src/app/core/_config/default/menu.config.ts @@ -2,33 +2,33 @@ export class MenuConfig { public defaults: any = { header: { self: {}, - 'items': [ + items: [ { - 'title': 'Pages', - 'root': true, + title: 'Pages', + root: true, 'icon-': 'flaticon-add', - 'toggle': 'click', + toggle: 'click', 'custom-class': 'kt-menu__item--active', - 'alignment': 'left', - submenu: [] + alignment: 'left', + submenu: [], }, { - 'title': 'Features', - 'root': true, + title: 'Features', + root: true, 'icon-': 'flaticon-line-graph', - 'toggle': 'click', - 'alignment': 'left', - submenu: [] + toggle: 'click', + alignment: 'left', + submenu: [], }, { - 'title': 'Apps', - 'root': true, + title: 'Apps', + root: true, 'icon-': 'flaticon-paper-plane', - 'toggle': 'click', - 'alignment': 'left', - submenu: [] - } - ] + toggle: 'click', + alignment: 'left', + submenu: [], + }, + ], }, aside: { self: {}, @@ -45,16 +45,16 @@ export class MenuConfig { title: 'Layout Builder', root: true, icon: 'flaticon2-expand', - page: 'builder' + page: 'builder', }, - {section: 'Custom'}, + { section: 'Custom' }, { title: 'Custom Link', root: true, icon: 'flaticon2-link', bullet: 'dot', }, - ] + ], }, }; diff --git a/src/app/core/_config/default/page.config.ts b/src/app/core/_config/default/page.config.ts index 01fb0c3..9f4902e 100644 --- a/src/app/core/_config/default/page.config.ts +++ b/src/app/core/_config/default/page.config.ts @@ -1,232 +1,232 @@ export class PageConfig { public defaults: any = { - 'dashboard': { + dashboard: { page: { - 'title': 'Dashboard', - 'desc': 'Latest updates and statistic charts' - } + title: 'Dashboard', + desc: 'Latest updates and statistic charts', + }, }, ngbootstrap: { accordion: { - page: {title: 'Accordion', desc: ''} + page: { title: 'Accordion', desc: '' }, }, alert: { - page: {title: 'Alert', desc: ''} + page: { title: 'Alert', desc: '' }, }, buttons: { - page: {title: 'Buttons', desc: ''} + page: { title: 'Buttons', desc: '' }, }, carousel: { - page: {title: 'Carousel', desc: ''} + page: { title: 'Carousel', desc: '' }, }, collapse: { - page: {title: 'Collapse', desc: ''} + page: { title: 'Collapse', desc: '' }, }, datepicker: { - page: {title: 'Datepicker', desc: ''} + page: { title: 'Datepicker', desc: '' }, }, dropdown: { - page: {title: 'Dropdown', desc: ''} + page: { title: 'Dropdown', desc: '' }, }, modal: { - page: {title: 'Modal', desc: ''} + page: { title: 'Modal', desc: '' }, }, pagination: { - page: {title: 'Pagination', desc: ''} + page: { title: 'Pagination', desc: '' }, }, popover: { - page: {title: 'Popover', desc: ''} + page: { title: 'Popover', desc: '' }, }, progressbar: { - page: {title: 'Progressbar', desc: ''} + page: { title: 'Progressbar', desc: '' }, }, rating: { - page: {title: 'Rating', desc: ''} + page: { title: 'Rating', desc: '' }, }, tabs: { - page: {title: 'Tabs', desc: ''} + page: { title: 'Tabs', desc: '' }, }, timepicker: { - page: {title: 'Timepicker', desc: ''} + page: { title: 'Timepicker', desc: '' }, }, tooltip: { - page: {title: 'Tooltip', desc: ''} + page: { title: 'Tooltip', desc: '' }, }, typehead: { - page: {title: 'Typehead', desc: ''} - } + page: { title: 'Typehead', desc: '' }, + }, }, material: { // form controls 'form-controls': { autocomplete: { - page: {title: 'Auto Complete', desc: ''} + page: { title: 'Auto Complete', desc: '' }, }, checkbox: { - page: {title: 'Checkbox', desc: ''} + page: { title: 'Checkbox', desc: '' }, }, datepicker: { - page: {title: 'Datepicker', desc: ''} + page: { title: 'Datepicker', desc: '' }, }, radiobutton: { - page: {title: 'Radio Button', desc: ''} + page: { title: 'Radio Button', desc: '' }, }, formfield: { - page: {title: 'Form field', desc: ''} + page: { title: 'Form field', desc: '' }, }, input: { - page: {title: 'Input', desc: ''} + page: { title: 'Input', desc: '' }, }, select: { - page: {title: 'Select', desc: ''} + page: { title: 'Select', desc: '' }, }, slider: { - page: {title: 'Slider', desc: ''} + page: { title: 'Slider', desc: '' }, }, slidertoggle: { - page: {title: 'Slider Toggle', desc: ''} - } + page: { title: 'Slider Toggle', desc: '' }, + }, }, // navigation navigation: { menu: { - page: {title: 'Menu', desc: ''} + page: { title: 'Menu', desc: '' }, }, sidenav: { - page: {title: 'Sidenav', desc: ''} + page: { title: 'Sidenav', desc: '' }, }, toolbar: { - page: {title: 'Toolbar', desc: ''} - } + page: { title: 'Toolbar', desc: '' }, + }, }, // layout layout: { card: { - page: {title: 'Card', desc: ''} + page: { title: 'Card', desc: '' }, }, divider: { - page: {title: 'Divider', desc: ''} + page: { title: 'Divider', desc: '' }, }, 'expansion-panel': { - page: {title: 'Expansion panel', desc: ''} + page: { title: 'Expansion panel', desc: '' }, }, 'grid-list': { - page: {title: 'Grid list', desc: ''} + page: { title: 'Grid list', desc: '' }, }, list: { - page: {title: 'List', desc: ''} + page: { title: 'List', desc: '' }, }, tabs: { - page: {title: 'Tabs', desc: ''} + page: { title: 'Tabs', desc: '' }, }, stepper: { - page: {title: 'Stepper', desc: ''} + page: { title: 'Stepper', desc: '' }, }, 'default-forms': { - page: {title: 'Default Forms', desc: ''} + page: { title: 'Default Forms', desc: '' }, }, tree: { - page: {title: 'Tree', desc: ''} + page: { title: 'Tree', desc: '' }, }, }, // buttons & indicators 'buttons-and-indicators': { button: { - page: {title: 'Button', desc: ''} + page: { title: 'Button', desc: '' }, }, 'button-toggle': { - page: {title: 'Button toggle', desc: ''} + page: { title: 'Button toggle', desc: '' }, }, chips: { - page: {title: 'Chips', desc: ''} + page: { title: 'Chips', desc: '' }, }, icon: { - page: {title: 'Icon', desc: ''} + page: { title: 'Icon', desc: '' }, }, 'progress-bar': { - page: {title: 'Progress bar', desc: ''} + page: { title: 'Progress bar', desc: '' }, }, 'progress-spinner': { - page: {title: 'Progress spinner', desc: ''} - } + page: { title: 'Progress spinner', desc: '' }, + }, }, // popups & models 'popups-and-modals': { 'bottom-sheet': { - page: {title: 'Bottom sheet', desc: ''} + page: { title: 'Bottom sheet', desc: '' }, }, dialog: { - page: {title: 'Dialog', desc: ''} + page: { title: 'Dialog', desc: '' }, }, snackbar: { - page: {title: 'Snackbar', desc: ''} + page: { title: 'Snackbar', desc: '' }, }, tooltip: { - page: {title: 'Tooltip', desc: ''} - } + page: { title: 'Tooltip', desc: '' }, + }, }, // Data tables 'data-table': { paginator: { - page: {title: 'Paginator', desc: ''} + page: { title: 'Paginator', desc: '' }, }, 'sort-header': { - page: {title: 'Sort header', desc: ''} + page: { title: 'Sort header', desc: '' }, }, table: { - page: {title: 'Table', desc: ''} - } - } + page: { title: 'Table', desc: '' }, + }, + }, }, forms: { - page: {title: 'Forms', desc: ''} + page: { title: 'Forms', desc: '' }, }, mail: { - page: {title: 'Mail', desc: 'Mail'} + page: { title: 'Mail', desc: 'Mail' }, }, ecommerce: { customers: { - page: {title: 'Customers', desc: ''} + page: { title: 'Customers', desc: '' }, }, products: { edit: { - page: {title: 'Edit product', desc: ''} + page: { title: 'Edit product', desc: '' }, }, add: { - page: {title: 'Create product', desc: ''} - } + page: { title: 'Create product', desc: '' }, + }, }, orders: { - page: {title: 'Orders', desc: ''} - } + page: { title: 'Orders', desc: '' }, + }, }, 'user-management': { users: { - page: {title: 'Users', desc: ''} + page: { title: 'Users', desc: '' }, }, roles: { - page: {title: 'Roles', desc: ''} - } + page: { title: 'Roles', desc: '' }, + }, }, builder: { - page: {title: 'Layout Builder', desc: ''} + page: { title: 'Layout Builder', desc: '' }, }, header: { actions: { - page: {title: 'Actions', desc: 'Actions example page'} - } + page: { title: 'Actions', desc: 'Actions example page' }, + }, }, profile: { - page: {title: 'User Profile', desc: ''} + page: { title: 'User Profile', desc: '' }, }, error: { 404: { - page: {title: '404 Not Found', desc: '', subheader: false} + page: { title: '404 Not Found', desc: '', subheader: false }, }, 403: { - page: { title: '403 Access Forbidden', desc: '', subheader: false } - } - } + page: { title: '403 Access Forbidden', desc: '', subheader: false }, + }, + }, }; public get configs(): any { diff --git a/src/app/core/_config/demo2/layout.config.ts b/src/app/core/_config/demo2/layout.config.ts index 1f9ef09..ff85742 100644 --- a/src/app/core/_config/demo2/layout.config.ts +++ b/src/app/core/_config/demo2/layout.config.ts @@ -2,162 +2,152 @@ import { LayoutConfigModel } from '../../_base/layout'; export class LayoutConfig { public defaults: LayoutConfigModel = { - 'demo': 'demo2', + demo: 'demo2', // == Base Layout - 'self': { - 'layout': 'fluid', // fluid|boxed - 'body': { + self: { + layout: 'fluid', // fluid|boxed + body: { 'background-image': './assets/media/misc/bg-1.jpg', }, - 'logo': './assets/media/logos/logo-2.png' + logo: './assets/media/logos/logo-2.png', }, // == Portlet Plugin - 'portlet': { - 'sticky': { - 'offset': 50 - } + portlet: { + sticky: { + offset: 50, + }, }, // == Page Splash Screen loading - 'loader': { - 'enabled': true, - 'type': 'spinner-logo', - 'logo': './assets/media/logos/logo-mini-md.png', - 'message': 'Please wait...' + loader: { + enabled: true, + type: 'spinner-logo', + logo: './assets/media/logos/logo-mini-md.png', + message: 'Please wait...', }, // == Colors for javascript - 'colors': { - 'state': { - 'brand': '#3d4aed', - 'light': '#ffffff', - 'dark': '#282a3c', - 'primary': '#5867dd', - 'success': '#34bfa3', - 'info': '#36a3f7', - 'warning': '#ffb822', - 'danger': '#fd3995' + colors: { + state: { + brand: '#3d4aed', + light: '#ffffff', + dark: '#282a3c', + primary: '#5867dd', + success: '#34bfa3', + info: '#36a3f7', + warning: '#ffb822', + danger: '#fd3995', + }, + base: { + label: ['#c5cbe3', '#a1a8c3', '#3d4465', '#3e4466'], + shape: ['#f0f3ff', '#d9dffa', '#afb4d4', '#646c9a'], }, - 'base': { - 'label': [ - '#c5cbe3', - '#a1a8c3', - '#3d4465', - '#3e4466' - ], - 'shape': [ - '#f0f3ff', - '#d9dffa', - '#afb4d4', - '#646c9a' - ] - } }, - 'width': 'fixed', - 'header': { - 'self': { - 'fixed': { - 'desktop': { - 'enabled': true, - 'mode': 'topbar' + width: 'fixed', + header: { + self: { + fixed: { + desktop: { + enabled: true, + mode: 'topbar', }, - 'mobile': true - } + mobile: true, + }, }, - 'topbar': { - 'search': { - 'display': true, - 'layout': 'dropdown' + topbar: { + search: { + display: true, + layout: 'dropdown', }, - 'notifications': { - 'display': true, - 'layout': 'dropdown', - 'dropdown': { - 'style': 'light' - } + notifications: { + display: true, + layout: 'dropdown', + dropdown: { + style: 'light', + }, }, 'quick-actions': { - 'display': true, - 'layout': 'dropdown', - 'dropdown': { - 'style': 'light' - } + display: true, + layout: 'dropdown', + dropdown: { + style: 'light', + }, }, - 'user': { - 'display': true, - 'layout': 'dropdown', - 'dropdown': { - 'style': 'light' - } + user: { + display: true, + layout: 'dropdown', + dropdown: { + style: 'light', + }, }, - 'languages': { - 'display': true + languages: { + display: true, }, - 'cart': { - 'display': true + cart: { + display: true, }, 'quick-panel': { - 'display': true - } + display: true, + }, }, - 'search': { - 'display': true + search: { + display: true, + }, + menu: { + self: { + display: true, + 'root-arrow': false, + }, + desktop: { + arrow: true, + toggle: 'click', + submenu: { + skin: 'light', + arrow: true, + }, + }, + mobile: { + submenu: { + skin: 'dark', + accordion: true, + }, + }, }, - 'menu': { - 'self': { - 'display': true, - 'root-arrow': false + }, + aside: { + self: { + skin: 'light', + fixed: true, + display: false, + minimize: { + toggle: true, + default: false, }, - 'desktop': { - 'arrow': true, - 'toggle': 'click', - 'submenu': { - 'skin': 'light', - 'arrow': true - } + }, + menu: { + dropdown: false, + scroll: true, + submenu: { + accordion: true, + dropdown: { + arrow: true, + 'hover-timeout': 500, + }, }, - 'mobile': { - 'submenu': { - 'skin': 'dark', - 'accordion': true - } - } - } + }, }, - 'aside': { - 'self': { - 'skin': 'light', - 'fixed': true, - 'display': false, - 'minimize': { - 'toggle': true, - 'default': false - } + subheader: { + display: true, + fixed: false, + layout: 'subheader-v2', + style: 'transparent', + daterangepicker: { + display: true, }, - 'menu': { - 'dropdown': false, - 'scroll': true, - 'submenu': { - 'accordion': true, - 'dropdown': { - 'arrow': true, - 'hover-timeout': 500 - } - } - } }, - 'subheader': { - 'display': true, - 'fixed': false, - 'layout': 'subheader-v2', - 'style': 'transparent', - 'daterangepicker': { - 'display': true - } + footer: { + self: { + layout: 'extended', + }, }, - 'footer': { - 'self': { - 'layout': 'extended' - } - } }; /** diff --git a/src/app/core/_config/demo2/menu.config.ts b/src/app/core/_config/demo2/menu.config.ts index 53f4a78..95382c6 100644 --- a/src/app/core/_config/demo2/menu.config.ts +++ b/src/app/core/_config/demo2/menu.config.ts @@ -15,23 +15,23 @@ export class MenuConfig { root: true, alignment: 'left', toggle: 'click', - submenu: [] + submenu: [], }, { title: 'Applications', root: true, alignment: 'left', toggle: 'click', - submenu: [] + submenu: [], }, { title: 'Custom', root: true, alignment: 'left', toggle: 'click', - submenu: [] + submenu: [], }, - ] + ], }, aside: { self: {}, @@ -48,16 +48,16 @@ export class MenuConfig { title: 'Layout Builder', root: true, icon: 'flaticon2-expand', - page: 'builder' + page: 'builder', }, - {section: 'Custom'}, + { section: 'Custom' }, { title: 'Custom Link', root: true, icon: 'flaticon2-link', bullet: 'dot', }, - ] + ], }, }; diff --git a/src/app/core/_config/demo2/page.config.ts b/src/app/core/_config/demo2/page.config.ts index 12dcaa6..8a33370 100644 --- a/src/app/core/_config/demo2/page.config.ts +++ b/src/app/core/_config/demo2/page.config.ts @@ -2,226 +2,226 @@ export class PageConfig { public defaults: any = { dashboard: { page: { - 'title': 'Dashboard', - 'desc': 'Latest updates and statistic charts' + title: 'Dashboard', + desc: 'Latest updates and statistic charts', }, }, ngbootstrap: { accordion: { - page: {title: 'Accordion', desc: ''} + page: { title: 'Accordion', desc: '' }, }, alert: { - page: {title: 'Alert', desc: ''} + page: { title: 'Alert', desc: '' }, }, buttons: { - page: {title: 'Buttons', desc: ''} + page: { title: 'Buttons', desc: '' }, }, carousel: { - page: {title: 'Carousel', desc: ''} + page: { title: 'Carousel', desc: '' }, }, collapse: { - page: {title: 'Collapse', desc: ''} + page: { title: 'Collapse', desc: '' }, }, datepicker: { - page: {title: 'Datepicker', desc: ''} + page: { title: 'Datepicker', desc: '' }, }, dropdown: { - page: {title: 'Dropdown', desc: ''} + page: { title: 'Dropdown', desc: '' }, }, modal: { - page: {title: 'Modal', desc: ''} + page: { title: 'Modal', desc: '' }, }, pagination: { - page: {title: 'Pagination', desc: ''} + page: { title: 'Pagination', desc: '' }, }, popover: { - page: {title: 'Popover', desc: ''} + page: { title: 'Popover', desc: '' }, }, progressbar: { - page: {title: 'Progressbar', desc: ''} + page: { title: 'Progressbar', desc: '' }, }, rating: { - page: {title: 'Rating', desc: ''} + page: { title: 'Rating', desc: '' }, }, tabs: { - page: {title: 'Tabs', desc: ''} + page: { title: 'Tabs', desc: '' }, }, timepicker: { - page: {title: 'Timepicker', desc: ''} + page: { title: 'Timepicker', desc: '' }, }, tooltip: { - page: {title: 'Tooltip', desc: ''} + page: { title: 'Tooltip', desc: '' }, }, typehead: { - page: {title: 'Typehead', desc: ''} - } + page: { title: 'Typehead', desc: '' }, + }, }, material: { // form controls 'form-controls': { autocomplete: { - page: {title: 'Auto Complete', desc: ''} + page: { title: 'Auto Complete', desc: '' }, }, checkbox: { - page: {title: 'Checkbox', desc: ''} + page: { title: 'Checkbox', desc: '' }, }, datepicker: { - page: {title: 'Datepicker', desc: ''} + page: { title: 'Datepicker', desc: '' }, }, radiobutton: { - page: {title: 'Radio Button', desc: ''} + page: { title: 'Radio Button', desc: '' }, }, formfield: { - page: {title: 'Form field', desc: ''} + page: { title: 'Form field', desc: '' }, }, input: { - page: {title: 'Input', desc: ''} + page: { title: 'Input', desc: '' }, }, select: { - page: {title: 'Select', desc: ''} + page: { title: 'Select', desc: '' }, }, slider: { - page: {title: 'Slider', desc: ''} + page: { title: 'Slider', desc: '' }, }, slidertoggle: { - page: {title: 'Slider Toggle', desc: ''} - } + page: { title: 'Slider Toggle', desc: '' }, + }, }, // navigation navigation: { menu: { - page: {title: 'Menu', desc: ''} + page: { title: 'Menu', desc: '' }, }, sidenav: { - page: {title: 'Sidenav', desc: ''} + page: { title: 'Sidenav', desc: '' }, }, toolbar: { - page: {title: 'Toolbar', desc: ''} - } + page: { title: 'Toolbar', desc: '' }, + }, }, // layout layout: { card: { - page: {title: 'Card', desc: ''} + page: { title: 'Card', desc: '' }, }, divider: { - page: {title: 'Divider', desc: ''} + page: { title: 'Divider', desc: '' }, }, 'expansion-panel': { - page: {title: 'Expansion panel', desc: ''} + page: { title: 'Expansion panel', desc: '' }, }, 'grid-list': { - page: {title: 'Grid list', desc: ''} + page: { title: 'Grid list', desc: '' }, }, list: { - page: {title: 'List', desc: ''} + page: { title: 'List', desc: '' }, }, tabs: { - page: {title: 'Tabs', desc: ''} + page: { title: 'Tabs', desc: '' }, }, stepper: { - page: {title: 'Stepper', desc: ''} + page: { title: 'Stepper', desc: '' }, }, 'default-forms': { - page: {title: 'Default Forms', desc: ''} + page: { title: 'Default Forms', desc: '' }, }, tree: { - page: {title: 'Tree', desc: ''} + page: { title: 'Tree', desc: '' }, }, }, // buttons & indicators 'buttons-and-indicators': { button: { - page: {title: 'Button', desc: ''} + page: { title: 'Button', desc: '' }, }, 'button-toggle': { - page: {title: 'Button toggle', desc: ''} + page: { title: 'Button toggle', desc: '' }, }, chips: { - page: {title: 'Chips', desc: ''} + page: { title: 'Chips', desc: '' }, }, icon: { - page: {title: 'Icon', desc: ''} + page: { title: 'Icon', desc: '' }, }, 'progress-bar': { - page: {title: 'Progress bar', desc: ''} + page: { title: 'Progress bar', desc: '' }, }, 'progress-spinner': { - page: {title: 'Progress spinner', desc: ''} - } + page: { title: 'Progress spinner', desc: '' }, + }, }, // popups & models 'popups-and-modals': { 'bottom-sheet': { - page: {title: 'Bottom sheet', desc: ''} + page: { title: 'Bottom sheet', desc: '' }, }, dialog: { - page: {title: 'Dialog', desc: ''} + page: { title: 'Dialog', desc: '' }, }, snackbar: { - page: {title: 'Snackbar', desc: ''} + page: { title: 'Snackbar', desc: '' }, }, tooltip: { - page: {title: 'Tooltip', desc: ''} - } + page: { title: 'Tooltip', desc: '' }, + }, }, // Data tables 'data-table': { paginator: { - page: {title: 'Paginator', desc: ''} + page: { title: 'Paginator', desc: '' }, }, 'sort-header': { - page: {title: 'Sort header', desc: ''} + page: { title: 'Sort header', desc: '' }, }, table: { - page: {title: 'Table', desc: ''} - } - } + page: { title: 'Table', desc: '' }, + }, + }, }, forms: { - page: {title: 'Forms', desc: ''} + page: { title: 'Forms', desc: '' }, }, mail: { - page: {title: 'Mail', desc: 'Mail'} + page: { title: 'Mail', desc: 'Mail' }, }, ecommerce: { customers: { - page: {title: 'Customers', desc: ''} + page: { title: 'Customers', desc: '' }, }, products: { edit: { - page: {title: 'Edit product', desc: ''} + page: { title: 'Edit product', desc: '' }, }, add: { - page: {title: 'Create product', desc: ''} - } + page: { title: 'Create product', desc: '' }, + }, }, orders: { - page: {title: 'Orders', desc: ''} - } + page: { title: 'Orders', desc: '' }, + }, }, 'user-management': { users: { - page: {title: 'Users', desc: ''} + page: { title: 'Users', desc: '' }, }, roles: { - page: {title: 'Roles', desc: ''} - } + page: { title: 'Roles', desc: '' }, + }, }, builder: { - page: {title: 'Layout Builder', desc: ''} + page: { title: 'Layout Builder', desc: '' }, }, header: { actions: { - page: {title: 'Actions', desc: 'Actions example page'} - } + page: { title: 'Actions', desc: 'Actions example page' }, + }, }, profile: { - page: {title: 'User Profile', desc: ''} + page: { title: 'User Profile', desc: '' }, }, 404: { - page: {title: '404 Not Found', desc: '', subheader: false} - } + page: { title: '404 Not Found', desc: '', subheader: false }, + }, }; public get configs(): any { diff --git a/src/app/core/_config/i18n/ch.ts b/src/app/core/_config/i18n/ch.ts index ede127c..65e98b8 100644 --- a/src/app/core/_config/i18n/ch.ts +++ b/src/app/core/_config/i18n/ch.ts @@ -33,19 +33,19 @@ export const locale = { FORGOT: { TITLE: 'Forgotten Password?', DESC: 'Enter your email to reset your password', - SUCCESS: 'Your account has been successfully reset.' + SUCCESS: 'Your account has been successfully reset.', }, REGISTER: { TITLE: 'Sign Up', DESC: 'Enter your details to create your account', - SUCCESS: 'Your account has been successfuly registered.' + SUCCESS: 'Your account has been successfuly registered.', }, INPUT: { EMAIL: 'Email', FULLNAME: 'Fullname', PASSWORD: 'Password', CONFIRM_PASSWORD: 'Confirm Password', - USERNAME: '用戶名' + USERNAME: '用戶名', }, VALIDATION: { INVALID: '{{name}} is not valid', @@ -58,7 +58,7 @@ export const locale = { MIN_LENGTH_FIELD: 'Minimum field length:', MAX_LENGTH_FIELD: 'Maximum field length:', INVALID_FIELD: 'Field is not valid', - } + }, }, ECOMMERCE: { COMMON: { @@ -72,7 +72,7 @@ export const locale = { BUSINESS: 'Business', INDIVIDUAL: 'Individual', SEARCH: 'Search', - IN_ALL_FIELDS: 'in all fields' + IN_ALL_FIELDS: 'in all fields', }, ECOMMERCE: 'eCommerce', CUSTOMERS: { @@ -83,23 +83,23 @@ export const locale = { TITLE: 'Customer Delete', DESCRIPTION: 'Are you sure to permanently delete this customer?', WAIT_DESCRIPTION: 'Customer is deleting...', - MESSAGE: 'Customer has been deleted' + MESSAGE: 'Customer has been deleted', }, DELETE_CUSTOMER_MULTY: { TITLE: 'Customers Delete', DESCRIPTION: 'Are you sure to permanently delete selected customers?', WAIT_DESCRIPTION: 'Customers are deleting...', - MESSAGE: 'Selected customers have been deleted' + MESSAGE: 'Selected customers have been deleted', }, UPDATE_STATUS: { TITLE: 'Status has been updated for selected customers', - MESSAGE: 'Selected customers status have successfully been updated' + MESSAGE: 'Selected customers status have successfully been updated', }, EDIT: { UPDATE_MESSAGE: 'Customer has been updated', - ADD_MESSAGE: 'Customer has been created' - } - } - } - } + ADD_MESSAGE: 'Customer has been created', + }, + }, + }, + }, }; diff --git a/src/app/core/_config/i18n/de.ts b/src/app/core/_config/i18n/de.ts index 339f3b7..3909077 100644 --- a/src/app/core/_config/i18n/de.ts +++ b/src/app/core/_config/i18n/de.ts @@ -12,7 +12,7 @@ export const locale = { PAGES: 'Pages', FEATURES: 'Eigenschaften', APPS: 'Apps', - DASHBOARD: 'Instrumententafel' + DASHBOARD: 'Instrumententafel', }, AUTH: { GENERAL: { @@ -33,19 +33,19 @@ export const locale = { FORGOT: { TITLE: 'Forgotten Password?', DESC: 'Enter your email to reset your password', - SUCCESS: 'Your account has been successfully reset.' + SUCCESS: 'Your account has been successfully reset.', }, REGISTER: { TITLE: 'Sign Up', DESC: 'Enter your details to create your account', - SUCCESS: 'Your account has been successfuly registered.' + SUCCESS: 'Your account has been successfuly registered.', }, INPUT: { EMAIL: 'Email', FULLNAME: 'Fullname', PASSWORD: 'Password', CONFIRM_PASSWORD: 'Confirm Password', - USERNAME: 'Nutzername' + USERNAME: 'Nutzername', }, VALIDATION: { INVALID: '{{name}} is not valid', @@ -58,7 +58,7 @@ export const locale = { MIN_LENGTH_FIELD: 'Minimum field length:', MAX_LENGTH_FIELD: 'Maximum field length:', INVALID_FIELD: 'Field is not valid', - } + }, }, ECOMMERCE: { COMMON: { @@ -72,7 +72,7 @@ export const locale = { BUSINESS: 'Business', INDIVIDUAL: 'Individual', SEARCH: 'Search', - IN_ALL_FIELDS: 'in all fields' + IN_ALL_FIELDS: 'in all fields', }, ECOMMERCE: 'eCommerce', CUSTOMERS: { @@ -83,23 +83,23 @@ export const locale = { TITLE: 'Customer Delete', DESCRIPTION: 'Are you sure to permanently delete this customer?', WAIT_DESCRIPTION: 'Customer is deleting...', - MESSAGE: 'Customer has been deleted' + MESSAGE: 'Customer has been deleted', }, DELETE_CUSTOMER_MULTY: { TITLE: 'Customers Delete', DESCRIPTION: 'Are you sure to permanently delete selected customers?', WAIT_DESCRIPTION: 'Customers are deleting...', - MESSAGE: 'Selected customers have been deleted' + MESSAGE: 'Selected customers have been deleted', }, UPDATE_STATUS: { TITLE: 'Status has been updated for selected customers', - MESSAGE: 'Selected customers status have successfully been updated' + MESSAGE: 'Selected customers status have successfully been updated', }, EDIT: { UPDATE_MESSAGE: 'Customer has been updated', - ADD_MESSAGE: 'Customer has been created' - } - } - } - } + ADD_MESSAGE: 'Customer has been created', + }, + }, + }, + }, }; diff --git a/src/app/core/_config/i18n/en.ts b/src/app/core/_config/i18n/en.ts index d52804e..f4f1cda 100644 --- a/src/app/core/_config/i18n/en.ts +++ b/src/app/core/_config/i18n/en.ts @@ -18,7 +18,7 @@ export const locale = { GENERAL: { OR: 'Or', SUBMIT_BUTTON: 'Submit', - NO_ACCOUNT: 'Don\'t have an account?', + NO_ACCOUNT: "Don't have an account?", SIGNUP_BUTTON: 'Sign Up', FORGOT_BUTTON: 'Forgot Password', BACK_BUTTON: 'Back', @@ -33,19 +33,19 @@ export const locale = { FORGOT: { TITLE: 'Forgotten Password?', DESC: 'Enter your email to reset your password', - SUCCESS: 'Your account has been successfully reset.' + SUCCESS: 'Your account has been successfully reset.', }, REGISTER: { TITLE: 'Sign Up', DESC: 'Enter your details to create your account', - SUCCESS: 'Your account has been successfuly registered.' + SUCCESS: 'Your account has been successfuly registered.', }, INPUT: { EMAIL: 'Email', FULLNAME: 'Fullname', PASSWORD: 'Password', CONFIRM_PASSWORD: 'Confirm Password', - USERNAME: 'Username' + USERNAME: 'Username', }, VALIDATION: { INVALID: '{{name}} is not valid', @@ -58,7 +58,7 @@ export const locale = { MIN_LENGTH_FIELD: 'Minimum field length:', MAX_LENGTH_FIELD: 'Maximum field length:', INVALID_FIELD: 'Field is not valid', - } + }, }, ECOMMERCE: { COMMON: { @@ -72,7 +72,7 @@ export const locale = { BUSINESS: 'Business', INDIVIDUAL: 'Individual', SEARCH: 'Search', - IN_ALL_FIELDS: 'in all fields' + IN_ALL_FIELDS: 'in all fields', }, ECOMMERCE: 'eCommerce', CUSTOMERS: { @@ -83,23 +83,23 @@ export const locale = { TITLE: 'Customer Delete', DESCRIPTION: 'Are you sure to permanently delete this customer?', WAIT_DESCRIPTION: 'Customer is deleting...', - MESSAGE: 'Customer has been deleted' + MESSAGE: 'Customer has been deleted', }, DELETE_CUSTOMER_MULTY: { TITLE: 'Customers Delete', DESCRIPTION: 'Are you sure to permanently delete selected customers?', WAIT_DESCRIPTION: 'Customers are deleting...', - MESSAGE: 'Selected customers have been deleted' + MESSAGE: 'Selected customers have been deleted', }, UPDATE_STATUS: { TITLE: 'Status has been updated for selected customers', - MESSAGE: 'Selected customers status have successfully been updated' + MESSAGE: 'Selected customers status have successfully been updated', }, EDIT: { UPDATE_MESSAGE: 'Customer has been updated', - ADD_MESSAGE: 'Customer has been created' - } - } - } - } + ADD_MESSAGE: 'Customer has been created', + }, + }, + }, + }, }; diff --git a/src/app/core/_config/i18n/es.ts b/src/app/core/_config/i18n/es.ts index dd77743..937d052 100644 --- a/src/app/core/_config/i18n/es.ts +++ b/src/app/core/_config/i18n/es.ts @@ -12,7 +12,7 @@ export const locale = { PAGES: 'Pages', FEATURES: 'Caracteristicas', APPS: 'Aplicaciones', - DASHBOARD: 'Tablero' + DASHBOARD: 'Tablero', }, AUTH: { GENERAL: { @@ -33,19 +33,19 @@ export const locale = { FORGOT: { TITLE: 'Contraseña olvidada?', DESC: 'Ingrese su correo electrónico para restablecer su contraseña', - SUCCESS: 'Your account has been successfully reset.' + SUCCESS: 'Your account has been successfully reset.', }, REGISTER: { TITLE: 'Sign Up', DESC: 'Enter your details to create your account', - SUCCESS: 'Your account has been successfuly registered.' + SUCCESS: 'Your account has been successfuly registered.', }, INPUT: { EMAIL: 'Email', FULLNAME: 'Fullname', PASSWORD: 'Password', CONFIRM_PASSWORD: 'Confirm Password', - USERNAME: 'Usuario' + USERNAME: 'Usuario', }, VALIDATION: { INVALID: '{{name}} is not valid', @@ -58,7 +58,7 @@ export const locale = { MIN_LENGTH_FIELD: 'Minimum field length:', MAX_LENGTH_FIELD: 'Maximum field length:', INVALID_FIELD: 'Field is not valid', - } + }, }, ECOMMERCE: { COMMON: { @@ -72,7 +72,7 @@ export const locale = { BUSINESS: 'Business', INDIVIDUAL: 'Individual', SEARCH: 'Search', - IN_ALL_FIELDS: 'in all fields' + IN_ALL_FIELDS: 'in all fields', }, ECOMMERCE: 'eCommerce', CUSTOMERS: { @@ -83,23 +83,23 @@ export const locale = { TITLE: 'Customer Delete', DESCRIPTION: 'Are you sure to permanently delete this customer?', WAIT_DESCRIPTION: 'Customer is deleting...', - MESSAGE: 'Customer has been deleted' + MESSAGE: 'Customer has been deleted', }, DELETE_CUSTOMER_MULTY: { TITLE: 'Customers Delete', DESCRIPTION: 'Are you sure to permanently delete selected customers?', WAIT_DESCRIPTION: 'Customers are deleting...', - MESSAGE: 'Selected customers have been deleted' + MESSAGE: 'Selected customers have been deleted', }, UPDATE_STATUS: { TITLE: 'Status has been updated for selected customers', - MESSAGE: 'Selected customers status have successfully been updated' + MESSAGE: 'Selected customers status have successfully been updated', }, EDIT: { UPDATE_MESSAGE: 'Customer has been updated', - ADD_MESSAGE: 'Customer has been created' - } - } - } - } + ADD_MESSAGE: 'Customer has been created', + }, + }, + }, + }, }; diff --git a/src/app/core/_config/i18n/fr.ts b/src/app/core/_config/i18n/fr.ts index fbb47cd..b3a0364 100644 --- a/src/app/core/_config/i18n/fr.ts +++ b/src/app/core/_config/i18n/fr.ts @@ -33,22 +33,22 @@ export const locale = { FORGOT: { TITLE: 'Forgotten Password?', DESC: 'Enter your email to reset your password', - SUCCESS: 'Your account has been successfully reset.' + SUCCESS: 'Your account has been successfully reset.', }, REGISTER: { TITLE: 'Sign Up', DESC: 'Enter your details to create your account', - SUCCESS: 'Your account has been successfuly registered.' + SUCCESS: 'Your account has been successfuly registered.', }, INPUT: { EMAIL: 'Email', FULLNAME: 'Fullname', PASSWORD: 'Mot de passe', CONFIRM_PASSWORD: 'Confirm Password', - USERNAME: 'Nom d\'utilisateur' + USERNAME: "Nom d'utilisateur", }, VALIDATION: { - INVALID: '{{name}} n\'est pas valide', + INVALID: "{{name}} n'est pas valide", REQUIRED: '{{name}} est requis', MIN_LENGTH: '{{name}} minimum length is {{min}}', AGREEMENT_REQUIRED: 'Accepting terms & conditions are required', @@ -58,11 +58,11 @@ export const locale = { MIN_LENGTH_FIELD: 'Minimum field length:', MAX_LENGTH_FIELD: 'Maximum field length:', INVALID_FIELD: 'Field is not valid', - } + }, }, ECOMMERCE: { COMMON: { - SELECTED_RECORDS_COUNT: 'Nombre d\'enregistrements sélectionnés: ', + SELECTED_RECORDS_COUNT: "Nombre d'enregistrements sélectionnés: ", ALL: 'All', SUSPENDED: 'Suspended', ACTIVE: 'Active', @@ -72,7 +72,7 @@ export const locale = { BUSINESS: 'Business', INDIVIDUAL: 'Individual', SEARCH: 'Search', - IN_ALL_FIELDS: 'in all fields' + IN_ALL_FIELDS: 'in all fields', }, ECOMMERCE: 'éCommerce', CUSTOMERS: { @@ -83,23 +83,23 @@ export const locale = { TITLE: 'Suppression du client', DESCRIPTION: 'Êtes-vous sûr de supprimer définitivement ce client?', WAIT_DESCRIPTION: 'Le client est en train de supprimer ...', - MESSAGE: 'Le client a été supprimé' + MESSAGE: 'Le client a été supprimé', }, DELETE_CUSTOMER_MULTY: { TITLE: 'Supprimer les clients', DESCRIPTION: 'Êtes-vous sûr de supprimer définitivement les clients sélectionnés?', WAIT_DESCRIPTION: 'Les clients suppriment ...', - MESSAGE: 'Les clients sélectionnés ont été supprimés' + MESSAGE: 'Les clients sélectionnés ont été supprimés', }, UPDATE_STATUS: { TITLE: 'Le statut a été mis à jour pour les clients sélectionnés', - MESSAGE: 'Le statut des clients sélectionnés a été mis à jour avec succès' + MESSAGE: 'Le statut des clients sélectionnés a été mis à jour avec succès', }, EDIT: { UPDATE_MESSAGE: 'Le client a été mis à jour', - ADD_MESSAGE: 'Le client a été créé' - } - } - } - } + ADD_MESSAGE: 'Le client a été créé', + }, + }, + }, + }, }; diff --git a/src/app/core/_config/i18n/jp.ts b/src/app/core/_config/i18n/jp.ts index a73339a..726477b 100644 --- a/src/app/core/_config/i18n/jp.ts +++ b/src/app/core/_config/i18n/jp.ts @@ -33,19 +33,19 @@ export const locale = { FORGOT: { TITLE: 'Forgotten Password?', DESC: 'Enter your email to reset your password', - SUCCESS: 'Your account has been successfully reset.' + SUCCESS: 'Your account has been successfully reset.', }, REGISTER: { TITLE: 'Sign Up', DESC: 'Enter your details to create your account', - SUCCESS: 'Your account has been successfuly registered.' + SUCCESS: 'Your account has been successfuly registered.', }, INPUT: { EMAIL: 'Email', FULLNAME: 'Fullname', PASSWORD: 'Password', CONFIRM_PASSWORD: 'Confirm Password', - USERNAME: 'ユーザー名' + USERNAME: 'ユーザー名', }, VALIDATION: { INVALID: '{{name}} is not valid', @@ -58,7 +58,7 @@ export const locale = { MIN_LENGTH_FIELD: 'Minimum field length:', MAX_LENGTH_FIELD: 'Maximum field length:', INVALID_FIELD: 'Field is not valid', - } + }, }, ECOMMERCE: { COMMON: { @@ -72,7 +72,7 @@ export const locale = { BUSINESS: 'Business', INDIVIDUAL: 'Individual', SEARCH: 'Search', - IN_ALL_FIELDS: 'in all fields' + IN_ALL_FIELDS: 'in all fields', }, ECOMMERCE: 'eCommerce', CUSTOMERS: { @@ -83,23 +83,23 @@ export const locale = { TITLE: 'Customer Delete', DESCRIPTION: 'Are you sure to permanently delete this customer?', WAIT_DESCRIPTION: 'Customer is deleting...', - MESSAGE: 'Customer has been deleted' + MESSAGE: 'Customer has been deleted', }, DELETE_CUSTOMER_MULTY: { TITLE: 'Customers Delete', DESCRIPTION: 'Are you sure to permanently delete selected customers?', WAIT_DESCRIPTION: 'Customers are deleting...', - MESSAGE: 'Selected customers have been deleted' + MESSAGE: 'Selected customers have been deleted', }, UPDATE_STATUS: { TITLE: 'Status has been updated for selected customers', - MESSAGE: 'Selected customers status have successfully been updated' + MESSAGE: 'Selected customers status have successfully been updated', }, EDIT: { UPDATE_MESSAGE: 'Customer has been updated', - ADD_MESSAGE: 'Customer has been created' - } - } - } - } + ADD_MESSAGE: 'Customer has been created', + }, + }, + }, + }, }; diff --git a/src/app/core/auth/_actions/auth.actions.ts b/src/app/core/auth/_actions/auth.actions.ts index 1263843..578ae34 100644 --- a/src/app/core/auth/_actions/auth.actions.ts +++ b/src/app/core/auth/_actions/auth.actions.ts @@ -2,37 +2,34 @@ import { Action } from '@ngrx/store'; import { User } from '../_models/user.model'; export enum AuthActionTypes { - Login = '[Login] Action', - Logout = '[Logout] Action', - Register = '[Register] Action', - UserRequested = '[Request User] Action', - UserLoaded = '[Load User] Auth API' + Login = '[Login] Action', + Logout = '[Logout] Action', + Register = '[Register] Action', + UserRequested = '[Request User] Action', + UserLoaded = '[Load User] Auth API', } export class Login implements Action { - readonly type = AuthActionTypes.Login; - constructor(public payload: { authToken: string }) { } + readonly type = AuthActionTypes.Login; + constructor(public payload: { authToken: string }) {} } export class Logout implements Action { - readonly type = AuthActionTypes.Logout; + readonly type = AuthActionTypes.Logout; } export class Register implements Action { - readonly type = AuthActionTypes.Register; - constructor(public payload: { authToken: string }) { } + readonly type = AuthActionTypes.Register; + constructor(public payload: { authToken: string }) {} } - export class UserRequested implements Action { - readonly type = AuthActionTypes.UserRequested; + readonly type = AuthActionTypes.UserRequested; } export class UserLoaded implements Action { - readonly type = AuthActionTypes.UserLoaded; - constructor(public payload: { user: User }) { } + readonly type = AuthActionTypes.UserLoaded; + constructor(public payload: { user: User }) {} } - - export type AuthActions = Login | Logout | Register | UserRequested | UserLoaded; diff --git a/src/app/core/auth/_actions/permission.actions.ts b/src/app/core/auth/_actions/permission.actions.ts index 2079ca2..e4f1738 100644 --- a/src/app/core/auth/_actions/permission.actions.ts +++ b/src/app/core/auth/_actions/permission.actions.ts @@ -4,17 +4,17 @@ import { Action } from '@ngrx/store'; import { Permission } from '../_models/permission.model'; export enum PermissionActionTypes { - AllPermissionsRequested = '[Init] All Permissions Requested', - AllPermissionsLoaded = '[Init] All Permissions Loaded' + AllPermissionsRequested = '[Init] All Permissions Requested', + AllPermissionsLoaded = '[Init] All Permissions Loaded', } export class AllPermissionsRequested implements Action { - readonly type = PermissionActionTypes.AllPermissionsRequested; + readonly type = PermissionActionTypes.AllPermissionsRequested; } export class AllPermissionsLoaded implements Action { - readonly type = PermissionActionTypes.AllPermissionsLoaded; - constructor(public payload: { permissions: Permission[] }) { } + readonly type = PermissionActionTypes.AllPermissionsLoaded; + constructor(public payload: { permissions: Permission[] }) {} } export type PermissionActions = AllPermissionsRequested | AllPermissionsLoaded; diff --git a/src/app/core/auth/_actions/role.actions.ts b/src/app/core/auth/_actions/role.actions.ts index f7083ec..c207c01 100644 --- a/src/app/core/auth/_actions/role.actions.ts +++ b/src/app/core/auth/_actions/role.actions.ts @@ -7,83 +7,86 @@ import { QueryParamsModel } from '../../_base/crud'; import { Role } from '../_models/role.model'; export enum RoleActionTypes { - AllRolesRequested = '[Roles Home Page] All Roles Requested', - AllRolesLoaded = '[Roles API] All Roles Loaded', - RoleOnServerCreated = '[Edit Role Dialog] Role On Server Created', - RoleCreated = '[Edit Roles Dialog] Roles Created', - RoleUpdated = '[Edit Role Dialog] Role Updated', - RoleDeleted = '[Roles List Page] Role Deleted', - RolesPageRequested = '[Roles List Page] Roles Page Requested', - RolesPageLoaded = '[Roles API] Roles Page Loaded', - RolesPageCancelled = '[Roles API] Roles Page Cancelled', - RolesPageToggleLoading = '[Roles page] Roles Page Toggle Loading', - RolesActionToggleLoading = '[Roles] Roles Action Toggle Loading' + AllRolesRequested = '[Roles Home Page] All Roles Requested', + AllRolesLoaded = '[Roles API] All Roles Loaded', + RoleOnServerCreated = '[Edit Role Dialog] Role On Server Created', + RoleCreated = '[Edit Roles Dialog] Roles Created', + RoleUpdated = '[Edit Role Dialog] Role Updated', + RoleDeleted = '[Roles List Page] Role Deleted', + RolesPageRequested = '[Roles List Page] Roles Page Requested', + RolesPageLoaded = '[Roles API] Roles Page Loaded', + RolesPageCancelled = '[Roles API] Roles Page Cancelled', + RolesPageToggleLoading = '[Roles page] Roles Page Toggle Loading', + RolesActionToggleLoading = '[Roles] Roles Action Toggle Loading', } export class RoleOnServerCreated implements Action { - readonly type = RoleActionTypes.RoleOnServerCreated; - constructor(public payload: { role: Role }) { } + readonly type = RoleActionTypes.RoleOnServerCreated; + constructor(public payload: { role: Role }) {} } export class RoleCreated implements Action { - readonly type = RoleActionTypes.RoleCreated; - constructor(public payload: { role: Role }) { } + readonly type = RoleActionTypes.RoleCreated; + constructor(public payload: { role: Role }) {} } export class RoleUpdated implements Action { - readonly type = RoleActionTypes.RoleUpdated; - constructor(public payload: { - partialrole: Update, - role: Role - }) { } + readonly type = RoleActionTypes.RoleUpdated; + constructor( + public payload: { + partialrole: Update; + role: Role; + }, + ) {} } export class RoleDeleted implements Action { - readonly type = RoleActionTypes.RoleDeleted; - constructor(public payload: { id: number }) {} + readonly type = RoleActionTypes.RoleDeleted; + constructor(public payload: { id: number }) {} } export class RolesPageRequested implements Action { - readonly type = RoleActionTypes.RolesPageRequested; - constructor(public payload: { page: QueryParamsModel }) { } + readonly type = RoleActionTypes.RolesPageRequested; + constructor(public payload: { page: QueryParamsModel }) {} } export class RolesPageLoaded implements Action { - readonly type = RoleActionTypes.RolesPageLoaded; - constructor(public payload: { roles: Role[], totalCount: number, page: QueryParamsModel }) { } + readonly type = RoleActionTypes.RolesPageLoaded; + constructor(public payload: { roles: Role[]; totalCount: number; page: QueryParamsModel }) {} } export class RolesPageCancelled implements Action { - readonly type = RoleActionTypes.RolesPageCancelled; + readonly type = RoleActionTypes.RolesPageCancelled; } export class AllRolesRequested implements Action { - readonly type = RoleActionTypes.AllRolesRequested; + readonly type = RoleActionTypes.AllRolesRequested; } export class AllRolesLoaded implements Action { - readonly type = RoleActionTypes.AllRolesLoaded; - constructor(public payload: { roles: Role[] }) { } + readonly type = RoleActionTypes.AllRolesLoaded; + constructor(public payload: { roles: Role[] }) {} } export class RolesPageToggleLoading implements Action { - readonly type = RoleActionTypes.RolesPageToggleLoading; - constructor(public payload: { isLoading: boolean }) { } + readonly type = RoleActionTypes.RolesPageToggleLoading; + constructor(public payload: { isLoading: boolean }) {} } export class RolesActionToggleLoading implements Action { - readonly type = RoleActionTypes.RolesActionToggleLoading; - constructor(public payload: { isLoading: boolean }) { } + readonly type = RoleActionTypes.RolesActionToggleLoading; + constructor(public payload: { isLoading: boolean }) {} } -export type RoleActions = RoleCreated -| RoleUpdated -| RoleDeleted -| RolesPageRequested -| RolesPageLoaded -| RolesPageCancelled -| AllRolesLoaded -| AllRolesRequested -| RoleOnServerCreated -| RolesPageToggleLoading -| RolesActionToggleLoading; +export type RoleActions = + | RoleCreated + | RoleUpdated + | RoleDeleted + | RolesPageRequested + | RolesPageLoaded + | RolesPageCancelled + | AllRolesLoaded + | AllRolesRequested + | RoleOnServerCreated + | RolesPageToggleLoading + | RolesActionToggleLoading; diff --git a/src/app/core/auth/_actions/user.actions.ts b/src/app/core/auth/_actions/user.actions.ts index c47cef4..cae94bc 100644 --- a/src/app/core/auth/_actions/user.actions.ts +++ b/src/app/core/auth/_actions/user.actions.ts @@ -7,74 +7,75 @@ import { User } from '../_models/user.model'; import { QueryParamsModel } from '../../_base/crud'; export enum UserActionTypes { - AllUsersRequested = '[Users Module] All Users Requested', - AllUsersLoaded = '[Users API] All Users Loaded', - UserOnServerCreated = '[Edit User Component] User On Server Created', - UserCreated = '[Edit User Dialog] User Created', - UserUpdated = '[Edit User Dialog] User Updated', - UserDeleted = '[Users List Page] User Deleted', - UsersPageRequested = '[Users List Page] Users Page Requested', - UsersPageLoaded = '[Users API] Users Page Loaded', - UsersPageCancelled = '[Users API] Users Page Cancelled', - UsersPageToggleLoading = '[Users] Users Page Toggle Loading', - UsersActionToggleLoading = '[Users] Users Action Toggle Loading' + AllUsersRequested = '[Users Module] All Users Requested', + AllUsersLoaded = '[Users API] All Users Loaded', + UserOnServerCreated = '[Edit User Component] User On Server Created', + UserCreated = '[Edit User Dialog] User Created', + UserUpdated = '[Edit User Dialog] User Updated', + UserDeleted = '[Users List Page] User Deleted', + UsersPageRequested = '[Users List Page] Users Page Requested', + UsersPageLoaded = '[Users API] Users Page Loaded', + UsersPageCancelled = '[Users API] Users Page Cancelled', + UsersPageToggleLoading = '[Users] Users Page Toggle Loading', + UsersActionToggleLoading = '[Users] Users Action Toggle Loading', } export class UserOnServerCreated implements Action { - readonly type = UserActionTypes.UserOnServerCreated; - constructor(public payload: { user: User }) { } + readonly type = UserActionTypes.UserOnServerCreated; + constructor(public payload: { user: User }) {} } export class UserCreated implements Action { - readonly type = UserActionTypes.UserCreated; - constructor(public payload: { user: User }) { } + readonly type = UserActionTypes.UserCreated; + constructor(public payload: { user: User }) {} } - export class UserUpdated implements Action { - readonly type = UserActionTypes.UserUpdated; - constructor(public payload: { - partialUser: Update, - user: User - }) { } + readonly type = UserActionTypes.UserUpdated; + constructor( + public payload: { + partialUser: Update; + user: User; + }, + ) {} } export class UserDeleted implements Action { - readonly type = UserActionTypes.UserDeleted; - constructor(public payload: { id: number }) {} + readonly type = UserActionTypes.UserDeleted; + constructor(public payload: { id: number }) {} } export class UsersPageRequested implements Action { - readonly type = UserActionTypes.UsersPageRequested; - constructor(public payload: { page: QueryParamsModel }) { } + readonly type = UserActionTypes.UsersPageRequested; + constructor(public payload: { page: QueryParamsModel }) {} } export class UsersPageLoaded implements Action { - readonly type = UserActionTypes.UsersPageLoaded; - constructor(public payload: { users: User[], totalCount: number, page: QueryParamsModel }) { } + readonly type = UserActionTypes.UsersPageLoaded; + constructor(public payload: { users: User[]; totalCount: number; page: QueryParamsModel }) {} } - export class UsersPageCancelled implements Action { - readonly type = UserActionTypes.UsersPageCancelled; + readonly type = UserActionTypes.UsersPageCancelled; } export class UsersPageToggleLoading implements Action { - readonly type = UserActionTypes.UsersPageToggleLoading; - constructor(public payload: { isLoading: boolean }) { } + readonly type = UserActionTypes.UsersPageToggleLoading; + constructor(public payload: { isLoading: boolean }) {} } export class UsersActionToggleLoading implements Action { - readonly type = UserActionTypes.UsersActionToggleLoading; - constructor(public payload: { isLoading: boolean }) { } + readonly type = UserActionTypes.UsersActionToggleLoading; + constructor(public payload: { isLoading: boolean }) {} } -export type UserActions = UserCreated -| UserUpdated -| UserDeleted -| UserOnServerCreated -| UsersPageLoaded -| UsersPageCancelled -| UsersPageToggleLoading -| UsersPageRequested -| UsersActionToggleLoading; +export type UserActions = + | UserCreated + | UserUpdated + | UserDeleted + | UserOnServerCreated + | UsersPageLoaded + | UsersPageCancelled + | UsersPageToggleLoading + | UsersPageRequested + | UsersActionToggleLoading; diff --git a/src/app/core/auth/_data-sources/roles.datasource.ts b/src/app/core/auth/_data-sources/roles.datasource.ts index 39e9c34..129b941 100644 --- a/src/app/core/auth/_data-sources/roles.datasource.ts +++ b/src/app/core/auth/_data-sources/roles.datasource.ts @@ -8,26 +8,23 @@ import { BaseDataSource, QueryResultsModel } from '../../_base/crud'; // State import { AppState } from '../../../core/reducers'; // Selectirs -import { selectQueryResult, selectRolesPageLoading, selectRolesShowInitWaitingMessage } from '../_selectors/role.selectors'; +import { + selectQueryResult, + selectRolesPageLoading, + selectRolesShowInitWaitingMessage, +} from '../_selectors/role.selectors'; export class RolesDataSource extends BaseDataSource { constructor(private store: Store) { super(); - this.loading$ = this.store.pipe( - select(selectRolesPageLoading) - ); + this.loading$ = this.store.pipe(select(selectRolesPageLoading)); - this.isPreloadTextViewed$ = this.store.pipe( - select(selectRolesShowInitWaitingMessage) - ); + this.isPreloadTextViewed$ = this.store.pipe(select(selectRolesShowInitWaitingMessage)); - this.store.pipe( - select(selectQueryResult) - ).subscribe((response: QueryResultsModel) => { + this.store.pipe(select(selectQueryResult)).subscribe((response: QueryResultsModel) => { this.paginatorTotalSubject.next(response.totalCount); this.entitySubject.next(response.items); }); - } } diff --git a/src/app/core/auth/_data-sources/users.datasource.ts b/src/app/core/auth/_data-sources/users.datasource.ts index 05a5941..52012ea 100644 --- a/src/app/core/auth/_data-sources/users.datasource.ts +++ b/src/app/core/auth/_data-sources/users.datasource.ts @@ -7,24 +7,21 @@ import { Store, select } from '@ngrx/store'; import { BaseDataSource, QueryResultsModel } from '../../_base/crud'; // State import { AppState } from '../../../core/reducers'; -import { selectUsersInStore, selectUsersPageLoading, selectUsersShowInitWaitingMessage } from '../_selectors/user.selectors'; - +import { + selectUsersInStore, + selectUsersPageLoading, + selectUsersShowInitWaitingMessage, +} from '../_selectors/user.selectors'; export class UsersDataSource extends BaseDataSource { constructor(private store: Store) { super(); - this.loading$ = this.store.pipe( - select(selectUsersPageLoading) - ); + this.loading$ = this.store.pipe(select(selectUsersPageLoading)); - this.isPreloadTextViewed$ = this.store.pipe( - select(selectUsersShowInitWaitingMessage) - ); + this.isPreloadTextViewed$ = this.store.pipe(select(selectUsersShowInitWaitingMessage)); - this.store.pipe( - select(selectUsersInStore) - ).subscribe((response: QueryResultsModel) => { + this.store.pipe(select(selectUsersInStore)).subscribe((response: QueryResultsModel) => { this.paginatorTotalSubject.next(response.totalCount); this.entitySubject.next(response.items); }); diff --git a/src/app/core/auth/_effects/auth.effects.ts b/src/app/core/auth/_effects/auth.effects.ts index 69b91b3..5872a16 100644 --- a/src/app/core/auth/_effects/auth.effects.ts +++ b/src/app/core/auth/_effects/auth.effects.ts @@ -16,60 +16,61 @@ import { isUserLoaded } from '../_selectors/auth.selectors'; @Injectable() export class AuthEffects { - @Effect({dispatch: false}) - login$ = this.actions$.pipe( - ofType(AuthActionTypes.Login), - tap(action => { - localStorage.setItem(environment.authTokenKey, action.payload.authToken); - this.store.dispatch(new UserRequested()); - }), - ); + @Effect({ dispatch: false }) + login$ = this.actions$.pipe( + ofType(AuthActionTypes.Login), + tap(action => { + localStorage.setItem(environment.authTokenKey, action.payload.authToken); + this.store.dispatch(new UserRequested()); + }), + ); - @Effect({dispatch: false}) - logout$ = this.actions$.pipe( - ofType(AuthActionTypes.Logout), - tap(() => { - localStorage.removeItem(environment.authTokenKey); - this.router.navigateByUrl('/auth/login'); - }) - ); + @Effect({ dispatch: false }) + logout$ = this.actions$.pipe( + ofType(AuthActionTypes.Logout), + tap(() => { + localStorage.removeItem(environment.authTokenKey); + this.router.navigateByUrl('/auth/login'); + }), + ); - @Effect({dispatch: false}) - register$ = this.actions$.pipe( - ofType(AuthActionTypes.Register), - tap(action => { - localStorage.setItem(environment.authTokenKey, action.payload.authToken); - }) - ); + @Effect({ dispatch: false }) + register$ = this.actions$.pipe( + ofType(AuthActionTypes.Register), + tap(action => { + localStorage.setItem(environment.authTokenKey, action.payload.authToken); + }), + ); - @Effect({dispatch: false}) - loadUser$ = this.actions$ - .pipe( - ofType(AuthActionTypes.UserRequested), - withLatestFrom(this.store.pipe(select(isUserLoaded))), - filter(([action, _isUserLoaded]) => !_isUserLoaded), - mergeMap(([action, _isUserLoaded]) => this.auth.getUserByToken()), - tap(_user => { - if (_user) { - this.store.dispatch(new UserLoaded({ user: _user })); - } else { - this.store.dispatch(new Logout()); - } - }) - ); + @Effect({ dispatch: false }) + loadUser$ = this.actions$.pipe( + ofType(AuthActionTypes.UserRequested), + withLatestFrom(this.store.pipe(select(isUserLoaded))), + filter(([action, _isUserLoaded]) => !_isUserLoaded), + mergeMap(([action, _isUserLoaded]) => this.auth.getUserByToken()), + tap(_user => { + if (_user) { + this.store.dispatch(new UserLoaded({ user: _user })); + } else { + this.store.dispatch(new Logout()); + } + }), + ); - @Effect() - init$: Observable = defer(() => { - const userToken = localStorage.getItem(environment.authTokenKey); - let observableResult = of({type: 'NO_ACTION'}); - if (userToken) { - observableResult = of(new Login({ authToken: userToken })); - } - return observableResult; - }); + @Effect() + init$: Observable = defer(() => { + const userToken = localStorage.getItem(environment.authTokenKey); + let observableResult = of({ type: 'NO_ACTION' }); + if (userToken) { + observableResult = of(new Login({ authToken: userToken })); + } + return observableResult; + }); - constructor(private actions$: Actions, - private router: Router, - private auth: AuthService, - private store: Store) { } + constructor( + private actions$: Actions, + private router: Router, + private auth: AuthService, + private store: Store, + ) {} } diff --git a/src/app/core/auth/_effects/permission.effects.ts b/src/app/core/auth/_effects/permission.effects.ts index 6f2ba11..2cb6342 100644 --- a/src/app/core/auth/_effects/permission.effects.ts +++ b/src/app/core/auth/_effects/permission.effects.ts @@ -9,32 +9,27 @@ import { Action } from '@ngrx/store'; // Services import { AuthService } from '../_services'; // Actions -import { - AllPermissionsLoaded, - AllPermissionsRequested, - PermissionActionTypes -} from '../_actions/permission.actions'; +import { AllPermissionsLoaded, AllPermissionsRequested, PermissionActionTypes } from '../_actions/permission.actions'; // Models import { Permission } from '../_models/permission.model'; @Injectable() export class PermissionEffects { - @Effect() - loadAllPermissions$ = this.actions$ - .pipe( - ofType(PermissionActionTypes.AllPermissionsRequested), - mergeMap(() => this.auth.getAllPermissions()), - map((result: Permission[]) => { - return new AllPermissionsLoaded({ - permissions: result - }); - }) - ); + @Effect() + loadAllPermissions$ = this.actions$.pipe( + ofType(PermissionActionTypes.AllPermissionsRequested), + mergeMap(() => this.auth.getAllPermissions()), + map((result: Permission[]) => { + return new AllPermissionsLoaded({ + permissions: result, + }); + }), + ); - @Effect() - init$: Observable = defer(() => { - return of(new AllPermissionsRequested()); - }); + @Effect() + init$: Observable = defer(() => { + return of(new AllPermissionsRequested()); + }); - constructor(private actions$: Actions, private auth: AuthService) { } + constructor(private actions$: Actions, private auth: AuthService) {} } diff --git a/src/app/core/auth/_effects/role.effects.ts b/src/app/core/auth/_effects/role.effects.ts index 2214317..c67a017 100644 --- a/src/app/core/auth/_effects/role.effects.ts +++ b/src/app/core/auth/_effects/role.effects.ts @@ -16,107 +16,100 @@ import { AppState } from '../../../core/reducers'; import { allRolesLoaded } from '../_selectors/role.selectors'; // Actions import { - AllRolesLoaded, - AllRolesRequested, - RoleActionTypes, - RolesPageRequested, - RolesPageLoaded, - RoleUpdated, - RolesPageToggleLoading, - RoleDeleted, - RoleOnServerCreated, - RoleCreated, - RolesActionToggleLoading + AllRolesLoaded, + AllRolesRequested, + RoleActionTypes, + RolesPageRequested, + RolesPageLoaded, + RoleUpdated, + RolesPageToggleLoading, + RoleDeleted, + RoleOnServerCreated, + RoleCreated, + RolesActionToggleLoading, } from '../_actions/role.actions'; @Injectable() export class RoleEffects { - showPageLoadingDistpatcher = new RolesPageToggleLoading({ isLoading: true }); - showActionLoadingDistpatcher = new RolesActionToggleLoading({ isLoading: true }); - hideActionLoadingDistpatcher = new RolesActionToggleLoading({ isLoading: false }); + showPageLoadingDistpatcher = new RolesPageToggleLoading({ isLoading: true }); + showActionLoadingDistpatcher = new RolesActionToggleLoading({ isLoading: true }); + hideActionLoadingDistpatcher = new RolesActionToggleLoading({ isLoading: false }); - @Effect() - loadAllRoles$ = this.actions$ - .pipe( - ofType(RoleActionTypes.AllRolesRequested), - withLatestFrom(this.store.pipe(select(allRolesLoaded))), - filter(([action, isAllRolesLoaded]) => !isAllRolesLoaded), - mergeMap(() => this.auth.getAllRoles()), - map(roles => { - return new AllRolesLoaded({roles}); - }) - ); + @Effect() + loadAllRoles$ = this.actions$.pipe( + ofType(RoleActionTypes.AllRolesRequested), + withLatestFrom(this.store.pipe(select(allRolesLoaded))), + filter(([action, isAllRolesLoaded]) => !isAllRolesLoaded), + mergeMap(() => this.auth.getAllRoles()), + map(roles => { + return new AllRolesLoaded({ roles }); + }), + ); - @Effect() - loadRolesPage$ = this.actions$ - .pipe( - ofType(RoleActionTypes.RolesPageRequested), - mergeMap(( { payload } ) => { - this.store.dispatch(this.showPageLoadingDistpatcher); - const requestToServer = this.auth.findRoles(payload.page); - const lastQuery = of(payload.page); - return forkJoin(requestToServer, lastQuery); - }), - map(response => { - const result: QueryResultsModel = response[0]; - const lastQuery: QueryParamsModel = response[1]; - return new RolesPageLoaded({ - roles: result.items, - totalCount: result.totalCount, - page: lastQuery - }); - }), - ); + @Effect() + loadRolesPage$ = this.actions$.pipe( + ofType(RoleActionTypes.RolesPageRequested), + mergeMap(({ payload }) => { + this.store.dispatch(this.showPageLoadingDistpatcher); + const requestToServer = this.auth.findRoles(payload.page); + const lastQuery = of(payload.page); + return forkJoin(requestToServer, lastQuery); + }), + map(response => { + const result: QueryResultsModel = response[0]; + const lastQuery: QueryParamsModel = response[1]; + return new RolesPageLoaded({ + roles: result.items, + totalCount: result.totalCount, + page: lastQuery, + }); + }), + ); - @Effect() - deleteRole$ = this.actions$ - .pipe( - ofType(RoleActionTypes.RoleDeleted), - mergeMap(( { payload } ) => { - this.store.dispatch(this.showActionLoadingDistpatcher); - return this.auth.deleteRole(payload.id); - } - ), - map(() => { - return this.hideActionLoadingDistpatcher; - }), - ); + @Effect() + deleteRole$ = this.actions$.pipe( + ofType(RoleActionTypes.RoleDeleted), + mergeMap(({ payload }) => { + this.store.dispatch(this.showActionLoadingDistpatcher); + return this.auth.deleteRole(payload.id); + }), + map(() => { + return this.hideActionLoadingDistpatcher; + }), + ); - @Effect() - updateRole$ = this.actions$ - .pipe( - ofType(RoleActionTypes.RoleUpdated), - mergeMap(( { payload } ) => { - this.store.dispatch(this.showActionLoadingDistpatcher); - return this.auth.updateRole(payload.role); - }), - map(() => { - return this.hideActionLoadingDistpatcher; - }), - ); + @Effect() + updateRole$ = this.actions$.pipe( + ofType(RoleActionTypes.RoleUpdated), + mergeMap(({ payload }) => { + this.store.dispatch(this.showActionLoadingDistpatcher); + return this.auth.updateRole(payload.role); + }), + map(() => { + return this.hideActionLoadingDistpatcher; + }), + ); + @Effect() + createRole$ = this.actions$.pipe( + ofType(RoleActionTypes.RoleOnServerCreated), + mergeMap(({ payload }) => { + this.store.dispatch(this.showActionLoadingDistpatcher); + return this.auth.createRole(payload.role).pipe( + tap(res => { + this.store.dispatch(new RoleCreated({ role: res })); + }), + ); + }), + map(() => { + return this.hideActionLoadingDistpatcher; + }), + ); - @Effect() - createRole$ = this.actions$ - .pipe( - ofType(RoleActionTypes.RoleOnServerCreated), - mergeMap(( { payload } ) => { - this.store.dispatch(this.showActionLoadingDistpatcher); - return this.auth.createRole(payload.role).pipe( - tap(res => { - this.store.dispatch(new RoleCreated({ role: res })); - }) - ); - }), - map(() => { - return this.hideActionLoadingDistpatcher; - }), - ); + @Effect() + init$: Observable = defer(() => { + return of(new AllRolesRequested()); + }); - @Effect() - init$: Observable = defer(() => { - return of(new AllRolesRequested()); - }); - - constructor(private actions$: Actions, private auth: AuthService, private store: Store) { } + constructor(private actions$: Actions, private auth: AuthService, private store: Store) {} } diff --git a/src/app/core/auth/_effects/user.effects.ts b/src/app/core/auth/_effects/user.effects.ts index f6fcb8d..bacd7a2 100644 --- a/src/app/core/auth/_effects/user.effects.ts +++ b/src/app/core/auth/_effects/user.effects.ts @@ -13,89 +13,84 @@ import { AuthService } from '../../../core/auth/_services'; // State import { AppState } from '../../../core/reducers'; import { - UserActionTypes, - UsersPageRequested, - UsersPageLoaded, - UserCreated, - UserDeleted, - UserUpdated, - UserOnServerCreated, - UsersActionToggleLoading, - UsersPageToggleLoading + UserActionTypes, + UsersPageRequested, + UsersPageLoaded, + UserCreated, + UserDeleted, + UserUpdated, + UserOnServerCreated, + UsersActionToggleLoading, + UsersPageToggleLoading, } from '../_actions/user.actions'; @Injectable() export class UserEffects { - showPageLoadingDistpatcher = new UsersPageToggleLoading({ isLoading: true }); - hidePageLoadingDistpatcher = new UsersPageToggleLoading({ isLoading: false }); + showPageLoadingDistpatcher = new UsersPageToggleLoading({ isLoading: true }); + hidePageLoadingDistpatcher = new UsersPageToggleLoading({ isLoading: false }); - showActionLoadingDistpatcher = new UsersActionToggleLoading({ isLoading: true }); - hideActionLoadingDistpatcher = new UsersActionToggleLoading({ isLoading: false }); + showActionLoadingDistpatcher = new UsersActionToggleLoading({ isLoading: true }); + hideActionLoadingDistpatcher = new UsersActionToggleLoading({ isLoading: false }); - @Effect() - loadUsersPage$ = this.actions$ - .pipe( - ofType(UserActionTypes.UsersPageRequested), - mergeMap(( { payload } ) => { - this.store.dispatch(this.showPageLoadingDistpatcher); - const requestToServer = this.auth.findUsers(payload.page); - const lastQuery = of(payload.page); - return forkJoin(requestToServer, lastQuery); - }), - map(response => { - const result: QueryResultsModel = response[0]; - const lastQuery: QueryParamsModel = response[1]; - return new UsersPageLoaded({ - users: result.items, - totalCount: result.totalCount, - page: lastQuery - }); - }), - ); + @Effect() + loadUsersPage$ = this.actions$.pipe( + ofType(UserActionTypes.UsersPageRequested), + mergeMap(({ payload }) => { + this.store.dispatch(this.showPageLoadingDistpatcher); + const requestToServer = this.auth.findUsers(payload.page); + const lastQuery = of(payload.page); + return forkJoin(requestToServer, lastQuery); + }), + map(response => { + const result: QueryResultsModel = response[0]; + const lastQuery: QueryParamsModel = response[1]; + return new UsersPageLoaded({ + users: result.items, + totalCount: result.totalCount, + page: lastQuery, + }); + }), + ); - @Effect() - deleteUser$ = this.actions$ - .pipe( - ofType(UserActionTypes.UserDeleted), - mergeMap(( { payload } ) => { - this.store.dispatch(this.showActionLoadingDistpatcher); - return this.auth.deleteUser(payload.id); - } - ), - map(() => { - return this.hideActionLoadingDistpatcher; - }), - ); + @Effect() + deleteUser$ = this.actions$.pipe( + ofType(UserActionTypes.UserDeleted), + mergeMap(({ payload }) => { + this.store.dispatch(this.showActionLoadingDistpatcher); + return this.auth.deleteUser(payload.id); + }), + map(() => { + return this.hideActionLoadingDistpatcher; + }), + ); - @Effect() - updateUser$ = this.actions$ - .pipe( - ofType(UserActionTypes.UserUpdated), - mergeMap(( { payload } ) => { - this.store.dispatch(this.showActionLoadingDistpatcher); - return this.auth.updateUser(payload.user); - }), - map(() => { - return this.hideActionLoadingDistpatcher; - }), - ); + @Effect() + updateUser$ = this.actions$.pipe( + ofType(UserActionTypes.UserUpdated), + mergeMap(({ payload }) => { + this.store.dispatch(this.showActionLoadingDistpatcher); + return this.auth.updateUser(payload.user); + }), + map(() => { + return this.hideActionLoadingDistpatcher; + }), + ); - @Effect() - createUser$ = this.actions$ - .pipe( - ofType(UserActionTypes.UserOnServerCreated), - mergeMap(( { payload } ) => { - this.store.dispatch(this.showActionLoadingDistpatcher); - return this.auth.createUser(payload.user).pipe( - tap(res => { - this.store.dispatch(new UserCreated({ user: res })); - }) - ); - }), - map(() => { - return this.hideActionLoadingDistpatcher; - }), - ); + @Effect() + createUser$ = this.actions$.pipe( + ofType(UserActionTypes.UserOnServerCreated), + mergeMap(({ payload }) => { + this.store.dispatch(this.showActionLoadingDistpatcher); + return this.auth.createUser(payload.user).pipe( + tap(res => { + this.store.dispatch(new UserCreated({ user: res })); + }), + ); + }), + map(() => { + return this.hideActionLoadingDistpatcher; + }), + ); - constructor(private actions$: Actions, private auth: AuthService, private store: Store) { } + constructor(private actions$: Actions, private auth: AuthService, private store: Store) {} } diff --git a/src/app/core/auth/_guards/auth.guard.ts b/src/app/core/auth/_guards/auth.guard.ts index cede4b8..2ae9fce 100644 --- a/src/app/core/auth/_guards/auth.guard.ts +++ b/src/app/core/auth/_guards/auth.guard.ts @@ -7,22 +7,21 @@ import { tap } from 'rxjs/operators'; // NGRX import { select, Store } from '@ngrx/store'; // Auth reducers and selectors -import { AppState} from '../../../core/reducers/'; +import { AppState } from '../../../core/reducers/'; import { isLoggedIn } from '../_selectors/auth.selectors'; @Injectable() export class AuthGuard implements CanActivate { - constructor(private store: Store, private router: Router) { } + constructor(private store: Store, private router: Router) {} - canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable { - return this.store - .pipe( - select(isLoggedIn), - tap(loggedIn => { - if (!loggedIn) { - this.router.navigateByUrl('/auth/login'); - } - }) - ); - } + canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable { + return this.store.pipe( + select(isLoggedIn), + tap(loggedIn => { + if (!loggedIn) { + this.router.navigateByUrl('/auth/login'); + } + }), + ); + } } diff --git a/src/app/core/auth/_guards/module.guard.ts b/src/app/core/auth/_guards/module.guard.ts index d2e0228..c0a67fb 100644 --- a/src/app/core/auth/_guards/module.guard.ts +++ b/src/app/core/auth/_guards/module.guard.ts @@ -7,36 +7,34 @@ import { tap, map } from 'rxjs/operators'; // NGRX import { select, Store } from '@ngrx/store'; // Module reducers and selectors -import { AppState} from '../../../core/reducers/'; +import { AppState } from '../../../core/reducers/'; import { currentUserPermissions } from '../_selectors/auth.selectors'; import { Permission } from '../_models/permission.model'; import { find } from 'lodash'; @Injectable() export class ModuleGuard implements CanActivate { - constructor(private store: Store, private router: Router) { } + constructor(private store: Store, private router: Router) {} - canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable { + canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable { + const moduleName = route.data['moduleName'] as string; + if (!moduleName) { + return of(false); + } - const moduleName = route.data['moduleName'] as string; - if (!moduleName) { - return of(false); - } - - return this.store - .pipe( - select(currentUserPermissions), - map((permissions: Permission[]) => { - const _perm = find(permissions, (elem: Permission) => { - return elem.title.toLocaleLowerCase() === moduleName.toLocaleLowerCase(); - }); - return _perm ? true : false; - }), - tap(hasAccess => { - if (!hasAccess) { - this.router.navigateByUrl('/error/403'); - } - }) - ); - } + return this.store.pipe( + select(currentUserPermissions), + map((permissions: Permission[]) => { + const _perm = find(permissions, (elem: Permission) => { + return elem.title.toLocaleLowerCase() === moduleName.toLocaleLowerCase(); + }); + return _perm ? true : false; + }), + tap(hasAccess => { + if (!hasAccess) { + this.router.navigateByUrl('/error/403'); + } + }), + ); + } } diff --git a/src/app/core/auth/_models/address.model.ts b/src/app/core/auth/_models/address.model.ts index 69912c4..2ef4192 100644 --- a/src/app/core/auth/_models/address.model.ts +++ b/src/app/core/auth/_models/address.model.ts @@ -1,13 +1,13 @@ export class Address { - addressLine: string; - city: string; - state: string; - postCode: string; + addressLine: string; + city: string; + state: string; + postCode: string; - clear() { - this.addressLine = ''; - this.city = ''; - this.state = ''; - this.postCode = ''; - } + clear() { + this.addressLine = ''; + this.city = ''; + this.state = ''; + this.postCode = ''; + } } diff --git a/src/app/core/auth/_models/permission.model.ts b/src/app/core/auth/_models/permission.model.ts index 9744b29..f6b85f3 100644 --- a/src/app/core/auth/_models/permission.model.ts +++ b/src/app/core/auth/_models/permission.model.ts @@ -1,21 +1,21 @@ import { BaseModel } from '../../_base/crud'; export class Permission extends BaseModel { - id: number; - title: string; - level: number; - parentId: number; - isSelected: boolean; - name: string; - _children: Permission[]; + id: number; + title: string; + level: number; + parentId: number; + isSelected: boolean; + name: string; + _children: Permission[]; - clear(): void { - this.id = undefined; - this.title = ''; - this.level = 1; - this.parentId = undefined; - this.isSelected = false; - this.name = ''; - this._children = []; + clear(): void { + this.id = undefined; + this.title = ''; + this.level = 1; + this.parentId = undefined; + this.isSelected = false; + this.name = ''; + this._children = []; } } diff --git a/src/app/core/auth/_models/role.model.ts b/src/app/core/auth/_models/role.model.ts index 9204095..99e7b3e 100644 --- a/src/app/core/auth/_models/role.model.ts +++ b/src/app/core/auth/_models/role.model.ts @@ -1,15 +1,15 @@ import { BaseModel } from '../../_base/crud'; export class Role extends BaseModel { - id: number; - title: string; - permissions: number[]; - isCoreRole: boolean = false; + id: number; + title: string; + permissions: number[]; + isCoreRole: boolean = false; - clear(): void { - this.id = undefined; - this.title = ''; - this.permissions = []; - this.isCoreRole = false; + clear(): void { + this.id = undefined; + this.title = ''; + this.permissions = []; + this.isCoreRole = false; } } diff --git a/src/app/core/auth/_models/social-networks.model.ts b/src/app/core/auth/_models/social-networks.model.ts index 95b409d..a1f2052 100644 --- a/src/app/core/auth/_models/social-networks.model.ts +++ b/src/app/core/auth/_models/social-networks.model.ts @@ -1,13 +1,13 @@ export class SocialNetworks { - linkedIn: string; + linkedIn: string; facebook: string; twitter: string; - instagram: string; + instagram: string; - clear() { - this.linkedIn = ''; - this.facebook = ''; - this.twitter = ''; - this.instagram = ''; - } + clear() { + this.linkedIn = ''; + this.facebook = ''; + this.twitter = ''; + this.instagram = ''; + } } diff --git a/src/app/core/auth/_models/user.model.ts b/src/app/core/auth/_models/user.model.ts index 600b6ed..607499c 100644 --- a/src/app/core/auth/_models/user.model.ts +++ b/src/app/core/auth/_models/user.model.ts @@ -3,37 +3,37 @@ import { Address } from './address.model'; import { SocialNetworks } from './social-networks.model'; export class User extends BaseModel { - id: number; - username: string; - password: string; - email: string; - accessToken: string; - refreshToken: string; - roles: number[]; - pic: string; - fullname: string; - occupation: string; + id: number; + username: string; + password: string; + email: string; + accessToken: string; + refreshToken: string; + roles: number[]; + pic: string; + fullname: string; + occupation: string; companyName: string; phone: string; - address: Address; - socialNetworks: SocialNetworks; + address: Address; + socialNetworks: SocialNetworks; - clear(): void { - this.id = undefined; - this.username = ''; - this.password = ''; - this.email = ''; - this.roles = []; - this.fullname = ''; - this.accessToken = 'access-token-' + Math.random(); - this.refreshToken = 'access-token-' + Math.random(); - this.pic = './assets/media/users/default.jpg'; - this.occupation = ''; - this.companyName = ''; - this.phone = ''; - this.address = new Address(); - this.address.clear(); - this.socialNetworks = new SocialNetworks(); - this.socialNetworks.clear(); - } + clear(): void { + this.id = undefined; + this.username = ''; + this.password = ''; + this.email = ''; + this.roles = []; + this.fullname = ''; + this.accessToken = 'access-token-' + Math.random(); + this.refreshToken = 'access-token-' + Math.random(); + this.pic = './assets/media/users/default.jpg'; + this.occupation = ''; + this.companyName = ''; + this.phone = ''; + this.address = new Address(); + this.address.clear(); + this.socialNetworks = new SocialNetworks(); + this.socialNetworks.clear(); + } } diff --git a/src/app/core/auth/_reducers/auth.reducers.ts b/src/app/core/auth/_reducers/auth.reducers.ts index 84398e5..8a14efd 100644 --- a/src/app/core/auth/_reducers/auth.reducers.ts +++ b/src/app/core/auth/_reducers/auth.reducers.ts @@ -4,54 +4,54 @@ import { AuthActions, AuthActionTypes } from '../_actions/auth.actions'; import { User } from '../_models/user.model'; export interface AuthState { - loggedIn: boolean; - authToken: string; - user: User; - isUserLoaded: boolean; + loggedIn: boolean; + authToken: string; + user: User; + isUserLoaded: boolean; } export const initialAuthState: AuthState = { - loggedIn: false, - authToken: undefined, - user: undefined, - isUserLoaded: false + loggedIn: false, + authToken: undefined, + user: undefined, + isUserLoaded: false, }; export function authReducer(state = initialAuthState, action: AuthActions): AuthState { - switch (action.type) { - case AuthActionTypes.Login: { - const _token: string = action.payload.authToken; - return { - loggedIn: true, - authToken: _token, - user: undefined, - isUserLoaded: false - }; - } + switch (action.type) { + case AuthActionTypes.Login: { + const _token: string = action.payload.authToken; + return { + loggedIn: true, + authToken: _token, + user: undefined, + isUserLoaded: false, + }; + } - case AuthActionTypes.Register: { - const _token: string = action.payload.authToken; - return { - loggedIn: true, - authToken: _token, - user: undefined, - isUserLoaded: false - }; - } + case AuthActionTypes.Register: { + const _token: string = action.payload.authToken; + return { + loggedIn: true, + authToken: _token, + user: undefined, + isUserLoaded: false, + }; + } - case AuthActionTypes.Logout: - return initialAuthState; + case AuthActionTypes.Logout: + return initialAuthState; - case AuthActionTypes.UserLoaded: { - const _user: User = action.payload.user; - return { - ...state, - user: _user, - isUserLoaded: true - }; - } + case AuthActionTypes.UserLoaded: { + const _user: User = action.payload.user; + return { + ...state, + user: _user, + isUserLoaded: true, + }; + } - default: - return state; - } + default: + return state; + } } diff --git a/src/app/core/auth/_reducers/permission.reducers.ts b/src/app/core/auth/_reducers/permission.reducers.ts index 5ad4b9b..8eef633 100644 --- a/src/app/core/auth/_reducers/permission.reducers.ts +++ b/src/app/core/auth/_reducers/permission.reducers.ts @@ -7,36 +7,29 @@ import { PermissionActionTypes, PermissionActions } from '../_actions/permission import { Permission } from '../_models/permission.model'; export interface PermissionsState extends EntityState { - _isAllPermissionsLoaded: boolean; + _isAllPermissionsLoaded: boolean; } export const adapter: EntityAdapter = createEntityAdapter(); export const initialPermissionsState: PermissionsState = adapter.getInitialState({ - _isAllPermissionsLoaded: false + _isAllPermissionsLoaded: false, }); export function permissionsReducer(state = initialPermissionsState, action: PermissionActions): PermissionsState { - switch (action.type) { - case PermissionActionTypes.AllPermissionsRequested: - return {...state, - _isAllPermissionsLoaded: false - }; - case PermissionActionTypes.AllPermissionsLoaded: - return adapter.addAll(action.payload.permissions, { - ...state, - _isAllPermissionsLoaded: true - }); - default: - return state; - } + switch (action.type) { + case PermissionActionTypes.AllPermissionsRequested: + return { ...state, _isAllPermissionsLoaded: false }; + case PermissionActionTypes.AllPermissionsLoaded: + return adapter.addAll(action.payload.permissions, { + ...state, + _isAllPermissionsLoaded: true, + }); + default: + return state; + } } export const getRoleState = createFeatureSelector('permissions'); -export const { - selectAll, - selectEntities, - selectIds, - selectTotal -} = adapter.getSelectors(); +export const { selectAll, selectEntities, selectIds, selectTotal } = adapter.getSelectors(); diff --git a/src/app/core/auth/_reducers/role.reducers.ts b/src/app/core/auth/_reducers/role.reducers.ts index 5cdf7e1..29904b3 100644 --- a/src/app/core/auth/_reducers/role.reducers.ts +++ b/src/app/core/auth/_reducers/role.reducers.ts @@ -7,66 +7,80 @@ import { Role } from '../_models/role.model'; import { QueryParamsModel } from '../../_base/crud'; export interface RolesState extends EntityState { - isAllRolesLoaded: boolean; - queryRowsCount: number; - queryResult: Role[]; - lastCreatedRoleId: number; - listLoading: boolean; - actionsloading: boolean; - lastQuery: QueryParamsModel; - showInitWaitingMessage: boolean; + isAllRolesLoaded: boolean; + queryRowsCount: number; + queryResult: Role[]; + lastCreatedRoleId: number; + listLoading: boolean; + actionsloading: boolean; + lastQuery: QueryParamsModel; + showInitWaitingMessage: boolean; } export const adapter: EntityAdapter = createEntityAdapter(); export const initialRolesState: RolesState = adapter.getInitialState({ - isAllRolesLoaded: false, - queryRowsCount: 0, - queryResult: [], - lastCreatedRoleId: undefined, - listLoading: false, - actionsloading: false, - lastQuery: new QueryParamsModel({}), - showInitWaitingMessage: true + isAllRolesLoaded: false, + queryRowsCount: 0, + queryResult: [], + lastCreatedRoleId: undefined, + listLoading: false, + actionsloading: false, + lastQuery: new QueryParamsModel({}), + showInitWaitingMessage: true, }); export function rolesReducer(state = initialRolesState, action: RoleActions): RolesState { - switch (action.type) { - case RoleActionTypes.RolesPageToggleLoading: return { - ...state, listLoading: action.payload.isLoading, lastCreatedRoleId: undefined - }; - case RoleActionTypes.RolesActionToggleLoading: return { - ...state, actionsloading: action.payload.isLoading - }; - case RoleActionTypes.RoleOnServerCreated: return { - ...state - }; - case RoleActionTypes.RoleCreated: return adapter.addOne(action.payload.role, { - ...state, lastCreatedRoleId: action.payload.role.id - }); - case RoleActionTypes.RoleUpdated: return adapter.updateOne(action.payload.partialrole, state); - case RoleActionTypes.RoleDeleted: return adapter.removeOne(action.payload.id, state); - case RoleActionTypes.AllRolesLoaded: return adapter.addAll(action.payload.roles, { - ...state, isAllRolesLoaded: true - }); - case RoleActionTypes.RolesPageCancelled: return { - ...state, listLoading: false, queryRowsCount: 0, queryResult: [], lastQuery: new QueryParamsModel({}) - }; - case RoleActionTypes.RolesPageLoaded: return adapter.addMany(action.payload.roles, { - ...initialRolesState, - listLoading: false, - queryRowsCount: action.payload.totalCount, - queryResult: action.payload.roles, - lastQuery: action.payload.page, - showInitWaitingMessage: true - }); - default: return state; - } + switch (action.type) { + case RoleActionTypes.RolesPageToggleLoading: + return { + ...state, + listLoading: action.payload.isLoading, + lastCreatedRoleId: undefined, + }; + case RoleActionTypes.RolesActionToggleLoading: + return { + ...state, + actionsloading: action.payload.isLoading, + }; + case RoleActionTypes.RoleOnServerCreated: + return { + ...state, + }; + case RoleActionTypes.RoleCreated: + return adapter.addOne(action.payload.role, { + ...state, + lastCreatedRoleId: action.payload.role.id, + }); + case RoleActionTypes.RoleUpdated: + return adapter.updateOne(action.payload.partialrole, state); + case RoleActionTypes.RoleDeleted: + return adapter.removeOne(action.payload.id, state); + case RoleActionTypes.AllRolesLoaded: + return adapter.addAll(action.payload.roles, { + ...state, + isAllRolesLoaded: true, + }); + case RoleActionTypes.RolesPageCancelled: + return { + ...state, + listLoading: false, + queryRowsCount: 0, + queryResult: [], + lastQuery: new QueryParamsModel({}), + }; + case RoleActionTypes.RolesPageLoaded: + return adapter.addMany(action.payload.roles, { + ...initialRolesState, + listLoading: false, + queryRowsCount: action.payload.totalCount, + queryResult: action.payload.roles, + lastQuery: action.payload.page, + showInitWaitingMessage: true, + }); + default: + return state; + } } -export const { - selectAll, - selectEntities, - selectIds, - selectTotal -} = adapter.getSelectors(); +export const { selectAll, selectEntities, selectIds, selectTotal } = adapter.getSelectors(); diff --git a/src/app/core/auth/_reducers/user.reducers.ts b/src/app/core/auth/_reducers/user.reducers.ts index 83965b3..e1fc236 100644 --- a/src/app/core/auth/_reducers/user.reducers.ts +++ b/src/app/core/auth/_reducers/user.reducers.ts @@ -10,62 +10,71 @@ import { User } from '../_models/user.model'; // tslint:disable-next-line:no-empty-interface export interface UsersState extends EntityState { - listLoading: boolean; - actionsloading: boolean; - totalCount: number; - lastCreatedUserId: number; - lastQuery: QueryParamsModel; - showInitWaitingMessage: boolean; + listLoading: boolean; + actionsloading: boolean; + totalCount: number; + lastCreatedUserId: number; + lastQuery: QueryParamsModel; + showInitWaitingMessage: boolean; } export const adapter: EntityAdapter = createEntityAdapter(); export const initialUsersState: UsersState = adapter.getInitialState({ - listLoading: false, - actionsloading: false, - totalCount: 0, - lastQuery: new QueryParamsModel({}), - lastCreatedUserId: undefined, - showInitWaitingMessage: true + listLoading: false, + actionsloading: false, + totalCount: 0, + lastQuery: new QueryParamsModel({}), + lastCreatedUserId: undefined, + showInitWaitingMessage: true, }); export function usersReducer(state = initialUsersState, action: UserActions): UsersState { - switch (action.type) { - case UserActionTypes.UsersPageToggleLoading: return { - ...state, listLoading: action.payload.isLoading, lastCreatedUserId: undefined - }; - case UserActionTypes.UsersActionToggleLoading: return { - ...state, actionsloading: action.payload.isLoading - }; - case UserActionTypes.UserOnServerCreated: return { - ...state - }; - case UserActionTypes.UserCreated: return adapter.addOne(action.payload.user, { - ...state, lastCreatedUserId: action.payload.user.id - }); - case UserActionTypes.UserUpdated: return adapter.updateOne(action.payload.partialUser, state); - case UserActionTypes.UserDeleted: return adapter.removeOne(action.payload.id, state); - case UserActionTypes.UsersPageCancelled: return { - ...state, listLoading: false, lastQuery: new QueryParamsModel({}) - }; - case UserActionTypes.UsersPageLoaded: { - return adapter.addMany(action.payload.users, { - ...initialUsersState, - totalCount: action.payload.totalCount, - lastQuery: action.payload.page, - listLoading: false, - showInitWaitingMessage: false - }); - } - default: return state; - } + switch (action.type) { + case UserActionTypes.UsersPageToggleLoading: + return { + ...state, + listLoading: action.payload.isLoading, + lastCreatedUserId: undefined, + }; + case UserActionTypes.UsersActionToggleLoading: + return { + ...state, + actionsloading: action.payload.isLoading, + }; + case UserActionTypes.UserOnServerCreated: + return { + ...state, + }; + case UserActionTypes.UserCreated: + return adapter.addOne(action.payload.user, { + ...state, + lastCreatedUserId: action.payload.user.id, + }); + case UserActionTypes.UserUpdated: + return adapter.updateOne(action.payload.partialUser, state); + case UserActionTypes.UserDeleted: + return adapter.removeOne(action.payload.id, state); + case UserActionTypes.UsersPageCancelled: + return { + ...state, + listLoading: false, + lastQuery: new QueryParamsModel({}), + }; + case UserActionTypes.UsersPageLoaded: { + return adapter.addMany(action.payload.users, { + ...initialUsersState, + totalCount: action.payload.totalCount, + lastQuery: action.payload.page, + listLoading: false, + showInitWaitingMessage: false, + }); + } + default: + return state; + } } export const getUserState = createFeatureSelector('users'); -export const { - selectAll, - selectEntities, - selectIds, - selectTotal -} = adapter.getSelectors(); +export const { selectAll, selectEntities, selectIds, selectTotal } = adapter.getSelectors(); diff --git a/src/app/core/auth/_selectors/auth.selectors.ts b/src/app/core/auth/_selectors/auth.selectors.ts index 0ced0cb..66a7383 100644 --- a/src/app/core/auth/_selectors/auth.selectors.ts +++ b/src/app/core/auth/_selectors/auth.selectors.ts @@ -12,89 +12,89 @@ import { Permission } from '../_models/permission.model'; export const selectAuthState = state => state.auth; export const isLoggedIn = createSelector( - selectAuthState, - auth => auth.loggedIn + selectAuthState, + auth => auth.loggedIn, ); export const isLoggedOut = createSelector( - isLoggedIn, - loggedIn => !loggedIn + isLoggedIn, + loggedIn => !loggedIn, ); - export const currentAuthToken = createSelector( - selectAuthState, - auth => auth.authToken + selectAuthState, + auth => auth.authToken, ); export const isUserLoaded = createSelector( - selectAuthState, - auth => auth.isUserLoaded + selectAuthState, + auth => auth.isUserLoaded, ); export const currentUser = createSelector( - selectAuthState, - auth => auth.user + selectAuthState, + auth => auth.user, ); export const currentUserRoleIds = createSelector( - currentUser, - user => { - if (!user) { - return []; - } + currentUser, + user => { + if (!user) { + return []; + } - return user.roles; - } + return user.roles; + }, ); export const currentUserPermissionsIds = createSelector( - currentUserRoleIds, - selectAllRoles, - (userRoleIds: number[], allRoles: Role[]) => { - const result = getPermissionsIdsFrom(userRoleIds, allRoles); - return result; - } + currentUserRoleIds, + selectAllRoles, + (userRoleIds: number[], allRoles: Role[]) => { + const result = getPermissionsIdsFrom(userRoleIds, allRoles); + return result; + }, ); -export const checkHasUserPermission = (permissionId: number) => createSelector( - currentUserPermissionsIds, - (ids: number[]) => { - return ids.some(id => id === permissionId); - } -); +export const checkHasUserPermission = (permissionId: number) => + createSelector( + currentUserPermissionsIds, + (ids: number[]) => { + return ids.some(id => id === permissionId); + }, + ); export const currentUserPermissions = createSelector( - currentUserPermissionsIds, - selectAllPermissions, - (permissionIds: number[], allPermissions: Permission[]) => { - const result: Permission[] = []; - each(permissionIds, id => { - const userPermission = find(allPermissions, elem => elem.id === id); - if (userPermission) { - result.push(userPermission); - } - }); - return result; - } + currentUserPermissionsIds, + selectAllPermissions, + (permissionIds: number[], allPermissions: Permission[]) => { + const result: Permission[] = []; + each(permissionIds, id => { + const userPermission = find(allPermissions, elem => elem.id === id); + if (userPermission) { + result.push(userPermission); + } + }); + return result; + }, ); function getPermissionsIdsFrom(userRolesIds: number[] = [], allRoles: Role[] = []): number[] { - const userRoles: Role[] = []; - each(userRolesIds, (_id: number) => { - const userRole = find(allRoles, (_role: Role) => _role.id === _id); - if (userRole) { - userRoles.push(userRole); - } - }); + const userRoles: Role[] = []; + each(userRolesIds, (_id: number) => { + const userRole = find(allRoles, (_role: Role) => _role.id === _id); + if (userRole) { + userRoles.push(userRole); + } + }); - const result: number[] = []; - each(userRoles, (_role: Role) => { - each(_role.permissions, id => { - if (!some(result, _id => _id === id)) { - result.push(id); - } - }); - }); - return result; + const result: number[] = []; + each(userRoles, (_role: Role) => { + each(_role.permissions, id => { + if (!some(result, _id => _id === id)) { + result.push(id); + } + }); + }); + return result; } diff --git a/src/app/core/auth/_selectors/permission.selectors.ts b/src/app/core/auth/_selectors/permission.selectors.ts index c5db85a..83898ba 100644 --- a/src/app/core/auth/_selectors/permission.selectors.ts +++ b/src/app/core/auth/_selectors/permission.selectors.ts @@ -6,22 +6,23 @@ import * as fromPermissions from '../_reducers/permission.reducers'; export const selectPermissionsState = createFeatureSelector('permissions'); -export const selectPermissionById = (permissionId: number) => createSelector( - selectPermissionsState, - ps => ps.entities[permissionId] -); +export const selectPermissionById = (permissionId: number) => + createSelector( + selectPermissionsState, + ps => ps.entities[permissionId], + ); export const selectAllPermissions = createSelector( - selectPermissionsState, - fromPermissions.selectAll + selectPermissionsState, + fromPermissions.selectAll, ); export const selectAllPermissionsIds = createSelector( - selectPermissionsState, - fromPermissions.selectIds + selectPermissionsState, + fromPermissions.selectIds, ); export const allPermissionsLoaded = createSelector( - selectPermissionsState, - ps => ps._isAllPermissionsLoaded + selectPermissionsState, + ps => ps._isAllPermissionsLoaded, ); diff --git a/src/app/core/auth/_selectors/role.selectors.ts b/src/app/core/auth/_selectors/role.selectors.ts index 1993cdd..7c985a3 100644 --- a/src/app/core/auth/_selectors/role.selectors.ts +++ b/src/app/core/auth/_selectors/role.selectors.ts @@ -11,58 +11,61 @@ import { each } from 'lodash'; export const selectRolesState = createFeatureSelector('roles'); -export const selectRoleById = (roleId: number) => createSelector( - selectRolesState, - rolesState => rolesState.entities[roleId] -); +export const selectRoleById = (roleId: number) => + createSelector( + selectRolesState, + rolesState => rolesState.entities[roleId], + ); export const selectAllRoles = createSelector( - selectRolesState, - fromRole.selectAll + selectRolesState, + fromRole.selectAll, ); export const selectAllRolesIds = createSelector( - selectRolesState, - fromRole.selectIds + selectRolesState, + fromRole.selectIds, ); export const allRolesLoaded = createSelector( - selectRolesState, - rolesState => rolesState.isAllRolesLoaded + selectRolesState, + rolesState => rolesState.isAllRolesLoaded, ); - export const selectRolesPageLoading = createSelector( - selectRolesState, - rolesState => rolesState.listLoading + selectRolesState, + rolesState => rolesState.listLoading, ); export const selectRolesActionLoading = createSelector( - selectRolesState, - rolesState => rolesState.actionsloading + selectRolesState, + rolesState => rolesState.actionsloading, ); export const selectLastCreatedRoleId = createSelector( - selectRolesState, - rolesState => rolesState.lastCreatedRoleId + selectRolesState, + rolesState => rolesState.lastCreatedRoleId, ); export const selectRolesShowInitWaitingMessage = createSelector( - selectRolesState, - rolesState => rolesState.showInitWaitingMessage + selectRolesState, + rolesState => rolesState.showInitWaitingMessage, ); - export const selectQueryResult = createSelector( - selectRolesState, - rolesState => { - const items: Role[] = []; - each(rolesState.entities, element => { - items.push(element); - }); - const httpExtension = new HttpExtenstionsModel(); - const result: Role[] = httpExtension.sortArray(items, rolesState.lastQuery.sortField, rolesState.lastQuery.sortOrder); + selectRolesState, + rolesState => { + const items: Role[] = []; + each(rolesState.entities, element => { + items.push(element); + }); + const httpExtension = new HttpExtenstionsModel(); + const result: Role[] = httpExtension.sortArray( + items, + rolesState.lastQuery.sortField, + rolesState.lastQuery.sortOrder, + ); - return new QueryResultsModel(rolesState.queryResult, rolesState.queryRowsCount); - } + return new QueryResultsModel(rolesState.queryResult, rolesState.queryRowsCount); + }, ); diff --git a/src/app/core/auth/_selectors/user.selectors.ts b/src/app/core/auth/_selectors/user.selectors.ts index 64640ed..52164f4 100644 --- a/src/app/core/auth/_selectors/user.selectors.ts +++ b/src/app/core/auth/_selectors/user.selectors.ts @@ -7,61 +7,65 @@ import { UsersState } from '../_reducers/user.reducers'; import { each } from 'lodash'; import { User } from '../_models/user.model'; - export const selectUsersState = createFeatureSelector('users'); -export const selectUserById = (userId: number) => createSelector( - selectUsersState, - usersState => usersState.entities[userId] -); +export const selectUserById = (userId: number) => + createSelector( + selectUsersState, + usersState => usersState.entities[userId], + ); export const selectUsersPageLoading = createSelector( - selectUsersState, - usersState => { - return usersState.listLoading; - } + selectUsersState, + usersState => { + return usersState.listLoading; + }, ); export const selectUsersActionLoading = createSelector( - selectUsersState, - usersState => usersState.actionsloading + selectUsersState, + usersState => usersState.actionsloading, ); export const selectLastCreatedUserId = createSelector( - selectUsersState, - usersState => usersState.lastCreatedUserId + selectUsersState, + usersState => usersState.lastCreatedUserId, ); export const selectUsersPageLastQuery = createSelector( - selectUsersState, - usersState => usersState.lastQuery + selectUsersState, + usersState => usersState.lastQuery, ); export const selectUsersInStore = createSelector( - selectUsersState, - usersState => { - const items: User[] = []; - each(usersState.entities, element => { - items.push(element); - }); - const httpExtension = new HttpExtenstionsModel(); - const result: User[] = httpExtension.sortArray(items, usersState.lastQuery.sortField, usersState.lastQuery.sortOrder); - return new QueryResultsModel(result, usersState.totalCount, ''); - } + selectUsersState, + usersState => { + const items: User[] = []; + each(usersState.entities, element => { + items.push(element); + }); + const httpExtension = new HttpExtenstionsModel(); + const result: User[] = httpExtension.sortArray( + items, + usersState.lastQuery.sortField, + usersState.lastQuery.sortOrder, + ); + return new QueryResultsModel(result, usersState.totalCount, ''); + }, ); export const selectUsersShowInitWaitingMessage = createSelector( - selectUsersState, - usersState => usersState.showInitWaitingMessage + selectUsersState, + usersState => usersState.showInitWaitingMessage, ); export const selectHasUsersInStore = createSelector( - selectUsersState, - queryResult => { - if (!queryResult.totalCount) { - return false; - } + selectUsersState, + queryResult => { + if (!queryResult.totalCount) { + return false; + } - return true; - } + return true; + }, ); diff --git a/src/app/core/auth/_server/permissions.table.ts b/src/app/core/auth/_server/permissions.table.ts index 923e603..67b8c35 100644 --- a/src/app/core/auth/_server/permissions.table.ts +++ b/src/app/core/auth/_server/permissions.table.ts @@ -1,85 +1,85 @@ export class PermissionsTable { public static permissions: any = [ - { - id: 1, - name: 'accessToECommerceModule', - level: 1, - title: 'eCommerce module' - }, - { - id: 2, - name: 'accessToAuthModule', - level: 1, - title: 'Users Management module' - }, - { - id: 3, - name: 'accessToMailModule', - level: 1, - title: 'Mail module' - }, - { - id: 4, - name: 'canReadECommerceData', - level: 2, - parentId: 1, - title: 'Read' - }, - { - id: 5, - name: 'canEditECommerceData', - level: 2, - parentId: 1, - title: 'Edit' - }, - { - id: 6, - name: 'canDeleteECommerceData', - level: 2, - parentId: 1, - title: 'Delete' - }, - { - id: 7, - name: 'canReadAuthData', - level: 2, - parentId: 2, - title: 'Read' - }, - { - id: 8, - name: 'canEditAuthData', - level: 2, - parentId: 2, - title: 'Edit' - }, - { - id: 9, - name: 'canDeleteAuthData', - level: 2, - parentId: 2, - title: 'Delete' - }, - { - id: 10, - name: 'canReadMailData', - level: 2, - parentId: 3, - title: 'Read' - }, - { - id: 11, - name: 'canEditMailData', - level: 2, - parentId: 3, - title: 'Edit' - }, - { - id: 12, - name: 'canDeleteMailData', - level: 2, - parentId: 3, - title: 'Delete' - }, - ]; + { + id: 1, + name: 'accessToECommerceModule', + level: 1, + title: 'eCommerce module', + }, + { + id: 2, + name: 'accessToAuthModule', + level: 1, + title: 'Users Management module', + }, + { + id: 3, + name: 'accessToMailModule', + level: 1, + title: 'Mail module', + }, + { + id: 4, + name: 'canReadECommerceData', + level: 2, + parentId: 1, + title: 'Read', + }, + { + id: 5, + name: 'canEditECommerceData', + level: 2, + parentId: 1, + title: 'Edit', + }, + { + id: 6, + name: 'canDeleteECommerceData', + level: 2, + parentId: 1, + title: 'Delete', + }, + { + id: 7, + name: 'canReadAuthData', + level: 2, + parentId: 2, + title: 'Read', + }, + { + id: 8, + name: 'canEditAuthData', + level: 2, + parentId: 2, + title: 'Edit', + }, + { + id: 9, + name: 'canDeleteAuthData', + level: 2, + parentId: 2, + title: 'Delete', + }, + { + id: 10, + name: 'canReadMailData', + level: 2, + parentId: 3, + title: 'Read', + }, + { + id: 11, + name: 'canEditMailData', + level: 2, + parentId: 3, + title: 'Edit', + }, + { + id: 12, + name: 'canDeleteMailData', + level: 2, + parentId: 3, + title: 'Delete', + }, + ]; } diff --git a/src/app/core/auth/_server/roles.table.ts b/src/app/core/auth/_server/roles.table.ts index 74d3296..22bb248 100644 --- a/src/app/core/auth/_server/roles.table.ts +++ b/src/app/core/auth/_server/roles.table.ts @@ -1,22 +1,22 @@ export class RolesTable { public static roles: any = [ - { - id: 1, - title: 'Administrator', - isCoreRole: true, - permissions: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] - }, - { - id: 2, - title: 'Manager', - isCoreRole: false, - permissions: [3, 4, 10] - }, - { - id: 3, - title: 'Guest', - isCoreRole: false, - permissions: [] - } - ]; + { + id: 1, + title: 'Administrator', + isCoreRole: true, + permissions: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], + }, + { + id: 2, + title: 'Manager', + isCoreRole: false, + permissions: [3, 4, 10], + }, + { + id: 3, + title: 'Guest', + isCoreRole: false, + permissions: [], + }, + ]; } diff --git a/src/app/core/auth/_server/users.table.ts b/src/app/core/auth/_server/users.table.ts index 5878f5a..79ad63d 100644 --- a/src/app/core/auth/_server/users.table.ts +++ b/src/app/core/auth/_server/users.table.ts @@ -17,14 +17,14 @@ export class UsersTable { addressLine: 'L-12-20 Vertex, Cybersquare', city: 'San Francisco', state: 'California', - postCode: '45000' + postCode: '45000', }, socialNetworks: { linkedIn: 'https://linkedin.com/admin', facebook: 'https://facebook.com/admin', twitter: 'https://twitter.com/admin', - instagram: 'https://instagram.com/admin' - } + instagram: 'https://instagram.com/admin', + }, }, { id: 2, @@ -43,16 +43,16 @@ export class UsersTable { addressLine: '3487 Ingram Road', city: 'Greensboro', state: 'North Carolina', - postCode: '27409' + postCode: '27409', }, socialNetworks: { linkedIn: 'https://linkedin.com/user', facebook: 'https://facebook.com/user', twitter: 'https://twitter.com/user', - instagram: 'https://instagram.com/user' - } - }, - { + instagram: 'https://instagram.com/user', + }, + }, + { id: 3, username: 'guest', password: 'demo', @@ -69,22 +69,22 @@ export class UsersTable { addressLine: '1467 Griffin Street', city: 'Phoenix', state: 'Arizona', - postCode: '85012' + postCode: '85012', }, socialNetworks: { linkedIn: 'https://linkedin.com/guest', facebook: 'https://facebook.com/guest', twitter: 'https://twitter.com/guest', - instagram: 'https://instagram.com/guest' - } - } + instagram: 'https://instagram.com/guest', + }, + }, ]; public static tokens: any = [ { id: 1, accessToken: 'access-token-' + Math.random(), - refreshToken: 'access-token-' + Math.random() - } + refreshToken: 'access-token-' + Math.random(), + }, ]; } diff --git a/src/app/core/auth/_services/auth.service.fake.ts b/src/app/core/auth/_services/auth.service.fake.ts index 22e6b2c..a413f98 100644 --- a/src/app/core/auth/_services/auth.service.fake.ts +++ b/src/app/core/auth/_services/auth.service.fake.ts @@ -21,144 +21,141 @@ const API_ROLES_URL = 'api/roles'; @Injectable() export class AuthService { - constructor(private http: HttpClient, - private httpUtils: HttpUtilsService) { } - - // Authentication/Authorization - login(email: string, password: string): Observable { - if (!email || !password) { - return of(null); - } - - return this.getAllUsers().pipe( - map((result: User[]) => { - if (result.length <= 0) { - return null; - } - - const user = find(result, function(item: User) { - return (item.email.toLowerCase() === email.toLowerCase() && item.password === password); - }); - - if (!user) { - return null; - } - - user.password = undefined; - return user; - }) - ); - - } - - register(user: User): Observable { - user.roles = [2]; // Manager - user.accessToken = 'access-token-' + Math.random(); - user.refreshToken = 'access-token-' + Math.random(); - user.pic = './assets/media/users/default.jpg'; - - const httpHeaders = new HttpHeaders(); - httpHeaders.set('Content-Type', 'application/json'); - return this.http.post(API_USERS_URL, user, { headers: httpHeaders }) - .pipe( - map((res: User) => { - return res; - }), - catchError(err => { - return null; - }) - ); - } - - requestPassword(email: string): Observable { - return this.http.get(API_USERS_URL).pipe( - map((users: User[]) => { - if (users.length <= 0) { - return null; - } - - const user = find(users, function(item: User) { - return (item.email.toLowerCase() === email.toLowerCase()); - }); - - if (!user) { - return null; - } - - user.password = undefined; - return user; - }), - catchError(this.handleError('forgot-password', [])) - ); - } - - getUserByToken(): Observable { - const userToken = localStorage.getItem(environment.authTokenKey); - if (!userToken) { - return of(null); - } - - return this.getAllUsers().pipe( - map((result: User[]) => { - if (result.length <= 0) { - return null; - } - - const user = find(result, function(item: User) { - return (item.accessToken === userToken.toString()); - }); - - if (!user) { - return null; - } - - user.password = undefined; - return user; - }) - ); - } - - // Users - - // CREATE => POST: add a new user to the server + constructor(private http: HttpClient, private httpUtils: HttpUtilsService) {} + + // Authentication/Authorization + login(email: string, password: string): Observable { + if (!email || !password) { + return of(null); + } + + return this.getAllUsers().pipe( + map((result: User[]) => { + if (result.length <= 0) { + return null; + } + + const user = find(result, function(item: User) { + return item.email.toLowerCase() === email.toLowerCase() && item.password === password; + }); + + if (!user) { + return null; + } + + user.password = undefined; + return user; + }), + ); + } + + register(user: User): Observable { + user.roles = [2]; // Manager + user.accessToken = 'access-token-' + Math.random(); + user.refreshToken = 'access-token-' + Math.random(); + user.pic = './assets/media/users/default.jpg'; + + const httpHeaders = new HttpHeaders(); + httpHeaders.set('Content-Type', 'application/json'); + return this.http.post(API_USERS_URL, user, { headers: httpHeaders }).pipe( + map((res: User) => { + return res; + }), + catchError(err => { + return null; + }), + ); + } + + requestPassword(email: string): Observable { + return this.http.get(API_USERS_URL).pipe( + map((users: User[]) => { + if (users.length <= 0) { + return null; + } + + const user = find(users, function(item: User) { + return item.email.toLowerCase() === email.toLowerCase(); + }); + + if (!user) { + return null; + } + + user.password = undefined; + return user; + }), + catchError(this.handleError('forgot-password', [])), + ); + } + + getUserByToken(): Observable { + const userToken = localStorage.getItem(environment.authTokenKey); + if (!userToken) { + return of(null); + } + + return this.getAllUsers().pipe( + map((result: User[]) => { + if (result.length <= 0) { + return null; + } + + const user = find(result, function(item: User) { + return item.accessToken === userToken.toString(); + }); + + if (!user) { + return null; + } + + user.password = undefined; + return user; + }), + ); + } + + // Users + + // CREATE => POST: add a new user to the server createUser(user: User): Observable { - const httpHeaders = new HttpHeaders(); - // Note: Add headers if needed (tokens/bearer) - httpHeaders.set('Content-Type', 'application/json'); - return this.http.post(API_USERS_URL, user, { headers: httpHeaders}); - } - - // READ - getAllUsers(): Observable { + const httpHeaders = new HttpHeaders(); + // Note: Add headers if needed (tokens/bearer) + httpHeaders.set('Content-Type', 'application/json'); + return this.http.post(API_USERS_URL, user, { headers: httpHeaders }); + } + + // READ + getAllUsers(): Observable { return this.http.get(API_USERS_URL); - } + } - getUserById(userId: number): Observable { - if (!userId) { - return of(null); - } + getUserById(userId: number): Observable { + if (!userId) { + return of(null); + } return this.http.get(API_USERS_URL + `/${userId}`); - } + } - // DELETE => delete the user from the server + // DELETE => delete the user from the server deleteUser(userId: number) { const url = `${API_USERS_URL}/${userId}`; return this.http.delete(url); - } + } - // UPDATE => PUT: update the user on the server + // UPDATE => PUT: update the user on the server updateUser(_user: User): Observable { - const httpHeaders = new HttpHeaders(); - httpHeaders.set('Content-Type', 'application/json'); + const httpHeaders = new HttpHeaders(); + httpHeaders.set('Content-Type', 'application/json'); return this.http.put(API_USERS_URL, _user, { headers: httpHeaders }).pipe( - catchError(err => { - return of(null); - }) - ); + catchError(err => { + return of(null); + }), + ); } - // Method from server should return QueryResultsModel(items: any[], totalsCount: number) + // Method from server should return QueryResultsModel(items: any[], totalsCount: number) // items => filtered/sorted result findUsers(queryParams: QueryParamsModel): Observable { // This code imitates server calls @@ -166,83 +163,86 @@ export class AuthService { mergeMap((response: User[]) => { const result = this.httpUtils.baseFilter(response, queryParams, []); return of(result); - }) + }), ); } - // Permissions - getAllPermissions(): Observable { + // Permissions + getAllPermissions(): Observable { return this.http.get(API_PERMISSION_URL); - } + } - getRolePermissions(roleId: number): Observable { - const allRolesRequest = this.http.get(API_PERMISSION_URL); - const roleRequest = roleId ? this.getRoleById(roleId) : of(null); - return forkJoin(allRolesRequest, roleRequest).pipe( + getRolePermissions(roleId: number): Observable { + const allRolesRequest = this.http.get(API_PERMISSION_URL); + const roleRequest = roleId ? this.getRoleById(roleId) : of(null); + return forkJoin(allRolesRequest, roleRequest).pipe( map(res => { const _allPermissions: Permission[] = res[0]; - const _role: Role = res[1]; - if (!_allPermissions || _allPermissions.length === 0) { - return []; - } - - const _rolePermission = _role ? _role.permissions : []; - const result: Permission[] = this.getRolePermissionsTree(_allPermissions, _rolePermission); - return result; - }) - ); - } - - private getRolePermissionsTree(_allPermission: Permission[] = [], _rolePermissionIds: number[] = []): Permission[] { - const result: Permission[] = []; - const _root: Permission[] = filter(_allPermission, (item: Permission) => !item.parentId); - each(_root, (_rootItem: Permission) => { - _rootItem._children = []; - _rootItem._children = this.collectChildrenPermission(_allPermission, _rootItem.id, _rolePermissionIds); - _rootItem.isSelected = (some(_rolePermissionIds, (id: number) => id === _rootItem.id)); - result.push(_rootItem); - }); - return result; - } - - private collectChildrenPermission(_allPermission: Permission[] = [], - _parentId: number, _rolePermissionIds: number[] = []): Permission[] { - const result: Permission[] = []; - const _children: Permission[] = filter(_allPermission, (item: Permission) => item.parentId === _parentId); - if (_children.length === 0) { - return result; - } - - each(_children, (_childItem: Permission) => { - _childItem._children = []; - _childItem._children = this.collectChildrenPermission(_allPermission, _childItem.id, _rolePermissionIds); - _childItem.isSelected = (some(_rolePermissionIds, (id: number) => id === _childItem.id)); - result.push(_childItem); - }); - return result; - } - - // Roles - getAllRoles(): Observable { - return this.http.get(API_ROLES_URL); - } - - getRoleById(roleId: number): Observable { + const _role: Role = res[1]; + if (!_allPermissions || _allPermissions.length === 0) { + return []; + } + + const _rolePermission = _role ? _role.permissions : []; + const result: Permission[] = this.getRolePermissionsTree(_allPermissions, _rolePermission); + return result; + }), + ); + } + + private getRolePermissionsTree(_allPermission: Permission[] = [], _rolePermissionIds: number[] = []): Permission[] { + const result: Permission[] = []; + const _root: Permission[] = filter(_allPermission, (item: Permission) => !item.parentId); + each(_root, (_rootItem: Permission) => { + _rootItem._children = []; + _rootItem._children = this.collectChildrenPermission(_allPermission, _rootItem.id, _rolePermissionIds); + _rootItem.isSelected = some(_rolePermissionIds, (id: number) => id === _rootItem.id); + result.push(_rootItem); + }); + return result; + } + + private collectChildrenPermission( + _allPermission: Permission[] = [], + _parentId: number, + _rolePermissionIds: number[] = [], + ): Permission[] { + const result: Permission[] = []; + const _children: Permission[] = filter(_allPermission, (item: Permission) => item.parentId === _parentId); + if (_children.length === 0) { + return result; + } + + each(_children, (_childItem: Permission) => { + _childItem._children = []; + _childItem._children = this.collectChildrenPermission(_allPermission, _childItem.id, _rolePermissionIds); + _childItem.isSelected = some(_rolePermissionIds, (id: number) => id === _childItem.id); + result.push(_childItem); + }); + return result; + } + + // Roles + getAllRoles(): Observable { + return this.http.get(API_ROLES_URL); + } + + getRoleById(roleId: number): Observable { return this.http.get(API_ROLES_URL + `/${roleId}`); - } + } - // CREATE => POST: add a new role to the server + // CREATE => POST: add a new role to the server createRole(role: Role): Observable { // Note: Add headers if needed (tokens/bearer) - const httpHeaders = new HttpHeaders(); - httpHeaders.set('Content-Type', 'application/json'); - return this.http.post(API_ROLES_URL, role, { headers: httpHeaders}); + const httpHeaders = new HttpHeaders(); + httpHeaders.set('Content-Type', 'application/json'); + return this.http.post(API_ROLES_URL, role, { headers: httpHeaders }); } - // UPDATE => PUT: update the role on the server + // UPDATE => PUT: update the role on the server updateRole(role: Role): Observable { - const httpHeaders = new HttpHeaders(); - httpHeaders.set('Content-Type', 'application/json'); + const httpHeaders = new HttpHeaders(); + httpHeaders.set('Content-Type', 'application/json'); return this.http.put(API_ROLES_URL, role, { headers: httpHeaders }); } @@ -250,38 +250,38 @@ export class AuthService { deleteRole(roleId: number): Observable { const url = `${API_ROLES_URL}/${roleId}`; return this.http.delete(url); - } + } - findRoles(queryParams: QueryParamsModel): Observable { + findRoles(queryParams: QueryParamsModel): Observable { // This code imitates server calls return this.http.get(API_ROLES_URL).pipe( mergeMap(res => { const result = this.httpUtils.baseFilter(res, queryParams, []); return of(result); - }) + }), ); } - // Check Role Before deletion - isRoleAssignedToUsers(roleId: number): Observable { - return this.getAllUsers().pipe( - map((users: User[]) => { - if (some(users, (user: User) => some(user.roles, (_roleId: number) => _roleId === roleId))) { - return true; - } - - return false; - }) - ); - } - - private handleError(operation = 'operation', result?: any) { - return (error: any): Observable => { - // TODO: send the error to remote logging infrastructure - console.error(error); // log to console instead - - // Let the app keep running by returning an empty result. - return of(result); - }; - } + // Check Role Before deletion + isRoleAssignedToUsers(roleId: number): Observable { + return this.getAllUsers().pipe( + map((users: User[]) => { + if (some(users, (user: User) => some(user.roles, (_roleId: number) => _roleId === roleId))) { + return true; + } + + return false; + }), + ); + } + + private handleError(operation = 'operation', result?: any) { + return (error: any): Observable => { + // TODO: send the error to remote logging infrastructure + console.error(error); // log to console instead + + // Let the app keep running by returning an empty result. + return of(result); + }; + } } diff --git a/src/app/core/auth/_services/auth.service.ts b/src/app/core/auth/_services/auth.service.ts index 61313ac..d35bbdd 100644 --- a/src/app/core/auth/_services/auth.service.ts +++ b/src/app/core/auth/_services/auth.service.ts @@ -15,113 +15,108 @@ const API_ROLES_URL = 'api/roles'; @Injectable() export class AuthService { - constructor(private http: HttpClient) {} - // Authentication/Authorization - login(email: string, password: string): Observable { - return this.http.post(API_USERS_URL, { email, password }); - } - - getUserByToken(): Observable { - const userToken = localStorage.getItem(environment.authTokenKey); - const httpHeaders = new HttpHeaders(); - httpHeaders.append('Authorization', 'Bearer ' + userToken); - return this.http.get(API_USERS_URL, { headers: httpHeaders }); - } - - register(user: User): Observable { - const httpHeaders = new HttpHeaders(); - httpHeaders.set('Content-Type', 'application/json'); - return this.http.post(API_USERS_URL, user, { headers: httpHeaders }) - .pipe( - map((res: User) => { - return res; - }), - catchError(err => { - return null; - }) - ); - } - - /* - * Submit forgot password request - * - * @param {string} email - * @returns {Observable} - */ - public requestPassword(email: string): Observable { - return this.http.get(API_USERS_URL + '/forgot?=' + email) - .pipe(catchError(this.handleError('forgot-password', [])) - ); - } - - - getAllUsers(): Observable { + constructor(private http: HttpClient) {} + // Authentication/Authorization + login(email: string, password: string): Observable { + return this.http.post(API_USERS_URL, { email, password }); + } + + getUserByToken(): Observable { + const userToken = localStorage.getItem(environment.authTokenKey); + const httpHeaders = new HttpHeaders(); + httpHeaders.append('Authorization', 'Bearer ' + userToken); + return this.http.get(API_USERS_URL, { headers: httpHeaders }); + } + + register(user: User): Observable { + const httpHeaders = new HttpHeaders(); + httpHeaders.set('Content-Type', 'application/json'); + return this.http.post(API_USERS_URL, user, { headers: httpHeaders }).pipe( + map((res: User) => { + return res; + }), + catchError(err => { + return null; + }), + ); + } + + /* + * Submit forgot password request + * + * @param {string} email + * @returns {Observable} + */ + public requestPassword(email: string): Observable { + return this.http.get(API_USERS_URL + '/forgot?=' + email).pipe(catchError(this.handleError('forgot-password', []))); + } + + getAllUsers(): Observable { return this.http.get(API_USERS_URL); - } + } - getUserById(userId: number): Observable { + getUserById(userId: number): Observable { return this.http.get(API_USERS_URL + `/${userId}`); } - - // DELETE => delete the user from the server + // DELETE => delete the user from the server deleteUser(userId: number) { const url = `${API_USERS_URL}/${userId}`; return this.http.delete(url); - } + } - // UPDATE => PUT: update the user on the server + // UPDATE => PUT: update the user on the server updateUser(_user: User): Observable { - const httpHeaders = new HttpHeaders(); - httpHeaders.set('Content-Type', 'application/json'); + const httpHeaders = new HttpHeaders(); + httpHeaders.set('Content-Type', 'application/json'); return this.http.put(API_USERS_URL, _user, { headers: httpHeaders }); } - // CREATE => POST: add a new user to the server + // CREATE => POST: add a new user to the server createUser(user: User): Observable { - const httpHeaders = new HttpHeaders(); - httpHeaders.set('Content-Type', 'application/json'); - return this.http.post(API_USERS_URL, user, { headers: httpHeaders}); + const httpHeaders = new HttpHeaders(); + httpHeaders.set('Content-Type', 'application/json'); + return this.http.post(API_USERS_URL, user, { headers: httpHeaders }); } - // Method from server should return QueryResultsModel(items: any[], totalsCount: number) + // Method from server should return QueryResultsModel(items: any[], totalsCount: number) // items => filtered/sorted result findUsers(queryParams: QueryParamsModel): Observable { - const httpHeaders = new HttpHeaders(); - httpHeaders.set('Content-Type', 'application/json'); - return this.http.post(API_USERS_URL + '/findUsers', queryParams, { headers: httpHeaders}); - } + const httpHeaders = new HttpHeaders(); + httpHeaders.set('Content-Type', 'application/json'); + return this.http.post(API_USERS_URL + '/findUsers', queryParams, { headers: httpHeaders }); + } - // Permission - getAllPermissions(): Observable { + // Permission + getAllPermissions(): Observable { return this.http.get(API_PERMISSION_URL); - } + } - getRolePermissions(roleId: number): Observable { - return this.http.get(API_PERMISSION_URL + '/getRolePermission?=' + roleId); - } + getRolePermissions(roleId: number): Observable { + return this.http.get(API_PERMISSION_URL + '/getRolePermission?=' + roleId); + } - // Roles - getAllRoles(): Observable { - return this.http.get(API_ROLES_URL); - } + // Roles + getAllRoles(): Observable { + return this.http.get(API_ROLES_URL); + } - getRoleById(roleId: number): Observable { + getRoleById(roleId: number): Observable { return this.http.get(API_ROLES_URL + `/${roleId}`); - } + } - // CREATE => POST: add a new role to the server + // CREATE => POST: add a new role to the server createRole(role: Role): Observable { // Note: Add headers if needed (tokens/bearer) - const httpHeaders = new HttpHeaders(); - httpHeaders.set('Content-Type', 'application/json'); - return this.http.post(API_ROLES_URL, role, { headers: httpHeaders}); + const httpHeaders = new HttpHeaders(); + httpHeaders.set('Content-Type', 'application/json'); + return this.http.post(API_ROLES_URL, role, { headers: httpHeaders }); } - // UPDATE => PUT: update the role on the server + // UPDATE => PUT: update the role on the server updateRole(role: Role): Observable { - const httpHeaders = new HttpHeaders(); - httpHeaders.set('Content-Type', 'application/json'); + const httpHeaders = new HttpHeaders(); + httpHeaders.set('Content-Type', 'application/json'); return this.http.put(API_ROLES_URL, role, { headers: httpHeaders }); } @@ -131,32 +126,32 @@ export class AuthService { return this.http.delete(url); } - // Check Role Before deletion - isRoleAssignedToUsers(roleId: number): Observable { - return this.http.get(API_ROLES_URL + '/checkIsRollAssignedToUser?roleId=' + roleId); - } + // Check Role Before deletion + isRoleAssignedToUsers(roleId: number): Observable { + return this.http.get(API_ROLES_URL + '/checkIsRollAssignedToUser?roleId=' + roleId); + } - findRoles(queryParams: QueryParamsModel): Observable { - // This code imitates server calls - const httpHeaders = new HttpHeaders(); - httpHeaders.set('Content-Type', 'application/json'); - return this.http.post(API_ROLES_URL + '/findRoles', queryParams, { headers: httpHeaders}); + findRoles(queryParams: QueryParamsModel): Observable { + // This code imitates server calls + const httpHeaders = new HttpHeaders(); + httpHeaders.set('Content-Type', 'application/json'); + return this.http.post(API_ROLES_URL + '/findRoles', queryParams, { headers: httpHeaders }); } - /* - * Handle Http operation that failed. - * Let the app continue. - * + /* + * Handle Http operation that failed. + * Let the app continue. + * * @param operation - name of the operation that failed - * @param result - optional value to return as the observable result - */ - private handleError(operation = 'operation', result?: any) { - return (error: any): Observable => { - // TODO: send the error to remote logging infrastructure - console.error(error); // log to console instead - - // Let the app keep running by returning an empty result. - return of(result); - }; - } + * @param result - optional value to return as the observable result + */ + private handleError(operation = 'operation', result?: any) { + return (error: any): Observable => { + // TODO: send the error to remote logging infrastructure + console.error(error); // log to console instead + + // Let the app keep running by returning an empty result. + return of(result); + }; + } } diff --git a/src/app/core/auth/auth-notice/auth-notice.service.ts b/src/app/core/auth/auth-notice/auth-notice.service.ts index f1dc033..ff2501e 100644 --- a/src/app/core/auth/auth-notice/auth-notice.service.ts +++ b/src/app/core/auth/auth-notice/auth-notice.service.ts @@ -3,7 +3,7 @@ import { BehaviorSubject } from 'rxjs'; import { AuthNotice } from './auth-notice.interface'; @Injectable({ - providedIn: 'root' + providedIn: 'root', }) export class AuthNoticeService { onNoticeChanged$: BehaviorSubject; @@ -15,7 +15,7 @@ export class AuthNoticeService { setNotice(message: string, type?: string) { const notice: AuthNotice = { message: message, - type: type + type: type, }; this.onNoticeChanged$.next(notice); } diff --git a/src/app/core/auth/index.ts b/src/app/core/auth/index.ts index 3cc1484..34e2454 100644 --- a/src/app/core/auth/index.ts +++ b/src/app/core/auth/index.ts @@ -8,43 +8,43 @@ export { UsersDataSource } from './_data-sources/users.datasource'; // ACTIONS export { - Login, - Logout, - Register, - UserRequested, - UserLoaded, - AuthActionTypes, - AuthActions + Login, + Logout, + Register, + UserRequested, + UserLoaded, + AuthActionTypes, + AuthActions, } from './_actions/auth.actions'; export { - AllPermissionsRequested, - AllPermissionsLoaded, - PermissionActionTypes, - PermissionActions + AllPermissionsRequested, + AllPermissionsLoaded, + PermissionActionTypes, + PermissionActions, } from './_actions/permission.actions'; export { - RoleOnServerCreated, - RoleCreated, - RoleUpdated, - RoleDeleted, - RolesPageRequested, - RolesPageLoaded, - RolesPageCancelled, - AllRolesLoaded, - AllRolesRequested, - RoleActionTypes, - RoleActions + RoleOnServerCreated, + RoleCreated, + RoleUpdated, + RoleDeleted, + RolesPageRequested, + RolesPageLoaded, + RolesPageCancelled, + AllRolesLoaded, + AllRolesRequested, + RoleActionTypes, + RoleActions, } from './_actions/role.actions'; export { - UserCreated, - UserUpdated, - UserDeleted, - UserOnServerCreated, - UsersPageLoaded, - UsersPageCancelled, - UsersPageToggleLoading, - UsersPageRequested, - UsersActionToggleLoading + UserCreated, + UserUpdated, + UserDeleted, + UserOnServerCreated, + UsersPageLoaded, + UsersPageCancelled, + UsersPageToggleLoading, + UsersPageRequested, + UsersActionToggleLoading, } from './_actions/user.actions'; // EFFECTS @@ -61,42 +61,42 @@ export { usersReducer } from './_reducers/user.reducers'; // SELECTORS export { - isLoggedIn, - isLoggedOut, - isUserLoaded, - currentAuthToken, - currentUser, - currentUserRoleIds, - currentUserPermissionsIds, - currentUserPermissions, - checkHasUserPermission + isLoggedIn, + isLoggedOut, + isUserLoaded, + currentAuthToken, + currentUser, + currentUserRoleIds, + currentUserPermissionsIds, + currentUserPermissions, + checkHasUserPermission, } from './_selectors/auth.selectors'; export { - selectPermissionById, - selectAllPermissions, - selectAllPermissionsIds, - allPermissionsLoaded + selectPermissionById, + selectAllPermissions, + selectAllPermissionsIds, + allPermissionsLoaded, } from './_selectors/permission.selectors'; export { - selectRoleById, - selectAllRoles, - selectAllRolesIds, - allRolesLoaded, - selectLastCreatedRoleId, - selectRolesPageLoading, - selectQueryResult, - selectRolesActionLoading, - selectRolesShowInitWaitingMessage + selectRoleById, + selectAllRoles, + selectAllRolesIds, + allRolesLoaded, + selectLastCreatedRoleId, + selectRolesPageLoading, + selectQueryResult, + selectRolesActionLoading, + selectRolesShowInitWaitingMessage, } from './_selectors/role.selectors'; export { - selectUserById, - selectUsersPageLoading, - selectLastCreatedUserId, - selectUsersInStore, - selectHasUsersInStore, - selectUsersPageLastQuery, - selectUsersActionLoading, - selectUsersShowInitWaitingMessage + selectUserById, + selectUsersPageLoading, + selectLastCreatedUserId, + selectUsersInStore, + selectHasUsersInStore, + selectUsersPageLastQuery, + selectUsersActionLoading, + selectUsersShowInitWaitingMessage, } from './_selectors/user.selectors'; // GUARDS diff --git a/src/app/core/core.module.ts b/src/app/core/core.module.ts index 729442f..fa6a826 100644 --- a/src/app/core/core.module.ts +++ b/src/app/core/core.module.ts @@ -5,7 +5,18 @@ import { CommonModule } from '@angular/common'; import { ContentAnimateDirective, HeaderDirective, MenuDirective, StickyDirective } from './_base/layout'; // Metronic Pipes // Metornic Services -import { FirstLetterPipe, GetObjectPipe, JoinPipe, OffcanvasDirective, SafePipe, ScrollTopDirective, SparklineChartDirective, TabClickEventDirective, TimeElapsedPipe, ToggleDirective } from './_base/metronic'; +import { + FirstLetterPipe, + GetObjectPipe, + JoinPipe, + OffcanvasDirective, + SafePipe, + ScrollTopDirective, + SparklineChartDirective, + TabClickEventDirective, + TimeElapsedPipe, + ToggleDirective, +} from './_base/metronic'; @NgModule({ imports: [CommonModule], @@ -45,7 +56,6 @@ import { FirstLetterPipe, GetObjectPipe, JoinPipe, OffcanvasDirective, SafePipe, SafePipe, FirstLetterPipe, ], - providers: [] + providers: [], }) -export class CoreModule { -} +export class CoreModule {} diff --git a/src/app/core/e-commerce/_actions/customer.actions.ts b/src/app/core/e-commerce/_actions/customer.actions.ts index 5868b57..21ea698 100644 --- a/src/app/core/e-commerce/_actions/customer.actions.ts +++ b/src/app/core/e-commerce/_actions/customer.actions.ts @@ -7,87 +7,92 @@ import { QueryParamsModel } from '../../_base/crud'; import { CustomerModel } from '../_models/customer.model'; export enum CustomerActionTypes { - CustomerOnServerCreated = '[Edit Customer Dialog] Customer On Server Created', - CustomerCreated = '[Edit Customer Dialog] Customer Created', - CustomerUpdated = '[Edit Customer Dialog] Customer Updated', - CustomersStatusUpdated = '[Customer List Page] Customers Status Updated', - OneCustomerDeleted = '[Customers List Page] One Customer Deleted', - ManyCustomersDeleted = '[Customers List Page] Many Customer Deleted', - CustomersPageRequested = '[Customers List Page] Customers Page Requested', - CustomersPageLoaded = '[Customers API] Customers Page Loaded', - CustomersPageCancelled = '[Customers API] Customers Page Cancelled', - CustomersPageToggleLoading = '[Customers] Customers Page Toggle Loading', - CustomerActionToggleLoading = '[Customers] Customers Action Toggle Loading' + CustomerOnServerCreated = '[Edit Customer Dialog] Customer On Server Created', + CustomerCreated = '[Edit Customer Dialog] Customer Created', + CustomerUpdated = '[Edit Customer Dialog] Customer Updated', + CustomersStatusUpdated = '[Customer List Page] Customers Status Updated', + OneCustomerDeleted = '[Customers List Page] One Customer Deleted', + ManyCustomersDeleted = '[Customers List Page] Many Customer Deleted', + CustomersPageRequested = '[Customers List Page] Customers Page Requested', + CustomersPageLoaded = '[Customers API] Customers Page Loaded', + CustomersPageCancelled = '[Customers API] Customers Page Cancelled', + CustomersPageToggleLoading = '[Customers] Customers Page Toggle Loading', + CustomerActionToggleLoading = '[Customers] Customers Action Toggle Loading', } export class CustomerOnServerCreated implements Action { - readonly type = CustomerActionTypes.CustomerOnServerCreated; - constructor(public payload: { customer: CustomerModel }) { } + readonly type = CustomerActionTypes.CustomerOnServerCreated; + constructor(public payload: { customer: CustomerModel }) {} } export class CustomerCreated implements Action { - readonly type = CustomerActionTypes.CustomerCreated; - constructor(public payload: { customer: CustomerModel }) { } + readonly type = CustomerActionTypes.CustomerCreated; + constructor(public payload: { customer: CustomerModel }) {} } export class CustomerUpdated implements Action { - readonly type = CustomerActionTypes.CustomerUpdated; - constructor(public payload: { - partialCustomer: Update, // For State update - customer: CustomerModel // For Server update (through service) - }) { } + readonly type = CustomerActionTypes.CustomerUpdated; + constructor( + public payload: { + partialCustomer: Update; // For State update + customer: CustomerModel; // For Server update (through service) + }, + ) {} } export class CustomersStatusUpdated implements Action { - readonly type = CustomerActionTypes.CustomersStatusUpdated; - constructor(public payload: { - customers: CustomerModel[], - status: number - }) { } + readonly type = CustomerActionTypes.CustomersStatusUpdated; + constructor( + public payload: { + customers: CustomerModel[]; + status: number; + }, + ) {} } export class OneCustomerDeleted implements Action { - readonly type = CustomerActionTypes.OneCustomerDeleted; - constructor(public payload: { id: number }) {} + readonly type = CustomerActionTypes.OneCustomerDeleted; + constructor(public payload: { id: number }) {} } export class ManyCustomersDeleted implements Action { - readonly type = CustomerActionTypes.ManyCustomersDeleted; - constructor(public payload: { ids: number[] }) {} + readonly type = CustomerActionTypes.ManyCustomersDeleted; + constructor(public payload: { ids: number[] }) {} } export class CustomersPageRequested implements Action { - readonly type = CustomerActionTypes.CustomersPageRequested; - constructor(public payload: { page: QueryParamsModel }) { } + readonly type = CustomerActionTypes.CustomersPageRequested; + constructor(public payload: { page: QueryParamsModel }) {} } export class CustomersPageLoaded implements Action { - readonly type = CustomerActionTypes.CustomersPageLoaded; - constructor(public payload: { customers: CustomerModel[], totalCount: number, page: QueryParamsModel }) { } + readonly type = CustomerActionTypes.CustomersPageLoaded; + constructor(public payload: { customers: CustomerModel[]; totalCount: number; page: QueryParamsModel }) {} } export class CustomersPageCancelled implements Action { - readonly type = CustomerActionTypes.CustomersPageCancelled; + readonly type = CustomerActionTypes.CustomersPageCancelled; } export class CustomersPageToggleLoading implements Action { - readonly type = CustomerActionTypes.CustomersPageToggleLoading; - constructor(public payload: { isLoading: boolean }) { } + readonly type = CustomerActionTypes.CustomersPageToggleLoading; + constructor(public payload: { isLoading: boolean }) {} } export class CustomerActionToggleLoading implements Action { - readonly type = CustomerActionTypes.CustomerActionToggleLoading; - constructor(public payload: { isLoading: boolean }) { } + readonly type = CustomerActionTypes.CustomerActionToggleLoading; + constructor(public payload: { isLoading: boolean }) {} } -export type CustomerActions = CustomerOnServerCreated -| CustomerCreated -| CustomerUpdated -| CustomersStatusUpdated -| OneCustomerDeleted -| ManyCustomersDeleted -| CustomersPageRequested -| CustomersPageLoaded -| CustomersPageCancelled -| CustomersPageToggleLoading -| CustomerActionToggleLoading; +export type CustomerActions = + | CustomerOnServerCreated + | CustomerCreated + | CustomerUpdated + | CustomersStatusUpdated + | OneCustomerDeleted + | ManyCustomersDeleted + | CustomersPageRequested + | CustomersPageLoaded + | CustomersPageCancelled + | CustomersPageToggleLoading + | CustomerActionToggleLoading; diff --git a/src/app/core/e-commerce/_actions/product-remark.actions.ts b/src/app/core/e-commerce/_actions/product-remark.actions.ts index d550358..a2b0bd4 100644 --- a/src/app/core/e-commerce/_actions/product-remark.actions.ts +++ b/src/app/core/e-commerce/_actions/product-remark.actions.ts @@ -7,79 +7,84 @@ import { QueryParamsModel } from '../../_base/crud'; import { ProductRemarkModel } from '../_models/product-remark.model'; export enum ProductRemarkActionTypes { - ProductRemarkOnServerCreated = '[Edit ProductRemark Dialog] ProductRemark On Server Created', - ProductRemarkCreated = '[Edit ProductRemark Dialog] ProductRemark Created', - ProductRemarkUpdated = '[Edit ProductRemark Dialog] ProductRemark Updated', - ProductRemarkStoreUpdated = '[Edit ProductRemark Dialog] ProductRemark Updated | Only on storage', - OneProductRemarkDeleted = '[Product Remarks List Page] One Product Remark Deleted', - ManyProductRemarksDeleted = '[Product Remarks List Page] Many Product Remarks Deleted', - ProductRemarksPageRequested = '[Product Remarks List Page] Product Remarks Page Requested', - ProductRemarksPageLoaded = '[Product Remarks API] Product Remarks Page Loaded', - ProductRemarksPageCancelled = '[Product Remarks API] Product Remarks Page Cancelled', - ProductRemarksPageToggleLoading = '[Product Remarks] Product Remarks Page Toggle Loading' + ProductRemarkOnServerCreated = '[Edit ProductRemark Dialog] ProductRemark On Server Created', + ProductRemarkCreated = '[Edit ProductRemark Dialog] ProductRemark Created', + ProductRemarkUpdated = '[Edit ProductRemark Dialog] ProductRemark Updated', + ProductRemarkStoreUpdated = '[Edit ProductRemark Dialog] ProductRemark Updated | Only on storage', + OneProductRemarkDeleted = '[Product Remarks List Page] One Product Remark Deleted', + ManyProductRemarksDeleted = '[Product Remarks List Page] Many Product Remarks Deleted', + ProductRemarksPageRequested = '[Product Remarks List Page] Product Remarks Page Requested', + ProductRemarksPageLoaded = '[Product Remarks API] Product Remarks Page Loaded', + ProductRemarksPageCancelled = '[Product Remarks API] Product Remarks Page Cancelled', + ProductRemarksPageToggleLoading = '[Product Remarks] Product Remarks Page Toggle Loading', } export class ProductRemarkOnServerCreated implements Action { - readonly type = ProductRemarkActionTypes.ProductRemarkOnServerCreated; - constructor(public payload: { productRemark: ProductRemarkModel }) { } + readonly type = ProductRemarkActionTypes.ProductRemarkOnServerCreated; + constructor(public payload: { productRemark: ProductRemarkModel }) {} } export class ProductRemarkCreated implements Action { - readonly type = ProductRemarkActionTypes.ProductRemarkCreated; - constructor(public payload: { productRemark: ProductRemarkModel }) { } + readonly type = ProductRemarkActionTypes.ProductRemarkCreated; + constructor(public payload: { productRemark: ProductRemarkModel }) {} } export class ProductRemarkUpdated implements Action { - readonly type = ProductRemarkActionTypes.ProductRemarkUpdated; - constructor(public payload: { - partialProductRemark: Update, // For State update - productRemark: ProductRemarkModel // For Server update (through service) - }) { } + readonly type = ProductRemarkActionTypes.ProductRemarkUpdated; + constructor( + public payload: { + partialProductRemark: Update; // For State update + productRemark: ProductRemarkModel; // For Server update (through service) + }, + ) {} } export class ProductRemarkStoreUpdated implements Action { - readonly type = ProductRemarkActionTypes.ProductRemarkStoreUpdated; - constructor(public payload: { - productRemark: Update, // For State update - }) { } + readonly type = ProductRemarkActionTypes.ProductRemarkStoreUpdated; + constructor( + public payload: { + productRemark: Update; // For State update + }, + ) {} } export class OneProductRemarkDeleted implements Action { - readonly type = ProductRemarkActionTypes.OneProductRemarkDeleted; - constructor(public payload: { id: number }) {} + readonly type = ProductRemarkActionTypes.OneProductRemarkDeleted; + constructor(public payload: { id: number }) {} } export class ManyProductRemarksDeleted implements Action { - readonly type = ProductRemarkActionTypes.ManyProductRemarksDeleted; - constructor(public payload: { ids: number[] }) {} + readonly type = ProductRemarkActionTypes.ManyProductRemarksDeleted; + constructor(public payload: { ids: number[] }) {} } export class ProductRemarksPageRequested implements Action { - readonly type = ProductRemarkActionTypes.ProductRemarksPageRequested; - constructor(public payload: { page: QueryParamsModel, productId: number }) { } + readonly type = ProductRemarkActionTypes.ProductRemarksPageRequested; + constructor(public payload: { page: QueryParamsModel; productId: number }) {} } export class ProductRemarksPageLoaded implements Action { - readonly type = ProductRemarkActionTypes.ProductRemarksPageLoaded; - constructor(public payload: { productRemarks: ProductRemarkModel[], totalCount: number }) { } + readonly type = ProductRemarkActionTypes.ProductRemarksPageLoaded; + constructor(public payload: { productRemarks: ProductRemarkModel[]; totalCount: number }) {} } export class ProductRemarksPageCancelled implements Action { - readonly type = ProductRemarkActionTypes.ProductRemarksPageCancelled; + readonly type = ProductRemarkActionTypes.ProductRemarksPageCancelled; } export class ProductRemarksPageToggleLoading implements Action { - readonly type = ProductRemarkActionTypes.ProductRemarksPageToggleLoading; - constructor(public payload: { isLoading: boolean }) { } + readonly type = ProductRemarkActionTypes.ProductRemarksPageToggleLoading; + constructor(public payload: { isLoading: boolean }) {} } -export type ProductRemarkActions = ProductRemarkOnServerCreated -| ProductRemarkStoreUpdated -| ProductRemarkCreated -| ProductRemarkUpdated -| OneProductRemarkDeleted -| ManyProductRemarksDeleted -| ProductRemarksPageRequested -| ProductRemarksPageLoaded -| ProductRemarksPageCancelled -| ProductRemarksPageToggleLoading; +export type ProductRemarkActions = + | ProductRemarkOnServerCreated + | ProductRemarkStoreUpdated + | ProductRemarkCreated + | ProductRemarkUpdated + | OneProductRemarkDeleted + | ManyProductRemarksDeleted + | ProductRemarksPageRequested + | ProductRemarksPageLoaded + | ProductRemarksPageCancelled + | ProductRemarksPageToggleLoading; diff --git a/src/app/core/e-commerce/_actions/product-specification.actions.ts b/src/app/core/e-commerce/_actions/product-specification.actions.ts index 18ce52b..6b2f845 100644 --- a/src/app/core/e-commerce/_actions/product-specification.actions.ts +++ b/src/app/core/e-commerce/_actions/product-specification.actions.ts @@ -7,70 +7,73 @@ import { QueryParamsModel } from '../../_base/crud'; import { ProductSpecificationModel } from '../_models/product-specification.model'; export enum ProductSpecificationActionTypes { - ProductSpecificationOnServerCreated = '[Edit ProductSpecification Dialog] Product Specification On Server Created', - ProductSpecificationCreated = '[Edit ProductSpecification Dialog] Product Specification Created', - ProductSpecificationUpdated = '[Edit SpecificationSpecification Dialog] Product Specification Updated', - OneProductSpecificationDeleted = '[Product Specification List Page] One Product Specification Deleted', - ManyProductSpecificationsDeleted = '[Product Specifications List Page] Many Product Specifications Deleted', - ProductSpecificationsPageRequested = '[Product Specifications List Page] Product Specifications Page Requested', - ProductSpecificationsPageLoaded = '[Product Specifications API] Product Specifications Page Loaded', - ProductSpecificationsPageCancelled = '[Product Specifications API] Product Specifications Page Cancelled', - ProductSpecificationsPageToggleLoading = '[Product Specifications] Product Specifications Page Toggle Loading' + ProductSpecificationOnServerCreated = '[Edit ProductSpecification Dialog] Product Specification On Server Created', + ProductSpecificationCreated = '[Edit ProductSpecification Dialog] Product Specification Created', + ProductSpecificationUpdated = '[Edit SpecificationSpecification Dialog] Product Specification Updated', + OneProductSpecificationDeleted = '[Product Specification List Page] One Product Specification Deleted', + ManyProductSpecificationsDeleted = '[Product Specifications List Page] Many Product Specifications Deleted', + ProductSpecificationsPageRequested = '[Product Specifications List Page] Product Specifications Page Requested', + ProductSpecificationsPageLoaded = '[Product Specifications API] Product Specifications Page Loaded', + ProductSpecificationsPageCancelled = '[Product Specifications API] Product Specifications Page Cancelled', + ProductSpecificationsPageToggleLoading = '[Product Specifications] Product Specifications Page Toggle Loading', } export class ProductSpecificationOnServerCreated implements Action { - readonly type = ProductSpecificationActionTypes.ProductSpecificationOnServerCreated; - constructor(public payload: { productSpecification: ProductSpecificationModel }) { } + readonly type = ProductSpecificationActionTypes.ProductSpecificationOnServerCreated; + constructor(public payload: { productSpecification: ProductSpecificationModel }) {} } export class ProductSpecificationCreated implements Action { - readonly type = ProductSpecificationActionTypes.ProductSpecificationCreated; - constructor(public payload: { productSpecification: ProductSpecificationModel }) { } + readonly type = ProductSpecificationActionTypes.ProductSpecificationCreated; + constructor(public payload: { productSpecification: ProductSpecificationModel }) {} } export class ProductSpecificationUpdated implements Action { - readonly type = ProductSpecificationActionTypes.ProductSpecificationUpdated; - constructor(public payload: { - partialProductSpecification: Update, // For State update - productSpecification: ProductSpecificationModel // For Server update (through service) - }) { } + readonly type = ProductSpecificationActionTypes.ProductSpecificationUpdated; + constructor( + public payload: { + partialProductSpecification: Update; // For State update + productSpecification: ProductSpecificationModel; // For Server update (through service) + }, + ) {} } export class OneProductSpecificationDeleted implements Action { - readonly type = ProductSpecificationActionTypes.OneProductSpecificationDeleted; - constructor(public payload: { id: number }) {} + readonly type = ProductSpecificationActionTypes.OneProductSpecificationDeleted; + constructor(public payload: { id: number }) {} } export class ManyProductSpecificationsDeleted implements Action { - readonly type = ProductSpecificationActionTypes.ManyProductSpecificationsDeleted; - constructor(public payload: { ids: number[] }) {} + readonly type = ProductSpecificationActionTypes.ManyProductSpecificationsDeleted; + constructor(public payload: { ids: number[] }) {} } export class ProductSpecificationsPageRequested implements Action { - readonly type = ProductSpecificationActionTypes.ProductSpecificationsPageRequested; - constructor(public payload: { page: QueryParamsModel, productId: number }) { } + readonly type = ProductSpecificationActionTypes.ProductSpecificationsPageRequested; + constructor(public payload: { page: QueryParamsModel; productId: number }) {} } export class ProductSpecificationsPageLoaded implements Action { - readonly type = ProductSpecificationActionTypes.ProductSpecificationsPageLoaded; - constructor(public payload: { productSpecifications: ProductSpecificationModel[], totalCount: number }) { } + readonly type = ProductSpecificationActionTypes.ProductSpecificationsPageLoaded; + constructor(public payload: { productSpecifications: ProductSpecificationModel[]; totalCount: number }) {} } export class ProductSpecificationsPageCancelled implements Action { - readonly type = ProductSpecificationActionTypes.ProductSpecificationsPageCancelled; + readonly type = ProductSpecificationActionTypes.ProductSpecificationsPageCancelled; } export class ProductSpecificationsPageToggleLoading implements Action { - readonly type = ProductSpecificationActionTypes.ProductSpecificationsPageToggleLoading; - constructor(public payload: { isLoading: boolean }) { } + readonly type = ProductSpecificationActionTypes.ProductSpecificationsPageToggleLoading; + constructor(public payload: { isLoading: boolean }) {} } -export type ProductSpecificationActions = ProductSpecificationOnServerCreated -| ProductSpecificationCreated -| ProductSpecificationUpdated -| OneProductSpecificationDeleted -| ManyProductSpecificationsDeleted -| ProductSpecificationsPageRequested -| ProductSpecificationsPageLoaded -| ProductSpecificationsPageCancelled -| ProductSpecificationsPageToggleLoading; +export type ProductSpecificationActions = + | ProductSpecificationOnServerCreated + | ProductSpecificationCreated + | ProductSpecificationUpdated + | OneProductSpecificationDeleted + | ManyProductSpecificationsDeleted + | ProductSpecificationsPageRequested + | ProductSpecificationsPageLoaded + | ProductSpecificationsPageCancelled + | ProductSpecificationsPageToggleLoading; diff --git a/src/app/core/e-commerce/_actions/product.actions.ts b/src/app/core/e-commerce/_actions/product.actions.ts index 3053d19..f015c8f 100644 --- a/src/app/core/e-commerce/_actions/product.actions.ts +++ b/src/app/core/e-commerce/_actions/product.actions.ts @@ -7,87 +7,92 @@ import { ProductModel } from '../_models/product.model'; import { Update } from '@ngrx/entity'; export enum ProductActionTypes { - ProductOnServerCreated = '[Edit Product Component] Product On Server Created', - ProductCreated = '[Edit Product Component] Product Created', - ProductUpdated = '[Edit Product Component] Product Updated', - ProductsStatusUpdated = '[Products List Page] Products Status Updated', - OneProductDeleted = '[Products List Page] One Product Deleted', - ManyProductsDeleted = '[Products List Page] Many Selected Products Deleted', - ProductsPageRequested = '[Products List Page] Products Page Requested', - ProductsPageLoaded = '[Products API] Products Page Loaded', - ProductsPageCancelled = '[Products API] Products Page Cancelled', - ProductsPageToggleLoading = '[Products] Products Page Toggle Loading', - ProductsActionToggleLoading = '[Products] Products Action Toggle Loading' + ProductOnServerCreated = '[Edit Product Component] Product On Server Created', + ProductCreated = '[Edit Product Component] Product Created', + ProductUpdated = '[Edit Product Component] Product Updated', + ProductsStatusUpdated = '[Products List Page] Products Status Updated', + OneProductDeleted = '[Products List Page] One Product Deleted', + ManyProductsDeleted = '[Products List Page] Many Selected Products Deleted', + ProductsPageRequested = '[Products List Page] Products Page Requested', + ProductsPageLoaded = '[Products API] Products Page Loaded', + ProductsPageCancelled = '[Products API] Products Page Cancelled', + ProductsPageToggleLoading = '[Products] Products Page Toggle Loading', + ProductsActionToggleLoading = '[Products] Products Action Toggle Loading', } export class ProductOnServerCreated implements Action { - readonly type = ProductActionTypes.ProductOnServerCreated; - constructor(public payload: { product: ProductModel }) { } + readonly type = ProductActionTypes.ProductOnServerCreated; + constructor(public payload: { product: ProductModel }) {} } export class ProductCreated implements Action { - readonly type = ProductActionTypes.ProductCreated; - constructor(public payload: { product: ProductModel }) { } + readonly type = ProductActionTypes.ProductCreated; + constructor(public payload: { product: ProductModel }) {} } export class ProductUpdated implements Action { - readonly type = ProductActionTypes.ProductUpdated; - constructor(public payload: { - partialProduct: Update, // For State update - product: ProductModel // For Server update (through service) - }) { } + readonly type = ProductActionTypes.ProductUpdated; + constructor( + public payload: { + partialProduct: Update; // For State update + product: ProductModel; // For Server update (through service) + }, + ) {} } export class ProductsStatusUpdated implements Action { - readonly type = ProductActionTypes.ProductsStatusUpdated; - constructor(public payload: { - products: ProductModel[], - status: number - }) { } + readonly type = ProductActionTypes.ProductsStatusUpdated; + constructor( + public payload: { + products: ProductModel[]; + status: number; + }, + ) {} } export class OneProductDeleted implements Action { - readonly type = ProductActionTypes.OneProductDeleted; - constructor(public payload: { id: number }) {} + readonly type = ProductActionTypes.OneProductDeleted; + constructor(public payload: { id: number }) {} } export class ManyProductsDeleted implements Action { - readonly type = ProductActionTypes.ManyProductsDeleted; - constructor(public payload: { ids: number[] }) {} + readonly type = ProductActionTypes.ManyProductsDeleted; + constructor(public payload: { ids: number[] }) {} } export class ProductsPageRequested implements Action { - readonly type = ProductActionTypes.ProductsPageRequested; - constructor(public payload: { page: QueryParamsModel }) { } + readonly type = ProductActionTypes.ProductsPageRequested; + constructor(public payload: { page: QueryParamsModel }) {} } export class ProductsPageLoaded implements Action { - readonly type = ProductActionTypes.ProductsPageLoaded; - constructor(public payload: { products: ProductModel[], totalCount: number, page: QueryParamsModel }) { } + readonly type = ProductActionTypes.ProductsPageLoaded; + constructor(public payload: { products: ProductModel[]; totalCount: number; page: QueryParamsModel }) {} } export class ProductsPageCancelled implements Action { - readonly type = ProductActionTypes.ProductsPageCancelled; + readonly type = ProductActionTypes.ProductsPageCancelled; } export class ProductsPageToggleLoading implements Action { - readonly type = ProductActionTypes.ProductsPageToggleLoading; - constructor(public payload: { isLoading: boolean }) { } + readonly type = ProductActionTypes.ProductsPageToggleLoading; + constructor(public payload: { isLoading: boolean }) {} } export class ProductsActionToggleLoading implements Action { - readonly type = ProductActionTypes.ProductsActionToggleLoading; - constructor(public payload: { isLoading: boolean }) { } + readonly type = ProductActionTypes.ProductsActionToggleLoading; + constructor(public payload: { isLoading: boolean }) {} } -export type ProductActions = ProductOnServerCreated -| ProductCreated -| ProductUpdated -| ProductsStatusUpdated -| OneProductDeleted -| ManyProductsDeleted -| ProductsPageRequested -| ProductsPageLoaded -| ProductsPageCancelled -| ProductsPageToggleLoading -| ProductsActionToggleLoading; +export type ProductActions = + | ProductOnServerCreated + | ProductCreated + | ProductUpdated + | ProductsStatusUpdated + | OneProductDeleted + | ManyProductsDeleted + | ProductsPageRequested + | ProductsPageLoaded + | ProductsPageCancelled + | ProductsPageToggleLoading + | ProductsActionToggleLoading; diff --git a/src/app/core/e-commerce/_consts/specification.dictionary.ts b/src/app/core/e-commerce/_consts/specification.dictionary.ts index 513779d..d3ef126 100644 --- a/src/app/core/e-commerce/_consts/specification.dictionary.ts +++ b/src/app/core/e-commerce/_consts/specification.dictionary.ts @@ -1,12 +1,12 @@ export const SPECIFICATIONS_DICTIONARY: string[] = [ - 'Seats', - 'Fuel Type', - 'Stock', - 'Door count', - 'Engine', - 'Transmission', - 'Drivetrain', - 'Combined MPG', - 'Warranty', - 'Wheels' + 'Seats', + 'Fuel Type', + 'Stock', + 'Door count', + 'Engine', + 'Transmission', + 'Drivetrain', + 'Combined MPG', + 'Warranty', + 'Wheels', ]; diff --git a/src/app/core/e-commerce/_data-sources/customers.datasource.ts b/src/app/core/e-commerce/_data-sources/customers.datasource.ts index 2f623cc..f19d6e8 100644 --- a/src/app/core/e-commerce/_data-sources/customers.datasource.ts +++ b/src/app/core/e-commerce/_data-sources/customers.datasource.ts @@ -7,23 +7,21 @@ import { Store, select } from '@ngrx/store'; import { BaseDataSource, QueryResultsModel } from '../../_base/crud'; // State import { AppState } from '../../reducers'; -import { selectCustomersInStore, selectCustomersPageLoading, selectCustomersShowInitWaitingMessage } from '../_selectors/customer.selectors'; +import { + selectCustomersInStore, + selectCustomersPageLoading, + selectCustomersShowInitWaitingMessage, +} from '../_selectors/customer.selectors'; export class CustomersDataSource extends BaseDataSource { constructor(private store: Store) { super(); - this.loading$ = this.store.pipe( - select(selectCustomersPageLoading), - ); + this.loading$ = this.store.pipe(select(selectCustomersPageLoading)); - this.isPreloadTextViewed$ = this.store.pipe( - select(selectCustomersShowInitWaitingMessage) - ); + this.isPreloadTextViewed$ = this.store.pipe(select(selectCustomersShowInitWaitingMessage)); - this.store.pipe( - select(selectCustomersInStore), - ).subscribe((response: QueryResultsModel) => { + this.store.pipe(select(selectCustomersInStore)).subscribe((response: QueryResultsModel) => { this.paginatorTotalSubject.next(response.totalCount); this.entitySubject.next(response.items); }); diff --git a/src/app/core/e-commerce/_data-sources/product-remarks.datasource.ts b/src/app/core/e-commerce/_data-sources/product-remarks.datasource.ts index 4df286b..1c4e66b 100644 --- a/src/app/core/e-commerce/_data-sources/product-remarks.datasource.ts +++ b/src/app/core/e-commerce/_data-sources/product-remarks.datasource.ts @@ -6,22 +6,26 @@ import { Store, select } from '@ngrx/store'; import { BaseDataSource, QueryResultsModel } from '../../_base/crud'; // State import { AppState } from '../../reducers'; -import { selectProductRemarksInStore, selectProductRemarksPageLoading, selectPRShowInitWaitingMessage } from '../_selectors/product-remark.selectors'; +import { + selectProductRemarksInStore, + selectProductRemarksPageLoading, + selectPRShowInitWaitingMessage, +} from '../_selectors/product-remark.selectors'; export class ProductRemarksDataSource extends BaseDataSource { constructor(private store: Store) { super(); - this.store.pipe( - select(selectProductRemarksInStore), - debounceTime(600) - ).subscribe((response: QueryResultsModel) => { - this.entitySubject.next(response.items); - this.paginatorTotalSubject.next(response.totalCount); - }); + this.store + .pipe( + select(selectProductRemarksInStore), + debounceTime(600), + ) + .subscribe((response: QueryResultsModel) => { + this.entitySubject.next(response.items); + this.paginatorTotalSubject.next(response.totalCount); + }); - this.isPreloadTextViewed$ = this.store.pipe( - select(selectPRShowInitWaitingMessage) - ); + this.isPreloadTextViewed$ = this.store.pipe(select(selectPRShowInitWaitingMessage)); this.loading$ = this.store.pipe(select(selectProductRemarksPageLoading)); } diff --git a/src/app/core/e-commerce/_data-sources/product-specifications.datasource.ts b/src/app/core/e-commerce/_data-sources/product-specifications.datasource.ts index adb75df..c0bd54a 100644 --- a/src/app/core/e-commerce/_data-sources/product-specifications.datasource.ts +++ b/src/app/core/e-commerce/_data-sources/product-specifications.datasource.ts @@ -6,22 +6,26 @@ import { Store, select } from '@ngrx/store'; import { BaseDataSource, QueryResultsModel } from '../../_base/crud'; // State import { AppState } from '../../reducers'; -import { selectProductSpecificationsInStore, selectProductSpecificationsPageLoading, selectPSShowInitWaitingMessage } from '../_selectors/product-specification.selectors'; +import { + selectProductSpecificationsInStore, + selectProductSpecificationsPageLoading, + selectPSShowInitWaitingMessage, +} from '../_selectors/product-specification.selectors'; export class ProductSpecificationsDataSource extends BaseDataSource { constructor(private store: Store) { super(); - this.store.pipe( - select(selectProductSpecificationsInStore), - debounceTime(600) - ).subscribe((response: QueryResultsModel) => { - this.entitySubject.next(response.items); - this.paginatorTotalSubject.next(response.totalCount); - }); + this.store + .pipe( + select(selectProductSpecificationsInStore), + debounceTime(600), + ) + .subscribe((response: QueryResultsModel) => { + this.entitySubject.next(response.items); + this.paginatorTotalSubject.next(response.totalCount); + }); - this.isPreloadTextViewed$ = this.store.pipe( - select(selectPSShowInitWaitingMessage) - ); + this.isPreloadTextViewed$ = this.store.pipe(select(selectPSShowInitWaitingMessage)); this.loading$ = this.store.pipe(select(selectProductSpecificationsPageLoading)); } diff --git a/src/app/core/e-commerce/_data-sources/products.datasource.ts b/src/app/core/e-commerce/_data-sources/products.datasource.ts index d9b020c..61f5cea 100644 --- a/src/app/core/e-commerce/_data-sources/products.datasource.ts +++ b/src/app/core/e-commerce/_data-sources/products.datasource.ts @@ -12,17 +12,11 @@ import { selectProductsInStore, selectProductsPageLoading } from '../_selectors/ export class ProductsDataSource extends BaseDataSource { constructor(private store: Store) { super(); - this.loading$ = this.store.pipe( - select(selectProductsPageLoading) - ); + this.loading$ = this.store.pipe(select(selectProductsPageLoading)); - this.isPreloadTextViewed$ = this.store.pipe( - select(selectProductsInitWaitingMessage) - ); + this.isPreloadTextViewed$ = this.store.pipe(select(selectProductsInitWaitingMessage)); - this.store.pipe( - select(selectProductsInStore) - ).subscribe((response: QueryResultsModel) => { + this.store.pipe(select(selectProductsInStore)).subscribe((response: QueryResultsModel) => { this.paginatorTotalSubject.next(response.totalCount); this.entitySubject.next(response.items); }); diff --git a/src/app/core/e-commerce/_effects/customer.effects.ts b/src/app/core/e-commerce/_effects/customer.effects.ts index a544c0d..8232b87 100644 --- a/src/app/core/e-commerce/_effects/customer.effects.ts +++ b/src/app/core/e-commerce/_effects/customer.effects.ts @@ -15,117 +15,110 @@ import { CustomersService } from '../_services/'; import { AppState } from '../../../core/reducers'; // Actions import { - CustomerActionTypes, - CustomersPageRequested, - CustomersPageLoaded, - ManyCustomersDeleted, - OneCustomerDeleted, - CustomerActionToggleLoading, - CustomersPageToggleLoading, - CustomerUpdated, - CustomersStatusUpdated, - CustomerCreated, - CustomerOnServerCreated + CustomerActionTypes, + CustomersPageRequested, + CustomersPageLoaded, + ManyCustomersDeleted, + OneCustomerDeleted, + CustomerActionToggleLoading, + CustomersPageToggleLoading, + CustomerUpdated, + CustomersStatusUpdated, + CustomerCreated, + CustomerOnServerCreated, } from '../_actions/customer.actions'; import { of } from 'rxjs'; @Injectable() export class CustomerEffects { - showPageLoadingDistpatcher = new CustomersPageToggleLoading({ isLoading: true }); - showActionLoadingDistpatcher = new CustomerActionToggleLoading({ isLoading: true }); - hideActionLoadingDistpatcher = new CustomerActionToggleLoading({ isLoading: false }); + showPageLoadingDistpatcher = new CustomersPageToggleLoading({ isLoading: true }); + showActionLoadingDistpatcher = new CustomerActionToggleLoading({ isLoading: true }); + hideActionLoadingDistpatcher = new CustomerActionToggleLoading({ isLoading: false }); - @Effect() - loadCustomersPage$ = this.actions$.pipe( - ofType(CustomerActionTypes.CustomersPageRequested), - mergeMap(( { payload } ) => { - this.store.dispatch(this.showPageLoadingDistpatcher); - const requestToServer = this.customersService.findCustomers(payload.page); - const lastQuery = of(payload.page); - return forkJoin(requestToServer, lastQuery); - }), - map(response => { - const result: QueryResultsModel = response[0]; - const lastQuery: QueryParamsModel = response[1]; - const pageLoadedDispatch = new CustomersPageLoaded({ - customers: result.items, - totalCount: result.totalCount, - page: lastQuery - }); - return pageLoadedDispatch; - }) - ); + @Effect() + loadCustomersPage$ = this.actions$.pipe( + ofType(CustomerActionTypes.CustomersPageRequested), + mergeMap(({ payload }) => { + this.store.dispatch(this.showPageLoadingDistpatcher); + const requestToServer = this.customersService.findCustomers(payload.page); + const lastQuery = of(payload.page); + return forkJoin(requestToServer, lastQuery); + }), + map(response => { + const result: QueryResultsModel = response[0]; + const lastQuery: QueryParamsModel = response[1]; + const pageLoadedDispatch = new CustomersPageLoaded({ + customers: result.items, + totalCount: result.totalCount, + page: lastQuery, + }); + return pageLoadedDispatch; + }), + ); - @Effect() - deleteCustomer$ = this.actions$ - .pipe( - ofType(CustomerActionTypes.OneCustomerDeleted), - mergeMap(( { payload } ) => { - this.store.dispatch(this.showActionLoadingDistpatcher); - return this.customersService.deleteCustomer(payload.id); - } - ), - map(() => { - return this.hideActionLoadingDistpatcher; - }), - ); + @Effect() + deleteCustomer$ = this.actions$.pipe( + ofType(CustomerActionTypes.OneCustomerDeleted), + mergeMap(({ payload }) => { + this.store.dispatch(this.showActionLoadingDistpatcher); + return this.customersService.deleteCustomer(payload.id); + }), + map(() => { + return this.hideActionLoadingDistpatcher; + }), + ); - @Effect() - deleteCustomers$ = this.actions$ - .pipe( - ofType(CustomerActionTypes.ManyCustomersDeleted), - mergeMap(( { payload } ) => { - this.store.dispatch(this.showActionLoadingDistpatcher); - return this.customersService.deleteCustomers(payload.ids); - } - ), - map(() => { - return this.hideActionLoadingDistpatcher; - }), - ); + @Effect() + deleteCustomers$ = this.actions$.pipe( + ofType(CustomerActionTypes.ManyCustomersDeleted), + mergeMap(({ payload }) => { + this.store.dispatch(this.showActionLoadingDistpatcher); + return this.customersService.deleteCustomers(payload.ids); + }), + map(() => { + return this.hideActionLoadingDistpatcher; + }), + ); - @Effect() - updateCustomer$ = this.actions$ - .pipe( - ofType(CustomerActionTypes.CustomerUpdated), - mergeMap(( { payload } ) => { - this.store.dispatch(this.showActionLoadingDistpatcher); - return this.customersService.updateCustomer(payload.customer); - }), - map(() => { - return this.hideActionLoadingDistpatcher; - }) - ); + @Effect() + updateCustomer$ = this.actions$.pipe( + ofType(CustomerActionTypes.CustomerUpdated), + mergeMap(({ payload }) => { + this.store.dispatch(this.showActionLoadingDistpatcher); + return this.customersService.updateCustomer(payload.customer); + }), + map(() => { + return this.hideActionLoadingDistpatcher; + }), + ); - @Effect() - updateCustomersStatus$ = this.actions$ - .pipe( - ofType(CustomerActionTypes.CustomersStatusUpdated), - mergeMap(( { payload } ) => { - this.store.dispatch(this.showActionLoadingDistpatcher); - return this.customersService.updateStatusForCustomer(payload.customers, payload.status); - }), - map(() => { - return this.hideActionLoadingDistpatcher; - }) - ); + @Effect() + updateCustomersStatus$ = this.actions$.pipe( + ofType(CustomerActionTypes.CustomersStatusUpdated), + mergeMap(({ payload }) => { + this.store.dispatch(this.showActionLoadingDistpatcher); + return this.customersService.updateStatusForCustomer(payload.customers, payload.status); + }), + map(() => { + return this.hideActionLoadingDistpatcher; + }), + ); - @Effect() - createCustomer$ = this.actions$ - .pipe( - ofType(CustomerActionTypes.CustomerOnServerCreated), - mergeMap(( { payload } ) => { - this.store.dispatch(this.showActionLoadingDistpatcher); - return this.customersService.createCustomer(payload.customer).pipe( - tap(res => { - this.store.dispatch(new CustomerCreated({ customer: res })); - }) - ); - }), - map(() => { - return this.hideActionLoadingDistpatcher; - }), - ); + @Effect() + createCustomer$ = this.actions$.pipe( + ofType(CustomerActionTypes.CustomerOnServerCreated), + mergeMap(({ payload }) => { + this.store.dispatch(this.showActionLoadingDistpatcher); + return this.customersService.createCustomer(payload.customer).pipe( + tap(res => { + this.store.dispatch(new CustomerCreated({ customer: res })); + }), + ); + }), + map(() => { + return this.hideActionLoadingDistpatcher; + }), + ); - constructor(private actions$: Actions, private customersService: CustomersService, private store: Store) { } + constructor(private actions$: Actions, private customersService: CustomersService, private store: Store) {} } diff --git a/src/app/core/e-commerce/_effects/product-remark.effects.ts b/src/app/core/e-commerce/_effects/product-remark.effects.ts index 49108e8..71866d8 100644 --- a/src/app/core/e-commerce/_effects/product-remark.effects.ts +++ b/src/app/core/e-commerce/_effects/product-remark.effects.ts @@ -14,94 +14,91 @@ import { ProductRemarksService } from '../_services/'; import { AppState } from '../../../core/reducers'; // Actions import { - ProductRemarkActionTypes, - ProductRemarksPageRequested, - ProductRemarksPageLoaded, - ManyProductRemarksDeleted, - OneProductRemarkDeleted, - ProductRemarksPageToggleLoading, - ProductRemarkUpdated, - ProductRemarkCreated, - ProductRemarkOnServerCreated + ProductRemarkActionTypes, + ProductRemarksPageRequested, + ProductRemarksPageLoaded, + ManyProductRemarksDeleted, + OneProductRemarkDeleted, + ProductRemarksPageToggleLoading, + ProductRemarkUpdated, + ProductRemarkCreated, + ProductRemarkOnServerCreated, } from '../_actions/product-remark.actions'; @Injectable() export class ProductRemarkEffects { - // showLoadingDistpatcher = new ProcutRemarksPageToggleLoading({ isLoading: true }); - hideLoadingDistpatcher = new ProductRemarksPageToggleLoading({ isLoading: false }); + // showLoadingDistpatcher = new ProcutRemarksPageToggleLoading({ isLoading: true }); + hideLoadingDistpatcher = new ProductRemarksPageToggleLoading({ isLoading: false }); - @Effect() - loadProductRemarksPage$ = this.actions$ - .pipe( - ofType(ProductRemarkActionTypes.ProductRemarksPageRequested), - mergeMap(( { payload } ) => { - return this.productRemarksService.findProductRemarks(payload.page, payload.productId); - }), - map((result: QueryResultsModel) => { - return new ProductRemarksPageLoaded({ - productRemarks: result.items, - totalCount: result.totalCount - }); - }), - ); + @Effect() + loadProductRemarksPage$ = this.actions$.pipe( + ofType(ProductRemarkActionTypes.ProductRemarksPageRequested), + mergeMap(({ payload }) => { + return this.productRemarksService.findProductRemarks(payload.page, payload.productId); + }), + map((result: QueryResultsModel) => { + return new ProductRemarksPageLoaded({ + productRemarks: result.items, + totalCount: result.totalCount, + }); + }), + ); - @Effect() - deleteProductRemark$ = this.actions$ - .pipe( - ofType(ProductRemarkActionTypes.OneProductRemarkDeleted), - mergeMap(( { payload } ) => { - this.store.dispatch(new ProductRemarksPageToggleLoading({ isLoading: true })); - return this.productRemarksService.deleteProductRemark(payload.id); - } - ), - map(() => { - return this.hideLoadingDistpatcher; - }), - ); + @Effect() + deleteProductRemark$ = this.actions$.pipe( + ofType(ProductRemarkActionTypes.OneProductRemarkDeleted), + mergeMap(({ payload }) => { + this.store.dispatch(new ProductRemarksPageToggleLoading({ isLoading: true })); + return this.productRemarksService.deleteProductRemark(payload.id); + }), + map(() => { + return this.hideLoadingDistpatcher; + }), + ); - @Effect() - deleteProductRemarks$ = this.actions$ - .pipe( - ofType(ProductRemarkActionTypes.ManyProductRemarksDeleted), - mergeMap(( { payload } ) => { - this.store.dispatch(new ProductRemarksPageToggleLoading({ isLoading: true })); - return this.productRemarksService.deleteProductRemarks(payload.ids); - } - ), - map(() => { - return this.hideLoadingDistpatcher; - }), - ); + @Effect() + deleteProductRemarks$ = this.actions$.pipe( + ofType(ProductRemarkActionTypes.ManyProductRemarksDeleted), + mergeMap(({ payload }) => { + this.store.dispatch(new ProductRemarksPageToggleLoading({ isLoading: true })); + return this.productRemarksService.deleteProductRemarks(payload.ids); + }), + map(() => { + return this.hideLoadingDistpatcher; + }), + ); - @Effect() - updateProductRemark$ = this.actions$ - .pipe( - ofType(ProductRemarkActionTypes.ProductRemarkUpdated), - mergeMap(( { payload } ) => { - this.store.dispatch(new ProductRemarksPageToggleLoading({ isLoading: true })); - return this.productRemarksService.updateProductRemark(payload.productRemark); - }), - map(() => { - return this.hideLoadingDistpatcher; - }), - ); + @Effect() + updateProductRemark$ = this.actions$.pipe( + ofType(ProductRemarkActionTypes.ProductRemarkUpdated), + mergeMap(({ payload }) => { + this.store.dispatch(new ProductRemarksPageToggleLoading({ isLoading: true })); + return this.productRemarksService.updateProductRemark(payload.productRemark); + }), + map(() => { + return this.hideLoadingDistpatcher; + }), + ); - @Effect() - createProductRemark$ = this.actions$ - .pipe( - ofType(ProductRemarkActionTypes.ProductRemarkOnServerCreated), - mergeMap(( { payload } ) => { - this.store.dispatch(new ProductRemarksPageToggleLoading({ isLoading: true })); - return this.productRemarksService.createProductRemark(payload.productRemark).pipe( - tap(res => { - this.store.dispatch(new ProductRemarkCreated({ productRemark: res })); - }) - ); - }), - map(() => { - return this.hideLoadingDistpatcher; - }), - ); + @Effect() + createProductRemark$ = this.actions$.pipe( + ofType(ProductRemarkActionTypes.ProductRemarkOnServerCreated), + mergeMap(({ payload }) => { + this.store.dispatch(new ProductRemarksPageToggleLoading({ isLoading: true })); + return this.productRemarksService.createProductRemark(payload.productRemark).pipe( + tap(res => { + this.store.dispatch(new ProductRemarkCreated({ productRemark: res })); + }), + ); + }), + map(() => { + return this.hideLoadingDistpatcher; + }), + ); - constructor(private actions$: Actions, private productRemarksService: ProductRemarksService, private store: Store) { } + constructor( + private actions$: Actions, + private productRemarksService: ProductRemarksService, + private store: Store, + ) {} } diff --git a/src/app/core/e-commerce/_effects/product-specification.effects.ts b/src/app/core/e-commerce/_effects/product-specification.effects.ts index 9cf8426..e4878d9 100644 --- a/src/app/core/e-commerce/_effects/product-specification.effects.ts +++ b/src/app/core/e-commerce/_effects/product-specification.effects.ts @@ -14,92 +14,89 @@ import { ProductSpecificationsService } from '../_services/'; import { AppState } from '../../../core/reducers'; // Actions import { - ProductSpecificationActionTypes, - ProductSpecificationsPageRequested, - ProductSpecificationsPageLoaded, - ManyProductSpecificationsDeleted, - OneProductSpecificationDeleted, - ProductSpecificationsPageToggleLoading, - ProductSpecificationUpdated, - ProductSpecificationCreated, - ProductSpecificationOnServerCreated + ProductSpecificationActionTypes, + ProductSpecificationsPageRequested, + ProductSpecificationsPageLoaded, + ManyProductSpecificationsDeleted, + OneProductSpecificationDeleted, + ProductSpecificationsPageToggleLoading, + ProductSpecificationUpdated, + ProductSpecificationCreated, + ProductSpecificationOnServerCreated, } from '../_actions/product-specification.actions'; @Injectable() export class ProductSpecificationEffects { - // showLoadingDistpatcher = new ProcutSpecificationsPageToggleLoading({ isLoading: true }); - hideLoadingDistpatcher = new ProductSpecificationsPageToggleLoading({ isLoading: false }); + // showLoadingDistpatcher = new ProcutSpecificationsPageToggleLoading({ isLoading: true }); + hideLoadingDistpatcher = new ProductSpecificationsPageToggleLoading({ isLoading: false }); - @Effect() - loadProductSpecificationsPage$ = this.actions$ - .pipe( - ofType(ProductSpecificationActionTypes.ProductSpecificationsPageRequested), - mergeMap(( { payload } ) => this.productSpecificationsService.findProductSpecs(payload.page, payload.productId)), - map((result: QueryResultsModel) => { - return new ProductSpecificationsPageLoaded({ - productSpecifications: result.items, - totalCount: result.totalCount - }); - }), - ); + @Effect() + loadProductSpecificationsPage$ = this.actions$.pipe( + ofType(ProductSpecificationActionTypes.ProductSpecificationsPageRequested), + mergeMap(({ payload }) => this.productSpecificationsService.findProductSpecs(payload.page, payload.productId)), + map((result: QueryResultsModel) => { + return new ProductSpecificationsPageLoaded({ + productSpecifications: result.items, + totalCount: result.totalCount, + }); + }), + ); - @Effect() - deleteProductSpecification$ = this.actions$ - .pipe( - ofType(ProductSpecificationActionTypes.OneProductSpecificationDeleted), - mergeMap(( { payload } ) => { - this.store.dispatch(new ProductSpecificationsPageToggleLoading({ isLoading: true })); - return this.productSpecificationsService.deleteProductSpec(payload.id); - } - ), - map(() => { - return this.hideLoadingDistpatcher; - }), - ); + @Effect() + deleteProductSpecification$ = this.actions$.pipe( + ofType(ProductSpecificationActionTypes.OneProductSpecificationDeleted), + mergeMap(({ payload }) => { + this.store.dispatch(new ProductSpecificationsPageToggleLoading({ isLoading: true })); + return this.productSpecificationsService.deleteProductSpec(payload.id); + }), + map(() => { + return this.hideLoadingDistpatcher; + }), + ); - @Effect() - deleteProductSpecifications$ = this.actions$ - .pipe( - ofType(ProductSpecificationActionTypes.ManyProductSpecificationsDeleted), - mergeMap(( { payload } ) => { - this.store.dispatch(new ProductSpecificationsPageToggleLoading({ isLoading: true })); - return this.productSpecificationsService.deleteProductSpecifications(payload.ids); - } - ), - map(() => { - return this.hideLoadingDistpatcher; - }), - ); + @Effect() + deleteProductSpecifications$ = this.actions$.pipe( + ofType(ProductSpecificationActionTypes.ManyProductSpecificationsDeleted), + mergeMap(({ payload }) => { + this.store.dispatch(new ProductSpecificationsPageToggleLoading({ isLoading: true })); + return this.productSpecificationsService.deleteProductSpecifications(payload.ids); + }), + map(() => { + return this.hideLoadingDistpatcher; + }), + ); - @Effect() - updateProductSpecification$ = this.actions$ - .pipe( - ofType(ProductSpecificationActionTypes.ProductSpecificationUpdated), - mergeMap(( { payload } ) => { - this.store.dispatch(new ProductSpecificationsPageToggleLoading({ isLoading: true })); - return this.productSpecificationsService.updateProductSpec(payload.productSpecification); - }), - map(() => { - return this.hideLoadingDistpatcher; - }), - ); + @Effect() + updateProductSpecification$ = this.actions$.pipe( + ofType(ProductSpecificationActionTypes.ProductSpecificationUpdated), + mergeMap(({ payload }) => { + this.store.dispatch(new ProductSpecificationsPageToggleLoading({ isLoading: true })); + return this.productSpecificationsService.updateProductSpec(payload.productSpecification); + }), + map(() => { + return this.hideLoadingDistpatcher; + }), + ); - @Effect() - createProductSpecification$ = this.actions$ - .pipe( - ofType(ProductSpecificationActionTypes.ProductSpecificationOnServerCreated), - mergeMap(( { payload } ) => { - this.store.dispatch(new ProductSpecificationsPageToggleLoading({ isLoading: true })); - return this.productSpecificationsService.createProductSpec(payload.productSpecification).pipe( - tap(res => { - this.store.dispatch(new ProductSpecificationCreated({ productSpecification: res })); - }) - ); - }), - map(() => { - return this.hideLoadingDistpatcher; - }), - ); + @Effect() + createProductSpecification$ = this.actions$.pipe( + ofType(ProductSpecificationActionTypes.ProductSpecificationOnServerCreated), + mergeMap(({ payload }) => { + this.store.dispatch(new ProductSpecificationsPageToggleLoading({ isLoading: true })); + return this.productSpecificationsService.createProductSpec(payload.productSpecification).pipe( + tap(res => { + this.store.dispatch(new ProductSpecificationCreated({ productSpecification: res })); + }), + ); + }), + map(() => { + return this.hideLoadingDistpatcher; + }), + ); - constructor(private actions$: Actions, private productSpecificationsService: ProductSpecificationsService, private store: Store) { } + constructor( + private actions$: Actions, + private productSpecificationsService: ProductSpecificationsService, + private store: Store, + ) {} } diff --git a/src/app/core/e-commerce/_effects/product.effects.ts b/src/app/core/e-commerce/_effects/product.effects.ts index 624daf3..fe1cb8e 100644 --- a/src/app/core/e-commerce/_effects/product.effects.ts +++ b/src/app/core/e-commerce/_effects/product.effects.ts @@ -14,122 +14,114 @@ import { ProductsService } from '../_services/'; import { AppState } from '../../../core/reducers'; // Actions import { - ProductActionTypes, - ProductsPageRequested, - ProductsPageLoaded, - ManyProductsDeleted, - OneProductDeleted, - ProductsPageToggleLoading, - ProductsStatusUpdated, - ProductUpdated, - ProductCreated, - ProductOnServerCreated + ProductActionTypes, + ProductsPageRequested, + ProductsPageLoaded, + ManyProductsDeleted, + OneProductDeleted, + ProductsPageToggleLoading, + ProductsStatusUpdated, + ProductUpdated, + ProductCreated, + ProductOnServerCreated, } from '../_actions/product.actions'; import { defer, Observable, of } from 'rxjs'; @Injectable() export class ProductEffects { - showPageLoadingDistpatcher = new ProductsPageToggleLoading({ isLoading: true }); - showLoadingDistpatcher = new ProductsPageToggleLoading({ isLoading: true }); - hideActionLoadingDistpatcher = new ProductsPageToggleLoading({ isLoading: false }); + showPageLoadingDistpatcher = new ProductsPageToggleLoading({ isLoading: true }); + showLoadingDistpatcher = new ProductsPageToggleLoading({ isLoading: true }); + hideActionLoadingDistpatcher = new ProductsPageToggleLoading({ isLoading: false }); - @Effect() - loadProductsPage$ = this.actions$ - .pipe( - ofType(ProductActionTypes.ProductsPageRequested), - mergeMap(( { payload } ) => { - this.store.dispatch(this.showPageLoadingDistpatcher); - const requestToServer = this.productsService.findProducts(payload.page); - const lastQuery = of(payload.page); - return forkJoin(requestToServer, lastQuery); - }), - map(response => { - const result: QueryResultsModel = response[0]; - const lastQuery: QueryParamsModel = response[1]; - return new ProductsPageLoaded({ - products: result.items, - totalCount: result.totalCount, - page: lastQuery - }); - }), - ); + @Effect() + loadProductsPage$ = this.actions$.pipe( + ofType(ProductActionTypes.ProductsPageRequested), + mergeMap(({ payload }) => { + this.store.dispatch(this.showPageLoadingDistpatcher); + const requestToServer = this.productsService.findProducts(payload.page); + const lastQuery = of(payload.page); + return forkJoin(requestToServer, lastQuery); + }), + map(response => { + const result: QueryResultsModel = response[0]; + const lastQuery: QueryParamsModel = response[1]; + return new ProductsPageLoaded({ + products: result.items, + totalCount: result.totalCount, + page: lastQuery, + }); + }), + ); - @Effect() - deleteProduct$ = this.actions$ - .pipe( - ofType(ProductActionTypes.OneProductDeleted), - mergeMap(( { payload } ) => { - this.store.dispatch(this.showLoadingDistpatcher); - return this.productsService.deleteProduct(payload.id); - } - ), - map(() => { - return this.hideActionLoadingDistpatcher; - }), - ); + @Effect() + deleteProduct$ = this.actions$.pipe( + ofType(ProductActionTypes.OneProductDeleted), + mergeMap(({ payload }) => { + this.store.dispatch(this.showLoadingDistpatcher); + return this.productsService.deleteProduct(payload.id); + }), + map(() => { + return this.hideActionLoadingDistpatcher; + }), + ); - @Effect() - deleteProducts$ = this.actions$ - .pipe( - ofType(ProductActionTypes.ManyProductsDeleted), - mergeMap(( { payload } ) => { - this.store.dispatch(this.showLoadingDistpatcher); - return this.productsService.deleteProducts(payload.ids); - } - ), - map(() => { - return this.hideActionLoadingDistpatcher; - }), - ); + @Effect() + deleteProducts$ = this.actions$.pipe( + ofType(ProductActionTypes.ManyProductsDeleted), + mergeMap(({ payload }) => { + this.store.dispatch(this.showLoadingDistpatcher); + return this.productsService.deleteProducts(payload.ids); + }), + map(() => { + return this.hideActionLoadingDistpatcher; + }), + ); - @Effect() - updateProductsStatus$ = this.actions$ - .pipe( - ofType(ProductActionTypes.ProductsStatusUpdated), - mergeMap(( { payload } ) => { - this.store.dispatch(this.showLoadingDistpatcher); - return this.productsService.updateStatusForProduct(payload.products, payload.status); - }), - map(() => { - return this.hideActionLoadingDistpatcher; - }), - ); + @Effect() + updateProductsStatus$ = this.actions$.pipe( + ofType(ProductActionTypes.ProductsStatusUpdated), + mergeMap(({ payload }) => { + this.store.dispatch(this.showLoadingDistpatcher); + return this.productsService.updateStatusForProduct(payload.products, payload.status); + }), + map(() => { + return this.hideActionLoadingDistpatcher; + }), + ); - @Effect() - updateProduct$ = this.actions$ - .pipe( - ofType(ProductActionTypes.ProductUpdated), - mergeMap(( { payload } ) => { - this.store.dispatch(this.showLoadingDistpatcher); - return this.productsService.updateProduct(payload.product); - }), - map(() => { - return this.hideActionLoadingDistpatcher; - }), - ); + @Effect() + updateProduct$ = this.actions$.pipe( + ofType(ProductActionTypes.ProductUpdated), + mergeMap(({ payload }) => { + this.store.dispatch(this.showLoadingDistpatcher); + return this.productsService.updateProduct(payload.product); + }), + map(() => { + return this.hideActionLoadingDistpatcher; + }), + ); - @Effect() - createProduct$ = this.actions$ - .pipe( - ofType(ProductActionTypes.ProductOnServerCreated), - mergeMap(( { payload } ) => { - this.store.dispatch(this.showLoadingDistpatcher); - return this.productsService.createProduct(payload.product).pipe( - tap(res => { - this.store.dispatch(new ProductCreated({ product: res })); - }) - ); - }), - map(() => { - return this.hideActionLoadingDistpatcher; - }), - ); + @Effect() + createProduct$ = this.actions$.pipe( + ofType(ProductActionTypes.ProductOnServerCreated), + mergeMap(({ payload }) => { + this.store.dispatch(this.showLoadingDistpatcher); + return this.productsService.createProduct(payload.product).pipe( + tap(res => { + this.store.dispatch(new ProductCreated({ product: res })); + }), + ); + }), + map(() => { + return this.hideActionLoadingDistpatcher; + }), + ); - // @Effect() - // init$: Observable = defer(() => { - // const queryParams = new QueryParamsModel({}); - // return of(new ProductsPageRequested({ page: queryParams })); - // }); + // @Effect() + // init$: Observable = defer(() => { + // const queryParams = new QueryParamsModel({}); + // return of(new ProductsPageRequested({ page: queryParams })); + // }); - constructor(private actions$: Actions, private productsService: ProductsService, private store: Store) { } + constructor(private actions$: Actions, private productsService: ProductsService, private store: Store) {} } diff --git a/src/app/core/e-commerce/_models/customer.model.ts b/src/app/core/e-commerce/_models/customer.model.ts index 6af1ba5..26f5917 100644 --- a/src/app/core/e-commerce/_models/customer.model.ts +++ b/src/app/core/e-commerce/_models/customer.model.ts @@ -1,6 +1,6 @@ import { BaseModel } from '../../_base/crud'; -export class CustomerModel extends BaseModel { +export class CustomerModel extends BaseModel { id: number; firstName: string; lastName: string; diff --git a/src/app/core/e-commerce/_models/product-specification.model.ts b/src/app/core/e-commerce/_models/product-specification.model.ts index aefdc57..5105bec 100644 --- a/src/app/core/e-commerce/_models/product-specification.model.ts +++ b/src/app/core/e-commerce/_models/product-specification.model.ts @@ -1,6 +1,6 @@ import { BaseModel } from '../../_base/crud'; -export class ProductSpecificationModel extends BaseModel { +export class ProductSpecificationModel extends BaseModel { id: number; carId: number; specId: number; diff --git a/src/app/core/e-commerce/_reducers/customer.reducers.ts b/src/app/core/e-commerce/_reducers/customer.reducers.ts index 4df081a..9ca13ee 100644 --- a/src/app/core/e-commerce/_reducers/customer.reducers.ts +++ b/src/app/core/e-commerce/_reducers/customer.reducers.ts @@ -8,83 +8,90 @@ import { CustomerModel } from '../_models/customer.model'; import { QueryParamsModel } from '../../_base/crud'; export interface CustomersState extends EntityState { - listLoading: boolean; - actionsloading: boolean; - totalCount: number; - lastCreatedCustomerId: number; - lastQuery: QueryParamsModel; - showInitWaitingMessage: boolean; + listLoading: boolean; + actionsloading: boolean; + totalCount: number; + lastCreatedCustomerId: number; + lastQuery: QueryParamsModel; + showInitWaitingMessage: boolean; } export const adapter: EntityAdapter = createEntityAdapter(); export const initialCustomersState: CustomersState = adapter.getInitialState({ - customerForEdit: null, - listLoading: false, - actionsloading: false, - totalCount: 0, - lastCreatedCustomerId: undefined, - lastQuery: new QueryParamsModel({}), - showInitWaitingMessage: true + customerForEdit: null, + listLoading: false, + actionsloading: false, + totalCount: 0, + lastCreatedCustomerId: undefined, + lastQuery: new QueryParamsModel({}), + showInitWaitingMessage: true, }); export function customersReducer(state = initialCustomersState, action: CustomerActions): CustomersState { - switch (action.type) { - case CustomerActionTypes.CustomersPageToggleLoading: { - return { - ...state, listLoading: action.payload.isLoading, lastCreatedCustomerId: undefined - }; - } - case CustomerActionTypes.CustomerActionToggleLoading: { - return { - ...state, actionsloading: action.payload.isLoading - }; - } - case CustomerActionTypes.CustomerOnServerCreated: return { - ...state - }; - case CustomerActionTypes.CustomerCreated: return adapter.addOne(action.payload.customer, { - ...state, lastCreatedCustomerId: action.payload.customer.id - }); - case CustomerActionTypes.CustomerUpdated: return adapter.updateOne(action.payload.partialCustomer, state); - case CustomerActionTypes.CustomersStatusUpdated: { - const _partialCustomers: Update[] = []; - // tslint:disable-next-line:prefer-const - for (let i = 0; i < action.payload.customers.length; i++) { - _partialCustomers.push({ - id: action.payload.customers[i].id, - changes: { - status: action.payload.status - } - }); - } - return adapter.updateMany(_partialCustomers, state); - } - case CustomerActionTypes.OneCustomerDeleted: return adapter.removeOne(action.payload.id, state); - case CustomerActionTypes.ManyCustomersDeleted: return adapter.removeMany(action.payload.ids, state); - case CustomerActionTypes.CustomersPageCancelled: { - return { - ...state, listLoading: false, lastQuery: new QueryParamsModel({}) - }; - } - case CustomerActionTypes.CustomersPageLoaded: { - return adapter.addMany(action.payload.customers, { - ...initialCustomersState, - totalCount: action.payload.totalCount, - listLoading: false, - lastQuery: action.payload.page, - showInitWaitingMessage: false - }); - } - default: return state; - } + switch (action.type) { + case CustomerActionTypes.CustomersPageToggleLoading: { + return { + ...state, + listLoading: action.payload.isLoading, + lastCreatedCustomerId: undefined, + }; + } + case CustomerActionTypes.CustomerActionToggleLoading: { + return { + ...state, + actionsloading: action.payload.isLoading, + }; + } + case CustomerActionTypes.CustomerOnServerCreated: + return { + ...state, + }; + case CustomerActionTypes.CustomerCreated: + return adapter.addOne(action.payload.customer, { + ...state, + lastCreatedCustomerId: action.payload.customer.id, + }); + case CustomerActionTypes.CustomerUpdated: + return adapter.updateOne(action.payload.partialCustomer, state); + case CustomerActionTypes.CustomersStatusUpdated: { + const _partialCustomers: Update[] = []; + // tslint:disable-next-line:prefer-const + for (let i = 0; i < action.payload.customers.length; i++) { + _partialCustomers.push({ + id: action.payload.customers[i].id, + changes: { + status: action.payload.status, + }, + }); + } + return adapter.updateMany(_partialCustomers, state); + } + case CustomerActionTypes.OneCustomerDeleted: + return adapter.removeOne(action.payload.id, state); + case CustomerActionTypes.ManyCustomersDeleted: + return adapter.removeMany(action.payload.ids, state); + case CustomerActionTypes.CustomersPageCancelled: { + return { + ...state, + listLoading: false, + lastQuery: new QueryParamsModel({}), + }; + } + case CustomerActionTypes.CustomersPageLoaded: { + return adapter.addMany(action.payload.customers, { + ...initialCustomersState, + totalCount: action.payload.totalCount, + listLoading: false, + lastQuery: action.payload.page, + showInitWaitingMessage: false, + }); + } + default: + return state; + } } export const getCustomerState = createFeatureSelector('customers'); -export const { - selectAll, - selectEntities, - selectIds, - selectTotal -} = adapter.getSelectors(); +export const { selectAll, selectEntities, selectIds, selectTotal } = adapter.getSelectors(); diff --git a/src/app/core/e-commerce/_reducers/product-remark.reducers.ts b/src/app/core/e-commerce/_reducers/product-remark.reducers.ts index 294999c..1f9f2e5 100644 --- a/src/app/core/e-commerce/_reducers/product-remark.reducers.ts +++ b/src/app/core/e-commerce/_reducers/product-remark.reducers.ts @@ -8,71 +8,75 @@ import { ProductRemarkModel } from '../_models/product-remark.model'; import { QueryParamsModel } from '../../_base/crud'; export interface ProductRemarksState extends EntityState { - productId: number; - loading: boolean; - totalCount: number; - lastCreatedProductRemarkId: number; - lastQuery: QueryParamsModel; - showInitWaitingMessage: boolean; + productId: number; + loading: boolean; + totalCount: number; + lastCreatedProductRemarkId: number; + lastQuery: QueryParamsModel; + showInitWaitingMessage: boolean; } export const adapter: EntityAdapter = createEntityAdapter(); export const initialProductRemarksState: ProductRemarksState = adapter.getInitialState({ - loading: false, - totalCount: 0, - productId: undefined, - lastCreatedProductRemarkId: undefined, - lastQuery: new QueryParamsModel({}), - showInitWaitingMessage: true + loading: false, + totalCount: 0, + productId: undefined, + lastCreatedProductRemarkId: undefined, + lastQuery: new QueryParamsModel({}), + showInitWaitingMessage: true, }); -export function productRemarksReducer(state = initialProductRemarksState, action: ProductRemarkActions): ProductRemarksState { - switch (action.type) { - case ProductRemarkActionTypes.ProductRemarksPageToggleLoading: - return { - ...state, - loading: action.payload.isLoading, - lastCreatedProductRemarkId: undefined - }; - case ProductRemarkActionTypes.ProductRemarkOnServerCreated: - return {...state, loading: true}; - case ProductRemarkActionTypes.ProductRemarkCreated: - return adapter.addOne(action.payload.productRemark, { - ...state, - lastCreatedProductRemarkId: action.payload.productRemark.id - }); - case ProductRemarkActionTypes.ProductRemarkUpdated: - return adapter.updateOne(action.payload.partialProductRemark, state); - case ProductRemarkActionTypes.ProductRemarkStoreUpdated: - return adapter.updateOne(action.payload.productRemark, state); - case ProductRemarkActionTypes.OneProductRemarkDeleted: - return adapter.removeOne(action.payload.id, state); - case ProductRemarkActionTypes.ManyProductRemarksDeleted: - return adapter.removeMany(action.payload.ids, state); - case ProductRemarkActionTypes.ProductRemarksPageCancelled: - return { ...state, totalCount: 0, loading: false, productId: undefined, lastQuery: new QueryParamsModel({}) }; - case ProductRemarkActionTypes.ProductRemarksPageRequested: - return { ...state, totalCount: 0, loading: true, productId: action.payload.productId, lastQuery: action.payload.page }; - case ProductRemarkActionTypes.ProductRemarksPageLoaded: - return adapter.addMany(action.payload.productRemarks, { - ...initialProductRemarksState, - totalCount: action.payload.totalCount, - loading: false, - productId: state.productId, - lastQuery: state.lastQuery, - showInitWaitingMessage: false - }); - default: - return state; - } +export function productRemarksReducer( + state = initialProductRemarksState, + action: ProductRemarkActions, +): ProductRemarksState { + switch (action.type) { + case ProductRemarkActionTypes.ProductRemarksPageToggleLoading: + return { + ...state, + loading: action.payload.isLoading, + lastCreatedProductRemarkId: undefined, + }; + case ProductRemarkActionTypes.ProductRemarkOnServerCreated: + return { ...state, loading: true }; + case ProductRemarkActionTypes.ProductRemarkCreated: + return adapter.addOne(action.payload.productRemark, { + ...state, + lastCreatedProductRemarkId: action.payload.productRemark.id, + }); + case ProductRemarkActionTypes.ProductRemarkUpdated: + return adapter.updateOne(action.payload.partialProductRemark, state); + case ProductRemarkActionTypes.ProductRemarkStoreUpdated: + return adapter.updateOne(action.payload.productRemark, state); + case ProductRemarkActionTypes.OneProductRemarkDeleted: + return adapter.removeOne(action.payload.id, state); + case ProductRemarkActionTypes.ManyProductRemarksDeleted: + return adapter.removeMany(action.payload.ids, state); + case ProductRemarkActionTypes.ProductRemarksPageCancelled: + return { ...state, totalCount: 0, loading: false, productId: undefined, lastQuery: new QueryParamsModel({}) }; + case ProductRemarkActionTypes.ProductRemarksPageRequested: + return { + ...state, + totalCount: 0, + loading: true, + productId: action.payload.productId, + lastQuery: action.payload.page, + }; + case ProductRemarkActionTypes.ProductRemarksPageLoaded: + return adapter.addMany(action.payload.productRemarks, { + ...initialProductRemarksState, + totalCount: action.payload.totalCount, + loading: false, + productId: state.productId, + lastQuery: state.lastQuery, + showInitWaitingMessage: false, + }); + default: + return state; + } } export const getProductRemarlState = createFeatureSelector('productRemarks'); -export const { - selectAll, - selectEntities, - selectIds, - selectTotal -} = adapter.getSelectors(); +export const { selectAll, selectEntities, selectIds, selectTotal } = adapter.getSelectors(); diff --git a/src/app/core/e-commerce/_reducers/product-specification.reducers.ts b/src/app/core/e-commerce/_reducers/product-specification.reducers.ts index a2386c1..917e0e5 100644 --- a/src/app/core/e-commerce/_reducers/product-specification.reducers.ts +++ b/src/app/core/e-commerce/_reducers/product-specification.reducers.ts @@ -2,75 +2,82 @@ import { createFeatureSelector } from '@ngrx/store'; import { EntityState, EntityAdapter, createEntityAdapter, Update } from '@ngrx/entity'; // Actions -import { ProductSpecificationActions, ProductSpecificationActionTypes } from '../_actions/product-specification.actions'; +import { + ProductSpecificationActions, + ProductSpecificationActionTypes, +} from '../_actions/product-specification.actions'; // Models import { ProductSpecificationModel } from '../_models/product-specification.model'; import { QueryParamsModel } from '../../_base/crud'; export interface ProductSpecificationsState extends EntityState { - productId: number; - loading: boolean; - totalCount: number; - lastCreatedProductSpecificationId: number; - lastQuery: QueryParamsModel; - showInitWaitingMessage: boolean; + productId: number; + loading: boolean; + totalCount: number; + lastCreatedProductSpecificationId: number; + lastQuery: QueryParamsModel; + showInitWaitingMessage: boolean; } export const adapter: EntityAdapter = createEntityAdapter(); export const initialProductSpecificationsState: ProductSpecificationsState = adapter.getInitialState({ - loading: false, - totalCount: 0, - productId: undefined, - lastCreatedProductSpecificationId: undefined, - lastQuery: new QueryParamsModel({}), - showInitWaitingMessage: true + loading: false, + totalCount: 0, + productId: undefined, + lastCreatedProductSpecificationId: undefined, + lastQuery: new QueryParamsModel({}), + showInitWaitingMessage: true, }); -export function productSpecificationsReducer(state = initialProductSpecificationsState, action: ProductSpecificationActions): ProductSpecificationsState { - switch (action.type) { - case ProductSpecificationActionTypes.ProductSpecificationsPageToggleLoading: - return { - ...state, - loading: action.payload.isLoading, - lastCreatedProductSpecificationId: undefined - }; - case ProductSpecificationActionTypes.ProductSpecificationOnServerCreated: - return {...state, loading: true}; - case ProductSpecificationActionTypes.ProductSpecificationCreated: - return adapter.addOne(action.payload.productSpecification, { - ...state, - lastCreatedProductSpecificationId: action.payload.productSpecification.id - }); - case ProductSpecificationActionTypes.ProductSpecificationUpdated: - return adapter.updateOne(action.payload.partialProductSpecification, state); - case ProductSpecificationActionTypes.OneProductSpecificationDeleted: - return adapter.removeOne(action.payload.id, state); - case ProductSpecificationActionTypes.ManyProductSpecificationsDeleted: - return adapter.removeMany(action.payload.ids, state); - case ProductSpecificationActionTypes.ProductSpecificationsPageCancelled: - return { ...state, totalCount: 0, loading: false, productId: undefined, lastQuery: new QueryParamsModel({}) }; - case ProductSpecificationActionTypes.ProductSpecificationsPageRequested: - return { ...state, totalCount: 0, loading: true, productId: action.payload.productId, lastQuery: action.payload.page }; - case ProductSpecificationActionTypes.ProductSpecificationsPageLoaded: - return adapter.addMany(action.payload.productSpecifications, { - ...initialProductSpecificationsState, - totalCount: action.payload.totalCount, - loading: false, - productId: state.productId, - lastQuery: state.lastQuery, - showInitWaitingMessage: false - }); - default: - return state; - } +export function productSpecificationsReducer( + state = initialProductSpecificationsState, + action: ProductSpecificationActions, +): ProductSpecificationsState { + switch (action.type) { + case ProductSpecificationActionTypes.ProductSpecificationsPageToggleLoading: + return { + ...state, + loading: action.payload.isLoading, + lastCreatedProductSpecificationId: undefined, + }; + case ProductSpecificationActionTypes.ProductSpecificationOnServerCreated: + return { ...state, loading: true }; + case ProductSpecificationActionTypes.ProductSpecificationCreated: + return adapter.addOne(action.payload.productSpecification, { + ...state, + lastCreatedProductSpecificationId: action.payload.productSpecification.id, + }); + case ProductSpecificationActionTypes.ProductSpecificationUpdated: + return adapter.updateOne(action.payload.partialProductSpecification, state); + case ProductSpecificationActionTypes.OneProductSpecificationDeleted: + return adapter.removeOne(action.payload.id, state); + case ProductSpecificationActionTypes.ManyProductSpecificationsDeleted: + return adapter.removeMany(action.payload.ids, state); + case ProductSpecificationActionTypes.ProductSpecificationsPageCancelled: + return { ...state, totalCount: 0, loading: false, productId: undefined, lastQuery: new QueryParamsModel({}) }; + case ProductSpecificationActionTypes.ProductSpecificationsPageRequested: + return { + ...state, + totalCount: 0, + loading: true, + productId: action.payload.productId, + lastQuery: action.payload.page, + }; + case ProductSpecificationActionTypes.ProductSpecificationsPageLoaded: + return adapter.addMany(action.payload.productSpecifications, { + ...initialProductSpecificationsState, + totalCount: action.payload.totalCount, + loading: false, + productId: state.productId, + lastQuery: state.lastQuery, + showInitWaitingMessage: false, + }); + default: + return state; + } } export const getProductRemarlState = createFeatureSelector('productSpecifications'); -export const { - selectAll, - selectEntities, - selectIds, - selectTotal -} = adapter.getSelectors(); +export const { selectAll, selectEntities, selectIds, selectTotal } = adapter.getSelectors(); diff --git a/src/app/core/e-commerce/_reducers/product.reducers.ts b/src/app/core/e-commerce/_reducers/product.reducers.ts index a66f984..b59adb7 100644 --- a/src/app/core/e-commerce/_reducers/product.reducers.ts +++ b/src/app/core/e-commerce/_reducers/product.reducers.ts @@ -1,4 +1,3 @@ - // NGRX import { createFeatureSelector } from '@ngrx/store'; import { EntityState, EntityAdapter, createEntityAdapter, Update } from '@ngrx/entity'; @@ -10,75 +9,85 @@ import { QueryParamsModel } from '../../_base/crud'; import { ProductModel } from '../_models/product.model'; export interface ProductsState extends EntityState { - listLoading: boolean; - actionsloading: boolean; - totalCount: number; - lastQuery: QueryParamsModel; - lastCreatedProductId: number; - showInitWaitingMessage: boolean; + listLoading: boolean; + actionsloading: boolean; + totalCount: number; + lastQuery: QueryParamsModel; + lastCreatedProductId: number; + showInitWaitingMessage: boolean; } export const adapter: EntityAdapter = createEntityAdapter(); export const initialProductsState: ProductsState = adapter.getInitialState({ - listLoading: false, - actionsloading: false, - totalCount: 0, - lastQuery: new QueryParamsModel({}), - lastCreatedProductId: undefined, - showInitWaitingMessage: true + listLoading: false, + actionsloading: false, + totalCount: 0, + lastQuery: new QueryParamsModel({}), + lastCreatedProductId: undefined, + showInitWaitingMessage: true, }); export function productsReducer(state = initialProductsState, action: ProductActions): ProductsState { - switch (action.type) { - case ProductActionTypes.ProductsPageToggleLoading: return { - ...state, listLoading: action.payload.isLoading, lastCreatedProductId: undefined - }; - case ProductActionTypes.ProductsActionToggleLoading: return { - ...state, actionsloading: action.payload.isLoading - }; - case ProductActionTypes.ProductOnServerCreated: return { - ...state - }; - case ProductActionTypes.ProductCreated: return adapter.addOne(action.payload.product, { - ...state, lastCreatedProductId: action.payload.product.id - }); - case ProductActionTypes.ProductUpdated: return adapter.updateOne(action.payload.partialProduct, state); - case ProductActionTypes.ProductsStatusUpdated: { - const _partialProducts: Update[] = []; - // tslint:disable-next-line:prefer-const - for (let i = 0; i < action.payload.products.length; i++) { - _partialProducts.push({ - id: action.payload.products[i].id, - changes: { - status: action.payload.status - } - }); - } - return adapter.updateMany(_partialProducts, state); - } - case ProductActionTypes.OneProductDeleted: return adapter.removeOne(action.payload.id, state); - case ProductActionTypes.ManyProductsDeleted: return adapter.removeMany(action.payload.ids, state); - case ProductActionTypes.ProductsPageCancelled: return { - ...state, listLoading: false, lastQuery: new QueryParamsModel({}) - }; - case ProductActionTypes.ProductsPageLoaded: - return adapter.addMany(action.payload.products, { - ...initialProductsState, - totalCount: action.payload.totalCount, - listLoading: false, - lastQuery: action.payload.page, - showInitWaitingMessage: false - }); - default: return state; - } + switch (action.type) { + case ProductActionTypes.ProductsPageToggleLoading: + return { + ...state, + listLoading: action.payload.isLoading, + lastCreatedProductId: undefined, + }; + case ProductActionTypes.ProductsActionToggleLoading: + return { + ...state, + actionsloading: action.payload.isLoading, + }; + case ProductActionTypes.ProductOnServerCreated: + return { + ...state, + }; + case ProductActionTypes.ProductCreated: + return adapter.addOne(action.payload.product, { + ...state, + lastCreatedProductId: action.payload.product.id, + }); + case ProductActionTypes.ProductUpdated: + return adapter.updateOne(action.payload.partialProduct, state); + case ProductActionTypes.ProductsStatusUpdated: { + const _partialProducts: Update[] = []; + // tslint:disable-next-line:prefer-const + for (let i = 0; i < action.payload.products.length; i++) { + _partialProducts.push({ + id: action.payload.products[i].id, + changes: { + status: action.payload.status, + }, + }); + } + return adapter.updateMany(_partialProducts, state); + } + case ProductActionTypes.OneProductDeleted: + return adapter.removeOne(action.payload.id, state); + case ProductActionTypes.ManyProductsDeleted: + return adapter.removeMany(action.payload.ids, state); + case ProductActionTypes.ProductsPageCancelled: + return { + ...state, + listLoading: false, + lastQuery: new QueryParamsModel({}), + }; + case ProductActionTypes.ProductsPageLoaded: + return adapter.addMany(action.payload.products, { + ...initialProductsState, + totalCount: action.payload.totalCount, + listLoading: false, + lastQuery: action.payload.page, + showInitWaitingMessage: false, + }); + default: + return state; + } } export const getProductState = createFeatureSelector('products'); -export const { - selectAll, - selectEntities, - selectIds, - selectTotal -} = adapter.getSelectors(); +export const { selectAll, selectEntities, selectIds, selectTotal } = adapter.getSelectors(); diff --git a/src/app/core/e-commerce/_selectors/customer.selectors.ts b/src/app/core/e-commerce/_selectors/customer.selectors.ts index 11e2289..7b5d88b 100644 --- a/src/app/core/e-commerce/_selectors/customer.selectors.ts +++ b/src/app/core/e-commerce/_selectors/customer.selectors.ts @@ -10,40 +10,45 @@ import { CustomerModel } from '../_models/customer.model'; export const selectCustomersState = createFeatureSelector('customers'); -export const selectCustomerById = (customerId: number) => createSelector( - selectCustomersState, - customersState => customersState.entities[customerId] -); +export const selectCustomerById = (customerId: number) => + createSelector( + selectCustomersState, + customersState => customersState.entities[customerId], + ); export const selectCustomersPageLoading = createSelector( - selectCustomersState, - customersState => customersState.listLoading + selectCustomersState, + customersState => customersState.listLoading, ); export const selectCustomersActionLoading = createSelector( - selectCustomersState, - customersState => customersState.actionsloading + selectCustomersState, + customersState => customersState.actionsloading, ); export const selectLastCreatedCustomerId = createSelector( - selectCustomersState, - customersState => customersState.lastCreatedCustomerId + selectCustomersState, + customersState => customersState.lastCreatedCustomerId, ); export const selectCustomersShowInitWaitingMessage = createSelector( - selectCustomersState, - customersState => customersState.showInitWaitingMessage + selectCustomersState, + customersState => customersState.showInitWaitingMessage, ); export const selectCustomersInStore = createSelector( - selectCustomersState, - customersState => { - const items: CustomerModel[] = []; - each(customersState.entities, element => { - items.push(element); - }); - const httpExtension = new HttpExtenstionsModel(); - const result: CustomerModel[] = httpExtension.sortArray(items, customersState.lastQuery.sortField, customersState.lastQuery.sortOrder); - return new QueryResultsModel(result, customersState.totalCount, ''); - } + selectCustomersState, + customersState => { + const items: CustomerModel[] = []; + each(customersState.entities, element => { + items.push(element); + }); + const httpExtension = new HttpExtenstionsModel(); + const result: CustomerModel[] = httpExtension.sortArray( + items, + customersState.lastQuery.sortField, + customersState.lastQuery.sortOrder, + ); + return new QueryResultsModel(result, customersState.totalCount, ''); + }, ); diff --git a/src/app/core/e-commerce/_selectors/product-remark.selectors.ts b/src/app/core/e-commerce/_selectors/product-remark.selectors.ts index 16281d1..7c5d7d4 100644 --- a/src/app/core/e-commerce/_selectors/product-remark.selectors.ts +++ b/src/app/core/e-commerce/_selectors/product-remark.selectors.ts @@ -10,41 +10,46 @@ import { ProductRemarkModel } from '../_models/product-remark.model'; export const selectProductRemarksState = createFeatureSelector('productRemarks'); -export const selectProductRemarkById = (productRemarkId: number) => createSelector( - selectProductRemarksState, - productRemarksState => productRemarksState.entities[productRemarkId] -); +export const selectProductRemarkById = (productRemarkId: number) => + createSelector( + selectProductRemarksState, + productRemarksState => productRemarksState.entities[productRemarkId], + ); export const selectProductRemarksPageLoading = createSelector( - selectProductRemarksState, - productRemarksState => productRemarksState.loading + selectProductRemarksState, + productRemarksState => productRemarksState.loading, ); export const selectCurrentProductIdInStoreForProductRemarks = createSelector( - selectProductRemarksState, - productRemarksState => productRemarksState.productId + selectProductRemarksState, + productRemarksState => productRemarksState.productId, ); export const selectLastCreatedProductRemarkId = createSelector( - selectProductRemarksState, - productRemarksState => productRemarksState.lastCreatedProductRemarkId + selectProductRemarksState, + productRemarksState => productRemarksState.lastCreatedProductRemarkId, ); export const selectPRShowInitWaitingMessage = createSelector( - selectProductRemarksState, - productRemarksState => productRemarksState.showInitWaitingMessage + selectProductRemarksState, + productRemarksState => productRemarksState.showInitWaitingMessage, ); export const selectProductRemarksInStore = createSelector( - selectProductRemarksState, - productRemarksState => { - const items: ProductRemarkModel[] = []; - each(productRemarksState.entities, element => { - items.push(element); - }); - const httpExtension = new HttpExtenstionsModel(); - const result: ProductRemarkModel[] = httpExtension.sortArray(items, productRemarksState.lastQuery.sortField, productRemarksState.lastQuery.sortOrder); - - return new QueryResultsModel(items, productRemarksState.totalCount, ''); - } + selectProductRemarksState, + productRemarksState => { + const items: ProductRemarkModel[] = []; + each(productRemarksState.entities, element => { + items.push(element); + }); + const httpExtension = new HttpExtenstionsModel(); + const result: ProductRemarkModel[] = httpExtension.sortArray( + items, + productRemarksState.lastQuery.sortField, + productRemarksState.lastQuery.sortOrder, + ); + + return new QueryResultsModel(items, productRemarksState.totalCount, ''); + }, ); diff --git a/src/app/core/e-commerce/_selectors/product-specification.selectors.ts b/src/app/core/e-commerce/_selectors/product-specification.selectors.ts index 25f961d..84a18bb 100644 --- a/src/app/core/e-commerce/_selectors/product-specification.selectors.ts +++ b/src/app/core/e-commerce/_selectors/product-specification.selectors.ts @@ -8,43 +8,49 @@ import { QueryResultsModel, HttpExtenstionsModel } from '../../_base/crud'; import { ProductSpecificationsState } from '../_reducers/product-specification.reducers'; import { ProductSpecificationModel } from '../_models/product-specification.model'; -export const selectProductSpecificationsState = createFeatureSelector('productSpecifications'); - -export const selectProductSpecificationById = (productSpecificationId: number) => createSelector( - selectProductSpecificationsState, - productSpecificationsState => productSpecificationsState.entities[productSpecificationId] +export const selectProductSpecificationsState = createFeatureSelector( + 'productSpecifications', ); +export const selectProductSpecificationById = (productSpecificationId: number) => + createSelector( + selectProductSpecificationsState, + productSpecificationsState => productSpecificationsState.entities[productSpecificationId], + ); + export const selectProductSpecificationsPageLoading = createSelector( - selectProductSpecificationsState, - productSpecificationsState => productSpecificationsState.loading + selectProductSpecificationsState, + productSpecificationsState => productSpecificationsState.loading, ); export const selectCurrentProductIdInStoreForProductSpecs = createSelector( - selectProductSpecificationsState, - productSpecificationsState => productSpecificationsState.productId + selectProductSpecificationsState, + productSpecificationsState => productSpecificationsState.productId, ); export const selectLastCreatedProductSpecificationId = createSelector( - selectProductSpecificationsState, - productSpecificationsState => productSpecificationsState.lastCreatedProductSpecificationId + selectProductSpecificationsState, + productSpecificationsState => productSpecificationsState.lastCreatedProductSpecificationId, ); export const selectPSShowInitWaitingMessage = createSelector( - selectProductSpecificationsState, - productSpecificationsState => productSpecificationsState.showInitWaitingMessage + selectProductSpecificationsState, + productSpecificationsState => productSpecificationsState.showInitWaitingMessage, ); export const selectProductSpecificationsInStore = createSelector( - selectProductSpecificationsState, - productSpecificationsState => { - const items: ProductSpecificationModel[] = []; - each(productSpecificationsState.entities, element => { - items.push(element); - }); - const httpExtension = new HttpExtenstionsModel(); - const result: ProductSpecificationModel[] = httpExtension.sortArray(items, productSpecificationsState.lastQuery.sortField, productSpecificationsState.lastQuery.sortOrder); - return new QueryResultsModel(result, productSpecificationsState.totalCount, ''); - } + selectProductSpecificationsState, + productSpecificationsState => { + const items: ProductSpecificationModel[] = []; + each(productSpecificationsState.entities, element => { + items.push(element); + }); + const httpExtension = new HttpExtenstionsModel(); + const result: ProductSpecificationModel[] = httpExtension.sortArray( + items, + productSpecificationsState.lastQuery.sortField, + productSpecificationsState.lastQuery.sortOrder, + ); + return new QueryResultsModel(result, productSpecificationsState.totalCount, ''); + }, ); - diff --git a/src/app/core/e-commerce/_selectors/product.selectors.ts b/src/app/core/e-commerce/_selectors/product.selectors.ts index befa06c..0ffb60a 100644 --- a/src/app/core/e-commerce/_selectors/product.selectors.ts +++ b/src/app/core/e-commerce/_selectors/product.selectors.ts @@ -10,56 +10,61 @@ import { ProductModel } from '../_models/product.model'; export const selectProductsState = createFeatureSelector('products'); -export const selectProductById = (productId: number) => createSelector( - selectProductsState, - productsState => productsState.entities[productId] -); +export const selectProductById = (productId: number) => + createSelector( + selectProductsState, + productsState => productsState.entities[productId], + ); export const selectProductsPageLoading = createSelector( - selectProductsState, - productsState => productsState.listLoading + selectProductsState, + productsState => productsState.listLoading, ); export const selectProductsActionLoading = createSelector( - selectProductsState, - customersState => customersState.actionsloading + selectProductsState, + customersState => customersState.actionsloading, ); export const selectProductsPageLastQuery = createSelector( - selectProductsState, - productsState => productsState.lastQuery + selectProductsState, + productsState => productsState.lastQuery, ); export const selectLastCreatedProductId = createSelector( - selectProductsState, - productsState => productsState.lastCreatedProductId + selectProductsState, + productsState => productsState.lastCreatedProductId, ); export const selectProductsInitWaitingMessage = createSelector( - selectProductsState, - productsState => productsState.showInitWaitingMessage + selectProductsState, + productsState => productsState.showInitWaitingMessage, ); export const selectProductsInStore = createSelector( - selectProductsState, - productsState => { - const items: ProductModel[] = []; - each(productsState.entities, element => { - items.push(element); - }); - const httpExtension = new HttpExtenstionsModel(); - const result: ProductModel[] = httpExtension.sortArray(items, productsState.lastQuery.sortField, productsState.lastQuery.sortOrder); - return new QueryResultsModel(result, productsState.totalCount, ''); - } + selectProductsState, + productsState => { + const items: ProductModel[] = []; + each(productsState.entities, element => { + items.push(element); + }); + const httpExtension = new HttpExtenstionsModel(); + const result: ProductModel[] = httpExtension.sortArray( + items, + productsState.lastQuery.sortField, + productsState.lastQuery.sortOrder, + ); + return new QueryResultsModel(result, productsState.totalCount, ''); + }, ); export const selectHasProductsInStore = createSelector( - selectProductsInStore, - queryResult => { - if (!queryResult.totalCount) { - return false; - } + selectProductsInStore, + queryResult => { + if (!queryResult.totalCount) { + return false; + } - return true; - } + return true; + }, ); diff --git a/src/app/core/e-commerce/_server/_e-commerce.data-context.ts b/src/app/core/e-commerce/_server/_e-commerce.data-context.ts index 458bb52..f37c2ea 100644 --- a/src/app/core/e-commerce/_server/_e-commerce.data-context.ts +++ b/src/app/core/e-commerce/_server/_e-commerce.data-context.ts @@ -18,6 +18,5 @@ export class ECommerceDataContext { // one => many relations public static carSpecs = CarSpecificationsTable.carSpecifications; - public static orders = OrdersTable.orders; } diff --git a/src/app/core/e-commerce/_server/car-specifications.table.ts b/src/app/core/e-commerce/_server/car-specifications.table.ts index 39f0e1b..f0b5222 100644 --- a/src/app/core/e-commerce/_server/car-specifications.table.ts +++ b/src/app/core/e-commerce/_server/car-specifications.table.ts @@ -2,804 +2,904 @@ export class CarSpecificationsTable { public static carSpecifications: any = [ { - 'id': 1, - 'carId': 1, - 'specId': 1, - 'value': 'purus sit amet nulla', - '_userId': 1, - '_createdDate': '07/14/2011', - '_updatedDate': '07/27/2013' - }, { - 'id': 2, - 'carId': 1, - 'specId': 2, - 'value': 'nulla sed vel enim', - '_userId': 2, - '_createdDate': '09/29/2012', - '_updatedDate': '09/25/2013' - }, { - 'id': 3, - 'carId': 1, - 'specId': 3, - 'value': 'id ornare', - '_userId': 1, - '_createdDate': '01/13/2016', - '_updatedDate': '07/08/2010' - }, { - 'id': 4, - 'carId': 1, - 'specId': 4, - 'value': 'orci luctus et', - '_userId': 1, - '_createdDate': '06/20/2013', - '_updatedDate': '05/09/2013' - }, { - 'id': 5, - 'carId': 1, - 'specId': 5, - 'value': 'convallis duis consequat dui nec', - '_userId': 1, - '_createdDate': '02/24/2014', - '_updatedDate': '04/26/2016' - }, { - 'id': 6, - 'carId': 2, - 'specId': 6, - 'value': 'augue luctus', - '_userId': 1, - '_createdDate': '03/16/2017', - '_updatedDate': '02/01/2018' - }, { - 'id': 7, - 'carId': 2, - 'specId': 7, - 'value': 'in tempus sit amet', - '_userId': 1, - '_createdDate': '01/24/2012', - '_updatedDate': '03/14/2015' - }, { - 'id': 8, - 'carId': 2, - 'specId': 8, - 'value': 'venenatis turpis enim blandit mi', - '_userId': 1, - '_createdDate': '10/02/2017', - '_updatedDate': '05/20/2011' - }, { - 'id': 9, - 'carId': 2, - 'specId': 9, - 'value': 'sed magna at nunc commodo', - '_userId': 2, - '_createdDate': '02/29/2012', - '_updatedDate': '06/30/2015' - }, { - 'id': 10, - 'carId': 2, - 'specId': 0, - 'value': 'nascetur', - '_userId': 1, - '_createdDate': '11/26/2013', - '_updatedDate': '12/03/2013' - }, { - 'id': 11, - 'carId': 3, - 'specId': 1, - 'value': 'magna vestibulum aliquet', - '_userId': 2, - '_createdDate': '06/23/2014', - '_updatedDate': '07/11/2014' - }, { - 'id': 12, - 'carId': 3, - 'specId': 1, - 'value': 'bibendum imperdiet nullam orci', - '_userId': 2, - '_createdDate': '08/14/2013', - '_updatedDate': '06/22/2017' - }, { - 'id': 13, - 'carId': 3, - 'specId': 2, - 'value': 'ligula pellentesque ultrices phasellus', - '_userId': 2, - '_createdDate': '05/03/2016', - '_updatedDate': '06/08/2012' - }, { - 'id': 14, - 'carId': 3, - 'specId': 3, - 'value': 'in faucibus orci luctus', - '_userId': 2, - '_createdDate': '04/10/2016', - '_updatedDate': '11/23/2011' - }, { - 'id': 15, - 'carId': 3, - 'specId': 4, - 'value': 'quis turpis sed ante', - '_userId': 2, - '_createdDate': '12/28/2015', - '_updatedDate': '02/11/2011' - }, { - 'id': 16, - 'carId': 4, - 'specId': 5, - 'value': 'proin risus praesent lectus', - '_userId': 2, - '_createdDate': '04/25/2011', - '_updatedDate': '08/26/2014' - }, { - 'id': 17, - 'carId': 4, - 'specId': 6, - 'value': 'morbi sem mauris laoreet', - '_userId': 2, - '_createdDate': '09/23/2012', - '_updatedDate': '05/17/2018' - }, { - 'id': 18, - 'carId': 4, - 'specId': 7, - 'value': 'erat curabitur gravida', - '_userId': 2, - '_createdDate': '02/26/2015', - '_updatedDate': '01/07/2014' - }, { - 'id': 19, - 'carId': 4, - 'specId': 8, - 'value': 'tellus nulla ut', - '_userId': 1, - '_createdDate': '12/08/2016', - '_updatedDate': '10/08/2015' - }, { - 'id': 20, - 'carId': 4, - 'specId': 9, - 'value': 'tempus sit amet sem fusce', - '_userId': 2, - '_createdDate': '05/09/2011', - '_updatedDate': '11/07/2011' - }, { - 'id': 21, - 'carId': 5, - 'specId': 0, - 'value': 'pellentesque ultrices phasellus', - '_userId': 1, - '_createdDate': '03/22/2011', - '_updatedDate': '07/04/2010' - }, { - 'id': 22, - 'carId': 5, - 'specId': 1, - 'value': 'gravida', - '_userId': 1, - '_createdDate': '01/09/2018', - '_updatedDate': '02/15/2011' - }, { - 'id': 23, - 'carId': 5, - 'specId': 1, - 'value': 'nulla', - '_userId': 1, - '_createdDate': '11/13/2012', - '_updatedDate': '06/25/2017' - }, { - 'id': 24, - 'carId': 5, - 'specId': 2, - 'value': 'et ultrices posuere cubilia', - '_userId': 2, - '_createdDate': '02/24/2014', - '_updatedDate': '12/11/2011' - }, { - 'id': 25, - 'carId': 5, - 'specId': 3, - 'value': 'nulla quisque arcu', - '_userId': 2, - '_createdDate': '12/16/2012', - '_updatedDate': '02/08/2012' - }, { - 'id': 26, - 'carId': 6, - 'specId': 4, - 'value': 'orci eget orci vehicula', - '_userId': 2, - '_createdDate': '09/21/2015', - '_updatedDate': '05/05/2014' - }, { - 'id': 27, - 'carId': 6, - 'specId': 5, - 'value': 'lobortis convallis', - '_userId': 2, - '_createdDate': '08/28/2014', - '_updatedDate': '05/18/2011' - }, { - 'id': 28, - 'carId': 6, - 'specId': 6, - 'value': 'ipsum praesent blandit lacinia', - '_userId': 1, - '_createdDate': '06/14/2015', - '_updatedDate': '12/28/2012' - }, { - 'id': 29, - 'carId': 6, - 'specId': 7, - 'value': 'tempus semper est quam pharetra', - '_userId': 1, - '_createdDate': '08/30/2017', - '_updatedDate': '08/17/2016' - }, { - 'id': 30, - 'carId': 6, - 'specId': 8, - 'value': 'in felis eu sapien', - '_userId': 2, - '_createdDate': '11/18/2010', - '_updatedDate': '09/20/2016' - }, { - 'id': 31, - 'carId': 7, - 'specId': 9, - 'value': 'nam', - '_userId': 2, - '_createdDate': '06/28/2015', - '_updatedDate': '04/19/2011' - }, { - 'id': 32, - 'carId': 7, - 'specId': 0, - 'value': 'metus arcu', - '_userId': 1, - '_createdDate': '06/15/2017', - '_updatedDate': '08/05/2012' - }, { - 'id': 33, - 'carId': 7, - 'specId': 1, - 'value': 'libero nullam', - '_userId': 1, - '_createdDate': '12/15/2014', - '_updatedDate': '03/28/2013' - }, { - 'id': 34, - 'carId': 7, - 'specId': 1, - 'value': 'diam nam', - '_userId': 1, - '_createdDate': '08/28/2017', - '_updatedDate': '08/24/2015' - }, { - 'id': 35, - 'carId': 7, - 'specId': 2, - 'value': 'iaculis congue vivamus metus', - '_userId': 1, - '_createdDate': '06/26/2010', - '_updatedDate': '01/27/2012' - }, { - 'id': 36, - 'carId': 8, - 'specId': 3, - 'value': 'cum sociis natoque', - '_userId': 1, - '_createdDate': '07/04/2016', - '_updatedDate': '12/24/2013' - }, { - 'id': 37, - 'carId': 8, - 'specId': 4, - 'value': 'odio odio elementum eu', - '_userId': 1, - '_createdDate': '06/03/2017', - '_updatedDate': '11/21/2017' - }, { - 'id': 38, - 'carId': 8, - 'specId': 5, - 'value': 'at ipsum ac tellus', - '_userId': 1, - '_createdDate': '06/03/2014', - '_updatedDate': '07/18/2014' - }, { - 'id': 39, - 'carId': 8, - 'specId': 6, - 'value': 'quis', - '_userId': 2, - '_createdDate': '12/25/2015', - '_updatedDate': '10/10/2012' - }, { - 'id': 40, - 'carId': 8, - 'specId': 7, - 'value': 'justo aliquam quis turpis', - '_userId': 2, - '_createdDate': '04/22/2017', - '_updatedDate': '01/16/2018' - }, { - 'id': 41, - 'carId': 9, - 'specId': 8, - 'value': 'adipiscing elit proin risus', - '_userId': 2, - '_createdDate': '02/26/2012', - '_updatedDate': '03/07/2017' - }, { - 'id': 42, - 'carId': 9, - 'specId': 9, - 'value': 'nibh ligula nec sem duis', - '_userId': 1, - '_createdDate': '09/16/2013', - '_updatedDate': '11/13/2011' - }, { - 'id': 43, - 'carId': 9, - 'specId': 0, - 'value': 'purus aliquet at feugiat', - '_userId': 2, - '_createdDate': '05/23/2018', - '_updatedDate': '10/05/2014' - }, { - 'id': 44, - 'carId': 9, - 'specId': 1, - 'value': 'eros suspendisse accumsan tortor quis', - '_userId': 2, - '_createdDate': '10/14/2014', - '_updatedDate': '08/02/2014' - }, { - 'id': 45, - 'carId': 9, - 'specId': 1, - 'value': 'eget rutrum', - '_userId': 2, - '_createdDate': '01/23/2017', - '_updatedDate': '09/28/2012' - }, { - 'id': 46, - 'carId': 10, - 'specId': 2, - 'value': 'hendrerit at vulputate', - '_userId': 1, - '_createdDate': '10/20/2011', - '_updatedDate': '10/09/2010' - }, { - 'id': 47, - 'carId': 10, - 'specId': 3, - 'value': 'et', - '_userId': 1, - '_createdDate': '12/25/2015', - '_updatedDate': '08/26/2015' - }, { - 'id': 48, - 'carId': 10, - 'specId': 4, - 'value': 'volutpat in congue etiam', - '_userId': 2, - '_createdDate': '09/17/2010', - '_updatedDate': '04/12/2016' - }, { - 'id': 49, - 'carId': 10, - 'specId': 5, - 'value': 'odio elementum eu', - '_userId': 2, - '_createdDate': '10/19/2015', - '_updatedDate': '11/10/2017' - }, { - 'id': 50, - 'carId': 10, - 'specId': 6, - 'value': 'donec odio justo', - '_userId': 2, - '_createdDate': '06/18/2016', - '_updatedDate': '01/26/2011' - }, { - 'id': 51, - 'carId': 11, - 'specId': 7, - 'value': 'nulla suspendisse potenti cras in', - '_userId': 2, - '_createdDate': '11/18/2010', - '_updatedDate': '05/30/2017' - }, { - 'id': 52, - 'carId': 11, - 'specId': 8, - 'value': 'nisl', - '_userId': 2, - '_createdDate': '10/26/2010', - '_updatedDate': '05/14/2015' - }, { - 'id': 53, - 'carId': 11, - 'specId': 9, - 'value': 'tincidunt ante', - '_userId': 2, - '_createdDate': '06/29/2016', - '_updatedDate': '09/05/2010' - }, { - 'id': 54, - 'carId': 11, - 'specId': 0, - 'value': 'condimentum curabitur', - '_userId': 1, - '_createdDate': '05/25/2011', - '_updatedDate': '09/29/2014' - }, { - 'id': 55, - 'carId': 11, - 'specId': 1, - 'value': 'mi nulla', - '_userId': 2, - '_createdDate': '12/06/2014', - '_updatedDate': '05/20/2018' - }, { - 'id': 56, - 'carId': 12, - 'specId': 1, - 'value': 'tortor risus', - '_userId': 1, - '_createdDate': '09/26/2016', - '_updatedDate': '08/07/2010' - }, { - 'id': 57, - 'carId': 12, - 'specId': 2, - 'value': 'quisque erat eros', - '_userId': 1, - '_createdDate': '03/18/2012', - '_updatedDate': '03/27/2016' - }, { - 'id': 58, - 'carId': 12, - 'specId': 3, - 'value': 'ultrices posuere cubilia curae nulla', - '_userId': 2, - '_createdDate': '08/11/2010', - '_updatedDate': '01/10/2013' - }, { - 'id': 59, - 'carId': 12, - 'specId': 4, - 'value': 'dapibus', - '_userId': 1, - '_createdDate': '02/15/2015', - '_updatedDate': '10/19/2010' - }, { - 'id': 60, - 'carId': 12, - 'specId': 5, - 'value': 'pharetra magna vestibulum', - '_userId': 2, - '_createdDate': '05/30/2015', - '_updatedDate': '11/13/2011' - }, { - 'id': 61, - 'carId': 13, - 'specId': 6, - 'value': 'lectus', - '_userId': 2, - '_createdDate': '07/20/2012', - '_updatedDate': '03/10/2015' - }, { - 'id': 62, - 'carId': 13, - 'specId': 7, - 'value': 'eget vulputate', - '_userId': 1, - '_createdDate': '04/30/2017', - '_updatedDate': '03/11/2016' - }, { - 'id': 63, - 'carId': 13, - 'specId': 8, - 'value': 'feugiat et eros', - '_userId': 2, - '_createdDate': '04/21/2018', - '_updatedDate': '09/11/2011' - }, { - 'id': 64, - 'carId': 13, - 'specId': 9, - 'value': 'dis parturient', - '_userId': 1, - '_createdDate': '02/09/2011', - '_updatedDate': '02/06/2011' - }, { - 'id': 65, - 'carId': 13, - 'specId': 0, - 'value': 'gravida', - '_userId': 1, - '_createdDate': '08/22/2013', - '_updatedDate': '09/02/2012' - }, { - 'id': 66, - 'carId': 14, - 'specId': 1, - 'value': 'sed', - '_userId': 1, - '_createdDate': '09/18/2010', - '_updatedDate': '06/10/2015' - }, { - 'id': 67, - 'carId': 14, - 'specId': 1, - 'value': 'in blandit', - '_userId': 2, - '_createdDate': '11/21/2017', - '_updatedDate': '06/22/2016' - }, { - 'id': 68, - 'carId': 14, - 'specId': 2, - 'value': 'id', - '_userId': 2, - '_createdDate': '04/23/2014', - '_updatedDate': '02/13/2018' - }, { - 'id': 69, - 'carId': 14, - 'specId': 3, - 'value': 'sapien', - '_userId': 1, - '_createdDate': '09/04/2011', - '_updatedDate': '04/21/2012' - }, { - 'id': 70, - 'carId': 14, - 'specId': 4, - 'value': 'nec nisi volutpat eleifend donec', - '_userId': 2, - '_createdDate': '05/07/2017', - '_updatedDate': '12/28/2015' - }, { - 'id': 71, - 'carId': 15, - 'specId': 5, - 'value': 'non', - '_userId': 2, - '_createdDate': '05/29/2017', - '_updatedDate': '08/15/2014' - }, { - 'id': 72, - 'carId': 15, - 'specId': 6, - 'value': 'pharetra magna ac consequat metus', - '_userId': 2, - '_createdDate': '06/13/2016', - '_updatedDate': '12/22/2014' - }, { - 'id': 73, - 'carId': 15, - 'specId': 7, - 'value': 'erat quisque erat eros', - '_userId': 2, - '_createdDate': '02/27/2013', - '_updatedDate': '07/15/2012' - }, { - 'id': 74, - 'carId': 15, - 'specId': 8, - 'value': 'diam nam tristique tortor eu', - '_userId': 1, - '_createdDate': '01/07/2017', - '_updatedDate': '09/24/2014' - }, { - 'id': 75, - 'carId': 15, - 'specId': 9, - 'value': 'semper sapien a libero nam', - '_userId': 1, - '_createdDate': '02/03/2016', - '_updatedDate': '04/26/2015' - }, { - 'id': 76, - 'carId': 16, - 'specId': 0, - 'value': 'consequat varius', - '_userId': 1, - '_createdDate': '04/06/2014', - '_updatedDate': '04/21/2013' - }, { - 'id': 77, - 'carId': 16, - 'specId': 1, - 'value': 'mauris morbi non', - '_userId': 2, - '_createdDate': '11/15/2017', - '_updatedDate': '02/10/2017' - }, { - 'id': 78, - 'carId': 16, - 'specId': 1, - 'value': 'iaculis justo in hac habitasse', - '_userId': 1, - '_createdDate': '01/11/2013', - '_updatedDate': '12/20/2010' - }, { - 'id': 79, - 'carId': 16, - 'specId': 2, - 'value': 'dui', - '_userId': 1, - '_createdDate': '02/29/2016', - '_updatedDate': '04/20/2014' - }, { - 'id': 80, - 'carId': 16, - 'specId': 3, - 'value': 'pulvinar nulla pede ullamcorper augue', - '_userId': 2, - '_createdDate': '10/31/2013', - '_updatedDate': '12/06/2010' - }, { - 'id': 81, - 'carId': 17, - 'specId': 4, - 'value': 'congue elementum', - '_userId': 1, - '_createdDate': '07/17/2013', - '_updatedDate': '01/28/2014' - }, { - 'id': 82, - 'carId': 17, - 'specId': 5, - 'value': 'dapibus nulla suscipit ligula', - '_userId': 2, - '_createdDate': '08/24/2012', - '_updatedDate': '02/04/2018' - }, { - 'id': 83, - 'carId': 17, - 'specId': 6, - 'value': 'donec ut dolor', - '_userId': 1, - '_createdDate': '01/10/2012', - '_updatedDate': '06/07/2010' - }, { - 'id': 84, - 'carId': 17, - 'specId': 7, - 'value': 'non lectus aliquam sit amet', - '_userId': 2, - '_createdDate': '01/26/2014', - '_updatedDate': '02/06/2016' - }, { - 'id': 85, - 'carId': 17, - 'specId': 8, - 'value': 'sapien iaculis congue vivamus', - '_userId': 2, - '_createdDate': '01/01/2018', - '_updatedDate': '10/20/2012' - }, { - 'id': 86, - 'carId': 18, - 'specId': 9, - 'value': 'dui vel sem', - '_userId': 1, - '_createdDate': '04/04/2016', - '_updatedDate': '01/19/2015' - }, { - 'id': 87, - 'carId': 18, - 'specId': 0, - 'value': 'posuere cubilia curae', - '_userId': 2, - '_createdDate': '06/03/2015', - '_updatedDate': '12/22/2014' - }, { - 'id': 88, - 'carId': 18, - 'specId': 1, - 'value': 'nascetur ridiculus', - '_userId': 1, - '_createdDate': '03/05/2018', - '_updatedDate': '08/04/2015' - }, { - 'id': 89, - 'carId': 18, - 'specId': 1, - 'value': 'vestibulum sagittis sapien cum sociis', - '_userId': 1, - '_createdDate': '12/26/2017', - '_updatedDate': '07/08/2017' - }, { - 'id': 90, - 'carId': 18, - 'specId': 2, - 'value': 'neque vestibulum eget vulputate ut', - '_userId': 2, - '_createdDate': '09/22/2014', - '_updatedDate': '06/08/2015' - }, { - 'id': 91, - 'carId': 19, - 'specId': 3, - 'value': 'habitasse platea', - '_userId': 2, - '_createdDate': '10/06/2011', - '_updatedDate': '07/03/2017' - }, { - 'id': 92, - 'carId': 19, - 'specId': 4, - 'value': 'tortor sollicitudin', - '_userId': 2, - '_createdDate': '03/20/2014', - '_updatedDate': '10/20/2015' - }, { - 'id': 93, - 'carId': 19, - 'specId': 5, - 'value': 'posuere cubilia curae nulla dapibus', - '_userId': 1, - '_createdDate': '04/27/2012', - '_updatedDate': '08/03/2012' - }, { - 'id': 94, - 'carId': 19, - 'specId': 6, - 'value': 'nulla', - '_userId': 1, - '_createdDate': '08/16/2016', - '_updatedDate': '11/02/2016' - }, { - 'id': 95, - 'carId': 19, - 'specId': 7, - 'value': 'vel dapibus at diam nam', - '_userId': 2, - '_createdDate': '08/24/2013', - '_updatedDate': '03/02/2011' - }, { - 'id': 96, - 'carId': 20, - 'specId': 8, - 'value': 'ultrices posuere cubilia', - '_userId': 1, - '_createdDate': '07/04/2010', - '_updatedDate': '06/07/2010' - }, { - 'id': 97, - 'carId': 20, - 'specId': 9, - 'value': 'ut blandit non interdum', - '_userId': 2, - '_createdDate': '04/25/2018', - '_updatedDate': '06/24/2013' - }, { - 'id': 98, - 'carId': 20, - 'specId': 0, - 'value': 'amet erat', - '_userId': 2, - '_createdDate': '07/13/2017', - '_updatedDate': '12/28/2014' - }, { - 'id': 99, - 'carId': 20, - 'specId': 1, - 'value': 'ligula', - '_userId': 1, - '_createdDate': '03/18/2015', - '_updatedDate': '09/14/2012' - }, { - 'id': 100, - 'carId': 20, - 'specId': 1, - 'value': 'id', - '_userId': 1, - '_createdDate': '04/02/2011', - '_updatedDate': '02/16/2017' - }]; + id: 1, + carId: 1, + specId: 1, + value: 'purus sit amet nulla', + _userId: 1, + _createdDate: '07/14/2011', + _updatedDate: '07/27/2013', + }, + { + id: 2, + carId: 1, + specId: 2, + value: 'nulla sed vel enim', + _userId: 2, + _createdDate: '09/29/2012', + _updatedDate: '09/25/2013', + }, + { + id: 3, + carId: 1, + specId: 3, + value: 'id ornare', + _userId: 1, + _createdDate: '01/13/2016', + _updatedDate: '07/08/2010', + }, + { + id: 4, + carId: 1, + specId: 4, + value: 'orci luctus et', + _userId: 1, + _createdDate: '06/20/2013', + _updatedDate: '05/09/2013', + }, + { + id: 5, + carId: 1, + specId: 5, + value: 'convallis duis consequat dui nec', + _userId: 1, + _createdDate: '02/24/2014', + _updatedDate: '04/26/2016', + }, + { + id: 6, + carId: 2, + specId: 6, + value: 'augue luctus', + _userId: 1, + _createdDate: '03/16/2017', + _updatedDate: '02/01/2018', + }, + { + id: 7, + carId: 2, + specId: 7, + value: 'in tempus sit amet', + _userId: 1, + _createdDate: '01/24/2012', + _updatedDate: '03/14/2015', + }, + { + id: 8, + carId: 2, + specId: 8, + value: 'venenatis turpis enim blandit mi', + _userId: 1, + _createdDate: '10/02/2017', + _updatedDate: '05/20/2011', + }, + { + id: 9, + carId: 2, + specId: 9, + value: 'sed magna at nunc commodo', + _userId: 2, + _createdDate: '02/29/2012', + _updatedDate: '06/30/2015', + }, + { + id: 10, + carId: 2, + specId: 0, + value: 'nascetur', + _userId: 1, + _createdDate: '11/26/2013', + _updatedDate: '12/03/2013', + }, + { + id: 11, + carId: 3, + specId: 1, + value: 'magna vestibulum aliquet', + _userId: 2, + _createdDate: '06/23/2014', + _updatedDate: '07/11/2014', + }, + { + id: 12, + carId: 3, + specId: 1, + value: 'bibendum imperdiet nullam orci', + _userId: 2, + _createdDate: '08/14/2013', + _updatedDate: '06/22/2017', + }, + { + id: 13, + carId: 3, + specId: 2, + value: 'ligula pellentesque ultrices phasellus', + _userId: 2, + _createdDate: '05/03/2016', + _updatedDate: '06/08/2012', + }, + { + id: 14, + carId: 3, + specId: 3, + value: 'in faucibus orci luctus', + _userId: 2, + _createdDate: '04/10/2016', + _updatedDate: '11/23/2011', + }, + { + id: 15, + carId: 3, + specId: 4, + value: 'quis turpis sed ante', + _userId: 2, + _createdDate: '12/28/2015', + _updatedDate: '02/11/2011', + }, + { + id: 16, + carId: 4, + specId: 5, + value: 'proin risus praesent lectus', + _userId: 2, + _createdDate: '04/25/2011', + _updatedDate: '08/26/2014', + }, + { + id: 17, + carId: 4, + specId: 6, + value: 'morbi sem mauris laoreet', + _userId: 2, + _createdDate: '09/23/2012', + _updatedDate: '05/17/2018', + }, + { + id: 18, + carId: 4, + specId: 7, + value: 'erat curabitur gravida', + _userId: 2, + _createdDate: '02/26/2015', + _updatedDate: '01/07/2014', + }, + { + id: 19, + carId: 4, + specId: 8, + value: 'tellus nulla ut', + _userId: 1, + _createdDate: '12/08/2016', + _updatedDate: '10/08/2015', + }, + { + id: 20, + carId: 4, + specId: 9, + value: 'tempus sit amet sem fusce', + _userId: 2, + _createdDate: '05/09/2011', + _updatedDate: '11/07/2011', + }, + { + id: 21, + carId: 5, + specId: 0, + value: 'pellentesque ultrices phasellus', + _userId: 1, + _createdDate: '03/22/2011', + _updatedDate: '07/04/2010', + }, + { + id: 22, + carId: 5, + specId: 1, + value: 'gravida', + _userId: 1, + _createdDate: '01/09/2018', + _updatedDate: '02/15/2011', + }, + { + id: 23, + carId: 5, + specId: 1, + value: 'nulla', + _userId: 1, + _createdDate: '11/13/2012', + _updatedDate: '06/25/2017', + }, + { + id: 24, + carId: 5, + specId: 2, + value: 'et ultrices posuere cubilia', + _userId: 2, + _createdDate: '02/24/2014', + _updatedDate: '12/11/2011', + }, + { + id: 25, + carId: 5, + specId: 3, + value: 'nulla quisque arcu', + _userId: 2, + _createdDate: '12/16/2012', + _updatedDate: '02/08/2012', + }, + { + id: 26, + carId: 6, + specId: 4, + value: 'orci eget orci vehicula', + _userId: 2, + _createdDate: '09/21/2015', + _updatedDate: '05/05/2014', + }, + { + id: 27, + carId: 6, + specId: 5, + value: 'lobortis convallis', + _userId: 2, + _createdDate: '08/28/2014', + _updatedDate: '05/18/2011', + }, + { + id: 28, + carId: 6, + specId: 6, + value: 'ipsum praesent blandit lacinia', + _userId: 1, + _createdDate: '06/14/2015', + _updatedDate: '12/28/2012', + }, + { + id: 29, + carId: 6, + specId: 7, + value: 'tempus semper est quam pharetra', + _userId: 1, + _createdDate: '08/30/2017', + _updatedDate: '08/17/2016', + }, + { + id: 30, + carId: 6, + specId: 8, + value: 'in felis eu sapien', + _userId: 2, + _createdDate: '11/18/2010', + _updatedDate: '09/20/2016', + }, + { + id: 31, + carId: 7, + specId: 9, + value: 'nam', + _userId: 2, + _createdDate: '06/28/2015', + _updatedDate: '04/19/2011', + }, + { + id: 32, + carId: 7, + specId: 0, + value: 'metus arcu', + _userId: 1, + _createdDate: '06/15/2017', + _updatedDate: '08/05/2012', + }, + { + id: 33, + carId: 7, + specId: 1, + value: 'libero nullam', + _userId: 1, + _createdDate: '12/15/2014', + _updatedDate: '03/28/2013', + }, + { + id: 34, + carId: 7, + specId: 1, + value: 'diam nam', + _userId: 1, + _createdDate: '08/28/2017', + _updatedDate: '08/24/2015', + }, + { + id: 35, + carId: 7, + specId: 2, + value: 'iaculis congue vivamus metus', + _userId: 1, + _createdDate: '06/26/2010', + _updatedDate: '01/27/2012', + }, + { + id: 36, + carId: 8, + specId: 3, + value: 'cum sociis natoque', + _userId: 1, + _createdDate: '07/04/2016', + _updatedDate: '12/24/2013', + }, + { + id: 37, + carId: 8, + specId: 4, + value: 'odio odio elementum eu', + _userId: 1, + _createdDate: '06/03/2017', + _updatedDate: '11/21/2017', + }, + { + id: 38, + carId: 8, + specId: 5, + value: 'at ipsum ac tellus', + _userId: 1, + _createdDate: '06/03/2014', + _updatedDate: '07/18/2014', + }, + { + id: 39, + carId: 8, + specId: 6, + value: 'quis', + _userId: 2, + _createdDate: '12/25/2015', + _updatedDate: '10/10/2012', + }, + { + id: 40, + carId: 8, + specId: 7, + value: 'justo aliquam quis turpis', + _userId: 2, + _createdDate: '04/22/2017', + _updatedDate: '01/16/2018', + }, + { + id: 41, + carId: 9, + specId: 8, + value: 'adipiscing elit proin risus', + _userId: 2, + _createdDate: '02/26/2012', + _updatedDate: '03/07/2017', + }, + { + id: 42, + carId: 9, + specId: 9, + value: 'nibh ligula nec sem duis', + _userId: 1, + _createdDate: '09/16/2013', + _updatedDate: '11/13/2011', + }, + { + id: 43, + carId: 9, + specId: 0, + value: 'purus aliquet at feugiat', + _userId: 2, + _createdDate: '05/23/2018', + _updatedDate: '10/05/2014', + }, + { + id: 44, + carId: 9, + specId: 1, + value: 'eros suspendisse accumsan tortor quis', + _userId: 2, + _createdDate: '10/14/2014', + _updatedDate: '08/02/2014', + }, + { + id: 45, + carId: 9, + specId: 1, + value: 'eget rutrum', + _userId: 2, + _createdDate: '01/23/2017', + _updatedDate: '09/28/2012', + }, + { + id: 46, + carId: 10, + specId: 2, + value: 'hendrerit at vulputate', + _userId: 1, + _createdDate: '10/20/2011', + _updatedDate: '10/09/2010', + }, + { + id: 47, + carId: 10, + specId: 3, + value: 'et', + _userId: 1, + _createdDate: '12/25/2015', + _updatedDate: '08/26/2015', + }, + { + id: 48, + carId: 10, + specId: 4, + value: 'volutpat in congue etiam', + _userId: 2, + _createdDate: '09/17/2010', + _updatedDate: '04/12/2016', + }, + { + id: 49, + carId: 10, + specId: 5, + value: 'odio elementum eu', + _userId: 2, + _createdDate: '10/19/2015', + _updatedDate: '11/10/2017', + }, + { + id: 50, + carId: 10, + specId: 6, + value: 'donec odio justo', + _userId: 2, + _createdDate: '06/18/2016', + _updatedDate: '01/26/2011', + }, + { + id: 51, + carId: 11, + specId: 7, + value: 'nulla suspendisse potenti cras in', + _userId: 2, + _createdDate: '11/18/2010', + _updatedDate: '05/30/2017', + }, + { + id: 52, + carId: 11, + specId: 8, + value: 'nisl', + _userId: 2, + _createdDate: '10/26/2010', + _updatedDate: '05/14/2015', + }, + { + id: 53, + carId: 11, + specId: 9, + value: 'tincidunt ante', + _userId: 2, + _createdDate: '06/29/2016', + _updatedDate: '09/05/2010', + }, + { + id: 54, + carId: 11, + specId: 0, + value: 'condimentum curabitur', + _userId: 1, + _createdDate: '05/25/2011', + _updatedDate: '09/29/2014', + }, + { + id: 55, + carId: 11, + specId: 1, + value: 'mi nulla', + _userId: 2, + _createdDate: '12/06/2014', + _updatedDate: '05/20/2018', + }, + { + id: 56, + carId: 12, + specId: 1, + value: 'tortor risus', + _userId: 1, + _createdDate: '09/26/2016', + _updatedDate: '08/07/2010', + }, + { + id: 57, + carId: 12, + specId: 2, + value: 'quisque erat eros', + _userId: 1, + _createdDate: '03/18/2012', + _updatedDate: '03/27/2016', + }, + { + id: 58, + carId: 12, + specId: 3, + value: 'ultrices posuere cubilia curae nulla', + _userId: 2, + _createdDate: '08/11/2010', + _updatedDate: '01/10/2013', + }, + { + id: 59, + carId: 12, + specId: 4, + value: 'dapibus', + _userId: 1, + _createdDate: '02/15/2015', + _updatedDate: '10/19/2010', + }, + { + id: 60, + carId: 12, + specId: 5, + value: 'pharetra magna vestibulum', + _userId: 2, + _createdDate: '05/30/2015', + _updatedDate: '11/13/2011', + }, + { + id: 61, + carId: 13, + specId: 6, + value: 'lectus', + _userId: 2, + _createdDate: '07/20/2012', + _updatedDate: '03/10/2015', + }, + { + id: 62, + carId: 13, + specId: 7, + value: 'eget vulputate', + _userId: 1, + _createdDate: '04/30/2017', + _updatedDate: '03/11/2016', + }, + { + id: 63, + carId: 13, + specId: 8, + value: 'feugiat et eros', + _userId: 2, + _createdDate: '04/21/2018', + _updatedDate: '09/11/2011', + }, + { + id: 64, + carId: 13, + specId: 9, + value: 'dis parturient', + _userId: 1, + _createdDate: '02/09/2011', + _updatedDate: '02/06/2011', + }, + { + id: 65, + carId: 13, + specId: 0, + value: 'gravida', + _userId: 1, + _createdDate: '08/22/2013', + _updatedDate: '09/02/2012', + }, + { + id: 66, + carId: 14, + specId: 1, + value: 'sed', + _userId: 1, + _createdDate: '09/18/2010', + _updatedDate: '06/10/2015', + }, + { + id: 67, + carId: 14, + specId: 1, + value: 'in blandit', + _userId: 2, + _createdDate: '11/21/2017', + _updatedDate: '06/22/2016', + }, + { + id: 68, + carId: 14, + specId: 2, + value: 'id', + _userId: 2, + _createdDate: '04/23/2014', + _updatedDate: '02/13/2018', + }, + { + id: 69, + carId: 14, + specId: 3, + value: 'sapien', + _userId: 1, + _createdDate: '09/04/2011', + _updatedDate: '04/21/2012', + }, + { + id: 70, + carId: 14, + specId: 4, + value: 'nec nisi volutpat eleifend donec', + _userId: 2, + _createdDate: '05/07/2017', + _updatedDate: '12/28/2015', + }, + { + id: 71, + carId: 15, + specId: 5, + value: 'non', + _userId: 2, + _createdDate: '05/29/2017', + _updatedDate: '08/15/2014', + }, + { + id: 72, + carId: 15, + specId: 6, + value: 'pharetra magna ac consequat metus', + _userId: 2, + _createdDate: '06/13/2016', + _updatedDate: '12/22/2014', + }, + { + id: 73, + carId: 15, + specId: 7, + value: 'erat quisque erat eros', + _userId: 2, + _createdDate: '02/27/2013', + _updatedDate: '07/15/2012', + }, + { + id: 74, + carId: 15, + specId: 8, + value: 'diam nam tristique tortor eu', + _userId: 1, + _createdDate: '01/07/2017', + _updatedDate: '09/24/2014', + }, + { + id: 75, + carId: 15, + specId: 9, + value: 'semper sapien a libero nam', + _userId: 1, + _createdDate: '02/03/2016', + _updatedDate: '04/26/2015', + }, + { + id: 76, + carId: 16, + specId: 0, + value: 'consequat varius', + _userId: 1, + _createdDate: '04/06/2014', + _updatedDate: '04/21/2013', + }, + { + id: 77, + carId: 16, + specId: 1, + value: 'mauris morbi non', + _userId: 2, + _createdDate: '11/15/2017', + _updatedDate: '02/10/2017', + }, + { + id: 78, + carId: 16, + specId: 1, + value: 'iaculis justo in hac habitasse', + _userId: 1, + _createdDate: '01/11/2013', + _updatedDate: '12/20/2010', + }, + { + id: 79, + carId: 16, + specId: 2, + value: 'dui', + _userId: 1, + _createdDate: '02/29/2016', + _updatedDate: '04/20/2014', + }, + { + id: 80, + carId: 16, + specId: 3, + value: 'pulvinar nulla pede ullamcorper augue', + _userId: 2, + _createdDate: '10/31/2013', + _updatedDate: '12/06/2010', + }, + { + id: 81, + carId: 17, + specId: 4, + value: 'congue elementum', + _userId: 1, + _createdDate: '07/17/2013', + _updatedDate: '01/28/2014', + }, + { + id: 82, + carId: 17, + specId: 5, + value: 'dapibus nulla suscipit ligula', + _userId: 2, + _createdDate: '08/24/2012', + _updatedDate: '02/04/2018', + }, + { + id: 83, + carId: 17, + specId: 6, + value: 'donec ut dolor', + _userId: 1, + _createdDate: '01/10/2012', + _updatedDate: '06/07/2010', + }, + { + id: 84, + carId: 17, + specId: 7, + value: 'non lectus aliquam sit amet', + _userId: 2, + _createdDate: '01/26/2014', + _updatedDate: '02/06/2016', + }, + { + id: 85, + carId: 17, + specId: 8, + value: 'sapien iaculis congue vivamus', + _userId: 2, + _createdDate: '01/01/2018', + _updatedDate: '10/20/2012', + }, + { + id: 86, + carId: 18, + specId: 9, + value: 'dui vel sem', + _userId: 1, + _createdDate: '04/04/2016', + _updatedDate: '01/19/2015', + }, + { + id: 87, + carId: 18, + specId: 0, + value: 'posuere cubilia curae', + _userId: 2, + _createdDate: '06/03/2015', + _updatedDate: '12/22/2014', + }, + { + id: 88, + carId: 18, + specId: 1, + value: 'nascetur ridiculus', + _userId: 1, + _createdDate: '03/05/2018', + _updatedDate: '08/04/2015', + }, + { + id: 89, + carId: 18, + specId: 1, + value: 'vestibulum sagittis sapien cum sociis', + _userId: 1, + _createdDate: '12/26/2017', + _updatedDate: '07/08/2017', + }, + { + id: 90, + carId: 18, + specId: 2, + value: 'neque vestibulum eget vulputate ut', + _userId: 2, + _createdDate: '09/22/2014', + _updatedDate: '06/08/2015', + }, + { + id: 91, + carId: 19, + specId: 3, + value: 'habitasse platea', + _userId: 2, + _createdDate: '10/06/2011', + _updatedDate: '07/03/2017', + }, + { + id: 92, + carId: 19, + specId: 4, + value: 'tortor sollicitudin', + _userId: 2, + _createdDate: '03/20/2014', + _updatedDate: '10/20/2015', + }, + { + id: 93, + carId: 19, + specId: 5, + value: 'posuere cubilia curae nulla dapibus', + _userId: 1, + _createdDate: '04/27/2012', + _updatedDate: '08/03/2012', + }, + { + id: 94, + carId: 19, + specId: 6, + value: 'nulla', + _userId: 1, + _createdDate: '08/16/2016', + _updatedDate: '11/02/2016', + }, + { + id: 95, + carId: 19, + specId: 7, + value: 'vel dapibus at diam nam', + _userId: 2, + _createdDate: '08/24/2013', + _updatedDate: '03/02/2011', + }, + { + id: 96, + carId: 20, + specId: 8, + value: 'ultrices posuere cubilia', + _userId: 1, + _createdDate: '07/04/2010', + _updatedDate: '06/07/2010', + }, + { + id: 97, + carId: 20, + specId: 9, + value: 'ut blandit non interdum', + _userId: 2, + _createdDate: '04/25/2018', + _updatedDate: '06/24/2013', + }, + { + id: 98, + carId: 20, + specId: 0, + value: 'amet erat', + _userId: 2, + _createdDate: '07/13/2017', + _updatedDate: '12/28/2014', + }, + { + id: 99, + carId: 20, + specId: 1, + value: 'ligula', + _userId: 1, + _createdDate: '03/18/2015', + _updatedDate: '09/14/2012', + }, + { + id: 100, + carId: 20, + specId: 1, + value: 'id', + _userId: 1, + _createdDate: '04/02/2011', + _updatedDate: '02/16/2017', + }, + ]; } diff --git a/src/app/core/e-commerce/_server/cars.table.ts b/src/app/core/e-commerce/_server/cars.table.ts index 8dffca8..4abffa1 100644 --- a/src/app/core/e-commerce/_server/cars.table.ts +++ b/src/app/core/e-commerce/_server/cars.table.ts @@ -1,583 +1,616 @@ export class CarsTable { public static cars: any = [ { - 'id': 1, - 'model': 'Elise', - 'manufacture': 'Lotus', - 'modelYear': 2004, - 'mileage': 116879, - // tslint:disable-next-line:max-line-length - 'description': `The Lotus Elise first appeared in 1996 and revolutionised small sports car design with its lightweight extruded aluminium chassis and composite body. There have been many variations, but the basic principle remain the same.`, - 'color': 'Red', - 'price': 18347, - 'condition': 1, - 'createdDate': '09/30/2017', - 'status': 0, - 'VINCode': '1FTWX3D52AE575540', - '_userId': 1, - '_createdDate': '03/31/2015', - '_updatedDate': '05/08/2015' - }, { - 'id': 2, - 'model': 'Sunbird', - 'manufacture': 'Pontiac', - 'modelYear': 1984, - 'mileage': 99515, - // tslint:disable-next-line:max-line-length - 'description': `The Pontiac Sunbird is an automobile that was produced by Pontiac, initially as a subcompact for the 1976 to 1980 model years,and later as a compact for the 1982 to 1994 model years. The Sunbird badge ran for 18 years (with a hiatus during the 1981 and 1982 model years, as the 1982 model was called J2000) and was then replaced in 1995 by the Pontiac Sunfire. Through the years the Sunbird was available in notchback coupé, sedan, hatchback, station wagon, and convertible body styles.`, - 'color': 'Khaki', - 'price': 165956, - 'condition': 0, - 'createdDate': '03/22/2018', - 'status': 1, - 'VINCode': 'JM1NC2EF8A0293556', - '_userId': 1, - '_createdDate': '11/11/2016', - '_updatedDate': '09/01/2016' - }, { - 'id': 3, - 'model': 'Amigo', - 'manufacture': 'Isuzu', - 'modelYear': 1993, - 'mileage': 138027, - // tslint:disable-next-line:max-line-length - 'description': `The Isuzu MU is a mid-size SUV that was produced by the Japan-based manufacturer Isuzu. The three-door MU was introduced in 1989, followed in 1990 by the five-door version called Isuzu MU Wizard, both of which stopped production in 1998 to be replaced by a second generation. This time, the five-door version dropped the "MU" prefix, to become the Isuzu Wizard. The acronym "MU" is short for "Mysterious Utility". Isuzu manufactured several variations to the MU and its derivates for sale in other countries.`, - 'color': 'Aquamarine', - 'price': 45684, - 'condition': 0, - 'createdDate': '03/06/2018', - 'status': 0, - 'VINCode': '1G6DG8E56C0973889', - '_userId': 1, - '_createdDate': '08/14/2012', - '_updatedDate': '03/21/2013' - }, { - 'id': 4, - 'model': 'LS', - 'manufacture': 'Lexus', - 'modelYear': 2004, - 'mileage': 183068, - // tslint:disable-next-line:max-line-length - 'description': `The Lexus LS (Japanese: レクサス・LS, Rekusasu LS) is a full-size luxury car (F-segment in Europe) serving as the flagship model of Lexus, the luxury division of Toyota. For the first four generations, all LS models featured V8 engines and were predominantly rear-wheel-drive, with Lexus also offering all-wheel-drive, hybrid, and long-wheelbase variants. The fifth generation changed to using a V6 engine with no V8 option, and the long wheelbase variant was removed entirely.`, - 'color': 'Mauv', - 'price': 95410, - 'condition': 1, - 'createdDate': '02/03/2018', - 'status': 1, - 'VINCode': '2T1BU4EE6DC859114', - '_userId': 2, - '_createdDate': '11/25/2012', - '_updatedDate': '08/15/2013' - }, { - 'id': 5, - 'model': 'Paseo', - 'manufacture': 'Toyota', - 'modelYear': 1997, - 'mileage': 74884, - // tslint:disable-next-line:max-line-length - 'description': `The Toyota Paseo (known as the Cynos in Japan and other regions) is a sports styled compact car sold from 1991–1999 and was loosely based on the Tercel. It was available as a coupe and in later models as a convertible. Toyota stopped selling the car in the United States in 1997, however the car continued to be sold in Canada, Europe and Japan until 1999, but had no direct replacement. The Paseo, like the Tercel, shares a platform with the Starlet. Several parts are interchangeable between the three`, - 'color': 'Pink', - 'price': 24796, - 'condition': 1, - 'createdDate': '08/13/2017', - 'status': 0, - 'VINCode': '1D7RB1GP0AS597432', - '_userId': 1, - '_createdDate': '11/21/2016', - '_updatedDate': '10/09/2012' - }, { - 'id': 6, - 'model': 'M', - 'manufacture': 'Infiniti', - 'modelYear': 2009, - 'mileage': 194846, - // tslint:disable-next-line:max-line-length - 'description': `The Infiniti M is a line of mid-size luxury (executive) cars from the Infiniti luxury division of Nissan.\r\nThe first iteration was the M30 Coupe/Convertible, which were rebadged JDM Nissan Leopard.\r\nAfter a long hiatus, the M nameplate was used for Infiniti's mid-luxury sedans (executive cars). First was the short-lived M45 sedan, a rebadged version of the Japanese-spec Nissan Gloria. The next generations, the M35/45 and M37/56/35h/30d, became the flagship of the Infiniti brand and are based on the JDM Nissan Fuga.`, - 'color': 'Puce', - 'price': 30521, - 'condition': 1, - 'createdDate': '01/27/2018', - 'status': 0, - 'VINCode': 'YV1940AS1D1542424', - '_userId': 2, - '_createdDate': '03/13/2016', - '_updatedDate': '12/14/2013' - }, { - 'id': 7, - 'model': 'Phantom', - 'manufacture': 'Rolls-Royce', - 'modelYear': 2008, - 'mileage': 164124, - // tslint:disable-next-line:max-line-length - 'description': `The Rolls-Royce Phantom VIII is a luxury saloon car manufactured by Rolls-Royce Motor Cars. It is the eighth and current generation of Rolls-Royce Phantom, and the second launched by Rolls-Royce under BMW ownership. It is offered in two wheelbase lengths`, - 'color': 'Purple', - 'price': 196247, - 'condition': 1, - 'createdDate': '09/28/2017', - 'status': 1, - 'VINCode': '3VWML7AJ1DM234625', - '_userId': 2, - '_createdDate': '03/31/2012', - '_updatedDate': '06/27/2014' - }, { - 'id': 8, - 'model': 'QX', - 'manufacture': 'Infiniti', - 'modelYear': 2002, - 'mileage': 57410, - // tslint:disable-next-line:max-line-length - 'description': `The Infiniti QX80 (called the Infiniti QX56 until 2013) is a full-size luxury SUV built by Nissan Motor Company's Infiniti division. The naming convention originally adhered to the current trend of using a numeric designation derived from the engine's displacement, thus QX56 since the car has a 5.6-liter engine. From the 2014 model year, the car was renamed the QX80, as part of Infiniti's model name rebranding. The new name carries no meaning beyond suggesting that the vehicle is larger than smaller models such as the QX60`, - 'color': 'Green', - 'price': 185775, - 'condition': 1, - 'createdDate': '11/15/2017', - 'status': 0, - 'VINCode': 'WDDHF2EB9CA161524', - '_userId': 1, - '_createdDate': '03/17/2013', - '_updatedDate': '09/05/2014' - }, { - 'id': 9, - 'model': 'Daytona', - 'manufacture': 'Dodge', - 'modelYear': 1993, - 'mileage': 4444, - // tslint:disable-next-line:max-line-length - 'description': `The Dodge Daytona was an automobile which was produced by the Chrysler Corporation under their Dodge division from 1984 to 1993. It was a front-wheel drive hatchback based on the Chrysler G platform, which was derived from the Chrysler K platform. The Chrysler Laser was an upscale rebadged version of the Daytona. The Daytona was restyled for 1987, and again for 1992. It replaced the Mitsubishi Galant-based Challenger, and slotted between the Charger and the Conquest. The Daytona was replaced by the 1995 Dodge Avenger, which was built by Mitsubishi Motors. The Daytona derives its name mainly from the Dodge Charger Daytona, which itself was named after the Daytona 500 race in Daytona Beach, Florida.`, - 'color': 'Maroon', - 'price': 171898, - 'condition': 0, - 'createdDate': '12/24/2017', - 'status': 1, - 'VINCode': 'WBAET37422N752051', - '_userId': 2, - '_createdDate': '11/17/2012', - '_updatedDate': '03/17/2018' - }, { - 'id': 10, - 'model': '1500 Silverado', - 'manufacture': 'Chevrolet', - 'modelYear': 1999, - 'mileage': 195310, - // tslint:disable-next-line:max-line-length - 'description': `The Chevrolet Silverado, and its mechanically identical cousin, the GMC Sierra, are a series of full-size and heavy-duty pickup trucks manufactured by General Motors and introduced in 1998 as the successor to the long-running Chevrolet C/K line. The Silverado name was taken from a trim level previously used on its predecessor, the Chevrolet C/K pickup truck from 1975 through 1998. General Motors continues to offer a GMC-badged variant of the Chevrolet full-size pickup under the GMC Sierra name, first used in 1987 for its variant of the GMT400 platform trucks.`, - 'color': 'Blue', - 'price': 25764, - 'condition': 0, - 'createdDate': '08/30/2017', - 'status': 1, - 'VINCode': '1N6AF0LX6EN590806', - '_userId': 2, - '_createdDate': '10/06/2013', - '_updatedDate': '03/27/2017' - }, { - 'id': 11, - 'model': 'CTS', - 'manufacture': 'Cadillac', - 'modelYear': 2012, - 'mileage': 170862, - // tslint:disable-next-line:max-line-length - 'description': `The Cadillac CTS is a mid-size luxury car / executive car designed, engineered, manufactured and marketed by General Motors, and now in its third generation. \r\nInitially available only as a 4-door sedan on the GM Sigma platform, GM had offered the second generation CTS in three body styles: 4-door sedan, 2-door coupe, and 5-door sport wagon also using the Sigma platform — and the third generation in coupe and sedan configurations, using a stretched version of the GM Alpha platform.\r\nWayne Cherry and Kip Wasenko designed the exterior of the first generation CTS, marking the production debut of a design language (marketed as "Art and Science") first seen on the Evoq concept car. Bob Boniface and Robin Krieg designed the exterior of the third generation CTS`, - 'color': 'Crimson', - 'price': 80588, - 'condition': 0, - 'createdDate': '02/15/2018', - 'status': 0, - 'VINCode': '1G4HR54KX4U506530', - '_userId': 2, - '_createdDate': '09/04/2016', - '_updatedDate': '09/17/2012' - }, { - 'id': 12, - 'model': 'Astro', - 'manufacture': 'Chevrolet', - 'modelYear': 1995, - 'mileage': 142137, - // tslint:disable-next-line:max-line-length - 'description': `The Chevrolet Astro was a rear-wheel drive van/minivan manufactured and marketed by the American automaker Chevrolet from 1985 to 2005 and over two build generations. Along with its rebadged variant, the GMC Safari, the Astro was marketed in passenger as well as cargo and livery configurations—featuring a V6 engine, unibody construction with a separate front engine/suspension sub-frame, leaf-spring rear suspension, rear bi-parting doors, and a seating capacity of up to eight passengers`, - 'color': 'Teal', - 'price': 72430, - 'condition': 1, - 'createdDate': '07/31/2017', - 'status': 0, - 'VINCode': 'KMHGH4JH2DU676107', - '_userId': 1, - '_createdDate': '02/12/2013', - '_updatedDate': '01/26/2017' - }, { - 'id': 13, - 'model': 'XL7', - 'manufacture': 'Suzuki', - 'modelYear': 2009, - 'mileage': 165165, - // tslint:disable-next-line:max-line-length - 'description': `The Suzuki XL-7 (styled as XL7 for the second generation) is Suzuki's mid-sized SUV that was made from 1998 to 2009, over two generations. It was slotted above the Grand Vitara in Suzuki's lineup.`, - 'color': 'Puce', - 'price': 118667, - 'condition': 0, - 'createdDate': '02/04/2018', - 'status': 0, - 'VINCode': '1N6AF0LX9EN733005', - '_userId': 2, - '_createdDate': '10/31/2015', - '_updatedDate': '08/24/2015' - }, { - 'id': 14, - 'model': 'SJ 410', - 'manufacture': 'Suzuki', - 'modelYear': 1984, - 'mileage': 176074, - // tslint:disable-next-line:max-line-length - 'description': `The SJ-Series was introduced to the United States (Puerto Rico (SJ-410) and Canada earlier) in 1985 for the 1986 model year. It was priced at $6200 and 47,000 were sold in its first year. The Samurai had a 1.3 liter, 63 hp (47 kW), 4-cylinder engine and was available as a convertible or a hardtop, and with or without a rear seat. The Suzuki Samurai became intensely popular within the serious 4WD community for its good off-road performance and reliability compared to other 4WDs of the time. This is due to the fact that while very compact and light, it is a real 4WD vehicle equipped with a transfer case, switchable 4WD and low range. Its lightness makes it a very nimble off-roader less prone to sinking in softer ground than heavier types. It is also considered a great beginner off-roader due to its simple design and ease of engine and suspension modifications.`, - 'color': 'Orange', - 'price': 84325, - 'condition': 0, - 'createdDate': '12/22/2017', - 'status': 0, - 'VINCode': '2C3CDYBT6DH183756', - '_userId': 1, - '_createdDate': '05/30/2010', - '_updatedDate': '01/02/2014' - }, { - 'id': 15, - 'model': 'F-Series', - 'manufacture': 'Ford', - 'modelYear': 1995, - 'mileage': 53030, - // tslint:disable-next-line:max-line-length - 'description': `The Ford F-Series is a series of light-duty trucks and medium-duty trucks (Class 2-7) that have been marketed and manufactured by Ford Motor Company since 1948. While most variants of the F-Series trucks are full-size pickup trucks, the F-Series also includes chassis cab trucks and commercial vehicles. The Ford F-Series has been the best-selling vehicle in the United States since 1986 and the best-selling pickup since 1977.[1][2] It is also the best selling vehicle in Canada.[3] As of the 2018 model year, the F-Series generates $41.0 billion in annual revenue for Ford, making the F-Series brand more valuable than Coca-Cola and Nike.`, - 'color': 'Aquamarine', - 'price': 77108, - 'condition': 0, - 'createdDate': '01/09/2018', - 'status': 0, - 'VINCode': 'WBAVB33526P873481', - '_userId': 1, - '_createdDate': '12/29/2016', - '_updatedDate': '02/14/2012' - }, { - 'id': 16, - 'model': 'HS', - 'manufacture': 'Lexus', - 'modelYear': 2011, - 'mileage': 84718, - // tslint:disable-next-line:max-line-length - 'description': `The Lexus HS (Japanese: レクサス・HS, Rekusasu HS) is a dedicated hybrid vehicle introduced by Lexus as a new entry-level luxury compact sedan in 2009.[2] Built on the Toyota New MC platform,[3] it is classified as a compact under Japanese regulations concerning vehicle exterior dimensions and engine displacement. Unveiled at the North American International Auto Show in January 2009, the HS 250h went on sale in July 2009 in Japan, followed by the United States in August 2009 as a 2010 model. The HS 250h represented the first dedicated hybrid vehicle in the Lexus lineup, as well as the first offered with an inline-four gasoline engine.[4] Bioplastic materials are used for the vehicle interior.[5] With a total length of 184.8 inches, the Lexus HS is slightly larger than the Lexus IS, but still smaller than the mid-size Lexus ES.`, - 'color': 'Purple', - 'price': 140170, - 'condition': 0, - 'createdDate': '11/14/2017', - 'status': 1, - 'VINCode': '1FTWF3A56AE545514', - '_userId': 1, - '_createdDate': '12/19/2014', - '_updatedDate': '11/09/2014' - }, { - 'id': 17, - 'model': 'Land Cruiser', - 'manufacture': 'Toyota', - 'modelYear': 2008, - 'mileage': 157019, - // tslint:disable-next-line:max-line-length - 'description': `Production of the first generation Land Cruiser began in 1951 (90 units) as Toyota's version of a Jeep-like vehicle.[2][3] The Land Cruiser has been produced in convertible, hardtop, station wagon and cab chassis versions. The Land Cruiser's reliability and longevity has led to huge popularity, especially in Australia where it is the best-selling body-on-frame, four-wheel drive vehicle.[4] Toyota also extensively tests the Land Cruiser in the Australian outback – considered to be one of the toughest operating environments in both temperature and terrain. In Japan, the Land Cruiser is exclusive to Toyota Japanese dealerships called Toyota Store.`, - 'color': 'Crimson', - 'price': 72638, - 'condition': 1, - 'createdDate': '08/08/2017', - 'status': 1, - 'VINCode': '3C3CFFDR2FT957799', - '_userId': 1, - '_createdDate': '05/30/2010', - '_updatedDate': '11/06/2012' - }, { - 'id': 18, - 'model': 'Wrangler', - 'manufacture': 'Jeep', - 'modelYear': 1994, - 'mileage': 55857, - // tslint:disable-next-line:max-line-length - 'description': `The Jeep Wrangler is a series of compact and mid-size (Wrangler Unlimited and Wrangler 4-door JL) four-wheel drive off-road vehicle models, manufactured by Jeep since 1986, and currently migrating from its third into its fourth generation. The Wrangler JL was unveiled in late 2017 and will be produced at Jeep's Toledo Complex.`, - 'color': 'Red', - 'price': 193523, - 'condition': 0, - 'createdDate': '02/28/2018', - 'status': 1, - 'VINCode': '3C4PDCAB7FT652291', - '_userId': 1, - '_createdDate': '10/26/2011', - '_updatedDate': '10/04/2016' - }, { - 'id': 19, - 'model': 'Sunbird', - 'manufacture': 'Pontiac', - 'modelYear': 1994, - 'mileage': 165202, - // tslint:disable-next-line:max-line-length - 'description': `The Pontiac Sunbird is an automobile that was produced by Pontiac, initially as a subcompact for the 1976 to 1980 model years, and later as a compact for the 1982 to 1994 model years. The Sunbird badge ran for 18 years (with a hiatus during the 1981 and 1982 model years, as the 1982 model was called J2000) and was then replaced in 1995 by the Pontiac Sunfire. Through the years the Sunbird was available in notchback coupé, sedan, hatchback, station wagon, and convertible body styles.`, - 'color': 'Blue', - 'price': 198739, - 'condition': 0, - 'createdDate': '05/13/2017', - 'status': 1, - 'VINCode': '1GD22XEG9FZ103872', - '_userId': 2, - '_createdDate': '07/24/2013', - '_updatedDate': '10/03/2013' - }, { - 'id': 20, - 'model': 'A4', - 'manufacture': 'Audi', - 'modelYear': 1998, - 'mileage': 117958, - // tslint:disable-next-line:max-line-length - 'description': `The A4 has been built in five generations and is based on the Volkswagen Group B platform. The first generation A4 succeeded the Audi 80. The automaker's internal numbering treats the A4 as a continuation of the Audi 80 lineage, with the initial A4 designated as the B5-series, followed by the B6, B7, B8 and the B9. The B8 and B9 versions of the A4 are built on the Volkswagen Group MLB platform shared with many other Audi models and potentially one Porsche model within Volkswagen Group`, - 'color': 'Yellow', - 'price': 159377, - 'condition': 0, - 'createdDate': '12/15/2017', - 'status': 1, - 'VINCode': '2C3CDXCT2FH350366', - '_userId': 2, - '_createdDate': '12/04/2014', - '_updatedDate': '03/07/2014' - }, { - 'id': 21, - 'model': 'Camry Solara', - 'manufacture': 'Toyota', - 'modelYear': 2006, - 'mileage': 22436, - // tslint:disable-next-line:max-line-length - 'description': `The Toyota Camry Solara, popularly known as the Toyota Solara, is a mid-size coupe/convertible built by Toyota. The Camry Solara is mechanically based on the Toyota Camry and effectively replaced the discontinued Camry Coupe (XV10); however, in contrast with its predecessor's conservative design, the Camry Solara was designed with a greater emphasis on sportiness, with more rakish styling, and uprated suspension and engine tuning intended to provide a sportier feel.[5] The coupe was launched in late 1998 as a 1999 model.[1] In 2000, the convertible was introduced, effectively replacing the Celica convertible in Toyota's North American lineup`, - 'color': 'Green', - 'price': 122562, - 'condition': 0, - 'createdDate': '07/11/2017', - 'status': 0, - 'VINCode': '3C3CFFHH6DT874066', - '_userId': 2, - '_createdDate': '03/21/2018', - '_updatedDate': '02/23/2014' - }, { - 'id': 22, - 'model': 'Tribeca', - 'manufacture': 'Subaru', - 'modelYear': 2007, - 'mileage': 127958, - // tslint:disable-next-line:max-line-length - 'description': `The Subaru Tribeca is a mid-size crossover SUV made from 2005 to 2014. Released in some markets, including Canada, as the Subaru B9 Tribeca, the name "Tribeca" derives from the Tribeca neighborhood of New York City.[1] Built on the Subaru Legacy platform and sold in five- and seven-seat configurations, the Tribeca was intended to be sold alongside a slightly revised version known as the Saab 9-6. Saab, at the time a subsidiary of General Motors (GM), abandoned the 9-6 program just prior to its release subsequent to GM's 2005 divestiture of its 20 percent stake in FHI.`, - 'color': 'Yellow', - 'price': 90221, - 'condition': 1, - 'createdDate': '11/12/2017', - 'status': 0, - 'VINCode': 'WVWGU7AN9AE957575', - '_userId': 1, - '_createdDate': '07/04/2011', - '_updatedDate': '08/25/2013' - }, { - 'id': 23, - 'model': '1500 Club Coupe', - 'manufacture': 'GMC', - 'modelYear': 1997, - 'mileage': 95783, - // tslint:disable-next-line:max-line-length - 'description': `GMC (General Motors Truck Company), formally the GMC Division of General Motors LLC, is a division of the American automobile manufacturer General Motors (GM) that primarily focuses on trucks and utility vehicles. GMC sells pickup and commercial trucks, buses, vans, military vehicles, and sport utility vehicles marketed worldwide by General Motors.`, - 'color': 'Teal', - 'price': 64376, - 'condition': 1, - 'createdDate': '06/28/2017', - 'status': 0, - 'VINCode': 'SCFBF04BX7G920997', - '_userId': 2, - '_createdDate': '02/21/2017', - '_updatedDate': '01/29/2015' - }, { - 'id': 24, - 'model': 'Firebird', - 'manufacture': 'Pontiac', - 'modelYear': 2002, - 'mileage': 74063, - // tslint:disable-next-line:max-line-length - 'description': `The Pontiac Firebird is an American automobile built by Pontiac from the 1967 to the 2002 model years. Designed as a pony car to compete with the Ford Mustang, it was introduced 23 February 1967, the same model year as GM's Chevrolet division platform-sharing Camaro.[1] This also coincided with the release of the 1967 Mercury Cougar, Ford's upscale, platform-sharing version of the Mustang. The name "Firebird" was also previously used by GM for the General Motors Firebird 1950s and early-1960s`, - 'color': 'Puce', - 'price': 94178, - 'condition': 1, - 'createdDate': '09/13/2017', - 'status': 0, - 'VINCode': '3C63D2JL5CG563879', - '_userId': 2, - '_createdDate': '05/11/2014', - '_updatedDate': '11/24/2012' - }, { - 'id': 25, - 'model': 'RAV4', - 'manufacture': 'Toyota', - 'modelYear': 1996, - 'mileage': 99461, - // tslint:disable-next-line:max-line-length - 'description': `The Toyota RAV4 (Japanese: トヨタ RAV4 Toyota Ravufō) is a compact crossover SUV (sport utility vehicle) produced by the Japanese automobile manufacturer Toyota. This was the first compact crossover SUV;[1] it made its debut in Japan and Europe in 1994,[2] and in North America in 1995. The vehicle was designed for consumers wanting a vehicle that had most of the benefits of SUVs, such as increased cargo room, higher visibility, and the option of full-time four-wheel drive, along with the maneuverability and fuel economy of a compact car. Although not all RAV4s are four-wheel-drive, RAV4 stands for "Recreational Activity Vehicle: 4-wheel drive", because the aforementioned equipment is an option in select countries`, - 'color': 'Goldenrod', - 'price': 48342, - 'condition': 0, - 'createdDate': '12/29/2017', - 'status': 0, - 'VINCode': '2C4RDGDG6DR836144', - '_userId': 2, - '_createdDate': '04/23/2011', - '_updatedDate': '07/19/2016' - }, { - 'id': 26, - 'model': 'Amanti / Opirus', - 'manufacture': 'Kia', - 'modelYear': 2007, - 'mileage': 189651, - // tslint:disable-next-line:max-line-length - 'description': `The Kia Opirus was an executive car manufactured and marketed by Kia Motors that was launched in April 2003 and was marketed globally under various nameplates, prominently as the Amanti. It was considered to be Kia's flagship vehicle.`, - 'color': 'Indigo', - 'price': 44292, - 'condition': 1, - 'createdDate': '09/01/2017', - 'status': 1, - 'VINCode': '1C4SDHCT2CC055294', - '_userId': 2, - '_createdDate': '04/09/2018', - '_updatedDate': '04/17/2014' - }, { - 'id': 27, - 'model': 'S60', - 'manufacture': 'Volvo', - 'modelYear': 2001, - 'mileage': 78963, - // tslint:disable-next-line:max-line-length - 'description': `First introduced in 2004, Volvo's S60 R used a Haldex all-wheel-drive system mated to a 300 PS (221 kW; 296 hp) / 400 N⋅m (300 lbf⋅ft) inline-5. The 2004–2005 models came with a 6-speed manual transmission, or an available 5-speed automatic which allowed only 258 lb⋅ft (350 N⋅m) torque in 1st and 2nd gears. The 2006–2007 models came with a 6-speed manual or 6-speed automatic transmission (which was no longer torque-restricted)`, - 'color': 'Goldenrod', - 'price': 9440, - 'condition': 0, - 'createdDate': '11/06/2017', - 'status': 0, - 'VINCode': '3C6TD5CT5CG316067', - '_userId': 2, - '_createdDate': '01/11/2016', - '_updatedDate': '04/18/2013' - }, { - 'id': 28, - 'model': 'Grand Marquis', - 'manufacture': 'Mercury', - 'modelYear': 1984, - 'mileage': 153027, - // tslint:disable-next-line:max-line-length - 'description': `The Mercury Grand Marquis is an automobile that was sold by the Mercury division of Ford Motor Company from 1975 to 2011. From 1975 to 1982, it was the premium model of the Mercury Marquis model line, becoming a standalone model line in 1983. For its entire production run, the Grand Marquis served as the flagship of the Mercury line, with the Ford (LTD) Crown Victoria serving as its Ford counterpart. In addition, from 1979 to 2011, the Grand Marquis shared the rear-wheel drive Panther platform alongside the Lincoln Town Car`, - 'color': 'Goldenrod', - 'price': 76027, - 'condition': 0, - 'createdDate': '12/16/2017', - 'status': 1, - 'VINCode': '3C3CFFJH2DT871398', - '_userId': 1, - '_createdDate': '04/04/2014', - '_updatedDate': '08/24/2017' - }, { - 'id': 29, - 'model': 'Talon', - 'manufacture': 'Eagle', - 'modelYear': 1991, - 'mileage': 111234, - // tslint:disable-next-line:max-line-length - 'description': `Cosmetically, differences between the three were found in wheels, availability of colors, tail lights, front and rear bumpers, and spoilers. The Talon featured two-tone body color with a black 'greenhouse' (roof, pillars, door-mounted mirrors) regardless of the body color. The variants featured 5-speed manual or 4-speed automatic transmissions and a hood bulge on the left-hand side of the car in order for camshaft clearance on the 4G63 engine. The base model DL did not use this engine but still had a bulge as evident in the 1992 Talon brochure. 2nd Generation cars all had such a bulge, even with the inclusion of the 420A engine`, - 'color': 'Teal', - 'price': 157216, - 'condition': 0, - 'createdDate': '05/08/2017', - 'status': 1, - 'VINCode': 'YV1902FH1D2957659', - '_userId': 1, - '_createdDate': '04/16/2017', - '_updatedDate': '01/14/2011' - }, { - 'id': 30, - 'model': 'Passport', - 'manufacture': 'Honda', - 'modelYear': 2002, - 'mileage': 3812, - // tslint:disable-next-line:max-line-length - 'description': `The Passport was a part of a partnership between Isuzu and Honda in the 1990s, which saw an exchange of passenger vehicles from Honda to Isuzu, such as the Isuzu Oasis, and trucks from Isuzu to Honda, such as the Passport and Acura SLX. This arrangement was convenient for both companies, as Isuzu discontinued passenger car production in 1993 after a corporate restructuring, and Honda was in desperate need a SUV, a segment that was growing in popularity in North America as well as Japan during the 1990s. The partnership ended in 2002 with the discontinuation of the Passport in favor of the Honda-engineered Pilot`, - 'color': 'Puce', - 'price': 41299, - 'condition': 1, - 'createdDate': '03/08/2018', - 'status': 0, - 'VINCode': 'WVWEU9AN4AE524071', - '_userId': 2, - '_createdDate': '07/31/2015', - '_updatedDate': '07/03/2017' - }, { - 'id': 31, - 'model': 'H3', - 'manufacture': 'Hummer', - 'modelYear': 2006, - 'mileage': 196321, - // tslint:disable-next-line:max-line-length - 'description': `The Hummer H3 is a sport utility vehicle/off-road vehicle from Hummer that was produced from 2005 to 2010. Introduced for the 2006 model year, it was based on a highly modified GMT355 underpinning the Chevrolet Colorado/GMC Canyon compact pickup trucks that were also built at GM's Shreveport Operations in Shreveport, Louisiana and the Port Elizabeth plant in South Africa. The H3 was actually the smallest among the Hummer models. It was available either as a traditional midsize SUV or as a midsize pickup known as the H3T`, - 'color': 'Pink', - 'price': 186964, - 'condition': 1, - 'createdDate': '06/04/2017', - 'status': 1, - 'VINCode': '4T1BF1FK4FU746230', - '_userId': 2, - '_createdDate': '03/09/2014', - '_updatedDate': '02/10/2017' - }, { - 'id': 32, - 'model': 'Comanche', - 'manufacture': 'Jeep', - 'modelYear': 1992, - 'mileage': 72285, - // tslint:disable-next-line:max-line-length - 'description': `The Jeep Comanche (designated MJ) is a pickup truck variant of the Cherokee compact SUV (1984–2001)[3] manufactured and marketed by Jeep for model years 1986-1992 in rear wheel (RWD) and four-wheel drive (4WD) models as well as two cargo bed lengths: six-feet (1.83 metres) and seven-feet (2.13 metres)`, - 'color': 'Mauv', - 'price': 145971, - 'condition': 1, - 'createdDate': '09/01/2017', - 'status': 0, - 'VINCode': '1J4PN2GK1BW745045', - '_userId': 2, - '_createdDate': '07/27/2013', - '_updatedDate': '09/23/2016' - }, { - 'id': 33, - 'model': 'Blazer', - 'manufacture': 'Chevrolet', - 'modelYear': 1993, - 'mileage': 189804, - // tslint:disable-next-line:max-line-length - 'description': `The 2014 – 2nd generation, MY14 Duramax 2.8L diesel engines have several new parts, namely a new water-cooled variable-geometry turbocharger, a new high-pressure common-rail fuel delivery system, a new exhaust gas recirculation (EGR) system, a new intake manifold, a new cylinder head, a new cylinder block, a new balance shaft unit and a new Engine Control Module (ECM). and now produce 197 hp and 369 Ft/Lbs of torque`, - 'color': 'Indigo', - 'price': 154594, - 'condition': 0, - 'createdDate': '09/13/2017', - 'status': 0, - 'VINCode': '1G6KD57Y43U482896', - '_userId': 1, - '_createdDate': '05/27/2017', - '_updatedDate': '05/17/2016' - }, { - 'id': 34, - 'model': 'Envoy XUV', - 'manufacture': 'GMC', - 'modelYear': 2004, - 'mileage': 187960, - // tslint:disable-next-line:max-line-length - 'description': `The GMC Envoy is a mid-size SUV that was produced by General Motors. It was introduced for the 1998 model year. After the first generation Envoy was discontinued after the 2000 model year, but the Envoy was reintroduced and redesigned for the 2002 model year, and it was available in the GMC line of vehicles from the 2002 to 2009 model years`, - 'color': 'Turquoise', - 'price': 185103, - 'condition': 1, - 'createdDate': '12/07/2017', - 'status': 0, - 'VINCode': '5GAER23D09J658030', - '_userId': 2, - '_createdDate': '12/08/2017', - '_updatedDate': '06/15/2011' - } + id: 1, + model: 'Elise', + manufacture: 'Lotus', + modelYear: 2004, + mileage: 116879, + // tslint:disable-next-line:max-line-length + description: `The Lotus Elise first appeared in 1996 and revolutionised small sports car design with its lightweight extruded aluminium chassis and composite body. There have been many variations, but the basic principle remain the same.`, + color: 'Red', + price: 18347, + condition: 1, + createdDate: '09/30/2017', + status: 0, + VINCode: '1FTWX3D52AE575540', + _userId: 1, + _createdDate: '03/31/2015', + _updatedDate: '05/08/2015', + }, + { + id: 2, + model: 'Sunbird', + manufacture: 'Pontiac', + modelYear: 1984, + mileage: 99515, + // tslint:disable-next-line:max-line-length + description: `The Pontiac Sunbird is an automobile that was produced by Pontiac, initially as a subcompact for the 1976 to 1980 model years,and later as a compact for the 1982 to 1994 model years. The Sunbird badge ran for 18 years (with a hiatus during the 1981 and 1982 model years, as the 1982 model was called J2000) and was then replaced in 1995 by the Pontiac Sunfire. Through the years the Sunbird was available in notchback coupé, sedan, hatchback, station wagon, and convertible body styles.`, + color: 'Khaki', + price: 165956, + condition: 0, + createdDate: '03/22/2018', + status: 1, + VINCode: 'JM1NC2EF8A0293556', + _userId: 1, + _createdDate: '11/11/2016', + _updatedDate: '09/01/2016', + }, + { + id: 3, + model: 'Amigo', + manufacture: 'Isuzu', + modelYear: 1993, + mileage: 138027, + // tslint:disable-next-line:max-line-length + description: `The Isuzu MU is a mid-size SUV that was produced by the Japan-based manufacturer Isuzu. The three-door MU was introduced in 1989, followed in 1990 by the five-door version called Isuzu MU Wizard, both of which stopped production in 1998 to be replaced by a second generation. This time, the five-door version dropped the "MU" prefix, to become the Isuzu Wizard. The acronym "MU" is short for "Mysterious Utility". Isuzu manufactured several variations to the MU and its derivates for sale in other countries.`, + color: 'Aquamarine', + price: 45684, + condition: 0, + createdDate: '03/06/2018', + status: 0, + VINCode: '1G6DG8E56C0973889', + _userId: 1, + _createdDate: '08/14/2012', + _updatedDate: '03/21/2013', + }, + { + id: 4, + model: 'LS', + manufacture: 'Lexus', + modelYear: 2004, + mileage: 183068, + // tslint:disable-next-line:max-line-length + description: `The Lexus LS (Japanese: レクサス・LS, Rekusasu LS) is a full-size luxury car (F-segment in Europe) serving as the flagship model of Lexus, the luxury division of Toyota. For the first four generations, all LS models featured V8 engines and were predominantly rear-wheel-drive, with Lexus also offering all-wheel-drive, hybrid, and long-wheelbase variants. The fifth generation changed to using a V6 engine with no V8 option, and the long wheelbase variant was removed entirely.`, + color: 'Mauv', + price: 95410, + condition: 1, + createdDate: '02/03/2018', + status: 1, + VINCode: '2T1BU4EE6DC859114', + _userId: 2, + _createdDate: '11/25/2012', + _updatedDate: '08/15/2013', + }, + { + id: 5, + model: 'Paseo', + manufacture: 'Toyota', + modelYear: 1997, + mileage: 74884, + // tslint:disable-next-line:max-line-length + description: `The Toyota Paseo (known as the Cynos in Japan and other regions) is a sports styled compact car sold from 1991–1999 and was loosely based on the Tercel. It was available as a coupe and in later models as a convertible. Toyota stopped selling the car in the United States in 1997, however the car continued to be sold in Canada, Europe and Japan until 1999, but had no direct replacement. The Paseo, like the Tercel, shares a platform with the Starlet. Several parts are interchangeable between the three`, + color: 'Pink', + price: 24796, + condition: 1, + createdDate: '08/13/2017', + status: 0, + VINCode: '1D7RB1GP0AS597432', + _userId: 1, + _createdDate: '11/21/2016', + _updatedDate: '10/09/2012', + }, + { + id: 6, + model: 'M', + manufacture: 'Infiniti', + modelYear: 2009, + mileage: 194846, + // tslint:disable-next-line:max-line-length + description: `The Infiniti M is a line of mid-size luxury (executive) cars from the Infiniti luxury division of Nissan.\r\nThe first iteration was the M30 Coupe/Convertible, which were rebadged JDM Nissan Leopard.\r\nAfter a long hiatus, the M nameplate was used for Infiniti's mid-luxury sedans (executive cars). First was the short-lived M45 sedan, a rebadged version of the Japanese-spec Nissan Gloria. The next generations, the M35/45 and M37/56/35h/30d, became the flagship of the Infiniti brand and are based on the JDM Nissan Fuga.`, + color: 'Puce', + price: 30521, + condition: 1, + createdDate: '01/27/2018', + status: 0, + VINCode: 'YV1940AS1D1542424', + _userId: 2, + _createdDate: '03/13/2016', + _updatedDate: '12/14/2013', + }, + { + id: 7, + model: 'Phantom', + manufacture: 'Rolls-Royce', + modelYear: 2008, + mileage: 164124, + // tslint:disable-next-line:max-line-length + description: `The Rolls-Royce Phantom VIII is a luxury saloon car manufactured by Rolls-Royce Motor Cars. It is the eighth and current generation of Rolls-Royce Phantom, and the second launched by Rolls-Royce under BMW ownership. It is offered in two wheelbase lengths`, + color: 'Purple', + price: 196247, + condition: 1, + createdDate: '09/28/2017', + status: 1, + VINCode: '3VWML7AJ1DM234625', + _userId: 2, + _createdDate: '03/31/2012', + _updatedDate: '06/27/2014', + }, + { + id: 8, + model: 'QX', + manufacture: 'Infiniti', + modelYear: 2002, + mileage: 57410, + // tslint:disable-next-line:max-line-length + description: `The Infiniti QX80 (called the Infiniti QX56 until 2013) is a full-size luxury SUV built by Nissan Motor Company's Infiniti division. The naming convention originally adhered to the current trend of using a numeric designation derived from the engine's displacement, thus QX56 since the car has a 5.6-liter engine. From the 2014 model year, the car was renamed the QX80, as part of Infiniti's model name rebranding. The new name carries no meaning beyond suggesting that the vehicle is larger than smaller models such as the QX60`, + color: 'Green', + price: 185775, + condition: 1, + createdDate: '11/15/2017', + status: 0, + VINCode: 'WDDHF2EB9CA161524', + _userId: 1, + _createdDate: '03/17/2013', + _updatedDate: '09/05/2014', + }, + { + id: 9, + model: 'Daytona', + manufacture: 'Dodge', + modelYear: 1993, + mileage: 4444, + // tslint:disable-next-line:max-line-length + description: `The Dodge Daytona was an automobile which was produced by the Chrysler Corporation under their Dodge division from 1984 to 1993. It was a front-wheel drive hatchback based on the Chrysler G platform, which was derived from the Chrysler K platform. The Chrysler Laser was an upscale rebadged version of the Daytona. The Daytona was restyled for 1987, and again for 1992. It replaced the Mitsubishi Galant-based Challenger, and slotted between the Charger and the Conquest. The Daytona was replaced by the 1995 Dodge Avenger, which was built by Mitsubishi Motors. The Daytona derives its name mainly from the Dodge Charger Daytona, which itself was named after the Daytona 500 race in Daytona Beach, Florida.`, + color: 'Maroon', + price: 171898, + condition: 0, + createdDate: '12/24/2017', + status: 1, + VINCode: 'WBAET37422N752051', + _userId: 2, + _createdDate: '11/17/2012', + _updatedDate: '03/17/2018', + }, + { + id: 10, + model: '1500 Silverado', + manufacture: 'Chevrolet', + modelYear: 1999, + mileage: 195310, + // tslint:disable-next-line:max-line-length + description: `The Chevrolet Silverado, and its mechanically identical cousin, the GMC Sierra, are a series of full-size and heavy-duty pickup trucks manufactured by General Motors and introduced in 1998 as the successor to the long-running Chevrolet C/K line. The Silverado name was taken from a trim level previously used on its predecessor, the Chevrolet C/K pickup truck from 1975 through 1998. General Motors continues to offer a GMC-badged variant of the Chevrolet full-size pickup under the GMC Sierra name, first used in 1987 for its variant of the GMT400 platform trucks.`, + color: 'Blue', + price: 25764, + condition: 0, + createdDate: '08/30/2017', + status: 1, + VINCode: '1N6AF0LX6EN590806', + _userId: 2, + _createdDate: '10/06/2013', + _updatedDate: '03/27/2017', + }, + { + id: 11, + model: 'CTS', + manufacture: 'Cadillac', + modelYear: 2012, + mileage: 170862, + // tslint:disable-next-line:max-line-length + description: `The Cadillac CTS is a mid-size luxury car / executive car designed, engineered, manufactured and marketed by General Motors, and now in its third generation. \r\nInitially available only as a 4-door sedan on the GM Sigma platform, GM had offered the second generation CTS in three body styles: 4-door sedan, 2-door coupe, and 5-door sport wagon also using the Sigma platform — and the third generation in coupe and sedan configurations, using a stretched version of the GM Alpha platform.\r\nWayne Cherry and Kip Wasenko designed the exterior of the first generation CTS, marking the production debut of a design language (marketed as "Art and Science") first seen on the Evoq concept car. Bob Boniface and Robin Krieg designed the exterior of the third generation CTS`, + color: 'Crimson', + price: 80588, + condition: 0, + createdDate: '02/15/2018', + status: 0, + VINCode: '1G4HR54KX4U506530', + _userId: 2, + _createdDate: '09/04/2016', + _updatedDate: '09/17/2012', + }, + { + id: 12, + model: 'Astro', + manufacture: 'Chevrolet', + modelYear: 1995, + mileage: 142137, + // tslint:disable-next-line:max-line-length + description: `The Chevrolet Astro was a rear-wheel drive van/minivan manufactured and marketed by the American automaker Chevrolet from 1985 to 2005 and over two build generations. Along with its rebadged variant, the GMC Safari, the Astro was marketed in passenger as well as cargo and livery configurations—featuring a V6 engine, unibody construction with a separate front engine/suspension sub-frame, leaf-spring rear suspension, rear bi-parting doors, and a seating capacity of up to eight passengers`, + color: 'Teal', + price: 72430, + condition: 1, + createdDate: '07/31/2017', + status: 0, + VINCode: 'KMHGH4JH2DU676107', + _userId: 1, + _createdDate: '02/12/2013', + _updatedDate: '01/26/2017', + }, + { + id: 13, + model: 'XL7', + manufacture: 'Suzuki', + modelYear: 2009, + mileage: 165165, + // tslint:disable-next-line:max-line-length + description: `The Suzuki XL-7 (styled as XL7 for the second generation) is Suzuki's mid-sized SUV that was made from 1998 to 2009, over two generations. It was slotted above the Grand Vitara in Suzuki's lineup.`, + color: 'Puce', + price: 118667, + condition: 0, + createdDate: '02/04/2018', + status: 0, + VINCode: '1N6AF0LX9EN733005', + _userId: 2, + _createdDate: '10/31/2015', + _updatedDate: '08/24/2015', + }, + { + id: 14, + model: 'SJ 410', + manufacture: 'Suzuki', + modelYear: 1984, + mileage: 176074, + // tslint:disable-next-line:max-line-length + description: `The SJ-Series was introduced to the United States (Puerto Rico (SJ-410) and Canada earlier) in 1985 for the 1986 model year. It was priced at $6200 and 47,000 were sold in its first year. The Samurai had a 1.3 liter, 63 hp (47 kW), 4-cylinder engine and was available as a convertible or a hardtop, and with or without a rear seat. The Suzuki Samurai became intensely popular within the serious 4WD community for its good off-road performance and reliability compared to other 4WDs of the time. This is due to the fact that while very compact and light, it is a real 4WD vehicle equipped with a transfer case, switchable 4WD and low range. Its lightness makes it a very nimble off-roader less prone to sinking in softer ground than heavier types. It is also considered a great beginner off-roader due to its simple design and ease of engine and suspension modifications.`, + color: 'Orange', + price: 84325, + condition: 0, + createdDate: '12/22/2017', + status: 0, + VINCode: '2C3CDYBT6DH183756', + _userId: 1, + _createdDate: '05/30/2010', + _updatedDate: '01/02/2014', + }, + { + id: 15, + model: 'F-Series', + manufacture: 'Ford', + modelYear: 1995, + mileage: 53030, + // tslint:disable-next-line:max-line-length + description: `The Ford F-Series is a series of light-duty trucks and medium-duty trucks (Class 2-7) that have been marketed and manufactured by Ford Motor Company since 1948. While most variants of the F-Series trucks are full-size pickup trucks, the F-Series also includes chassis cab trucks and commercial vehicles. The Ford F-Series has been the best-selling vehicle in the United States since 1986 and the best-selling pickup since 1977.[1][2] It is also the best selling vehicle in Canada.[3] As of the 2018 model year, the F-Series generates $41.0 billion in annual revenue for Ford, making the F-Series brand more valuable than Coca-Cola and Nike.`, + color: 'Aquamarine', + price: 77108, + condition: 0, + createdDate: '01/09/2018', + status: 0, + VINCode: 'WBAVB33526P873481', + _userId: 1, + _createdDate: '12/29/2016', + _updatedDate: '02/14/2012', + }, + { + id: 16, + model: 'HS', + manufacture: 'Lexus', + modelYear: 2011, + mileage: 84718, + // tslint:disable-next-line:max-line-length + description: `The Lexus HS (Japanese: レクサス・HS, Rekusasu HS) is a dedicated hybrid vehicle introduced by Lexus as a new entry-level luxury compact sedan in 2009.[2] Built on the Toyota New MC platform,[3] it is classified as a compact under Japanese regulations concerning vehicle exterior dimensions and engine displacement. Unveiled at the North American International Auto Show in January 2009, the HS 250h went on sale in July 2009 in Japan, followed by the United States in August 2009 as a 2010 model. The HS 250h represented the first dedicated hybrid vehicle in the Lexus lineup, as well as the first offered with an inline-four gasoline engine.[4] Bioplastic materials are used for the vehicle interior.[5] With a total length of 184.8 inches, the Lexus HS is slightly larger than the Lexus IS, but still smaller than the mid-size Lexus ES.`, + color: 'Purple', + price: 140170, + condition: 0, + createdDate: '11/14/2017', + status: 1, + VINCode: '1FTWF3A56AE545514', + _userId: 1, + _createdDate: '12/19/2014', + _updatedDate: '11/09/2014', + }, + { + id: 17, + model: 'Land Cruiser', + manufacture: 'Toyota', + modelYear: 2008, + mileage: 157019, + // tslint:disable-next-line:max-line-length + description: `Production of the first generation Land Cruiser began in 1951 (90 units) as Toyota's version of a Jeep-like vehicle.[2][3] The Land Cruiser has been produced in convertible, hardtop, station wagon and cab chassis versions. The Land Cruiser's reliability and longevity has led to huge popularity, especially in Australia where it is the best-selling body-on-frame, four-wheel drive vehicle.[4] Toyota also extensively tests the Land Cruiser in the Australian outback – considered to be one of the toughest operating environments in both temperature and terrain. In Japan, the Land Cruiser is exclusive to Toyota Japanese dealerships called Toyota Store.`, + color: 'Crimson', + price: 72638, + condition: 1, + createdDate: '08/08/2017', + status: 1, + VINCode: '3C3CFFDR2FT957799', + _userId: 1, + _createdDate: '05/30/2010', + _updatedDate: '11/06/2012', + }, + { + id: 18, + model: 'Wrangler', + manufacture: 'Jeep', + modelYear: 1994, + mileage: 55857, + // tslint:disable-next-line:max-line-length + description: `The Jeep Wrangler is a series of compact and mid-size (Wrangler Unlimited and Wrangler 4-door JL) four-wheel drive off-road vehicle models, manufactured by Jeep since 1986, and currently migrating from its third into its fourth generation. The Wrangler JL was unveiled in late 2017 and will be produced at Jeep's Toledo Complex.`, + color: 'Red', + price: 193523, + condition: 0, + createdDate: '02/28/2018', + status: 1, + VINCode: '3C4PDCAB7FT652291', + _userId: 1, + _createdDate: '10/26/2011', + _updatedDate: '10/04/2016', + }, + { + id: 19, + model: 'Sunbird', + manufacture: 'Pontiac', + modelYear: 1994, + mileage: 165202, + // tslint:disable-next-line:max-line-length + description: `The Pontiac Sunbird is an automobile that was produced by Pontiac, initially as a subcompact for the 1976 to 1980 model years, and later as a compact for the 1982 to 1994 model years. The Sunbird badge ran for 18 years (with a hiatus during the 1981 and 1982 model years, as the 1982 model was called J2000) and was then replaced in 1995 by the Pontiac Sunfire. Through the years the Sunbird was available in notchback coupé, sedan, hatchback, station wagon, and convertible body styles.`, + color: 'Blue', + price: 198739, + condition: 0, + createdDate: '05/13/2017', + status: 1, + VINCode: '1GD22XEG9FZ103872', + _userId: 2, + _createdDate: '07/24/2013', + _updatedDate: '10/03/2013', + }, + { + id: 20, + model: 'A4', + manufacture: 'Audi', + modelYear: 1998, + mileage: 117958, + // tslint:disable-next-line:max-line-length + description: `The A4 has been built in five generations and is based on the Volkswagen Group B platform. The first generation A4 succeeded the Audi 80. The automaker's internal numbering treats the A4 as a continuation of the Audi 80 lineage, with the initial A4 designated as the B5-series, followed by the B6, B7, B8 and the B9. The B8 and B9 versions of the A4 are built on the Volkswagen Group MLB platform shared with many other Audi models and potentially one Porsche model within Volkswagen Group`, + color: 'Yellow', + price: 159377, + condition: 0, + createdDate: '12/15/2017', + status: 1, + VINCode: '2C3CDXCT2FH350366', + _userId: 2, + _createdDate: '12/04/2014', + _updatedDate: '03/07/2014', + }, + { + id: 21, + model: 'Camry Solara', + manufacture: 'Toyota', + modelYear: 2006, + mileage: 22436, + // tslint:disable-next-line:max-line-length + description: `The Toyota Camry Solara, popularly known as the Toyota Solara, is a mid-size coupe/convertible built by Toyota. The Camry Solara is mechanically based on the Toyota Camry and effectively replaced the discontinued Camry Coupe (XV10); however, in contrast with its predecessor's conservative design, the Camry Solara was designed with a greater emphasis on sportiness, with more rakish styling, and uprated suspension and engine tuning intended to provide a sportier feel.[5] The coupe was launched in late 1998 as a 1999 model.[1] In 2000, the convertible was introduced, effectively replacing the Celica convertible in Toyota's North American lineup`, + color: 'Green', + price: 122562, + condition: 0, + createdDate: '07/11/2017', + status: 0, + VINCode: '3C3CFFHH6DT874066', + _userId: 2, + _createdDate: '03/21/2018', + _updatedDate: '02/23/2014', + }, + { + id: 22, + model: 'Tribeca', + manufacture: 'Subaru', + modelYear: 2007, + mileage: 127958, + // tslint:disable-next-line:max-line-length + description: `The Subaru Tribeca is a mid-size crossover SUV made from 2005 to 2014. Released in some markets, including Canada, as the Subaru B9 Tribeca, the name "Tribeca" derives from the Tribeca neighborhood of New York City.[1] Built on the Subaru Legacy platform and sold in five- and seven-seat configurations, the Tribeca was intended to be sold alongside a slightly revised version known as the Saab 9-6. Saab, at the time a subsidiary of General Motors (GM), abandoned the 9-6 program just prior to its release subsequent to GM's 2005 divestiture of its 20 percent stake in FHI.`, + color: 'Yellow', + price: 90221, + condition: 1, + createdDate: '11/12/2017', + status: 0, + VINCode: 'WVWGU7AN9AE957575', + _userId: 1, + _createdDate: '07/04/2011', + _updatedDate: '08/25/2013', + }, + { + id: 23, + model: '1500 Club Coupe', + manufacture: 'GMC', + modelYear: 1997, + mileage: 95783, + // tslint:disable-next-line:max-line-length + description: `GMC (General Motors Truck Company), formally the GMC Division of General Motors LLC, is a division of the American automobile manufacturer General Motors (GM) that primarily focuses on trucks and utility vehicles. GMC sells pickup and commercial trucks, buses, vans, military vehicles, and sport utility vehicles marketed worldwide by General Motors.`, + color: 'Teal', + price: 64376, + condition: 1, + createdDate: '06/28/2017', + status: 0, + VINCode: 'SCFBF04BX7G920997', + _userId: 2, + _createdDate: '02/21/2017', + _updatedDate: '01/29/2015', + }, + { + id: 24, + model: 'Firebird', + manufacture: 'Pontiac', + modelYear: 2002, + mileage: 74063, + // tslint:disable-next-line:max-line-length + description: `The Pontiac Firebird is an American automobile built by Pontiac from the 1967 to the 2002 model years. Designed as a pony car to compete with the Ford Mustang, it was introduced 23 February 1967, the same model year as GM's Chevrolet division platform-sharing Camaro.[1] This also coincided with the release of the 1967 Mercury Cougar, Ford's upscale, platform-sharing version of the Mustang. The name "Firebird" was also previously used by GM for the General Motors Firebird 1950s and early-1960s`, + color: 'Puce', + price: 94178, + condition: 1, + createdDate: '09/13/2017', + status: 0, + VINCode: '3C63D2JL5CG563879', + _userId: 2, + _createdDate: '05/11/2014', + _updatedDate: '11/24/2012', + }, + { + id: 25, + model: 'RAV4', + manufacture: 'Toyota', + modelYear: 1996, + mileage: 99461, + // tslint:disable-next-line:max-line-length + description: `The Toyota RAV4 (Japanese: トヨタ RAV4 Toyota Ravufō) is a compact crossover SUV (sport utility vehicle) produced by the Japanese automobile manufacturer Toyota. This was the first compact crossover SUV;[1] it made its debut in Japan and Europe in 1994,[2] and in North America in 1995. The vehicle was designed for consumers wanting a vehicle that had most of the benefits of SUVs, such as increased cargo room, higher visibility, and the option of full-time four-wheel drive, along with the maneuverability and fuel economy of a compact car. Although not all RAV4s are four-wheel-drive, RAV4 stands for "Recreational Activity Vehicle: 4-wheel drive", because the aforementioned equipment is an option in select countries`, + color: 'Goldenrod', + price: 48342, + condition: 0, + createdDate: '12/29/2017', + status: 0, + VINCode: '2C4RDGDG6DR836144', + _userId: 2, + _createdDate: '04/23/2011', + _updatedDate: '07/19/2016', + }, + { + id: 26, + model: 'Amanti / Opirus', + manufacture: 'Kia', + modelYear: 2007, + mileage: 189651, + // tslint:disable-next-line:max-line-length + description: `The Kia Opirus was an executive car manufactured and marketed by Kia Motors that was launched in April 2003 and was marketed globally under various nameplates, prominently as the Amanti. It was considered to be Kia's flagship vehicle.`, + color: 'Indigo', + price: 44292, + condition: 1, + createdDate: '09/01/2017', + status: 1, + VINCode: '1C4SDHCT2CC055294', + _userId: 2, + _createdDate: '04/09/2018', + _updatedDate: '04/17/2014', + }, + { + id: 27, + model: 'S60', + manufacture: 'Volvo', + modelYear: 2001, + mileage: 78963, + // tslint:disable-next-line:max-line-length + description: `First introduced in 2004, Volvo's S60 R used a Haldex all-wheel-drive system mated to a 300 PS (221 kW; 296 hp) / 400 N⋅m (300 lbf⋅ft) inline-5. The 2004–2005 models came with a 6-speed manual transmission, or an available 5-speed automatic which allowed only 258 lb⋅ft (350 N⋅m) torque in 1st and 2nd gears. The 2006–2007 models came with a 6-speed manual or 6-speed automatic transmission (which was no longer torque-restricted)`, + color: 'Goldenrod', + price: 9440, + condition: 0, + createdDate: '11/06/2017', + status: 0, + VINCode: '3C6TD5CT5CG316067', + _userId: 2, + _createdDate: '01/11/2016', + _updatedDate: '04/18/2013', + }, + { + id: 28, + model: 'Grand Marquis', + manufacture: 'Mercury', + modelYear: 1984, + mileage: 153027, + // tslint:disable-next-line:max-line-length + description: `The Mercury Grand Marquis is an automobile that was sold by the Mercury division of Ford Motor Company from 1975 to 2011. From 1975 to 1982, it was the premium model of the Mercury Marquis model line, becoming a standalone model line in 1983. For its entire production run, the Grand Marquis served as the flagship of the Mercury line, with the Ford (LTD) Crown Victoria serving as its Ford counterpart. In addition, from 1979 to 2011, the Grand Marquis shared the rear-wheel drive Panther platform alongside the Lincoln Town Car`, + color: 'Goldenrod', + price: 76027, + condition: 0, + createdDate: '12/16/2017', + status: 1, + VINCode: '3C3CFFJH2DT871398', + _userId: 1, + _createdDate: '04/04/2014', + _updatedDate: '08/24/2017', + }, + { + id: 29, + model: 'Talon', + manufacture: 'Eagle', + modelYear: 1991, + mileage: 111234, + // tslint:disable-next-line:max-line-length + description: `Cosmetically, differences between the three were found in wheels, availability of colors, tail lights, front and rear bumpers, and spoilers. The Talon featured two-tone body color with a black 'greenhouse' (roof, pillars, door-mounted mirrors) regardless of the body color. The variants featured 5-speed manual or 4-speed automatic transmissions and a hood bulge on the left-hand side of the car in order for camshaft clearance on the 4G63 engine. The base model DL did not use this engine but still had a bulge as evident in the 1992 Talon brochure. 2nd Generation cars all had such a bulge, even with the inclusion of the 420A engine`, + color: 'Teal', + price: 157216, + condition: 0, + createdDate: '05/08/2017', + status: 1, + VINCode: 'YV1902FH1D2957659', + _userId: 1, + _createdDate: '04/16/2017', + _updatedDate: '01/14/2011', + }, + { + id: 30, + model: 'Passport', + manufacture: 'Honda', + modelYear: 2002, + mileage: 3812, + // tslint:disable-next-line:max-line-length + description: `The Passport was a part of a partnership between Isuzu and Honda in the 1990s, which saw an exchange of passenger vehicles from Honda to Isuzu, such as the Isuzu Oasis, and trucks from Isuzu to Honda, such as the Passport and Acura SLX. This arrangement was convenient for both companies, as Isuzu discontinued passenger car production in 1993 after a corporate restructuring, and Honda was in desperate need a SUV, a segment that was growing in popularity in North America as well as Japan during the 1990s. The partnership ended in 2002 with the discontinuation of the Passport in favor of the Honda-engineered Pilot`, + color: 'Puce', + price: 41299, + condition: 1, + createdDate: '03/08/2018', + status: 0, + VINCode: 'WVWEU9AN4AE524071', + _userId: 2, + _createdDate: '07/31/2015', + _updatedDate: '07/03/2017', + }, + { + id: 31, + model: 'H3', + manufacture: 'Hummer', + modelYear: 2006, + mileage: 196321, + // tslint:disable-next-line:max-line-length + description: `The Hummer H3 is a sport utility vehicle/off-road vehicle from Hummer that was produced from 2005 to 2010. Introduced for the 2006 model year, it was based on a highly modified GMT355 underpinning the Chevrolet Colorado/GMC Canyon compact pickup trucks that were also built at GM's Shreveport Operations in Shreveport, Louisiana and the Port Elizabeth plant in South Africa. The H3 was actually the smallest among the Hummer models. It was available either as a traditional midsize SUV or as a midsize pickup known as the H3T`, + color: 'Pink', + price: 186964, + condition: 1, + createdDate: '06/04/2017', + status: 1, + VINCode: '4T1BF1FK4FU746230', + _userId: 2, + _createdDate: '03/09/2014', + _updatedDate: '02/10/2017', + }, + { + id: 32, + model: 'Comanche', + manufacture: 'Jeep', + modelYear: 1992, + mileage: 72285, + // tslint:disable-next-line:max-line-length + description: `The Jeep Comanche (designated MJ) is a pickup truck variant of the Cherokee compact SUV (1984–2001)[3] manufactured and marketed by Jeep for model years 1986-1992 in rear wheel (RWD) and four-wheel drive (4WD) models as well as two cargo bed lengths: six-feet (1.83 metres) and seven-feet (2.13 metres)`, + color: 'Mauv', + price: 145971, + condition: 1, + createdDate: '09/01/2017', + status: 0, + VINCode: '1J4PN2GK1BW745045', + _userId: 2, + _createdDate: '07/27/2013', + _updatedDate: '09/23/2016', + }, + { + id: 33, + model: 'Blazer', + manufacture: 'Chevrolet', + modelYear: 1993, + mileage: 189804, + // tslint:disable-next-line:max-line-length + description: `The 2014 – 2nd generation, MY14 Duramax 2.8L diesel engines have several new parts, namely a new water-cooled variable-geometry turbocharger, a new high-pressure common-rail fuel delivery system, a new exhaust gas recirculation (EGR) system, a new intake manifold, a new cylinder head, a new cylinder block, a new balance shaft unit and a new Engine Control Module (ECM). and now produce 197 hp and 369 Ft/Lbs of torque`, + color: 'Indigo', + price: 154594, + condition: 0, + createdDate: '09/13/2017', + status: 0, + VINCode: '1G6KD57Y43U482896', + _userId: 1, + _createdDate: '05/27/2017', + _updatedDate: '05/17/2016', + }, + { + id: 34, + model: 'Envoy XUV', + manufacture: 'GMC', + modelYear: 2004, + mileage: 187960, + // tslint:disable-next-line:max-line-length + description: `The GMC Envoy is a mid-size SUV that was produced by General Motors. It was introduced for the 1998 model year. After the first generation Envoy was discontinued after the 2000 model year, but the Envoy was reintroduced and redesigned for the 2002 model year, and it was available in the GMC line of vehicles from the 2002 to 2009 model years`, + color: 'Turquoise', + price: 185103, + condition: 1, + createdDate: '12/07/2017', + status: 0, + VINCode: '5GAER23D09J658030', + _userId: 2, + _createdDate: '12/08/2017', + _updatedDate: '06/15/2011', + }, ]; } diff --git a/src/app/core/e-commerce/_server/customers.table.ts b/src/app/core/e-commerce/_server/customers.table.ts index e3bff7a..aa6334c 100644 --- a/src/app/core/e-commerce/_server/customers.table.ts +++ b/src/app/core/e-commerce/_server/customers.table.ts @@ -13,7 +13,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '09/07/2016', - _updatedDate: '05/31/2013' + _updatedDate: '05/31/2013', }, { id: 2, @@ -28,7 +28,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '03/18/2014', - _updatedDate: '08/17/2016' + _updatedDate: '08/17/2016', }, { id: 3, @@ -43,7 +43,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '07/03/2015', - _updatedDate: '01/28/2015' + _updatedDate: '01/28/2015', }, { id: 4, @@ -58,7 +58,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '06/22/2013', - _updatedDate: '01/31/2011' + _updatedDate: '01/31/2011', }, { id: 5, @@ -73,7 +73,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '01/30/2018', - _updatedDate: '05/22/2014' + _updatedDate: '05/22/2014', }, { id: 6, @@ -88,7 +88,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '03/27/2011', - _updatedDate: '09/02/2015' + _updatedDate: '09/02/2015', }, { id: 7, @@ -103,7 +103,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '09/05/2011', - _updatedDate: '06/21/2012' + _updatedDate: '06/21/2012', }, { id: 8, @@ -118,7 +118,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '09/09/2017', - _updatedDate: '06/27/2011' + _updatedDate: '06/27/2011', }, { id: 9, @@ -133,7 +133,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '07/16/2011', - _updatedDate: '05/24/2014' + _updatedDate: '05/24/2014', }, { id: 10, @@ -148,7 +148,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '03/25/2011', - _updatedDate: '12/13/2015' + _updatedDate: '12/13/2015', }, { id: 11, @@ -163,7 +163,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '11/01/2015', - _updatedDate: '02/16/2013' + _updatedDate: '02/16/2013', }, { id: 12, @@ -178,7 +178,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '12/12/2017', - _updatedDate: '02/22/2013' + _updatedDate: '02/22/2013', }, { id: 13, @@ -193,7 +193,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '08/14/2014', - _updatedDate: '08/03/2014' + _updatedDate: '08/03/2014', }, { id: 14, @@ -208,7 +208,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '12/07/2010', - _updatedDate: '09/24/2012' + _updatedDate: '09/24/2012', }, { id: 15, @@ -223,7 +223,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '02/23/2013', - _updatedDate: '09/24/2016' + _updatedDate: '09/24/2016', }, { id: 16, @@ -238,7 +238,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '09/08/2012', - _updatedDate: '10/29/2017' + _updatedDate: '10/29/2017', }, { id: 17, @@ -253,7 +253,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '05/03/2016', - _updatedDate: '08/02/2011' + _updatedDate: '08/02/2011', }, { id: 18, @@ -268,7 +268,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '09/25/2017', - _updatedDate: '01/08/2012' + _updatedDate: '01/08/2012', }, { id: 19, @@ -283,7 +283,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '04/26/2013', - _updatedDate: '02/24/2012' + _updatedDate: '02/24/2012', }, { id: 20, @@ -298,7 +298,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '11/28/2014', - _updatedDate: '10/11/2012' + _updatedDate: '10/11/2012', }, { id: 21, @@ -313,7 +313,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '07/29/2013', - _updatedDate: '12/01/2017' + _updatedDate: '12/01/2017', }, { id: 22, @@ -328,7 +328,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '06/14/2011', - _updatedDate: '06/28/2011' + _updatedDate: '06/28/2011', }, { id: 23, @@ -343,7 +343,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '05/19/2016', - _updatedDate: '09/12/2011' + _updatedDate: '09/12/2011', }, { id: 24, @@ -358,7 +358,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '02/09/2013', - _updatedDate: '12/11/2011' + _updatedDate: '12/11/2011', }, { id: 25, @@ -373,7 +373,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '07/28/2017', - _updatedDate: '05/03/2017' + _updatedDate: '05/03/2017', }, { id: 26, @@ -388,12 +388,12 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '07/05/2011', - _updatedDate: '02/19/2013' + _updatedDate: '02/19/2013', }, { id: 27, firstName: 'Freeland', - lastName: 'O\'Dougherty', + lastName: "O'Dougherty", email: 'fodoughertyq@cbsnews.com', userName: 'fodoughertyq', gender: 'Male', @@ -403,7 +403,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '06/09/2012', - _updatedDate: '03/15/2014' + _updatedDate: '03/15/2014', }, { id: 28, @@ -418,7 +418,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '12/30/2011', - _updatedDate: '03/24/2016' + _updatedDate: '03/24/2016', }, { id: 29, @@ -433,7 +433,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '02/28/2016', - _updatedDate: '02/25/2013' + _updatedDate: '02/25/2013', }, { id: 30, @@ -448,7 +448,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '03/12/2011', - _updatedDate: '03/26/2017' + _updatedDate: '03/26/2017', }, { id: 31, @@ -463,7 +463,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '03/06/2012', - _updatedDate: '09/08/2012' + _updatedDate: '09/08/2012', }, { id: 32, @@ -478,7 +478,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '04/28/2013', - _updatedDate: '02/26/2016' + _updatedDate: '02/26/2016', }, { id: 33, @@ -493,7 +493,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '10/21/2012', - _updatedDate: '10/31/2017' + _updatedDate: '10/31/2017', }, { id: 34, @@ -508,7 +508,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '08/28/2011', - _updatedDate: '08/14/2015' + _updatedDate: '08/14/2015', }, { id: 35, @@ -523,7 +523,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '03/28/2018', - _updatedDate: '03/01/2017' + _updatedDate: '03/01/2017', }, { id: 36, @@ -538,7 +538,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '05/15/2017', - _updatedDate: '08/12/2016' + _updatedDate: '08/12/2016', }, { id: 37, @@ -553,7 +553,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '01/16/2012', - _updatedDate: '10/09/2012' + _updatedDate: '10/09/2012', }, { id: 38, @@ -568,12 +568,12 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '01/07/2012', - _updatedDate: '01/18/2018' + _updatedDate: '01/18/2018', }, { id: 39, firstName: 'Cesar', - lastName: 'D\'Orsay', + lastName: "D'Orsay", email: 'cdorsay12@ezinearticles.com', userName: 'cdorsay12', gender: 'Male', @@ -583,7 +583,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '10/20/2010', - _updatedDate: '07/14/2012' + _updatedDate: '07/14/2012', }, { id: 40, @@ -598,7 +598,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '01/11/2012', - _updatedDate: '01/20/2018' + _updatedDate: '01/20/2018', }, { id: 41, @@ -613,7 +613,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '02/23/2015', - _updatedDate: '03/14/2012' + _updatedDate: '03/14/2012', }, { id: 42, @@ -628,7 +628,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '08/04/2012', - _updatedDate: '11/01/2011' + _updatedDate: '11/01/2011', }, { id: 43, @@ -643,7 +643,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '05/28/2014', - _updatedDate: '03/16/2018' + _updatedDate: '03/16/2018', }, { id: 44, @@ -658,7 +658,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '06/01/2015', - _updatedDate: '10/25/2013' + _updatedDate: '10/25/2013', }, { id: 45, @@ -673,7 +673,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '03/25/2011', - _updatedDate: '12/05/2010' + _updatedDate: '12/05/2010', }, { id: 46, @@ -688,7 +688,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '06/09/2013', - _updatedDate: '08/10/2016' + _updatedDate: '08/10/2016', }, { id: 47, @@ -703,7 +703,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '02/02/2016', - _updatedDate: '03/30/2014' + _updatedDate: '03/30/2014', }, { id: 48, @@ -718,7 +718,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '04/08/2016', - _updatedDate: '01/25/2014' + _updatedDate: '01/25/2014', }, { id: 49, @@ -733,7 +733,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '12/26/2015', - _updatedDate: '09/17/2011' + _updatedDate: '09/17/2011', }, { id: 50, @@ -748,7 +748,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '10/10/2011', - _updatedDate: '03/02/2012' + _updatedDate: '03/02/2012', }, { id: 51, @@ -763,7 +763,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '01/09/2018', - _updatedDate: '08/05/2015' + _updatedDate: '08/05/2015', }, { id: 52, @@ -778,7 +778,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '01/13/2015', - _updatedDate: '04/30/2011' + _updatedDate: '04/30/2011', }, { id: 53, @@ -793,7 +793,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '11/17/2012', - _updatedDate: '02/18/2011' + _updatedDate: '02/18/2011', }, { id: 54, @@ -808,7 +808,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '10/16/2012', - _updatedDate: '09/17/2012' + _updatedDate: '09/17/2012', }, { id: 55, @@ -823,7 +823,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '04/20/2015', - _updatedDate: '07/02/2014' + _updatedDate: '07/02/2014', }, { id: 56, @@ -838,7 +838,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '08/24/2017', - _updatedDate: '12/09/2012' + _updatedDate: '12/09/2012', }, { id: 57, @@ -853,7 +853,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '12/30/2012', - _updatedDate: '04/07/2013' + _updatedDate: '04/07/2013', }, { id: 58, @@ -868,7 +868,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '01/16/2017', - _updatedDate: '10/04/2017' + _updatedDate: '10/04/2017', }, { id: 59, @@ -883,7 +883,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '08/22/2014', - _updatedDate: '09/01/2014' + _updatedDate: '09/01/2014', }, { id: 60, @@ -898,7 +898,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '03/08/2018', - _updatedDate: '08/09/2016' + _updatedDate: '08/09/2016', }, { id: 61, @@ -913,7 +913,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '07/15/2016', - _updatedDate: '10/28/2012' + _updatedDate: '10/28/2012', }, { id: 62, @@ -928,7 +928,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '12/20/2017', - _updatedDate: '04/20/2018' + _updatedDate: '04/20/2018', }, { id: 63, @@ -943,7 +943,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '09/24/2012', - _updatedDate: '07/02/2014' + _updatedDate: '07/02/2014', }, { id: 64, @@ -958,7 +958,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '06/29/2012', - _updatedDate: '11/26/2016' + _updatedDate: '11/26/2016', }, { id: 65, @@ -973,7 +973,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '04/11/2013', - _updatedDate: '05/14/2013' + _updatedDate: '05/14/2013', }, { id: 66, @@ -988,7 +988,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '03/20/2015', - _updatedDate: '06/18/2015' + _updatedDate: '06/18/2015', }, { id: 67, @@ -1003,7 +1003,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '11/12/2014', - _updatedDate: '04/12/2011' + _updatedDate: '04/12/2011', }, { id: 68, @@ -1018,7 +1018,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '05/06/2013', - _updatedDate: '05/23/2014' + _updatedDate: '05/23/2014', }, { id: 69, @@ -1033,7 +1033,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '06/23/2013', - _updatedDate: '11/10/2011' + _updatedDate: '11/10/2011', }, { id: 70, @@ -1048,7 +1048,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '07/26/2016', - _updatedDate: '10/28/2013' + _updatedDate: '10/28/2013', }, { id: 71, @@ -1063,7 +1063,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '10/16/2016', - _updatedDate: '07/24/2015' + _updatedDate: '07/24/2015', }, { id: 72, @@ -1078,7 +1078,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '11/23/2012', - _updatedDate: '09/03/2016' + _updatedDate: '09/03/2016', }, { id: 73, @@ -1093,7 +1093,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '09/07/2011', - _updatedDate: '12/26/2017' + _updatedDate: '12/26/2017', }, { id: 74, @@ -1108,7 +1108,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '08/25/2014', - _updatedDate: '06/16/2013' + _updatedDate: '06/16/2013', }, { id: 75, @@ -1123,7 +1123,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '04/02/2017', - _updatedDate: '01/30/2011' + _updatedDate: '01/30/2011', }, { id: 76, @@ -1138,7 +1138,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '06/23/2014', - _updatedDate: '08/20/2016' + _updatedDate: '08/20/2016', }, { id: 77, @@ -1153,7 +1153,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '03/05/2016', - _updatedDate: '07/03/2017' + _updatedDate: '07/03/2017', }, { id: 78, @@ -1168,7 +1168,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '05/01/2014', - _updatedDate: '08/02/2011' + _updatedDate: '08/02/2011', }, { id: 79, @@ -1183,7 +1183,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '11/07/2015', - _updatedDate: '12/03/2014' + _updatedDate: '12/03/2014', }, { id: 80, @@ -1198,7 +1198,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '12/25/2011', - _updatedDate: '12/31/2010' + _updatedDate: '12/31/2010', }, { id: 81, @@ -1213,7 +1213,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '04/09/2015', - _updatedDate: '12/07/2013' + _updatedDate: '12/07/2013', }, { id: 82, @@ -1228,7 +1228,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '07/13/2016', - _updatedDate: '03/07/2012' + _updatedDate: '03/07/2012', }, { id: 83, @@ -1243,7 +1243,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '03/25/2012', - _updatedDate: '11/20/2012' + _updatedDate: '11/20/2012', }, { id: 84, @@ -1258,7 +1258,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '06/21/2016', - _updatedDate: '05/17/2015' + _updatedDate: '05/17/2015', }, { id: 85, @@ -1273,7 +1273,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '03/13/2013', - _updatedDate: '11/12/2017' + _updatedDate: '11/12/2017', }, { id: 86, @@ -1288,12 +1288,12 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '09/10/2015', - _updatedDate: '02/13/2013' + _updatedDate: '02/13/2013', }, { id: 87, firstName: 'Dasya', - lastName: 'O\'Nion', + lastName: "O'Nion", email: 'donion2e@addthis.com', userName: 'donion2e', gender: 'Female', @@ -1303,7 +1303,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '04/12/2013', - _updatedDate: '08/24/2012' + _updatedDate: '08/24/2012', }, { id: 88, @@ -1318,7 +1318,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '06/04/2012', - _updatedDate: '03/06/2017' + _updatedDate: '03/06/2017', }, { id: 89, @@ -1333,7 +1333,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '11/24/2015', - _updatedDate: '02/08/2012' + _updatedDate: '02/08/2012', }, { id: 90, @@ -1348,7 +1348,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '09/13/2016', - _updatedDate: '04/28/2014' + _updatedDate: '04/28/2014', }, { id: 91, @@ -1363,7 +1363,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '03/22/2018', - _updatedDate: '11/28/2010' + _updatedDate: '11/28/2010', }, { id: 92, @@ -1378,7 +1378,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '11/14/2017', - _updatedDate: '11/19/2016' + _updatedDate: '11/19/2016', }, { id: 93, @@ -1393,7 +1393,7 @@ export class CustomersTable { type: 0, _userId: 2, _createdDate: '08/03/2016', - _updatedDate: '01/27/2018' + _updatedDate: '01/27/2018', }, { id: 94, @@ -1408,7 +1408,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '03/23/2014', - _updatedDate: '02/10/2011' + _updatedDate: '02/10/2011', }, { id: 95, @@ -1423,7 +1423,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '07/27/2011', - _updatedDate: '05/28/2013' + _updatedDate: '05/28/2013', }, { id: 96, @@ -1438,7 +1438,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '09/03/2011', - _updatedDate: '10/14/2014' + _updatedDate: '10/14/2014', }, { id: 97, @@ -1453,7 +1453,7 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '05/20/2017', - _updatedDate: '09/17/2013' + _updatedDate: '09/17/2013', }, { id: 98, @@ -1468,7 +1468,7 @@ export class CustomersTable { type: 1, _userId: 2, _createdDate: '04/21/2012', - _updatedDate: '07/30/2012' + _updatedDate: '07/30/2012', }, { id: 99, @@ -1483,12 +1483,12 @@ export class CustomersTable { type: 0, _userId: 1, _createdDate: '10/23/2016', - _updatedDate: '06/28/2014' + _updatedDate: '06/28/2014', }, { id: 100, firstName: 'Sibylla', - lastName: 'O\'Cahey', + lastName: "O'Cahey", email: 'socahey2r@paginegialle.it', userName: 'socahey2r', gender: 'Female', @@ -1498,7 +1498,7 @@ export class CustomersTable { type: 1, _userId: 1, _createdDate: '11/25/2014', - _updatedDate: '08/18/2015' - } + _updatedDate: '08/18/2015', + }, ]; } diff --git a/src/app/core/e-commerce/_server/orders.table.ts b/src/app/core/e-commerce/_server/orders.table.ts index 1918907..db4d6cb 100644 --- a/src/app/core/e-commerce/_server/orders.table.ts +++ b/src/app/core/e-commerce/_server/orders.table.ts @@ -8,14 +8,14 @@ export class OrdersTable { items: [ { product_id: 31, - count: 1 + count: 1, }, { product_id: 1, - count: 1 - } + count: 1, + }, ], - order_status: 'on the way' + order_status: 'on the way', }, { id: '5055fa9e-3b1a-4668-a63e-4767e9cda711', @@ -24,14 +24,14 @@ export class OrdersTable { items: [ { product_id: 98, - count: 2 + count: 2, }, { product_id: 11, - count: 1 - } + count: 1, + }, ], - order_status: 'on the way' + order_status: 'on the way', }, { id: '0c06643b-030a-4ea0-92e5-e0177645943d', @@ -40,14 +40,14 @@ export class OrdersTable { items: [ { product_id: 32, - count: 1 + count: 1, }, { product_id: 77, - count: 1 - } + count: 1, + }, ], - order_status: 'sent' + order_status: 'sent', }, { id: '8bbdbe05-88c6-47f2-b531-65fd9f97d649', @@ -56,14 +56,14 @@ export class OrdersTable { items: [ { product_id: 96, - count: 1 + count: 1, }, { product_id: 99, - count: 2 - } + count: 2, + }, ], - order_status: 'delivered' + order_status: 'delivered', }, { id: '2af76e30-f9d6-427c-aad4-414908459e7f', @@ -72,10 +72,10 @@ export class OrdersTable { items: [ { product_id: 100, - count: 5 - } + count: 5, + }, ], - order_status: 'paid' + order_status: 'paid', }, { id: '7951e68b-e2e9-4cf9-82c4-9e963031b6b7', @@ -84,18 +84,18 @@ export class OrdersTable { items: [ { product_id: 35, - count: 1 + count: 1, }, { product_id: 88, - count: 1 + count: 1, }, { product_id: 22, - count: 1 - } + count: 1, + }, ], - order_status: 'delivered' + order_status: 'delivered', }, { id: '4dc2c379-c7aa-4356-b609-0ca5777b7b8e', @@ -104,10 +104,10 @@ export class OrdersTable { items: [ { product_id: 36, - count: 1 - } + count: 1, + }, ], - order_status: 'on the way' + order_status: 'on the way', }, { id: '3eaf04e5-855c-4a57-b781-3edff99ddae5', @@ -116,10 +116,10 @@ export class OrdersTable { items: [ { product_id: 67, - count: 1 - } + count: 1, + }, ], - order_status: 'on the way' + order_status: 'on the way', }, { id: '4cca88ef-1a39-48cf-a6ed-290e7e34f756', @@ -128,10 +128,10 @@ export class OrdersTable { items: [ { product_id: 9, - count: 1 - } + count: 1, + }, ], - order_status: 'sent' + order_status: 'sent', }, { id: '3cd8e2b8-83ee-4c0d-a4c3-fed313fc836a', @@ -140,10 +140,10 @@ export class OrdersTable { items: [ { product_id: 98, - count: 1 - } + count: 1, + }, ], - order_status: 'on the way' + order_status: 'on the way', }, { id: 'da2f7ea8-82aa-474a-a97f-3d75d56d734f', @@ -152,10 +152,10 @@ export class OrdersTable { items: [ { product_id: 3, - count: 1 - } + count: 1, + }, ], - order_status: 'sent' + order_status: 'sent', }, { id: 'e674592d-ea7f-40d4-aa2c-ecac4039c81b', @@ -164,10 +164,10 @@ export class OrdersTable { items: [ { product_id: 71, - count: 1 - } + count: 1, + }, ], - order_status: 'delivered' - } + order_status: 'delivered', + }, ]; } diff --git a/src/app/core/e-commerce/_server/remarks.table.ts b/src/app/core/e-commerce/_server/remarks.table.ts index f43e2e9..b4a46f6 100644 --- a/src/app/core/e-commerce/_server/remarks.table.ts +++ b/src/app/core/e-commerce/_server/remarks.table.ts @@ -1,1004 +1,1120 @@ // Sub category for cars export class RemarksTable { - public static remarks: any = [{ - 'id': 1, - 'carId': 1, - 'text': 'enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin', - '_userId': 2, - '_createdDate': '02/20/2011', - '_updatedDate': '06/25/2013', - 'type': 0, - '_isEditMode': false, - 'dueDate': '11/18/2018' - }, { - 'id': 2, - 'carId': 1, - 'text': 'in', - '_userId': 1, - '_createdDate': '02/05/2014', - '_updatedDate': '09/25/2017', - 'type': 0, - '_isEditMode': false, - 'dueDate': '10/26/2019' - }, { - 'id': 3, - 'carId': 1, - 'text': 'quis tortor id nulla ultrices aliquet maecenas leo', - '_userId': 2, - '_createdDate': '04/10/2017', - '_updatedDate': '06/12/2012', - 'type': 2, - '_isEditMode': false, - 'dueDate': '05/10/2020' - }, { - 'id': 4, - 'carId': 2, - 'text': 'curabitur gravida nisi at nibh in hac habitasse', - '_userId': 1, - '_createdDate': '03/02/2015', - '_updatedDate': '03/30/2014', - 'type': 1, - '_isEditMode': false, - 'dueDate': '12/13/2018' - }, { - 'id': 5, - 'carId': 2, - 'text': 'orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis', - '_userId': 2, - '_createdDate': '02/14/2015', - '_updatedDate': '07/11/2013', - 'type': 0, - '_isEditMode': false, - 'dueDate': '10/24/2019' - }, { - 'id': 6, - 'carId': 2, - 'text': 'integer ac', - '_userId': 1, - '_createdDate': '05/28/2015', - '_updatedDate': '07/29/2016', - 'type': 0, - '_isEditMode': false, - 'dueDate': '01/22/2019' - }, { - 'id': 7, - 'carId': 3, - 'text': 'lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede', - '_userId': 2, - '_createdDate': '03/08/2013', - '_updatedDate': '09/24/2016', - 'type': 1, - '_isEditMode': false, - 'dueDate': '03/31/2020' - }, { - 'id': 8, - 'carId': 3, - 'text': 'morbi odio odio elementum eu interdum eu tincidunt in leo', - '_userId': 2, - '_createdDate': '07/09/2010', - '_updatedDate': '01/25/2015', - 'type': 1, - '_isEditMode': false, - 'dueDate': '02/20/2019' - }, { - 'id': 9, - 'carId': 3, - 'text': 'orci', - '_userId': 1, - '_createdDate': '02/02/2018', - '_updatedDate': '08/04/2015', - 'type': 0, - '_isEditMode': false, - 'dueDate': '04/03/2020' - }, { - 'id': 10, - 'carId': 4, - 'text': 'vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit', - '_userId': 1, - '_createdDate': '09/09/2013', - '_updatedDate': '03/06/2013', - 'type': 1, - '_isEditMode': false, - 'dueDate': '10/28/2018' - }, { - 'id': 11, - 'carId': 4, - 'text': 'ligula sit amet eleifend pede libero quis orci', - '_userId': 2, - '_createdDate': '08/17/2010', - '_updatedDate': '03/05/2016', - 'type': 2, - '_isEditMode': false, - 'dueDate': '06/22/2019' - }, { - 'id': 12, - 'carId': 4, - 'text': 'eget eleifend luctus ultricies eu nibh quisque id justo sit amet', - '_userId': 2, - '_createdDate': '09/17/2014', - '_updatedDate': '04/18/2011', - 'type': 1, - '_isEditMode': false, - 'dueDate': '01/01/2020' - }, { - 'id': 13, - 'carId': 5, - 'text': '', - '_userId': 1, - '_createdDate': '03/25/2013', - '_updatedDate': '11/13/2013', - 'type': 2, - '_isEditMode': false, - 'dueDate': '05/25/2019' - }, { - 'id': 14, - 'carId': 5, - 'text': 'justo lacinia eget tincidunt eget tempus vel pede morbi porttitor', - '_userId': 2, - '_createdDate': '03/22/2015', - '_updatedDate': '04/22/2015', - 'type': 1, - '_isEditMode': false, - 'dueDate': '02/07/2020' - }, { - 'id': 15, - 'carId': 5, - 'text': 'quam pede', - '_userId': 1, - '_createdDate': '03/18/2018', - '_updatedDate': '06/01/2012', - 'type': 2, - '_isEditMode': false, - 'dueDate': '02/09/2020' - }, { - 'id': 16, - 'carId': 6, - 'text': 'bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce', - '_userId': 2, - '_createdDate': '01/09/2013', - '_updatedDate': '02/10/2017', - 'type': 1, - '_isEditMode': false, - 'dueDate': '09/21/2019' - }, { - 'id': 17, - 'carId': 6, - 'text': 'id consequat in consequat ut nulla sed accumsan felis ut at dolor', - '_userId': 2, - '_createdDate': '07/27/2012', - '_updatedDate': '04/13/2015', - 'type': 1, - '_isEditMode': false, - 'dueDate': '08/01/2019' - }, { - 'id': 18, - 'carId': 6, - 'text': 'eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient', - '_userId': 1, - '_createdDate': '08/12/2011', - '_updatedDate': '04/08/2018', - 'type': 0, - '_isEditMode': false, - 'dueDate': '03/28/2020' - }, { - 'id': 19, - 'carId': 7, - 'text': 'nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget', - '_userId': 1, - '_createdDate': '03/03/2013', - '_updatedDate': '09/18/2017', - 'type': 0, - '_isEditMode': false, - 'dueDate': '08/08/2019' - }, { - 'id': 20, - 'carId': 7, - 'text': '', - '_userId': 1, - '_createdDate': '05/06/2015', - '_updatedDate': '02/20/2016', - 'type': 2, - '_isEditMode': false, - 'dueDate': '02/11/2019' - }, { - 'id': 21, - 'carId': 7, - 'text': 'sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis', - '_userId': 2, - '_createdDate': '08/05/2014', - '_updatedDate': '03/13/2018', - 'type': 0, - '_isEditMode': false, - 'dueDate': '02/03/2020' - }, { - 'id': 22, - 'carId': 8, - 'text': 'dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo', - '_userId': 2, - '_createdDate': '04/25/2011', - '_updatedDate': '03/09/2013', - 'type': 0, - '_isEditMode': false, - 'dueDate': '12/06/2018' - }, { - 'id': 23, - 'carId': 8, - 'text': 'mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh', - '_userId': 1, - '_createdDate': '07/03/2014', - '_updatedDate': '08/23/2013', - 'type': 2, - '_isEditMode': false, - 'dueDate': '05/18/2019' - }, { - 'id': 24, - 'carId': 8, - 'text': 'ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin', - '_userId': 2, - '_createdDate': '05/21/2013', - '_updatedDate': '10/01/2016', - 'type': 0, - '_isEditMode': false, - 'dueDate': '04/18/2019' - }, { - 'id': 25, - 'carId': 9, - 'text': 'orci luctus et ultrices', - '_userId': 2, - '_createdDate': '05/29/2014', - '_updatedDate': '02/03/2016', - 'type': 1, - '_isEditMode': false, - 'dueDate': '06/23/2019' - }, { - 'id': 26, - 'carId': 9, - 'text': 'donec diam neque vestibulum eget vulputate ut', - '_userId': 1, - '_createdDate': '06/06/2012', - '_updatedDate': '02/01/2018', - 'type': 2, - '_isEditMode': false, - 'dueDate': '12/29/2018' - }, { - 'id': 27, - 'carId': 9, - 'text': 'sapien sapien non mi integer ac neque duis bibendum morbi non quam', - '_userId': 1, - '_createdDate': '05/12/2015', - '_updatedDate': '11/11/2011', - 'type': 2, - '_isEditMode': false, - 'dueDate': '04/26/2020' - }, { - 'id': 28, - 'carId': 10, - 'text': '', - '_userId': 1, - '_createdDate': '03/17/2013', - '_updatedDate': '08/13/2013', - 'type': 2, - '_isEditMode': false, - 'dueDate': '05/12/2019' - }, { - 'id': 29, - 'carId': 10, - 'text': 'aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed', - '_userId': 1, - '_createdDate': '07/03/2016', - '_updatedDate': '02/06/2011', - 'type': 2, - '_isEditMode': false, - 'dueDate': '02/24/2019' - }, { - 'id': 30, - 'carId': 10, - 'text': 'donec quis orci eget orci vehicula condimentum', - '_userId': 2, - '_createdDate': '01/27/2014', - '_updatedDate': '12/09/2016', - 'type': 1, - '_isEditMode': false, - 'dueDate': '02/27/2020' - }, { - 'id': 31, - 'carId': 11, - 'text': 'etiam faucibus cursus urna ut tellus nulla ut erat', - '_userId': 1, - '_createdDate': '07/08/2014', - '_updatedDate': '06/07/2014', - 'type': 1, - '_isEditMode': false, - 'dueDate': '05/26/2020' - }, { - 'id': 32, - 'carId': 11, - 'text': 'hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam varius', - '_userId': 1, - '_createdDate': '05/03/2016', - '_updatedDate': '07/20/2012', - 'type': 1, - '_isEditMode': false, - 'dueDate': '08/11/2019' - }, { - 'id': 33, - 'carId': 11, - 'text': 'vel enim sit amet', - '_userId': 1, - '_createdDate': '06/02/2017', - '_updatedDate': '05/03/2012', - 'type': 0, - '_isEditMode': false, - 'dueDate': '12/18/2019' - }, { - 'id': 34, - 'carId': 12, - 'text': 'est congue elementum in hac habitasse platea dictumst morbi vestibulum', - '_userId': 2, - '_createdDate': '03/28/2017', - '_updatedDate': '07/23/2010', - 'type': 1, - '_isEditMode': false, - 'dueDate': '02/16/2019' - }, { - 'id': 35, - 'carId': 12, - 'text': 'tempus vel pede morbi', - '_userId': 1, - '_createdDate': '10/29/2013', - '_updatedDate': '01/22/2016', - 'type': 0, - '_isEditMode': false, - 'dueDate': '12/30/2018' - }, { - 'id': 36, - 'carId': 12, - 'text': 'augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis', - '_userId': 2, - '_createdDate': '03/31/2011', - '_updatedDate': '08/20/2012', - 'type': 0, - '_isEditMode': false, - 'dueDate': '06/29/2019' - }, { - 'id': 37, - 'carId': 13, - 'text': 'faucibus', - '_userId': 2, - '_createdDate': '12/24/2016', - '_updatedDate': '03/01/2017', - 'type': 2, - '_isEditMode': false, - 'dueDate': '04/09/2020' - }, { - 'id': 38, - 'carId': 13, - 'text': 'vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus', - '_userId': 1, - '_createdDate': '08/02/2015', - '_updatedDate': '10/24/2011', - 'type': 1, - '_isEditMode': false, - 'dueDate': '03/03/2020' - }, { - 'id': 39, - 'carId': 13, - 'text': 'nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac', - '_userId': 1, - '_createdDate': '03/27/2011', - '_updatedDate': '11/25/2017', - 'type': 2, - '_isEditMode': false, - 'dueDate': '12/22/2019' - }, { - 'id': 40, - 'carId': 14, - 'text': 'vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum', - '_userId': 1, - '_createdDate': '02/03/2017', - '_updatedDate': '03/15/2014', - 'type': 0, - '_isEditMode': false, - 'dueDate': '02/06/2020' - }, { - 'id': 41, - 'carId': 14, - 'text': 'nec dui luctus rutrum nulla tellus in sagittis dui vel', - '_userId': 2, - '_createdDate': '08/12/2013', - '_updatedDate': '03/26/2013', - 'type': 0, - '_isEditMode': false, - 'dueDate': '09/22/2019' - }, { - 'id': 42, - 'carId': 14, - 'text': 'integer aliquet massa id lobortis convallis', - '_userId': 1, - '_createdDate': '09/09/2013', - '_updatedDate': '03/06/2018', - 'type': 1, - '_isEditMode': false, - 'dueDate': '01/19/2019' - }, { - 'id': 43, - 'carId': 15, - 'text': 'proin leo odio porttitor id consequat in consequat', - '_userId': 2, - '_createdDate': '04/25/2015', - '_updatedDate': '09/29/2015', - 'type': 0, - '_isEditMode': false, - 'dueDate': '11/02/2019' - }, { - 'id': 44, - 'carId': 15, - 'text': 'mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor', - '_userId': 1, - '_createdDate': '11/28/2013', - '_updatedDate': '10/12/2012', - 'type': 2, - '_isEditMode': false, - 'dueDate': '02/28/2019' - }, { - 'id': 45, - 'carId': 15, - 'text': 'felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat ut', - '_userId': 1, - '_createdDate': '12/24/2016', - '_updatedDate': '03/18/2016', - 'type': 1, - '_isEditMode': false, - 'dueDate': '11/13/2019' - }, { - 'id': 46, - 'carId': 16, - 'text': 'id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero', - '_userId': 2, - '_createdDate': '09/16/2015', - '_updatedDate': '09/20/2011', - 'type': 1, - '_isEditMode': false, - 'dueDate': '11/28/2019' - }, { - 'id': 47, - 'carId': 16, - 'text': 'semper rutrum nulla nunc purus phasellus', - '_userId': 1, - '_createdDate': '04/09/2017', - '_updatedDate': '08/19/2012', - 'type': 0, - '_isEditMode': false, - 'dueDate': '11/05/2019' - }, { - 'id': 48, - 'carId': 16, - 'text': 'curabitur at ipsum ac tellus semper', - '_userId': 2, - '_createdDate': '10/09/2010', - '_updatedDate': '11/20/2014', - 'type': 2, - '_isEditMode': false, - 'dueDate': '11/27/2018' - }, { - 'id': 49, - 'carId': 17, - 'text': 'tellus nisi eu orci mauris lacinia sapien', - '_userId': 1, - '_createdDate': '11/18/2012', - '_updatedDate': '10/24/2017', - 'type': 1, - '_isEditMode': false, - 'dueDate': '04/10/2019' - }, { - 'id': 50, - 'carId': 17, - 'text': 'quisque id justo sit amet sapien dignissim vestibulum vestibulum', - '_userId': 1, - '_createdDate': '09/21/2015', - '_updatedDate': '11/27/2016', - 'type': 2, - '_isEditMode': false, - 'dueDate': '12/17/2018' - }, { - 'id': 51, - 'carId': 17, - 'text': 'diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed', - '_userId': 1, - '_createdDate': '08/13/2012', - '_updatedDate': '06/21/2016', - 'type': 1, - '_isEditMode': false, - 'dueDate': '06/11/2019' - }, { - 'id': 52, - 'carId': 18, - 'text': 'eget nunc donec', - '_userId': 1, - '_createdDate': '03/30/2012', - '_updatedDate': '08/05/2012', - 'type': 1, - '_isEditMode': false, - 'dueDate': '11/15/2018' - }, { - 'id': 53, - 'carId': 18, - 'text': 'nulla ac enim in tempor', - '_userId': 1, - '_createdDate': '04/30/2012', - '_updatedDate': '11/12/2013', - 'type': 2, - '_isEditMode': false, - 'dueDate': '01/16/2020' - }, { - 'id': 54, - 'carId': 18, - 'text': 'in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id', - '_userId': 2, - '_createdDate': '08/29/2012', - '_updatedDate': '12/10/2012', - 'type': 0, - '_isEditMode': false, - 'dueDate': '09/25/2019' - }, { - 'id': 55, - 'carId': 19, - 'text': 'justo in', - '_userId': 2, - '_createdDate': '11/27/2017', - '_updatedDate': '10/03/2010', - 'type': 0, - '_isEditMode': false, - 'dueDate': '10/04/2019' - }, { - 'id': 56, - 'carId': 19, - 'text': 'duis', - '_userId': 2, - '_createdDate': '07/09/2016', - '_updatedDate': '02/13/2013', - 'type': 2, - '_isEditMode': false, - 'dueDate': '05/07/2020' - }, { - 'id': 57, - 'carId': 19, - 'text': 'luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida nisi at nibh in hac habitasse platea', - '_userId': 1, - '_createdDate': '01/10/2014', - '_updatedDate': '01/07/2014', - 'type': 0, - '_isEditMode': false, - 'dueDate': '04/01/2020' - }, { - 'id': 58, - 'carId': 20, - 'text': 'non sodales sed tincidunt', - '_userId': 1, - '_createdDate': '02/15/2016', - '_updatedDate': '12/12/2013', - 'type': 1, - '_isEditMode': false, - 'dueDate': '08/26/2019' - }, { - 'id': 59, - 'carId': 20, - 'text': 'dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum', - '_userId': 2, - '_createdDate': '01/08/2018', - '_updatedDate': '06/20/2011', - 'type': 2, - '_isEditMode': false, - 'dueDate': '10/27/2019' - }, { - 'id': 60, - 'carId': 20, - 'text': 'adipiscing molestie hendrerit at vulputate', - '_userId': 1, - '_createdDate': '01/06/2013', - '_updatedDate': '09/08/2017', - 'type': 2, - '_isEditMode': false, - 'dueDate': '05/03/2020' - }, { - 'id': 61, - 'carId': 21, - 'text': 'sed tristique in tempus sit amet sem fusce consequat nulla nisl', - '_userId': 1, - '_createdDate': '01/05/2012', - '_updatedDate': '06/05/2014', - 'type': 1, - '_isEditMode': false, - 'dueDate': '04/06/2019' - }, { - 'id': 62, - 'carId': 21, - 'text': 'sem praesent id massa id nisl venenatis lacinia aenean sit', - '_userId': 2, - '_createdDate': '12/06/2014', - '_updatedDate': '12/23/2013', - 'type': 2, - '_isEditMode': false, - 'dueDate': '02/05/2019' - }, { - 'id': 63, - 'carId': 21, - 'text': 'curabitur at ipsum ac tellus semper interdum', - '_userId': 2, - '_createdDate': '11/23/2014', - '_updatedDate': '04/10/2013', - 'type': 0, - '_isEditMode': false, - 'dueDate': '04/05/2020' - }, { - 'id': 64, - 'carId': 22, - 'text': 'donec ut mauris eget massa tempor convallis', - '_userId': 2, - '_createdDate': '10/16/2011', - '_updatedDate': '11/30/2012', - 'type': 2, - '_isEditMode': false, - 'dueDate': '11/23/2019' - }, { - 'id': 65, - 'carId': 22, - 'text': 'in faucibus orci luctus et ultrices posuere', - '_userId': 1, - '_createdDate': '11/12/2011', - '_updatedDate': '12/16/2016', - 'type': 2, - '_isEditMode': false, - 'dueDate': '04/23/2019' - }, { - 'id': 66, - 'carId': 22, - 'text': 'ligula', - '_userId': 2, - '_createdDate': '12/30/2014', - '_updatedDate': '12/12/2011', - 'type': 1, - '_isEditMode': false, - 'dueDate': '03/28/2019' - }, { - 'id': 67, - 'carId': 23, - 'text': 'congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus', - '_userId': 1, - '_createdDate': '05/09/2014', - '_updatedDate': '05/28/2013', - 'type': 1, - '_isEditMode': false, - 'dueDate': '11/25/2018' - }, { - 'id': 68, - 'carId': 23, - 'text': 'mollis molestie lorem quisque ut erat curabitur gravida nisi', - '_userId': 2, - '_createdDate': '12/07/2011', - '_updatedDate': '08/07/2011', - 'type': 1, - '_isEditMode': false, - 'dueDate': '06/22/2019' - }, { - 'id': 69, - 'carId': 23, - 'text': 'maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque', - '_userId': 1, - '_createdDate': '11/15/2012', - '_updatedDate': '09/02/2015', - 'type': 1, - '_isEditMode': false, - 'dueDate': '10/30/2018' - }, { - 'id': 70, - 'carId': 24, - 'text': 'libero convallis', - '_userId': 1, - '_createdDate': '12/04/2010', - '_updatedDate': '09/25/2011', - 'type': 1, - '_isEditMode': false, - 'dueDate': '11/25/2018' - }, { - 'id': 71, - 'carId': 24, - 'text': 'vitae nisi nam ultrices libero', - '_userId': 1, - '_createdDate': '02/24/2015', - '_updatedDate': '03/10/2011', - 'type': 2, - '_isEditMode': false, - 'dueDate': '04/17/2020' - }, { - 'id': 72, - 'carId': 24, - 'text': 'augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc', - '_userId': 1, - '_createdDate': '02/21/2012', - '_updatedDate': '12/09/2011', - 'type': 2, - '_isEditMode': false, - 'dueDate': '07/22/2019' - }, { - 'id': 73, - 'carId': 25, - 'text': 'id turpis integer aliquet massa id lobortis convallis tortor', - '_userId': 1, - '_createdDate': '01/20/2014', - '_updatedDate': '09/03/2014', - 'type': 2, - '_isEditMode': false, - 'dueDate': '01/10/2020' - }, { - 'id': 74, - 'carId': 25, - 'text': 'felis fusce posuere felis sed lacus morbi sem mauris laoreet', - '_userId': 1, - '_createdDate': '10/24/2014', - '_updatedDate': '02/19/2018', - 'type': 1, - '_isEditMode': false, - 'dueDate': '12/19/2019' - }, { - 'id': 75, - 'carId': 25, - 'text': 'neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim', - '_userId': 2, - '_createdDate': '02/19/2016', - '_updatedDate': '06/26/2013', - 'type': 1, - '_isEditMode': false, - 'dueDate': '02/23/2020' - }, { - 'id': 76, - 'carId': 26, - 'text': 'nulla nunc purus phasellus in felis donec semper sapien a libero nam', - '_userId': 1, - '_createdDate': '07/29/2011', - '_updatedDate': '12/09/2011', - 'type': 1, - '_isEditMode': false, - 'dueDate': '02/07/2020' - }, { - 'id': 77, - 'carId': 26, - 'text': 'elit sodales scelerisque', - '_userId': 2, - '_createdDate': '10/02/2012', - '_updatedDate': '05/05/2012', - 'type': 0, - '_isEditMode': false, - 'dueDate': '10/05/2019' - }, { - 'id': 78, - 'carId': 26, - 'text': 'sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel', - '_userId': 1, - '_createdDate': '01/27/2015', - '_updatedDate': '07/14/2013', - 'type': 1, - '_isEditMode': false, - 'dueDate': '01/19/2019' - }, { - 'id': 79, - 'carId': 27, - 'text': 'augue vestibulum', - '_userId': 1, - '_createdDate': '09/19/2011', - '_updatedDate': '09/11/2014', - 'type': 0, - '_isEditMode': false, - 'dueDate': '03/08/2020' - }, { - 'id': 80, - 'carId': 27, - 'text': 'turpis nec euismod scelerisque', - '_userId': 2, - '_createdDate': '01/17/2014', - '_updatedDate': '03/04/2018', - 'type': 1, - '_isEditMode': false, - 'dueDate': '11/08/2019' - }, { - 'id': 81, - 'carId': 27, - 'text': 'quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus', - '_userId': 1, - '_createdDate': '08/16/2015', - '_updatedDate': '02/21/2011', - 'type': 1, - '_isEditMode': false, - 'dueDate': '02/15/2019' - }, { - 'id': 82, - 'carId': 28, - 'text': 'ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend', - '_userId': 1, - '_createdDate': '03/07/2014', - '_updatedDate': '08/21/2012', - 'type': 2, - '_isEditMode': false, - 'dueDate': '05/14/2019' - }, { - 'id': 83, - 'carId': 28, - 'text': 'curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue', - '_userId': 2, - '_createdDate': '09/20/2017', - '_updatedDate': '08/21/2014', - 'type': 0, - '_isEditMode': false, - 'dueDate': '07/07/2019' - }, { - 'id': 84, - 'carId': 28, - 'text': 'dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi', - '_userId': 2, - '_createdDate': '04/08/2017', - '_updatedDate': '08/17/2016', - 'type': 1, - '_isEditMode': false, - 'dueDate': '03/19/2019' - }, { - 'id': 85, - 'carId': 29, - 'text': 'interdum in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus', - '_userId': 2, - '_createdDate': '04/30/2013', - '_updatedDate': '08/22/2013', - 'type': 2, - '_isEditMode': false, - 'dueDate': '03/23/2020' - }, { - 'id': 86, - 'carId': 29, - 'text': 'faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a', - '_userId': 2, - '_createdDate': '04/12/2014', - '_updatedDate': '03/06/2013', - 'type': 1, - '_isEditMode': false, - 'dueDate': '02/17/2019' - }, { - 'id': 87, - 'carId': 29, - 'text': 'faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum', - '_userId': 2, - '_createdDate': '11/21/2016', - '_updatedDate': '08/21/2010', - 'type': 1, - '_isEditMode': false, - 'dueDate': '11/06/2019' - }, { - 'id': 88, - 'carId': 30, - 'text': 'nibh in hac habitasse platea dictumst', - '_userId': 1, - '_createdDate': '10/30/2011', - '_updatedDate': '03/07/2012', - 'type': 2, - '_isEditMode': false, - 'dueDate': '12/02/2019' - }, { - 'id': 89, - 'carId': 30, - 'text': 'fusce lacus purus', - '_userId': 2, - '_createdDate': '09/02/2014', - '_updatedDate': '05/22/2015', - 'type': 2, - '_isEditMode': false, - 'dueDate': '10/13/2019' - }, { - 'id': 90, - 'carId': 30, - 'text': 'ultrices enim lorem ipsum dolor', - '_userId': 1, - '_createdDate': '12/21/2012', - '_updatedDate': '02/28/2018', - 'type': 1, - '_isEditMode': false, - 'dueDate': '12/08/2019' - }, { - 'id': 91, - 'carId': 31, - 'text': 'suspendisse accumsan tortor quis turpis', - '_userId': 1, - '_createdDate': '01/22/2014', - '_updatedDate': '01/26/2015', - 'type': 2, - '_isEditMode': false, - 'dueDate': '03/05/2019' - }, { - 'id': 92, - 'carId': 31, - 'text': 'sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu massa', - '_userId': 1, - '_createdDate': '12/20/2013', - '_updatedDate': '08/13/2016', - 'type': 0, - '_isEditMode': false, - 'dueDate': '09/03/2019' - }, { - 'id': 93, - 'carId': 31, - 'text': 'quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis', - '_userId': 1, - '_createdDate': '07/08/2016', - '_updatedDate': '02/26/2013', - 'type': 0, - '_isEditMode': false, - 'dueDate': '01/22/2019' - }, { - 'id': 94, - 'carId': 32, - 'text': 'vitae nisi nam ultrices', - '_userId': 1, - '_createdDate': '02/21/2015', - '_updatedDate': '03/04/2017', - 'type': 1, - '_isEditMode': false, - 'dueDate': '01/05/2020' - }, { - 'id': 95, - 'carId': 32, - 'text': 'in tempus sit amet sem fusce consequat', - '_userId': 2, - '_createdDate': '09/15/2014', - '_updatedDate': '05/21/2017', - 'type': 1, - '_isEditMode': false, - 'dueDate': '03/31/2019' - }, { - 'id': 96, - 'carId': 32, - 'text': 'eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper', - '_userId': 2, - '_createdDate': '06/04/2014', - '_updatedDate': '08/12/2010', - 'type': 0, - '_isEditMode': false, - 'dueDate': '10/10/2019' - }, { - 'id': 97, - 'carId': 33, - 'text': 'eu pede', - '_userId': 2, - '_createdDate': '03/21/2011', - '_updatedDate': '07/18/2012', - 'type': 2, - '_isEditMode': false, - 'dueDate': '03/29/2020' - }, { - 'id': 98, - 'carId': 33, - 'text': 'tempus vivamus in felis eu sapien cursus vestibulum proin', - '_userId': 2, - '_createdDate': '09/17/2017', - '_updatedDate': '11/29/2013', - 'type': 1, - '_isEditMode': false, - 'dueDate': '04/01/2019' - }, { - 'id': 99, - 'carId': 33, - 'text': 'velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum', - '_userId': 1, - '_createdDate': '03/27/2013', - '_updatedDate': '09/26/2014', - 'type': 1, - '_isEditMode': false, - 'dueDate': '09/14/2019' - }, { - 'id': 100, - 'carId': 34, - 'text': 'luctus et ultrices posuere cubilia curae nulla dapibus dolor vel', - '_userId': 2, - '_createdDate': '03/07/2017', - '_updatedDate': '08/14/2012', - 'type': 0, - '_isEditMode': false, - 'dueDate': '08/11/2019', - }]; + public static remarks: any = [ + { + id: 1, + carId: 1, + text: 'enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin', + _userId: 2, + _createdDate: '02/20/2011', + _updatedDate: '06/25/2013', + type: 0, + _isEditMode: false, + dueDate: '11/18/2018', + }, + { + id: 2, + carId: 1, + text: 'in', + _userId: 1, + _createdDate: '02/05/2014', + _updatedDate: '09/25/2017', + type: 0, + _isEditMode: false, + dueDate: '10/26/2019', + }, + { + id: 3, + carId: 1, + text: 'quis tortor id nulla ultrices aliquet maecenas leo', + _userId: 2, + _createdDate: '04/10/2017', + _updatedDate: '06/12/2012', + type: 2, + _isEditMode: false, + dueDate: '05/10/2020', + }, + { + id: 4, + carId: 2, + text: 'curabitur gravida nisi at nibh in hac habitasse', + _userId: 1, + _createdDate: '03/02/2015', + _updatedDate: '03/30/2014', + type: 1, + _isEditMode: false, + dueDate: '12/13/2018', + }, + { + id: 5, + carId: 2, + text: 'orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis', + _userId: 2, + _createdDate: '02/14/2015', + _updatedDate: '07/11/2013', + type: 0, + _isEditMode: false, + dueDate: '10/24/2019', + }, + { + id: 6, + carId: 2, + text: 'integer ac', + _userId: 1, + _createdDate: '05/28/2015', + _updatedDate: '07/29/2016', + type: 0, + _isEditMode: false, + dueDate: '01/22/2019', + }, + { + id: 7, + carId: 3, + text: 'lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede', + _userId: 2, + _createdDate: '03/08/2013', + _updatedDate: '09/24/2016', + type: 1, + _isEditMode: false, + dueDate: '03/31/2020', + }, + { + id: 8, + carId: 3, + text: 'morbi odio odio elementum eu interdum eu tincidunt in leo', + _userId: 2, + _createdDate: '07/09/2010', + _updatedDate: '01/25/2015', + type: 1, + _isEditMode: false, + dueDate: '02/20/2019', + }, + { + id: 9, + carId: 3, + text: 'orci', + _userId: 1, + _createdDate: '02/02/2018', + _updatedDate: '08/04/2015', + type: 0, + _isEditMode: false, + dueDate: '04/03/2020', + }, + { + id: 10, + carId: 4, + text: + 'vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit', + _userId: 1, + _createdDate: '09/09/2013', + _updatedDate: '03/06/2013', + type: 1, + _isEditMode: false, + dueDate: '10/28/2018', + }, + { + id: 11, + carId: 4, + text: 'ligula sit amet eleifend pede libero quis orci', + _userId: 2, + _createdDate: '08/17/2010', + _updatedDate: '03/05/2016', + type: 2, + _isEditMode: false, + dueDate: '06/22/2019', + }, + { + id: 12, + carId: 4, + text: 'eget eleifend luctus ultricies eu nibh quisque id justo sit amet', + _userId: 2, + _createdDate: '09/17/2014', + _updatedDate: '04/18/2011', + type: 1, + _isEditMode: false, + dueDate: '01/01/2020', + }, + { + id: 13, + carId: 5, + text: '', + _userId: 1, + _createdDate: '03/25/2013', + _updatedDate: '11/13/2013', + type: 2, + _isEditMode: false, + dueDate: '05/25/2019', + }, + { + id: 14, + carId: 5, + text: 'justo lacinia eget tincidunt eget tempus vel pede morbi porttitor', + _userId: 2, + _createdDate: '03/22/2015', + _updatedDate: '04/22/2015', + type: 1, + _isEditMode: false, + dueDate: '02/07/2020', + }, + { + id: 15, + carId: 5, + text: 'quam pede', + _userId: 1, + _createdDate: '03/18/2018', + _updatedDate: '06/01/2012', + type: 2, + _isEditMode: false, + dueDate: '02/09/2020', + }, + { + id: 16, + carId: 6, + text: 'bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce', + _userId: 2, + _createdDate: '01/09/2013', + _updatedDate: '02/10/2017', + type: 1, + _isEditMode: false, + dueDate: '09/21/2019', + }, + { + id: 17, + carId: 6, + text: 'id consequat in consequat ut nulla sed accumsan felis ut at dolor', + _userId: 2, + _createdDate: '07/27/2012', + _updatedDate: '04/13/2015', + type: 1, + _isEditMode: false, + dueDate: '08/01/2019', + }, + { + id: 18, + carId: 6, + text: 'eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient', + _userId: 1, + _createdDate: '08/12/2011', + _updatedDate: '04/08/2018', + type: 0, + _isEditMode: false, + dueDate: '03/28/2020', + }, + { + id: 19, + carId: 7, + text: 'nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget', + _userId: 1, + _createdDate: '03/03/2013', + _updatedDate: '09/18/2017', + type: 0, + _isEditMode: false, + dueDate: '08/08/2019', + }, + { + id: 20, + carId: 7, + text: '', + _userId: 1, + _createdDate: '05/06/2015', + _updatedDate: '02/20/2016', + type: 2, + _isEditMode: false, + dueDate: '02/11/2019', + }, + { + id: 21, + carId: 7, + text: 'sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis', + _userId: 2, + _createdDate: '08/05/2014', + _updatedDate: '03/13/2018', + type: 0, + _isEditMode: false, + dueDate: '02/03/2020', + }, + { + id: 22, + carId: 8, + text: 'dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo', + _userId: 2, + _createdDate: '04/25/2011', + _updatedDate: '03/09/2013', + type: 0, + _isEditMode: false, + dueDate: '12/06/2018', + }, + { + id: 23, + carId: 8, + text: + 'mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh', + _userId: 1, + _createdDate: '07/03/2014', + _updatedDate: '08/23/2013', + type: 2, + _isEditMode: false, + dueDate: '05/18/2019', + }, + { + id: 24, + carId: 8, + text: 'ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin', + _userId: 2, + _createdDate: '05/21/2013', + _updatedDate: '10/01/2016', + type: 0, + _isEditMode: false, + dueDate: '04/18/2019', + }, + { + id: 25, + carId: 9, + text: 'orci luctus et ultrices', + _userId: 2, + _createdDate: '05/29/2014', + _updatedDate: '02/03/2016', + type: 1, + _isEditMode: false, + dueDate: '06/23/2019', + }, + { + id: 26, + carId: 9, + text: 'donec diam neque vestibulum eget vulputate ut', + _userId: 1, + _createdDate: '06/06/2012', + _updatedDate: '02/01/2018', + type: 2, + _isEditMode: false, + dueDate: '12/29/2018', + }, + { + id: 27, + carId: 9, + text: 'sapien sapien non mi integer ac neque duis bibendum morbi non quam', + _userId: 1, + _createdDate: '05/12/2015', + _updatedDate: '11/11/2011', + type: 2, + _isEditMode: false, + dueDate: '04/26/2020', + }, + { + id: 28, + carId: 10, + text: '', + _userId: 1, + _createdDate: '03/17/2013', + _updatedDate: '08/13/2013', + type: 2, + _isEditMode: false, + dueDate: '05/12/2019', + }, + { + id: 29, + carId: 10, + text: + 'aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed', + _userId: 1, + _createdDate: '07/03/2016', + _updatedDate: '02/06/2011', + type: 2, + _isEditMode: false, + dueDate: '02/24/2019', + }, + { + id: 30, + carId: 10, + text: 'donec quis orci eget orci vehicula condimentum', + _userId: 2, + _createdDate: '01/27/2014', + _updatedDate: '12/09/2016', + type: 1, + _isEditMode: false, + dueDate: '02/27/2020', + }, + { + id: 31, + carId: 11, + text: 'etiam faucibus cursus urna ut tellus nulla ut erat', + _userId: 1, + _createdDate: '07/08/2014', + _updatedDate: '06/07/2014', + type: 1, + _isEditMode: false, + dueDate: '05/26/2020', + }, + { + id: 32, + carId: 11, + text: + 'hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam varius', + _userId: 1, + _createdDate: '05/03/2016', + _updatedDate: '07/20/2012', + type: 1, + _isEditMode: false, + dueDate: '08/11/2019', + }, + { + id: 33, + carId: 11, + text: 'vel enim sit amet', + _userId: 1, + _createdDate: '06/02/2017', + _updatedDate: '05/03/2012', + type: 0, + _isEditMode: false, + dueDate: '12/18/2019', + }, + { + id: 34, + carId: 12, + text: 'est congue elementum in hac habitasse platea dictumst morbi vestibulum', + _userId: 2, + _createdDate: '03/28/2017', + _updatedDate: '07/23/2010', + type: 1, + _isEditMode: false, + dueDate: '02/16/2019', + }, + { + id: 35, + carId: 12, + text: 'tempus vel pede morbi', + _userId: 1, + _createdDate: '10/29/2013', + _updatedDate: '01/22/2016', + type: 0, + _isEditMode: false, + dueDate: '12/30/2018', + }, + { + id: 36, + carId: 12, + text: 'augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis', + _userId: 2, + _createdDate: '03/31/2011', + _updatedDate: '08/20/2012', + type: 0, + _isEditMode: false, + dueDate: '06/29/2019', + }, + { + id: 37, + carId: 13, + text: 'faucibus', + _userId: 2, + _createdDate: '12/24/2016', + _updatedDate: '03/01/2017', + type: 2, + _isEditMode: false, + dueDate: '04/09/2020', + }, + { + id: 38, + carId: 13, + text: 'vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus', + _userId: 1, + _createdDate: '08/02/2015', + _updatedDate: '10/24/2011', + type: 1, + _isEditMode: false, + dueDate: '03/03/2020', + }, + { + id: 39, + carId: 13, + text: + 'nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac', + _userId: 1, + _createdDate: '03/27/2011', + _updatedDate: '11/25/2017', + type: 2, + _isEditMode: false, + dueDate: '12/22/2019', + }, + { + id: 40, + carId: 14, + text: 'vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum', + _userId: 1, + _createdDate: '02/03/2017', + _updatedDate: '03/15/2014', + type: 0, + _isEditMode: false, + dueDate: '02/06/2020', + }, + { + id: 41, + carId: 14, + text: 'nec dui luctus rutrum nulla tellus in sagittis dui vel', + _userId: 2, + _createdDate: '08/12/2013', + _updatedDate: '03/26/2013', + type: 0, + _isEditMode: false, + dueDate: '09/22/2019', + }, + { + id: 42, + carId: 14, + text: 'integer aliquet massa id lobortis convallis', + _userId: 1, + _createdDate: '09/09/2013', + _updatedDate: '03/06/2018', + type: 1, + _isEditMode: false, + dueDate: '01/19/2019', + }, + { + id: 43, + carId: 15, + text: 'proin leo odio porttitor id consequat in consequat', + _userId: 2, + _createdDate: '04/25/2015', + _updatedDate: '09/29/2015', + type: 0, + _isEditMode: false, + dueDate: '11/02/2019', + }, + { + id: 44, + carId: 15, + text: + 'mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor', + _userId: 1, + _createdDate: '11/28/2013', + _updatedDate: '10/12/2012', + type: 2, + _isEditMode: false, + dueDate: '02/28/2019', + }, + { + id: 45, + carId: 15, + text: 'felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat ut', + _userId: 1, + _createdDate: '12/24/2016', + _updatedDate: '03/18/2016', + type: 1, + _isEditMode: false, + dueDate: '11/13/2019', + }, + { + id: 46, + carId: 16, + text: + 'id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero', + _userId: 2, + _createdDate: '09/16/2015', + _updatedDate: '09/20/2011', + type: 1, + _isEditMode: false, + dueDate: '11/28/2019', + }, + { + id: 47, + carId: 16, + text: 'semper rutrum nulla nunc purus phasellus', + _userId: 1, + _createdDate: '04/09/2017', + _updatedDate: '08/19/2012', + type: 0, + _isEditMode: false, + dueDate: '11/05/2019', + }, + { + id: 48, + carId: 16, + text: 'curabitur at ipsum ac tellus semper', + _userId: 2, + _createdDate: '10/09/2010', + _updatedDate: '11/20/2014', + type: 2, + _isEditMode: false, + dueDate: '11/27/2018', + }, + { + id: 49, + carId: 17, + text: 'tellus nisi eu orci mauris lacinia sapien', + _userId: 1, + _createdDate: '11/18/2012', + _updatedDate: '10/24/2017', + type: 1, + _isEditMode: false, + dueDate: '04/10/2019', + }, + { + id: 50, + carId: 17, + text: 'quisque id justo sit amet sapien dignissim vestibulum vestibulum', + _userId: 1, + _createdDate: '09/21/2015', + _updatedDate: '11/27/2016', + type: 2, + _isEditMode: false, + dueDate: '12/17/2018', + }, + { + id: 51, + carId: 17, + text: 'diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed', + _userId: 1, + _createdDate: '08/13/2012', + _updatedDate: '06/21/2016', + type: 1, + _isEditMode: false, + dueDate: '06/11/2019', + }, + { + id: 52, + carId: 18, + text: 'eget nunc donec', + _userId: 1, + _createdDate: '03/30/2012', + _updatedDate: '08/05/2012', + type: 1, + _isEditMode: false, + dueDate: '11/15/2018', + }, + { + id: 53, + carId: 18, + text: 'nulla ac enim in tempor', + _userId: 1, + _createdDate: '04/30/2012', + _updatedDate: '11/12/2013', + type: 2, + _isEditMode: false, + dueDate: '01/16/2020', + }, + { + id: 54, + carId: 18, + text: 'in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id', + _userId: 2, + _createdDate: '08/29/2012', + _updatedDate: '12/10/2012', + type: 0, + _isEditMode: false, + dueDate: '09/25/2019', + }, + { + id: 55, + carId: 19, + text: 'justo in', + _userId: 2, + _createdDate: '11/27/2017', + _updatedDate: '10/03/2010', + type: 0, + _isEditMode: false, + dueDate: '10/04/2019', + }, + { + id: 56, + carId: 19, + text: 'duis', + _userId: 2, + _createdDate: '07/09/2016', + _updatedDate: '02/13/2013', + type: 2, + _isEditMode: false, + dueDate: '05/07/2020', + }, + { + id: 57, + carId: 19, + text: + 'luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida nisi at nibh in hac habitasse platea', + _userId: 1, + _createdDate: '01/10/2014', + _updatedDate: '01/07/2014', + type: 0, + _isEditMode: false, + dueDate: '04/01/2020', + }, + { + id: 58, + carId: 20, + text: 'non sodales sed tincidunt', + _userId: 1, + _createdDate: '02/15/2016', + _updatedDate: '12/12/2013', + type: 1, + _isEditMode: false, + dueDate: '08/26/2019', + }, + { + id: 59, + carId: 20, + text: + 'dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum', + _userId: 2, + _createdDate: '01/08/2018', + _updatedDate: '06/20/2011', + type: 2, + _isEditMode: false, + dueDate: '10/27/2019', + }, + { + id: 60, + carId: 20, + text: 'adipiscing molestie hendrerit at vulputate', + _userId: 1, + _createdDate: '01/06/2013', + _updatedDate: '09/08/2017', + type: 2, + _isEditMode: false, + dueDate: '05/03/2020', + }, + { + id: 61, + carId: 21, + text: 'sed tristique in tempus sit amet sem fusce consequat nulla nisl', + _userId: 1, + _createdDate: '01/05/2012', + _updatedDate: '06/05/2014', + type: 1, + _isEditMode: false, + dueDate: '04/06/2019', + }, + { + id: 62, + carId: 21, + text: 'sem praesent id massa id nisl venenatis lacinia aenean sit', + _userId: 2, + _createdDate: '12/06/2014', + _updatedDate: '12/23/2013', + type: 2, + _isEditMode: false, + dueDate: '02/05/2019', + }, + { + id: 63, + carId: 21, + text: 'curabitur at ipsum ac tellus semper interdum', + _userId: 2, + _createdDate: '11/23/2014', + _updatedDate: '04/10/2013', + type: 0, + _isEditMode: false, + dueDate: '04/05/2020', + }, + { + id: 64, + carId: 22, + text: 'donec ut mauris eget massa tempor convallis', + _userId: 2, + _createdDate: '10/16/2011', + _updatedDate: '11/30/2012', + type: 2, + _isEditMode: false, + dueDate: '11/23/2019', + }, + { + id: 65, + carId: 22, + text: 'in faucibus orci luctus et ultrices posuere', + _userId: 1, + _createdDate: '11/12/2011', + _updatedDate: '12/16/2016', + type: 2, + _isEditMode: false, + dueDate: '04/23/2019', + }, + { + id: 66, + carId: 22, + text: 'ligula', + _userId: 2, + _createdDate: '12/30/2014', + _updatedDate: '12/12/2011', + type: 1, + _isEditMode: false, + dueDate: '03/28/2019', + }, + { + id: 67, + carId: 23, + text: 'congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus', + _userId: 1, + _createdDate: '05/09/2014', + _updatedDate: '05/28/2013', + type: 1, + _isEditMode: false, + dueDate: '11/25/2018', + }, + { + id: 68, + carId: 23, + text: 'mollis molestie lorem quisque ut erat curabitur gravida nisi', + _userId: 2, + _createdDate: '12/07/2011', + _updatedDate: '08/07/2011', + type: 1, + _isEditMode: false, + dueDate: '06/22/2019', + }, + { + id: 69, + carId: 23, + text: + 'maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque', + _userId: 1, + _createdDate: '11/15/2012', + _updatedDate: '09/02/2015', + type: 1, + _isEditMode: false, + dueDate: '10/30/2018', + }, + { + id: 70, + carId: 24, + text: 'libero convallis', + _userId: 1, + _createdDate: '12/04/2010', + _updatedDate: '09/25/2011', + type: 1, + _isEditMode: false, + dueDate: '11/25/2018', + }, + { + id: 71, + carId: 24, + text: 'vitae nisi nam ultrices libero', + _userId: 1, + _createdDate: '02/24/2015', + _updatedDate: '03/10/2011', + type: 2, + _isEditMode: false, + dueDate: '04/17/2020', + }, + { + id: 72, + carId: 24, + text: 'augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc', + _userId: 1, + _createdDate: '02/21/2012', + _updatedDate: '12/09/2011', + type: 2, + _isEditMode: false, + dueDate: '07/22/2019', + }, + { + id: 73, + carId: 25, + text: 'id turpis integer aliquet massa id lobortis convallis tortor', + _userId: 1, + _createdDate: '01/20/2014', + _updatedDate: '09/03/2014', + type: 2, + _isEditMode: false, + dueDate: '01/10/2020', + }, + { + id: 74, + carId: 25, + text: 'felis fusce posuere felis sed lacus morbi sem mauris laoreet', + _userId: 1, + _createdDate: '10/24/2014', + _updatedDate: '02/19/2018', + type: 1, + _isEditMode: false, + dueDate: '12/19/2019', + }, + { + id: 75, + carId: 25, + text: 'neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim', + _userId: 2, + _createdDate: '02/19/2016', + _updatedDate: '06/26/2013', + type: 1, + _isEditMode: false, + dueDate: '02/23/2020', + }, + { + id: 76, + carId: 26, + text: 'nulla nunc purus phasellus in felis donec semper sapien a libero nam', + _userId: 1, + _createdDate: '07/29/2011', + _updatedDate: '12/09/2011', + type: 1, + _isEditMode: false, + dueDate: '02/07/2020', + }, + { + id: 77, + carId: 26, + text: 'elit sodales scelerisque', + _userId: 2, + _createdDate: '10/02/2012', + _updatedDate: '05/05/2012', + type: 0, + _isEditMode: false, + dueDate: '10/05/2019', + }, + { + id: 78, + carId: 26, + text: 'sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel', + _userId: 1, + _createdDate: '01/27/2015', + _updatedDate: '07/14/2013', + type: 1, + _isEditMode: false, + dueDate: '01/19/2019', + }, + { + id: 79, + carId: 27, + text: 'augue vestibulum', + _userId: 1, + _createdDate: '09/19/2011', + _updatedDate: '09/11/2014', + type: 0, + _isEditMode: false, + dueDate: '03/08/2020', + }, + { + id: 80, + carId: 27, + text: 'turpis nec euismod scelerisque', + _userId: 2, + _createdDate: '01/17/2014', + _updatedDate: '03/04/2018', + type: 1, + _isEditMode: false, + dueDate: '11/08/2019', + }, + { + id: 81, + carId: 27, + text: + 'quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus', + _userId: 1, + _createdDate: '08/16/2015', + _updatedDate: '02/21/2011', + type: 1, + _isEditMode: false, + dueDate: '02/15/2019', + }, + { + id: 82, + carId: 28, + text: + 'ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend', + _userId: 1, + _createdDate: '03/07/2014', + _updatedDate: '08/21/2012', + type: 2, + _isEditMode: false, + dueDate: '05/14/2019', + }, + { + id: 83, + carId: 28, + text: 'curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue', + _userId: 2, + _createdDate: '09/20/2017', + _updatedDate: '08/21/2014', + type: 0, + _isEditMode: false, + dueDate: '07/07/2019', + }, + { + id: 84, + carId: 28, + text: 'dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi', + _userId: 2, + _createdDate: '04/08/2017', + _updatedDate: '08/17/2016', + type: 1, + _isEditMode: false, + dueDate: '03/19/2019', + }, + { + id: 85, + carId: 29, + text: + 'interdum in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus', + _userId: 2, + _createdDate: '04/30/2013', + _updatedDate: '08/22/2013', + type: 2, + _isEditMode: false, + dueDate: '03/23/2020', + }, + { + id: 86, + carId: 29, + text: + 'faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a', + _userId: 2, + _createdDate: '04/12/2014', + _updatedDate: '03/06/2013', + type: 1, + _isEditMode: false, + dueDate: '02/17/2019', + }, + { + id: 87, + carId: 29, + text: 'faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum', + _userId: 2, + _createdDate: '11/21/2016', + _updatedDate: '08/21/2010', + type: 1, + _isEditMode: false, + dueDate: '11/06/2019', + }, + { + id: 88, + carId: 30, + text: 'nibh in hac habitasse platea dictumst', + _userId: 1, + _createdDate: '10/30/2011', + _updatedDate: '03/07/2012', + type: 2, + _isEditMode: false, + dueDate: '12/02/2019', + }, + { + id: 89, + carId: 30, + text: 'fusce lacus purus', + _userId: 2, + _createdDate: '09/02/2014', + _updatedDate: '05/22/2015', + type: 2, + _isEditMode: false, + dueDate: '10/13/2019', + }, + { + id: 90, + carId: 30, + text: 'ultrices enim lorem ipsum dolor', + _userId: 1, + _createdDate: '12/21/2012', + _updatedDate: '02/28/2018', + type: 1, + _isEditMode: false, + dueDate: '12/08/2019', + }, + { + id: 91, + carId: 31, + text: 'suspendisse accumsan tortor quis turpis', + _userId: 1, + _createdDate: '01/22/2014', + _updatedDate: '01/26/2015', + type: 2, + _isEditMode: false, + dueDate: '03/05/2019', + }, + { + id: 92, + carId: 31, + text: 'sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu massa', + _userId: 1, + _createdDate: '12/20/2013', + _updatedDate: '08/13/2016', + type: 0, + _isEditMode: false, + dueDate: '09/03/2019', + }, + { + id: 93, + carId: 31, + text: 'quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis', + _userId: 1, + _createdDate: '07/08/2016', + _updatedDate: '02/26/2013', + type: 0, + _isEditMode: false, + dueDate: '01/22/2019', + }, + { + id: 94, + carId: 32, + text: 'vitae nisi nam ultrices', + _userId: 1, + _createdDate: '02/21/2015', + _updatedDate: '03/04/2017', + type: 1, + _isEditMode: false, + dueDate: '01/05/2020', + }, + { + id: 95, + carId: 32, + text: 'in tempus sit amet sem fusce consequat', + _userId: 2, + _createdDate: '09/15/2014', + _updatedDate: '05/21/2017', + type: 1, + _isEditMode: false, + dueDate: '03/31/2019', + }, + { + id: 96, + carId: 32, + text: 'eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper', + _userId: 2, + _createdDate: '06/04/2014', + _updatedDate: '08/12/2010', + type: 0, + _isEditMode: false, + dueDate: '10/10/2019', + }, + { + id: 97, + carId: 33, + text: 'eu pede', + _userId: 2, + _createdDate: '03/21/2011', + _updatedDate: '07/18/2012', + type: 2, + _isEditMode: false, + dueDate: '03/29/2020', + }, + { + id: 98, + carId: 33, + text: 'tempus vivamus in felis eu sapien cursus vestibulum proin', + _userId: 2, + _createdDate: '09/17/2017', + _updatedDate: '11/29/2013', + type: 1, + _isEditMode: false, + dueDate: '04/01/2019', + }, + { + id: 99, + carId: 33, + text: + 'velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum', + _userId: 1, + _createdDate: '03/27/2013', + _updatedDate: '09/26/2014', + type: 1, + _isEditMode: false, + dueDate: '09/14/2019', + }, + { + id: 100, + carId: 34, + text: 'luctus et ultrices posuere cubilia curae nulla dapibus dolor vel', + _userId: 2, + _createdDate: '03/07/2017', + _updatedDate: '08/14/2012', + type: 0, + _isEditMode: false, + dueDate: '08/11/2019', + }, + ]; } diff --git a/src/app/core/e-commerce/_services/customers.service.fake.ts b/src/app/core/e-commerce/_services/customers.service.fake.ts index bb06a9b..133e0b5 100644 --- a/src/app/core/e-commerce/_services/customers.service.fake.ts +++ b/src/app/core/e-commerce/_services/customers.service.fake.ts @@ -17,13 +17,13 @@ const API_CUSTOMERS_URL = 'api/customers'; // This code emulates server calls @Injectable() export class CustomersService { - constructor(private http: HttpClient, private httpUtils: HttpUtilsService) { } + constructor(private http: HttpClient, private httpUtils: HttpUtilsService) {} // CREATE => POST: add a new customer to the server createCustomer(customer: CustomerModel): Observable { // Note: Add headers if needed (tokens/bearer) const httpHeaders = this.httpUtils.getHTTPHeaders(); - return this.http.post(API_CUSTOMERS_URL, customer, { headers: httpHeaders}); + return this.http.post(API_CUSTOMERS_URL, customer, { headers: httpHeaders }); } // READ @@ -44,11 +44,10 @@ export class CustomersService { mergeMap(res => { const result = this.httpUtils.baseFilter(res, queryParams, ['status', 'type']); return of(result); - }) + }), ); } - // UPDATE => PUT: update the customer on the server updateCustomer(customer: CustomerModel): Observable { const httpHeader = this.httpUtils.getHTTPHeaders(); diff --git a/src/app/core/e-commerce/_services/customers.service.ts b/src/app/core/e-commerce/_services/customers.service.ts index 684a5b0..d5e9dd7 100644 --- a/src/app/core/e-commerce/_services/customers.service.ts +++ b/src/app/core/e-commerce/_services/customers.service.ts @@ -12,13 +12,13 @@ const API_CUSTOMERS_URL = 'api/customers'; @Injectable() export class CustomersService { - constructor(private http: HttpClient, private httpUtils: HttpUtilsService) { } + constructor(private http: HttpClient, private httpUtils: HttpUtilsService) {} // CREATE => POST: add a new customer to the server createCustomer(customer: CustomerModel): Observable { // Note: Add headers if needed (tokens/bearer) const httpHeaders = this.httpUtils.getHTTPHeaders(); - return this.http.post(API_CUSTOMERS_URL, customer, { headers: httpHeaders}); + return this.http.post(API_CUSTOMERS_URL, customer, { headers: httpHeaders }); } // READ @@ -41,7 +41,7 @@ export class CustomersService { const url = API_CUSTOMERS_URL + '/find'; return this.http.get(url, { headers: httpHeaders, - params: httpParams + params: httpParams, }); } @@ -56,7 +56,7 @@ export class CustomersService { const httpHeaders = this.httpUtils.getHTTPHeaders(); const body = { customersForUpdate: customers, - newStatus: status + newStatus: status, }; const url = API_CUSTOMERS_URL + '/updateStatus'; return this.http.put(url, body, { headers: httpHeaders }); @@ -72,6 +72,6 @@ export class CustomersService { const url = API_CUSTOMERS_URL + '/deleteCustomers'; const httpHeaders = this.httpUtils.getHTTPHeaders(); const body = { customerIdsForDelete: ids }; - return this.http.put(url, body, { headers: httpHeaders} ); + return this.http.put(url, body, { headers: httpHeaders }); } } diff --git a/src/app/core/e-commerce/_services/index.ts b/src/app/core/e-commerce/_services/index.ts index 75c299d..bbd5763 100644 --- a/src/app/core/e-commerce/_services/index.ts +++ b/src/app/core/e-commerce/_services/index.ts @@ -1,14 +1,11 @@ - // Services export { CustomersService } from './customers.service.fake'; // You have to comment this, when your real back-end is done // export { CustomersService } from './customers.service'; // You have to uncomment this, when your real back-end is done export { ProductsService } from './products.service.fake'; // You have to comment this, when your real back-end is done // export { ProductsService } from './products.service'; // You have to uncomment this, when your real back-end is done -export { ProductRemarksService } -from './product-remarks.service.fake'; // You have to comment this, when your real back-end is done +export { ProductRemarksService } from './product-remarks.service.fake'; // You have to comment this, when your real back-end is done // export { ProductRemarksService } // from './product-remarks.service'; // You have to uncomment this, when your real back-end is done -export { ProductSpecificationsService } -from './product-specifications.service.fake'; // You have to comment this, when your real back-end is done +export { ProductSpecificationsService } from './product-specifications.service.fake'; // You have to comment this, when your real back-end is done // export { ProductSpecificationsService } // from './product-specifications.service'; // You have to uncomment this, when your real back-end is done diff --git a/src/app/core/e-commerce/_services/orders.service.ts b/src/app/core/e-commerce/_services/orders.service.ts index 553572b..9abe96b 100644 --- a/src/app/core/e-commerce/_services/orders.service.ts +++ b/src/app/core/e-commerce/_services/orders.service.ts @@ -10,13 +10,10 @@ const API_ORDERS_URL = 'api/orders'; export class OrdersService { httpOptions = this.httpUtils.getHTTPHeaders(); - constructor(private http: HttpClient, - private httpUtils: HttpUtilsService) { } + constructor(private http: HttpClient, private httpUtils: HttpUtilsService) {} // CREATE // READ // UPDATE // DELETE } - - diff --git a/src/app/core/e-commerce/_services/product-remarks.service.fake.ts b/src/app/core/e-commerce/_services/product-remarks.service.fake.ts index 6fb60b6..01e0679 100644 --- a/src/app/core/e-commerce/_services/product-remarks.service.fake.ts +++ b/src/app/core/e-commerce/_services/product-remarks.service.fake.ts @@ -16,50 +16,34 @@ const API_PRODUCTREMARKS_URL = 'api/productRemarks'; // This code emulates server calls @Injectable() export class ProductRemarksService { - constructor( - private http: HttpClient, - private httpUtils: HttpUtilsService - ) {} + constructor(private http: HttpClient, private httpUtils: HttpUtilsService) {} // CREATE => POST: add a new product remark to the server createProductRemark(productRemark): Observable { // Note: Add headers if needed (tokens/bearer) const httpHeaders = this.httpUtils.getHTTPHeaders(); - return this.http.post( - API_PRODUCTREMARKS_URL, - productRemark, - { headers: httpHeaders } - ); + return this.http.post(API_PRODUCTREMARKS_URL, productRemark, { headers: httpHeaders }); } // READ - getAllProductRemarksByProductId( - productId: number - ): Observable { - return this.http - .get(API_PRODUCTREMARKS_URL) - .pipe( - map(productRemarks => { - return productRemarks.filter(rem => rem.carId === productId); - }) - ); + getAllProductRemarksByProductId(productId: number): Observable { + return this.http.get(API_PRODUCTREMARKS_URL).pipe( + map(productRemarks => { + return productRemarks.filter(rem => rem.carId === productId); + }), + ); } getProductRemarkById(productRemarkId: number): Observable { - return this.http.get( - API_PRODUCTREMARKS_URL + `/${productRemarkId}` - ); + return this.http.get(API_PRODUCTREMARKS_URL + `/${productRemarkId}`); } - findProductRemarks( - queryParams: QueryParamsModel, - productId: number - ): Observable { + findProductRemarks(queryParams: QueryParamsModel, productId: number): Observable { return this.getAllProductRemarksByProductId(productId).pipe( mergeMap(res => { const result = this.httpUtils.baseFilter(res, queryParams, []); return of(result); - }) + }), ); } @@ -68,7 +52,7 @@ export class ProductRemarksService { // Note: Add headers if needed (tokens/bearer) const httpHeaders = this.httpUtils.getHTTPHeaders(); return this.http.put(API_PRODUCTREMARKS_URL, productRemark, { - headers: httpHeaders + headers: httpHeaders, }); } diff --git a/src/app/core/e-commerce/_services/product-remarks.service.ts b/src/app/core/e-commerce/_services/product-remarks.service.ts index 7aa01be..3c00489 100644 --- a/src/app/core/e-commerce/_services/product-remarks.service.ts +++ b/src/app/core/e-commerce/_services/product-remarks.service.ts @@ -11,7 +11,7 @@ const API_PRODUCTREMARKS_URL = 'api/productRemarks'; // Real REST API @Injectable() export class ProductRemarksService { - constructor(private http: HttpClient, private httpUtils: HttpUtilsService) { } + constructor(private http: HttpClient, private httpUtils: HttpUtilsService) {} // CREATE => POST: add a new product remark to the server createProductRemark(productRemark): Observable { @@ -37,7 +37,7 @@ export class ProductRemarksService { // Note: Add headers if needed (tokens/bearer) const httpHeaders = this.httpUtils.getHTTPHeaders(); const body = { - query: queryParams + query: queryParams, }; return this.http.post(url, body, { headers: httpHeaders }); } @@ -59,6 +59,6 @@ export class ProductRemarksService { const url = API_PRODUCTREMARKS_URL + '/deleteProductRemarks'; const httpHeaders = this.httpUtils.getHTTPHeaders(); const body = { productRemarkIdsForDelete: ids }; - return this.http.put(url, body, { headers: httpHeaders} ); + return this.http.put(url, body, { headers: httpHeaders }); } } diff --git a/src/app/core/e-commerce/_services/product-specifications.service.fake.ts b/src/app/core/e-commerce/_services/product-specifications.service.fake.ts index f24d0df..488ecbd 100644 --- a/src/app/core/e-commerce/_services/product-specifications.service.fake.ts +++ b/src/app/core/e-commerce/_services/product-specifications.service.fake.ts @@ -24,24 +24,14 @@ export class ProductSpecificationsService { createProductSpec(productSpec): Observable { // Note: Add headers if needed (tokens/bearer) const httpHeaders = this.httpUtils.getHTTPHeaders(); - return this.http.post( - API_PRODUCTSPECS_URL, - productSpec, - { headers: httpHeaders } - ); + return this.http.post(API_PRODUCTSPECS_URL, productSpec, { headers: httpHeaders }); } // READ - getAllProductSpecsByProductId( - productId: number - ): Observable { + getAllProductSpecsByProductId(productId: number): Observable { const prodSpecs = this.http .get(API_PRODUCTSPECS_URL) - .pipe( - map(productSpecifications => - productSpecifications.filter(ps => ps.carId === productId) - ) - ); + .pipe(map(productSpecifications => productSpecifications.filter(ps => ps.carId === productId))); return prodSpecs.pipe( map(res => { @@ -56,35 +46,27 @@ export class ProductSpecificationsService { result.push(_item); }); return result; - }) + }), ); } getProductSpecById(productSpecId: number): Observable { - return this.http.get( - API_PRODUCTSPECS_URL + `/${productSpecId}` - ); + return this.http.get(API_PRODUCTSPECS_URL + `/${productSpecId}`); } - findProductSpecs( - queryParams: QueryParamsModel, - productId: number): Observable { + findProductSpecs(queryParams: QueryParamsModel, productId: number): Observable { return this.getAllProductSpecsByProductId(productId).pipe( mergeMap(res => { - const result = this.httpUtils.baseFilter( - res, - queryParams, - [] - ); + const result = this.httpUtils.baseFilter(res, queryParams, []); return of(result); - }) + }), ); } // UPDATE => PUT: update the product specification on the server updateProductSpec(productSpec: ProductSpecificationModel): Observable { return this.http.put(API_PRODUCTSPECS_URL, productSpec, { - headers: this.httpUtils.getHTTPHeaders() + headers: this.httpUtils.getHTTPHeaders(), }); } diff --git a/src/app/core/e-commerce/_services/product-specifications.service.ts b/src/app/core/e-commerce/_services/product-specifications.service.ts index 272704d..0496155 100644 --- a/src/app/core/e-commerce/_services/product-specifications.service.ts +++ b/src/app/core/e-commerce/_services/product-specifications.service.ts @@ -1,6 +1,6 @@ // Angular import { Injectable } from '@angular/core'; -import { HttpClient} from '@angular/common/http'; +import { HttpClient } from '@angular/common/http'; // RxJS import { Observable, forkJoin } from 'rxjs'; import { map } from 'rxjs/operators'; @@ -14,7 +14,7 @@ const API_PRODUCTSPECS_URL = 'api/productSpecs'; // Real REST API @Injectable() export class ProductSpecificationsService { - constructor(private http: HttpClient, private httpUtils: HttpUtilsService) { } + constructor(private http: HttpClient, private httpUtils: HttpUtilsService) {} // CREATE => POST: add a new product specification to the server createProductSpec(productSpec): Observable { @@ -40,7 +40,7 @@ export class ProductSpecificationsService { // Note: Add headers if needed (tokens/bearer) const httpHeaders = this.httpUtils.getHTTPHeaders(); const body = { - state: queryParams + state: queryParams, }; return this.http.post(url, body, { headers: httpHeaders }); } @@ -60,7 +60,7 @@ export class ProductSpecificationsService { const url = API_PRODUCTSPECS_URL + '/deleteProductSpecifications'; const httpHeaders = this.httpUtils.getHTTPHeaders(); const body = { productSpecificationIdsForDelete: ids }; - return this.http.put(url, body, { headers: httpHeaders} ); + return this.http.put(url, body, { headers: httpHeaders }); } getSpecs(): string[] { diff --git a/src/app/core/e-commerce/_services/products.service.fake.ts b/src/app/core/e-commerce/_services/products.service.fake.ts index 69fd7d3..c7dbd86 100644 --- a/src/app/core/e-commerce/_services/products.service.fake.ts +++ b/src/app/core/e-commerce/_services/products.service.fake.ts @@ -17,8 +17,7 @@ const API_PRODUCTS_URL = 'api/products'; export class ProductsService { lastFilter$: BehaviorSubject = new BehaviorSubject(new QueryParamsModel({}, 'asc', '', 0, 10)); - constructor(private http: HttpClient, - private httpUtils: HttpUtilsService) { } + constructor(private http: HttpClient, private httpUtils: HttpUtilsService) {} // CREATE => POST: add a new product to the server createProduct(product): Observable { @@ -40,7 +39,7 @@ export class ProductsService { mergeMap(res => { const result = this.httpUtils.baseFilter(res, queryParams, ['status', 'condition']); return of(result); - }) + }), ); } diff --git a/src/app/core/e-commerce/_services/products.service.ts b/src/app/core/e-commerce/_services/products.service.ts index 48ff534..e8dfc26 100644 --- a/src/app/core/e-commerce/_services/products.service.ts +++ b/src/app/core/e-commerce/_services/products.service.ts @@ -14,8 +14,7 @@ const API_PRODUCTS_URL = 'api/products'; export class ProductsService { lastFilter$: BehaviorSubject = new BehaviorSubject(new QueryParamsModel({}, 'asc', '', 0, 10)); - constructor(private http: HttpClient, - private httpUtils: HttpUtilsService) { } + constructor(private http: HttpClient, private httpUtils: HttpUtilsService) {} // CREATE => POST: add a new product to the server createProduct(product): Observable { @@ -34,15 +33,15 @@ export class ProductsService { // Server should return filtered/sorted result findProducts(queryParams: QueryParamsModel): Observable { - // Note: Add headers if needed (tokens/bearer) - const httpHeaders = this.httpUtils.getHTTPHeaders(); - const httpParams = this.httpUtils.getFindHTTPParams(queryParams); + // Note: Add headers if needed (tokens/bearer) + const httpHeaders = this.httpUtils.getHTTPHeaders(); + const httpParams = this.httpUtils.getFindHTTPParams(queryParams); - const url = API_PRODUCTS_URL + '/find'; - return this.http.get(url, { - headers: httpHeaders, - params: httpParams - }); + const url = API_PRODUCTS_URL + '/find'; + return this.http.get(url, { + headers: httpHeaders, + params: httpParams, + }); } // UPDATE => PUT: update the product on the server @@ -59,7 +58,7 @@ export class ProductsService { const httpHeaders = this.httpUtils.getHTTPHeaders(); const body = { productsForUpdate: products, - newStatus: status + newStatus: status, }; const url = API_PRODUCTS_URL + '/updateStatus'; return this.http.put(url, body, { headers: httpHeaders }); @@ -75,6 +74,6 @@ export class ProductsService { const url = API_PRODUCTS_URL + '/delete'; const httpHeaders = this.httpUtils.getHTTPHeaders(); const body = { prdocutIdsForDelete: ids }; - return this.http.put(url, body, { headers: httpHeaders} ); + return this.http.put(url, body, { headers: httpHeaders }); } } diff --git a/src/app/core/e-commerce/index.ts b/src/app/core/e-commerce/index.ts index 36b4973..f2ccf18 100644 --- a/src/app/core/e-commerce/index.ts +++ b/src/app/core/e-commerce/index.ts @@ -17,66 +17,65 @@ export { ProductsDataSource } from './_data-sources/products.datasource'; // Actions // Customer Actions => export { - CustomerActionTypes, - CustomerActions, - CustomerOnServerCreated, - CustomerCreated, - CustomerUpdated, - CustomersStatusUpdated, - OneCustomerDeleted, - ManyCustomersDeleted, - CustomersPageRequested, - CustomersPageLoaded, - CustomersPageCancelled, - CustomersPageToggleLoading + CustomerActionTypes, + CustomerActions, + CustomerOnServerCreated, + CustomerCreated, + CustomerUpdated, + CustomersStatusUpdated, + OneCustomerDeleted, + ManyCustomersDeleted, + CustomersPageRequested, + CustomersPageLoaded, + CustomersPageCancelled, + CustomersPageToggleLoading, } from './_actions/customer.actions'; // Product actions => export { - ProductActionTypes, - ProductActions, - ProductOnServerCreated, - ProductCreated, - ProductUpdated, - ProductsStatusUpdated, - OneProductDeleted, - ManyProductsDeleted, - ProductsPageRequested, - ProductsPageLoaded, - ProductsPageCancelled, - ProductsPageToggleLoading, - ProductsActionToggleLoading + ProductActionTypes, + ProductActions, + ProductOnServerCreated, + ProductCreated, + ProductUpdated, + ProductsStatusUpdated, + OneProductDeleted, + ManyProductsDeleted, + ProductsPageRequested, + ProductsPageLoaded, + ProductsPageCancelled, + ProductsPageToggleLoading, + ProductsActionToggleLoading, } from './_actions/product.actions'; // ProductRemark Actions => export { - ProductRemarkActionTypes, - ProductRemarkActions, - ProductRemarkCreated, - ProductRemarkUpdated, - ProductRemarkStoreUpdated, - OneProductRemarkDeleted, - ManyProductRemarksDeleted, - ProductRemarksPageRequested, - ProductRemarksPageLoaded, - ProductRemarksPageCancelled, - ProductRemarksPageToggleLoading, - ProductRemarkOnServerCreated + ProductRemarkActionTypes, + ProductRemarkActions, + ProductRemarkCreated, + ProductRemarkUpdated, + ProductRemarkStoreUpdated, + OneProductRemarkDeleted, + ManyProductRemarksDeleted, + ProductRemarksPageRequested, + ProductRemarksPageLoaded, + ProductRemarksPageCancelled, + ProductRemarksPageToggleLoading, + ProductRemarkOnServerCreated, } from './_actions/product-remark.actions'; // ProductSpecification Actions => export { - ProductSpecificationActionTypes, - ProductSpecificationActions, - ProductSpecificationCreated, - ProductSpecificationUpdated, - OneProductSpecificationDeleted, - ManyProductSpecificationsDeleted, - ProductSpecificationsPageRequested, - ProductSpecificationsPageLoaded, - ProductSpecificationsPageCancelled, - ProductSpecificationsPageToggleLoading, - ProductSpecificationOnServerCreated + ProductSpecificationActionTypes, + ProductSpecificationActions, + ProductSpecificationCreated, + ProductSpecificationUpdated, + OneProductSpecificationDeleted, + ManyProductSpecificationsDeleted, + ProductSpecificationsPageRequested, + ProductSpecificationsPageLoaded, + ProductSpecificationsPageCancelled, + ProductSpecificationsPageToggleLoading, + ProductSpecificationOnServerCreated, } from './_actions/product-specification.actions'; - // Effects export { CustomerEffects } from './_effects/customer.effects'; export { ProductEffects } from './_effects/product.effects'; @@ -92,42 +91,42 @@ export { productSpecificationsReducer } from './_reducers/product-specification. // Selectors // Customer selectors => export { - selectCustomerById, - selectCustomersInStore, - selectCustomersPageLoading, - selectLastCreatedCustomerId, - selectCustomersActionLoading, - selectCustomersShowInitWaitingMessage + selectCustomerById, + selectCustomersInStore, + selectCustomersPageLoading, + selectLastCreatedCustomerId, + selectCustomersActionLoading, + selectCustomersShowInitWaitingMessage, } from './_selectors/customer.selectors'; // Product selectors export { - selectProductById, - selectProductsInStore, - selectProductsPageLoading, - selectProductsPageLastQuery, - selectLastCreatedProductId, - selectHasProductsInStore, - selectProductsActionLoading, - selectProductsInitWaitingMessage + selectProductById, + selectProductsInStore, + selectProductsPageLoading, + selectProductsPageLastQuery, + selectLastCreatedProductId, + selectHasProductsInStore, + selectProductsActionLoading, + selectProductsInitWaitingMessage, } from './_selectors/product.selectors'; // ProductRemark selectors => export { - selectProductRemarkById, - selectProductRemarksInStore, - selectProductRemarksPageLoading, - selectCurrentProductIdInStoreForProductRemarks, - selectLastCreatedProductRemarkId, - selectPRShowInitWaitingMessage + selectProductRemarkById, + selectProductRemarksInStore, + selectProductRemarksPageLoading, + selectCurrentProductIdInStoreForProductRemarks, + selectLastCreatedProductRemarkId, + selectPRShowInitWaitingMessage, } from './_selectors/product-remark.selectors'; // ProductSpecification selectors => export { - selectProductSpecificationById, - selectProductSpecificationsInStore, - selectProductSpecificationsPageLoading, - selectCurrentProductIdInStoreForProductSpecs, - selectProductSpecificationsState, - selectLastCreatedProductSpecificationId, - selectPSShowInitWaitingMessage + selectProductSpecificationById, + selectProductSpecificationsInStore, + selectProductSpecificationsPageLoading, + selectCurrentProductIdInStoreForProductSpecs, + selectProductSpecificationsState, + selectLastCreatedProductSpecificationId, + selectPSShowInitWaitingMessage, } from './_selectors/product-specification.selectors'; // Services diff --git a/src/app/core/reducers/index.ts b/src/app/core/reducers/index.ts index a8125a8..c8d1910 100644 --- a/src/app/core/reducers/index.ts +++ b/src/app/core/reducers/index.ts @@ -6,7 +6,7 @@ import { routerReducer } from '@ngrx/router-store'; import { environment } from '../../../environments/environment'; // tslint:disable-next-line:no-empty-interface -export interface AppState { } +export interface AppState {} export const reducers: ActionReducerMap = { router: routerReducer }; diff --git a/src/app/views/html-class.service.ts b/src/app/views/html-class.service.ts index ed82be8..4d98b06 100644 --- a/src/app/views/html-class.service.ts +++ b/src/app/views/html-class.service.ts @@ -88,7 +88,10 @@ export class HtmlClassService { if (objectPath.has(this.config, 'self.body.class')) { document.body.classList.add(objectPath.get(this.config, 'self.body.class')); } - if (objectPath.get(this.config, 'self.layout') === 'boxed' && objectPath.has(this.config, 'self.body.background-image')) { + if ( + objectPath.get(this.config, 'self.layout') === 'boxed' && + objectPath.has(this.config, 'self.body.background-image') + ) { document.body.style.backgroundImage = 'url("' + objectPath.get(this.config, 'self.body.background-image') + '")'; } if (objectPath.get(this.config, 'width')) { @@ -99,8 +102,7 @@ export class HtmlClassService { /** * Init Loader */ - private initLoader() { - } + private initLoader() {} /** * Init Header @@ -110,7 +112,9 @@ export class HtmlClassService { if (objectPath.get(this.config, 'header.self.fixed.desktop.enabled')) { document.body.classList.add('kt-header--fixed'); objectPath.push(this.classes, 'header', 'kt-header--fixed'); - document.body.classList.add('kt-header--minimize-' + objectPath.get(this.config, 'header.self.fixed.desktop.mode')); + document.body.classList.add( + 'kt-header--minimize-' + objectPath.get(this.config, 'header.self.fixed.desktop.mode'), + ); } else { document.body.classList.add('kt-header--static'); } @@ -152,7 +156,11 @@ export class HtmlClassService { if (objectPath.get(this.config, 'aside.self.skin')) { objectPath.push(this.classes, 'aside', 'kt-aside--skin-' + objectPath.get(this.config, 'aside.self.skin')); document.body.classList.add('kt-aside--skin-' + objectPath.get(this.config, 'aside.self.skin')); - objectPath.push(this.classes, 'aside_menu', 'kt-aside-menu--skin-' + objectPath.get(this.config, 'aside.self.skin')); + objectPath.push( + this.classes, + 'aside_menu', + 'kt-aside-menu--skin-' + objectPath.get(this.config, 'aside.self.skin'), + ); document.body.classList.add('kt-aside__brand--skin-' + objectPath.get(this.config, 'aside.self.skin')); objectPath.push(this.classes, 'brand', 'kt-aside__brand--skin-' + objectPath.get(this.config, 'aside.self.skin')); @@ -173,7 +181,10 @@ export class HtmlClassService { // Menu // Dropdown Submenu - if (objectPath.get(this.config, 'aside.self.fixed') !== true && objectPath.get(this.config, 'aside.menu.dropdown')) { + if ( + objectPath.get(this.config, 'aside.self.fixed') !== true && + objectPath.get(this.config, 'aside.menu.dropdown') + ) { objectPath.push(this.classes, 'aside_menu', 'kt-aside-menu--dropdown'); // enable menu dropdown } @@ -187,7 +198,10 @@ export class HtmlClassService { document.body.classList.add('kt-aside-secondary--enabled'); } - if (objectPath.get(this.config, 'aside-secondary.self.expanded') === true && objectPath.get(this.config, 'aside-secondary.self.layout') !== 'layout-2') { + if ( + objectPath.get(this.config, 'aside-secondary.self.expanded') === true && + objectPath.get(this.config, 'aside-secondary.self.layout') !== 'layout-2' + ) { document.body.classList.add('kt-aside-secondary--expanded'); } diff --git a/src/app/views/pages/auth/auth-notice/auth-notice.component.ts b/src/app/views/pages/auth/auth-notice/auth-notice.component.ts index cb20932..b0ccbf4 100644 --- a/src/app/views/pages/auth/auth-notice/auth-notice.component.ts +++ b/src/app/views/pages/auth/auth-notice/auth-notice.component.ts @@ -22,25 +22,24 @@ export class AuthNoticeComponent implements OnInit, OnDestroy { * @param authNoticeService * @param cdr */ - constructor(public authNoticeService: AuthNoticeService, private cdr: ChangeDetectorRef) { - } + constructor(public authNoticeService: AuthNoticeService, private cdr: ChangeDetectorRef) {} /* * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks - */ + */ /** * On init */ ngOnInit() { - this.subscriptions.push(this.authNoticeService.onNoticeChanged$.subscribe( - (notice: AuthNotice) => { - notice = Object.assign({}, {message: '', type: ''}, notice); + this.subscriptions.push( + this.authNoticeService.onNoticeChanged$.subscribe((notice: AuthNotice) => { + notice = Object.assign({}, { message: '', type: '' }, notice); this.message = notice.message; this.type = notice.type; this.cdr.detectChanges(); - } - )); + }), + ); } /** diff --git a/src/app/views/pages/auth/auth.component.ts b/src/app/views/pages/auth/auth.component.ts index fa0d86d..9e6c886 100644 --- a/src/app/views/pages/auth/auth.component.ts +++ b/src/app/views/pages/auth/auth.component.ts @@ -11,7 +11,7 @@ import { AuthNoticeService } from '../../../core/auth'; selector: 'kt-auth', templateUrl: './auth.component.html', styleUrls: ['./auth.component.scss'], - encapsulation: ViewEncapsulation.None + encapsulation: ViewEncapsulation.None, }) export class AuthComponent implements OnInit { // Public properties @@ -30,8 +30,8 @@ export class AuthComponent implements OnInit { private layoutConfigService: LayoutConfigService, public authNoticeService: AuthNoticeService, private translationService: TranslationService, - private splashScreenService: SplashScreenService) { - } + private splashScreenService: SplashScreenService, + ) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/views/pages/auth/auth.module.ts b/src/app/views/pages/auth/auth.module.ts index be5d10b..386f9b6 100644 --- a/src/app/views/pages/auth/auth.module.ts +++ b/src/app/views/pages/auth/auth.module.ts @@ -20,7 +20,7 @@ import { RegisterComponent } from './register/register.component'; import { ForgotPasswordComponent } from './forgot-password/forgot-password.component'; import { AuthNoticeComponent } from './auth-notice/auth-notice.component'; // Auth -import { AuthService, authReducer, AuthGuard, AuthEffects } from '../../../core/auth'; +import { AuthService, authReducer, AuthGuard, AuthEffects } from '../../../core/auth'; const routes: Routes = [ { @@ -30,25 +30,24 @@ const routes: Routes = [ { path: '', redirectTo: 'login', - pathMatch: 'full' + pathMatch: 'full', }, { path: 'login', - component: LoginComponent + component: LoginComponent, }, { path: 'register', - component: RegisterComponent + component: RegisterComponent, }, { path: 'forgot-password', component: ForgotPasswordComponent, - } - ] - } + }, + ], + }, ]; - @NgModule({ imports: [ CommonModule, @@ -61,34 +60,24 @@ const routes: Routes = [ MatCheckboxModule, TranslateModule.forChild(), StoreModule.forFeature('auth', authReducer), - EffectsModule.forFeature([AuthEffects]) + EffectsModule.forFeature([AuthEffects]), ], providers: [ InterceptService, - { - provide: HTTP_INTERCEPTORS, - useClass: InterceptService, - multi: true - }, + { + provide: HTTP_INTERCEPTORS, + useClass: InterceptService, + multi: true, + }, ], exports: [AuthComponent], - declarations: [ - AuthComponent, - LoginComponent, - RegisterComponent, - ForgotPasswordComponent, - AuthNoticeComponent - ] + declarations: [AuthComponent, LoginComponent, RegisterComponent, ForgotPasswordComponent, AuthNoticeComponent], }) - export class AuthModule { - static forRoot(): ModuleWithProviders { - return { - ngModule: AuthModule, - providers: [ - AuthService, - AuthGuard - ] - }; - } + static forRoot(): ModuleWithProviders { + return { + ngModule: AuthModule, + providers: [AuthService, AuthGuard], + }; + } } diff --git a/src/app/views/pages/auth/forgot-password/forgot-password.component.ts b/src/app/views/pages/auth/forgot-password/forgot-password.component.ts index e42b832..8ba74b8 100644 --- a/src/app/views/pages/auth/forgot-password/forgot-password.component.ts +++ b/src/app/views/pages/auth/forgot-password/forgot-password.component.ts @@ -13,7 +13,7 @@ import { AuthNoticeService, AuthService } from '../../../../core/auth'; @Component({ selector: 'kt-forgot-password', templateUrl: './forgot-password.component.html', - encapsulation: ViewEncapsulation.None + encapsulation: ViewEncapsulation.None, }) export class ForgotPasswordComponent implements OnInit, OnDestroy { // Public params @@ -39,7 +39,7 @@ export class ForgotPasswordComponent implements OnInit, OnDestroy { private translate: TranslateService, private router: Router, private fb: FormBuilder, - private cdr: ChangeDetectorRef + private cdr: ChangeDetectorRef, ) { this.unsubscribe = new Subject(); } @@ -70,13 +70,15 @@ export class ForgotPasswordComponent implements OnInit, OnDestroy { */ initRegistrationForm() { this.forgotPasswordForm = this.fb.group({ - email: ['', Validators.compose([ - Validators.required, - Validators.email, - Validators.minLength(3), - Validators.maxLength(320) // https://stackoverflow.com/questions/386294/what-is-the-maximum-length-of-a-valid-email-address - ]) - ] + email: [ + '', + Validators.compose([ + Validators.required, + Validators.email, + Validators.minLength(3), + Validators.maxLength(320), // https://stackoverflow.com/questions/386294/what-is-the-maximum-length-of-a-valid-email-address + ]), + ], }); } @@ -87,30 +89,34 @@ export class ForgotPasswordComponent implements OnInit, OnDestroy { const controls = this.forgotPasswordForm.controls; /** check form */ if (this.forgotPasswordForm.invalid) { - Object.keys(controls).forEach(controlName => - controls[controlName].markAsTouched() - ); + Object.keys(controls).forEach(controlName => controls[controlName].markAsTouched()); return; } this.loading = true; const email = controls['email'].value; - this.authService.requestPassword(email).pipe( - tap(response => { - if (response) { - this.authNoticeService.setNotice(this.translate.instant('AUTH.FORGOT.SUCCESS'), 'success'); - this.router.navigateByUrl('/auth/login'); - } else { - this.authNoticeService.setNotice(this.translate.instant('AUTH.VALIDATION.NOT_FOUND', {name: this.translate.instant('AUTH.INPUT.EMAIL')}), 'danger'); - } - }), - takeUntil(this.unsubscribe), - finalize(() => { - this.loading = false; - this.cdr.detectChanges(); - }) - ).subscribe(); + this.authService + .requestPassword(email) + .pipe( + tap(response => { + if (response) { + this.authNoticeService.setNotice(this.translate.instant('AUTH.FORGOT.SUCCESS'), 'success'); + this.router.navigateByUrl('/auth/login'); + } else { + this.authNoticeService.setNotice( + this.translate.instant('AUTH.VALIDATION.NOT_FOUND', { name: this.translate.instant('AUTH.INPUT.EMAIL') }), + 'danger', + ); + } + }), + takeUntil(this.unsubscribe), + finalize(() => { + this.loading = false; + this.cdr.detectChanges(); + }), + ) + .subscribe(); } /** @@ -125,9 +131,7 @@ export class ForgotPasswordComponent implements OnInit, OnDestroy { return false; } - const result = - control.hasError(validationType) && - (control.dirty || control.touched); + const result = control.hasError(validationType) && (control.dirty || control.touched); return result; } } diff --git a/src/app/views/pages/auth/login/login.component.ts b/src/app/views/pages/auth/login/login.component.ts index c729506..d456e2c 100644 --- a/src/app/views/pages/auth/login/login.component.ts +++ b/src/app/views/pages/auth/login/login.component.ts @@ -18,13 +18,13 @@ import { AuthNoticeService, AuthService, Login } from '../../../../core/auth'; */ const DEMO_PARAMS = { EMAIL: 'admin@demo.com', - PASSWORD: 'demo' + PASSWORD: 'demo', }; @Component({ selector: 'kt-login', templateUrl: './login.component.html', - encapsulation: ViewEncapsulation.None + encapsulation: ViewEncapsulation.None, }) export class LoginComponent implements OnInit, OnDestroy { // Public params @@ -53,7 +53,7 @@ export class LoginComponent implements OnInit, OnDestroy { private translate: TranslateService, private store: Store, private fb: FormBuilder, - private cdr: ChangeDetectorRef + private cdr: ChangeDetectorRef, ) { this.unsubscribe = new Subject(); } @@ -93,19 +93,19 @@ export class LoginComponent implements OnInit, OnDestroy { } this.loginForm = this.fb.group({ - email: [DEMO_PARAMS.EMAIL, Validators.compose([ - Validators.required, - Validators.email, - Validators.minLength(3), - Validators.maxLength(320) // https://stackoverflow.com/questions/386294/what-is-the-maximum-length-of-a-valid-email-address - ]) + email: [ + DEMO_PARAMS.EMAIL, + Validators.compose([ + Validators.required, + Validators.email, + Validators.minLength(3), + Validators.maxLength(320), // https://stackoverflow.com/questions/386294/what-is-the-maximum-length-of-a-valid-email-address + ]), + ], + password: [ + DEMO_PARAMS.PASSWORD, + Validators.compose([Validators.required, Validators.minLength(3), Validators.maxLength(100)]), ], - password: [DEMO_PARAMS.PASSWORD, Validators.compose([ - Validators.required, - Validators.minLength(3), - Validators.maxLength(100) - ]) - ] }); } @@ -116,9 +116,7 @@ export class LoginComponent implements OnInit, OnDestroy { const controls = this.loginForm.controls; /** check form */ if (this.loginForm.invalid) { - Object.keys(controls).forEach(controlName => - controls[controlName].markAsTouched() - ); + Object.keys(controls).forEach(controlName => controls[controlName].markAsTouched()); return; } @@ -126,14 +124,14 @@ export class LoginComponent implements OnInit, OnDestroy { const authData = { email: controls['email'].value, - password: controls['password'].value + password: controls['password'].value, }; this.auth .login(authData.email, authData.password) .pipe( tap(user => { if (user) { - this.store.dispatch(new Login({authToken: user.accessToken})); + this.store.dispatch(new Login({ authToken: user.accessToken })); this.router.navigateByUrl('/'); // Main page } else { this.authNoticeService.setNotice(this.translate.instant('AUTH.VALIDATION.INVALID_LOGIN'), 'danger'); @@ -143,7 +141,7 @@ export class LoginComponent implements OnInit, OnDestroy { finalize(() => { this.loading = false; this.cdr.detectChanges(); - }) + }), ) .subscribe(); } diff --git a/src/app/views/pages/auth/register/confirm-password.validator.ts b/src/app/views/pages/auth/register/confirm-password.validator.ts index eb16dc9..4169b6b 100644 --- a/src/app/views/pages/auth/register/confirm-password.validator.ts +++ b/src/app/views/pages/auth/register/confirm-password.validator.ts @@ -11,7 +11,7 @@ export class ConfirmPasswordValidator { const confirmPassword = control.get('confirmPassword').value; if (password !== confirmPassword) { - control.get('confirmPassword').setErrors({ConfirmPassword: true}); + control.get('confirmPassword').setErrors({ ConfirmPassword: true }); } else { return null; } diff --git a/src/app/views/pages/auth/register/register.component.ts b/src/app/views/pages/auth/register/register.component.ts index dfd2f2a..b25f43a 100644 --- a/src/app/views/pages/auth/register/register.component.ts +++ b/src/app/views/pages/auth/register/register.component.ts @@ -17,7 +17,7 @@ import { ConfirmPasswordValidator } from './confirm-password.validator'; @Component({ selector: 'kt-register', templateUrl: './register.component.html', - encapsulation: ViewEncapsulation.None + encapsulation: ViewEncapsulation.None, }) export class RegisterComponent implements OnInit, OnDestroy { registerForm: FormGroup; @@ -44,14 +44,14 @@ export class RegisterComponent implements OnInit, OnDestroy { private auth: AuthService, private store: Store, private fb: FormBuilder, - private cdr: ChangeDetectorRef + private cdr: ChangeDetectorRef, ) { this.unsubscribe = new Subject(); } /* * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks - */ + */ /** * On init @@ -61,8 +61,8 @@ export class RegisterComponent implements OnInit, OnDestroy { } /* - * On destroy - */ + * On destroy + */ ngOnDestroy(): void { this.unsubscribe.next(); this.unsubscribe.complete(); @@ -74,43 +74,31 @@ export class RegisterComponent implements OnInit, OnDestroy { * Default params, validators */ initRegisterForm() { - this.registerForm = this.fb.group({ - fullname: ['', Validators.compose([ - Validators.required, - Validators.minLength(3), - Validators.maxLength(100) - ]) - ], - email: ['', Validators.compose([ - Validators.required, - Validators.email, - Validators.minLength(3), - // https://stackoverflow.com/questions/386294/what-is-the-maximum-length-of-a-valid-email-address - Validators.maxLength(320) - ]), - ], - username: ['', Validators.compose([ - Validators.required, - Validators.minLength(3), - Validators.maxLength(100) - ]), - ], - password: ['', Validators.compose([ - Validators.required, - Validators.minLength(3), - Validators.maxLength(100) - ]) - ], - confirmPassword: ['', Validators.compose([ - Validators.required, - Validators.minLength(3), - Validators.maxLength(100) - ]) - ], - agree: [false, Validators.compose([Validators.required])] - }, { - validator: ConfirmPasswordValidator.MatchPassword - }); + this.registerForm = this.fb.group( + { + fullname: ['', Validators.compose([Validators.required, Validators.minLength(3), Validators.maxLength(100)])], + email: [ + '', + Validators.compose([ + Validators.required, + Validators.email, + Validators.minLength(3), + // https://stackoverflow.com/questions/386294/what-is-the-maximum-length-of-a-valid-email-address + Validators.maxLength(320), + ]), + ], + username: ['', Validators.compose([Validators.required, Validators.minLength(3), Validators.maxLength(100)])], + password: ['', Validators.compose([Validators.required, Validators.minLength(3), Validators.maxLength(100)])], + confirmPassword: [ + '', + Validators.compose([Validators.required, Validators.minLength(3), Validators.maxLength(100)]), + ], + agree: [false, Validators.compose([Validators.required])], + }, + { + validator: ConfirmPasswordValidator.MatchPassword, + }, + ); } /** @@ -121,9 +109,7 @@ export class RegisterComponent implements OnInit, OnDestroy { // check form if (this.registerForm.invalid) { - Object.keys(controls).forEach(controlName => - controls[controlName].markAsTouched() - ); + Object.keys(controls).forEach(controlName => controls[controlName].markAsTouched()); return; } @@ -143,23 +129,26 @@ export class RegisterComponent implements OnInit, OnDestroy { _user.fullname = controls['fullname'].value; _user.password = controls['password'].value; _user.roles = []; - this.auth.register(_user).pipe( - tap(user => { - if (user) { - this.store.dispatch(new Register({authToken: user.accessToken})); - // pass notice message to the login page - this.authNoticeService.setNotice(this.translate.instant('AUTH.REGISTER.SUCCESS'), 'success'); - this.router.navigateByUrl('/auth/login'); - } else { - this.authNoticeService.setNotice(this.translate.instant('AUTH.VALIDATION.INVALID_LOGIN'), 'danger'); - } - }), - takeUntil(this.unsubscribe), - finalize(() => { - this.loading = false; - this.cdr.detectChanges(); - }) - ).subscribe(); + this.auth + .register(_user) + .pipe( + tap(user => { + if (user) { + this.store.dispatch(new Register({ authToken: user.accessToken })); + // pass notice message to the login page + this.authNoticeService.setNotice(this.translate.instant('AUTH.REGISTER.SUCCESS'), 'success'); + this.router.navigateByUrl('/auth/login'); + } else { + this.authNoticeService.setNotice(this.translate.instant('AUTH.VALIDATION.INVALID_LOGIN'), 'danger'); + } + }), + takeUntil(this.unsubscribe), + finalize(() => { + this.loading = false; + this.cdr.detectChanges(); + }), + ) + .subscribe(); } /** diff --git a/src/app/views/pages/dashboard/dashboard.component.ts b/src/app/views/pages/dashboard/dashboard.component.ts index 4f05e63..c52f230 100644 --- a/src/app/views/pages/dashboard/dashboard.component.ts +++ b/src/app/views/pages/dashboard/dashboard.component.ts @@ -23,29 +23,28 @@ export class DashboardComponent implements OnInit { widget4_3: Widget4Data; widget4_4: Widget4Data; - constructor(private layoutConfigService: LayoutConfigService) { - } + constructor(private layoutConfigService: LayoutConfigService) {} ngOnInit(): void { this.chartOptions1 = { data: [10, 14, 18, 11, 9, 12, 14, 17, 18, 14], color: this.layoutConfigService.getConfig('colors.state.brand'), - border: 3 + border: 3, }; this.chartOptions2 = { data: [11, 12, 18, 13, 11, 12, 15, 13, 19, 15], color: this.layoutConfigService.getConfig('colors.state.danger'), - border: 3 + border: 3, }; this.chartOptions3 = { data: [12, 12, 18, 11, 15, 12, 13, 16, 11, 18], color: this.layoutConfigService.getConfig('colors.state.success'), - border: 3 + border: 3, }; this.chartOptions4 = { data: [11, 9, 13, 18, 13, 15, 14, 13, 18, 15], color: this.layoutConfigService.getConfig('colors.state.primary'), - border: 3 + border: 3, }; // @ts-ignore @@ -54,23 +53,28 @@ export class DashboardComponent implements OnInit { pic: './assets/media/files/doc.svg', title: 'Metronic Documentation', url: 'https://keenthemes.com.my/metronic', - }, { + }, + { pic: './assets/media/files/jpg.svg', title: 'Project Launch Evgent', url: 'https://keenthemes.com.my/metronic', - }, { + }, + { pic: './assets/media/files/pdf.svg', title: 'Full Developer Manual For 4.7', url: 'https://keenthemes.com.my/metronic', - }, { + }, + { pic: './assets/media/files/javascript.svg', title: 'Make JS Great Again', url: 'https://keenthemes.com.my/metronic', - }, { + }, + { pic: './assets/media/files/zip.svg', title: 'Download Ziped version OF 5.0', url: 'https://keenthemes.com.my/metronic', - }, { + }, + { pic: './assets/media/files/pdf.svg', title: 'Finance Report 2016/2017', url: 'https://keenthemes.com.my/metronic', @@ -83,31 +87,35 @@ export class DashboardComponent implements OnInit { username: 'Anna Strong', desc: 'Visual Designer,Google Inc.', url: 'https://keenthemes.com.my/metronic', - buttonClass: 'btn-label-brand' - }, { + buttonClass: 'btn-label-brand', + }, + { pic: './assets/media/users/100_14.jpg', username: 'Milano Esco', desc: 'Product Designer, Apple Inc.', url: 'https://keenthemes.com.my/metronic', - buttonClass: 'btn-label-warning' - }, { + buttonClass: 'btn-label-warning', + }, + { pic: './assets/media/users/100_11.jpg', username: 'Nick Bold', desc: 'Web Developer, Facebook Inc.', url: 'https://keenthemes.com.my/metronic', - buttonClass: 'btn-label-danger' - }, { + buttonClass: 'btn-label-danger', + }, + { pic: './assets/media/users/100_1.jpg', username: 'Wilter Delton', desc: 'Project Manager, Amazon Inc.', url: 'https://keenthemes.com.my/metronic', - buttonClass: 'btn-label-success' - }, { + buttonClass: 'btn-label-success', + }, + { pic: './assets/media/users/100_5.jpg', username: 'Nick Stone', desc: 'Visual Designer, Github Inc.', url: 'https://keenthemes.com.my/metronic', - buttonClass: 'btn-label-dark' + buttonClass: 'btn-label-dark', }, ]); // @ts-ignore @@ -117,43 +125,49 @@ export class DashboardComponent implements OnInit { title: 'Metronic v6 has been arrived!', url: 'https://keenthemes.com.my/metronic', value: '+$500', - valueColor: 'kt-font-info' - }, { + valueColor: 'kt-font-info', + }, + { icon: 'flaticon-safe-shield-protection kt-font-success', title: 'Metronic community meet-up 2019 in Rome.', url: 'https://keenthemes.com.my/metronic', value: '+$1260', - valueColor: 'kt-font-success' - }, { + valueColor: 'kt-font-success', + }, + { icon: 'flaticon2-line-chart kt-font-danger', title: 'Metronic Angular 7 version will be landing soon..', url: 'https://keenthemes.com.my/metronic', value: '+$1080', - valueColor: 'kt-font-danger' - }, { + valueColor: 'kt-font-danger', + }, + { icon: 'flaticon2-pie-chart-1 kt-font-primary', title: 'ale! Purchase Metronic at 70% off for limited time', url: 'https://keenthemes.com.my/metronic', value: '70% Off!', - valueColor: 'kt-font-primary' - }, { + valueColor: 'kt-font-primary', + }, + { icon: 'flaticon2-rocket kt-font-brand', title: 'Metronic VueJS version is in progress. Stay tuned!', url: 'https://keenthemes.com.my/metronic', value: '+134', - valueColor: 'kt-font-brand' - }, { + valueColor: 'kt-font-brand', + }, + { icon: 'flaticon2-notification kt-font-warning', title: 'Black Friday! Purchase Metronic at ever lowest 90% off for limited time', url: 'https://keenthemes.com.my/metronic', value: '70% Off!', - valueColor: 'kt-font-warning' - }, { + valueColor: 'kt-font-warning', + }, + { icon: 'flaticon2-file kt-font-focus', title: 'Metronic React version is in progress.', url: 'https://keenthemes.com.my/metronic', value: '+13%', - valueColor: 'kt-font-focus' + valueColor: 'kt-font-focus', }, ]); // @ts-ignore @@ -164,35 +178,39 @@ export class DashboardComponent implements OnInit { desc: 'Make Metronic Great Again', url: 'https://keenthemes.com.my/metronic', value: '+$2500', - valueColor: 'kt-font-brand' - }, { + valueColor: 'kt-font-brand', + }, + { pic: './assets/media/client-logos/logo4.png', title: 'StarBucks', desc: 'Good Coffee & Snacks', url: 'https://keenthemes.com.my/metronic', value: '-$290', - valueColor: 'kt-font-brand' - }, { + valueColor: 'kt-font-brand', + }, + { pic: './assets/media/client-logos/logo3.png', title: 'Phyton', desc: 'A Programming Language', url: 'https://keenthemes.com.my/metronic', value: '+$17', - valueColor: 'kt-font-brand' - }, { + valueColor: 'kt-font-brand', + }, + { pic: './assets/media/client-logos/logo2.png', title: 'GreenMakers', desc: 'Make Green Great Again', url: 'https://keenthemes.com.my/metronic', value: '-$2.50', - valueColor: 'kt-font-brand' - }, { + valueColor: 'kt-font-brand', + }, + { pic: './assets/media/client-logos/logo1.png', title: 'FlyThemes', - desc: 'A Let\'s Fly Fast Again Language', + desc: "A Let's Fly Fast Again Language", url: 'https://keenthemes.com.my/metronic', value: '+200', - valueColor: 'kt-font-brand' + valueColor: 'kt-font-brand', }, ]); } diff --git a/src/app/views/pages/dashboard/dashboard.module.ts b/src/app/views/pages/dashboard/dashboard.module.ts index 37a9db4..022694c 100644 --- a/src/app/views/pages/dashboard/dashboard.module.ts +++ b/src/app/views/pages/dashboard/dashboard.module.ts @@ -18,14 +18,11 @@ import { DashboardComponent } from './dashboard.component'; RouterModule.forChild([ { path: '', - component: DashboardComponent + component: DashboardComponent, }, ]), ], providers: [], - declarations: [ - DashboardComponent, - ] + declarations: [DashboardComponent], }) -export class DashboardModule { -} +export class DashboardModule {} diff --git a/src/app/views/pages/pages.module.ts b/src/app/views/pages/pages.module.ts index bddf076..4e6562b 100644 --- a/src/app/views/pages/pages.module.ts +++ b/src/app/views/pages/pages.module.ts @@ -12,15 +12,7 @@ import { CoreModule } from '../../core/core.module'; @NgModule({ declarations: [], exports: [], - imports: [ - CommonModule, - HttpClientModule, - FormsModule, - NgbModule, - CoreModule, - PartialsModule, - ], - providers: [] + imports: [CommonModule, HttpClientModule, FormsModule, NgbModule, CoreModule, PartialsModule], + providers: [], }) -export class PagesModule { -} +export class PagesModule {} diff --git a/src/app/views/partials/content/crud/action-natification/action-notification.component.ts b/src/app/views/partials/content/crud/action-natification/action-notification.component.ts index 3f713d9..15910af 100644 --- a/src/app/views/partials/content/crud/action-natification/action-notification.component.ts +++ b/src/app/views/partials/content/crud/action-natification/action-notification.component.ts @@ -8,8 +8,7 @@ import { of } from 'rxjs'; @Component({ selector: 'kt-action-natification', templateUrl: './action-notification.component.html', - changeDetection: ChangeDetectionStrategy.Default - + changeDetection: ChangeDetectionStrategy.Default, }) export class ActionNotificationComponent implements OnInit { /** @@ -17,7 +16,7 @@ export class ActionNotificationComponent implements OnInit { * * @param data: any */ - constructor(@Inject(MAT_SNACK_BAR_DATA) public data: any) { } + constructor(@Inject(MAT_SNACK_BAR_DATA) public data: any) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -27,7 +26,7 @@ export class ActionNotificationComponent implements OnInit { * On init */ ngOnInit() { - if (!this.data.showUndoButton || (this.data.undoButtonDuration >= this.data.duration)) { + if (!this.data.showUndoButton || this.data.undoButtonDuration >= this.data.duration) { return; } @@ -55,7 +54,7 @@ export class ActionNotificationComponent implements OnInit { /** * Dismiss */ - public onDismiss() { + public onDismiss() { this.data.snackBar.dismiss(); } } diff --git a/src/app/views/partials/content/crud/alert/alert.component.ts b/src/app/views/partials/content/crud/alert/alert.component.ts index a4ce640..5f487f6 100644 --- a/src/app/views/partials/content/crud/alert/alert.component.ts +++ b/src/app/views/partials/content/crud/alert/alert.component.ts @@ -3,7 +3,7 @@ import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core'; @Component({ selector: 'kt-alert', - templateUrl: './alert.component.html' + templateUrl: './alert.component.html', }) export class AlertComponent implements OnInit { // Public properties diff --git a/src/app/views/partials/content/crud/delete-entity-dialog/delete-entity-dialog.component.ts b/src/app/views/partials/content/crud/delete-entity-dialog/delete-entity-dialog.component.ts index c1ada22..c6e0705 100644 --- a/src/app/views/partials/content/crud/delete-entity-dialog/delete-entity-dialog.component.ts +++ b/src/app/views/partials/content/crud/delete-entity-dialog/delete-entity-dialog.component.ts @@ -4,7 +4,7 @@ import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material'; @Component({ selector: 'kt-delete-entity-dialog', - templateUrl: './delete-entity-dialog.component.html' + templateUrl: './delete-entity-dialog.component.html', }) export class DeleteEntityDialogComponent implements OnInit { // Public properties @@ -16,10 +16,7 @@ export class DeleteEntityDialogComponent implements OnInit { * @param dialogRef: MatDialogRef * @param data: any */ - constructor( - public dialogRef: MatDialogRef, - @Inject(MAT_DIALOG_DATA) public data: any - ) { } + constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: any) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -28,8 +25,7 @@ export class DeleteEntityDialogComponent implements OnInit { /** * On init */ - ngOnInit() { - } + ngOnInit() {} /** * Close dialog with false result diff --git a/src/app/views/partials/content/crud/fetch-entity-dialog/fetch-entity-dialog.component.ts b/src/app/views/partials/content/crud/fetch-entity-dialog/fetch-entity-dialog.component.ts index eb29d54..85d37c9 100644 --- a/src/app/views/partials/content/crud/fetch-entity-dialog/fetch-entity-dialog.component.ts +++ b/src/app/views/partials/content/crud/fetch-entity-dialog/fetch-entity-dialog.component.ts @@ -4,7 +4,7 @@ import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material'; @Component({ selector: 'kt-fetch-entity-dialog', - templateUrl: './fetch-entity-dialog.component.html' + templateUrl: './fetch-entity-dialog.component.html', }) export class FetchEntityDialogComponent { /** @@ -13,10 +13,7 @@ export class FetchEntityDialogComponent { * @param dialogRef: MatDialogRef, * @param data: any */ - constructor( - public dialogRef: MatDialogRef, - @Inject(MAT_DIALOG_DATA) public data: any - ) {} + constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: any) {} /** * Close dialog with false result @@ -32,10 +29,14 @@ export class FetchEntityDialogComponent { */ getItemCssClassByStatus(status: number = 0) { switch (status) { - case 0: return 'success'; - case 1: return 'metal'; - case 2: return 'danger'; - default: return 'success'; + case 0: + return 'success'; + case 1: + return 'metal'; + case 2: + return 'danger'; + default: + return 'success'; } } } diff --git a/src/app/views/partials/content/crud/update-status-dialog/update-status-dialog.component.ts b/src/app/views/partials/content/crud/update-status-dialog/update-status-dialog.component.ts index 4ecf696..4d213c1 100644 --- a/src/app/views/partials/content/crud/update-status-dialog/update-status-dialog.component.ts +++ b/src/app/views/partials/content/crud/update-status-dialog/update-status-dialog.component.ts @@ -5,15 +5,13 @@ import { FormControl } from '@angular/forms'; @Component({ selector: 'kt-update-status-dialog', - templateUrl: './update-status-dialog.component.html' + templateUrl: './update-status-dialog.component.html', }) export class UpdateStatusDialogComponent implements OnInit { selectedStatusForUpdate = new FormControl(''); viewLoading: boolean = false; loadingAfterSubmit: boolean = false; - constructor( - public dialogRef: MatDialogRef, - @Inject(MAT_DIALOG_DATA) public data: any) {} + constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: any) {} ngOnInit() { /* Server loading imitation. Remove this */ diff --git a/src/app/views/partials/content/general/accordion-control/accordion-control.component.ts b/src/app/views/partials/content/general/accordion-control/accordion-control.component.ts index 52d9296..cb05931 100644 --- a/src/app/views/partials/content/general/accordion-control/accordion-control.component.ts +++ b/src/app/views/partials/content/general/accordion-control/accordion-control.component.ts @@ -1,5 +1,15 @@ -import { AfterContentChecked, Component, ContentChildren, Directive, EventEmitter, Input, Output, QueryList, - TemplateRef, ChangeDetectionStrategy } from '@angular/core'; +import { + AfterContentChecked, + Component, + ContentChildren, + Directive, + EventEmitter, + Input, + Output, + QueryList, + TemplateRef, + ChangeDetectionStrategy, +} from '@angular/core'; let nextId = 0; /** @@ -7,10 +17,10 @@ let nextId = 0; */ @Directive({ // tslint:disable-next-line:directive-selector - selector: 'ng-template[AccordionControlPanelTitle]' + selector: 'ng-template[AccordionControlPanelTitle]', }) export class AccordionControlPanelTitleDirective { - constructor(public templateRef: TemplateRef) { } + constructor(public templateRef: TemplateRef) {} } /** @@ -18,10 +28,10 @@ export class AccordionControlPanelTitleDirective { */ @Directive({ // tslint:disable-next-line:directive-selector - selector: 'ng-template[AccordionControlPanelContent]' + selector: 'ng-template[AccordionControlPanelContent]', }) export class AccordionControlPanelContentDirective { - constructor(public templateRef: TemplateRef) { } + constructor(public templateRef: TemplateRef) {} } /** @@ -30,7 +40,7 @@ export class AccordionControlPanelContentDirective { */ @Directive({ // tslint:disable-next-line:directive-selector - selector: 'kt-accordion-control-panel' + selector: 'kt-accordion-control-panel', }) export class AccordionControlPanelDirective implements AfterContentChecked { /** @@ -63,7 +73,6 @@ export class AccordionControlPanelDirective implements AfterContentChecked { @Input() hasBodyWrapper: string; - /** * Accordion's types of panels to be applied per panel basis. * Bootstrap recognizes the following types: "primary", "secondary", "success", "danger", "warning", "info", "light" @@ -74,9 +83,12 @@ export class AccordionControlPanelDirective implements AfterContentChecked { titleTpl: AccordionControlPanelTitleDirective | null; contentTpl: AccordionControlPanelContentDirective | null; - @ContentChildren(AccordionControlPanelTitleDirective, { descendants: false }) titleTpls: QueryList; - @ContentChildren(AccordionControlPanelContentDirective, { descendants: false }) contentTpls: - QueryList; + @ContentChildren(AccordionControlPanelTitleDirective, { descendants: false }) titleTpls: QueryList< + AccordionControlPanelTitleDirective + >; + @ContentChildren(AccordionControlPanelContentDirective, { descendants: false }) contentTpls: QueryList< + AccordionControlPanelContentDirective + >; ngAfterContentChecked() { // We are using @ContentChildren instead of @ContantChild as in the Angular version being used @@ -106,7 +118,6 @@ export interface AccordionControlPanelChangeEvent { preventDefault: () => void; } - /** * The NgbAccordion directive is a collection of panels. * It can assure that only one panel can be opened at a time. @@ -115,20 +126,21 @@ export interface AccordionControlPanelChangeEvent { selector: 'kt-accordion-control', exportAs: 'AccordionControl', host: { - 'role': 'tablist', + role: 'tablist', '[attr.aria-multiselectable]': '!closeOtherPanels', - 'class': 'accordion' + class: 'accordion', }, templateUrl: './accordion-control.component.html', - styles: [` - .accordion--animation { - overflow: hidden; - -webkit-transition: height .5s; - transition: height .5s; - } - `], - changeDetection: ChangeDetectionStrategy.OnPush - + styles: [ + ` + .accordion--animation { + overflow: hidden; + -webkit-transition: height 0.5s; + transition: height 0.5s; + } + `, + ], + changeDetection: ChangeDetectionStrategy.OnPush, }) export class AccordionControlComponent implements AfterContentChecked { @ContentChildren(AccordionControlPanelDirective) panels: QueryList; @@ -161,9 +173,7 @@ export class AccordionControlComponent implements AfterContentChecked { */ @Output() panelChange = new EventEmitter(); - constructor() { - - } + constructor() {} /** * Programmatically toggle a panel with a given id. @@ -174,11 +184,16 @@ export class AccordionControlComponent implements AfterContentChecked { if (panel && !panel.disabled) { let defaultPrevented = false; if (this.hasAnimation) { - panel.height = panel.height ? 0 : panel.contentHeight; + panel.height = panel.height ? 0 : panel.contentHeight; } - this.panelChange.emit( - { panelId: panelId, nextState: !panel.isOpen, preventDefault: () => { defaultPrevented = true; } }); + this.panelChange.emit({ + panelId: panelId, + nextState: !panel.isOpen, + preventDefault: () => { + defaultPrevented = true; + }, + }); if (!defaultPrevented) { panel.isOpen = !panel.isOpen; @@ -239,4 +254,3 @@ export class AccordionControlComponent implements AfterContentChecked { this.activeIds = this.panels.filter(panel => panel.isOpen && !panel.disabled).map(panel => panel.id); } } - diff --git a/src/app/views/partials/content/general/accordion-control/accordion-control.config.ts b/src/app/views/partials/content/general/accordion-control/accordion-control.config.ts index 486916e..e48d3dd 100644 --- a/src/app/views/partials/content/general/accordion-control/accordion-control.config.ts +++ b/src/app/views/partials/content/general/accordion-control/accordion-control.config.ts @@ -1,5 +1,5 @@ // Angular -import {Injectable} from '@angular/core'; +import { Injectable } from '@angular/core'; /** * Configuration service for the MAccordionControl component. @@ -9,5 +9,5 @@ import {Injectable} from '@angular/core'; @Injectable() export class AccordionControlConfig { closeOthers = false; - type: string; + type: string; } diff --git a/src/app/views/partials/content/general/accordion-control/accordion-control.module.ts b/src/app/views/partials/content/general/accordion-control/accordion-control.module.ts index fc7be95..7ea22f4 100644 --- a/src/app/views/partials/content/general/accordion-control/accordion-control.module.ts +++ b/src/app/views/partials/content/general/accordion-control/accordion-control.module.ts @@ -8,27 +8,29 @@ import { AccordionControlComponent, AccordionControlPanelDirective, AccordionControlPanelTitleDirective, - AccordionControlPanelContentDirective} from './accordion-control.component'; + AccordionControlPanelContentDirective, +} from './accordion-control.component'; -export { AccordionControlConfig} from './accordion-control.config'; +export { AccordionControlConfig } from './accordion-control.config'; export { - AccordionControlComponent, AccordionControlPanelDirective, AccordionControlPanelTitleDirective, - AccordionControlPanelContentDirective, AccordionControlPanelChangeEvent + AccordionControlComponent, + AccordionControlPanelDirective, + AccordionControlPanelTitleDirective, + AccordionControlPanelContentDirective, + AccordionControlPanelChangeEvent, } from './accordion-control.component'; const ACCORDION_CONTROL_DIRECTIVES = [ AccordionControlComponent, AccordionControlPanelDirective, AccordionControlPanelTitleDirective, - AccordionControlPanelContentDirective + AccordionControlPanelContentDirective, ]; @NgModule({ - imports: [ - CommonModule - ], + imports: [CommonModule], exports: ACCORDION_CONTROL_DIRECTIVES, - declarations: ACCORDION_CONTROL_DIRECTIVES + declarations: ACCORDION_CONTROL_DIRECTIVES, }) export class AccordionControlModule { static forRoot(): ModuleWithProviders { diff --git a/src/app/views/partials/content/general/code-preview/code-preview-inner/code-preview-inner.component.ts b/src/app/views/partials/content/general/code-preview/code-preview-inner/code-preview-inner.component.ts index d6fdc9e..02d974b 100644 --- a/src/app/views/partials/content/general/code-preview/code-preview-inner/code-preview-inner.component.ts +++ b/src/app/views/partials/content/general/code-preview/code-preview-inner/code-preview-inner.component.ts @@ -4,7 +4,7 @@ import { DomSanitizer } from '@angular/platform-browser'; @Component({ selector: 'kt-code-preview-inner', - templateUrl: './code-preview-inner.component.html' + templateUrl: './code-preview-inner.component.html', }) export class CodePreviewInnerComponent implements OnInit { // Public properties @@ -18,8 +18,7 @@ export class CodePreviewInnerComponent implements OnInit { * * @param sanitizer sanitizer */ - constructor(private sanitizer: DomSanitizer) { - } + constructor(private sanitizer: DomSanitizer) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -28,5 +27,5 @@ export class CodePreviewInnerComponent implements OnInit { /** * On init */ - ngOnInit() { } + ngOnInit() {} } diff --git a/src/app/views/partials/content/general/code-preview/code-preview.component.ts b/src/app/views/partials/content/general/code-preview/code-preview.component.ts index 1d91fae..d6e455c 100644 --- a/src/app/views/partials/content/general/code-preview/code-preview.component.ts +++ b/src/app/views/partials/content/general/code-preview/code-preview.component.ts @@ -4,7 +4,7 @@ import { Component, Input, ChangeDetectionStrategy } from '@angular/core'; @Component({ selector: 'kt-code-preview', templateUrl: './code-preview.component.html', - changeDetection: ChangeDetectionStrategy.OnPush + changeDetection: ChangeDetectionStrategy.OnPush, }) export class CodePreviewComponent { // Public properites diff --git a/src/app/views/partials/content/general/code-preview/code-preview.module.ts b/src/app/views/partials/content/general/code-preview/code-preview.module.ts index 7d71d88..eb368f7 100644 --- a/src/app/views/partials/content/general/code-preview/code-preview.module.ts +++ b/src/app/views/partials/content/general/code-preview/code-preview.module.ts @@ -8,11 +8,8 @@ import { CodePreviewComponent } from './code-preview.component'; import { CodePreviewInnerComponent } from './code-preview-inner/code-preview-inner.component'; @NgModule({ - imports: [ - CommonModule, - NgbModule - ], + imports: [CommonModule, NgbModule], exports: [CodePreviewComponent, CodePreviewInnerComponent], - declarations: [CodePreviewComponent, CodePreviewInnerComponent] + declarations: [CodePreviewComponent, CodePreviewInnerComponent], }) export class CodePreviewModule {} diff --git a/src/app/views/partials/content/general/error/error.component.ts b/src/app/views/partials/content/general/error/error.component.ts index f58283f..fe4095e 100644 --- a/src/app/views/partials/content/general/error/error.component.ts +++ b/src/app/views/partials/content/general/error/error.component.ts @@ -4,7 +4,7 @@ import { Component, HostBinding, Input } from '@angular/core'; @Component({ selector: 'kt-error', templateUrl: './error.component.html', - styleUrls: ['./error.component.scss'] + styleUrls: ['./error.component.scss'], }) export class ErrorComponent { // Public properties diff --git a/src/app/views/partials/content/general/material-preview/material-preview.component.ts b/src/app/views/partials/content/general/material-preview/material-preview.component.ts index 81ef413..5773b91 100644 --- a/src/app/views/partials/content/general/material-preview/material-preview.component.ts +++ b/src/app/views/partials/content/general/material-preview/material-preview.component.ts @@ -13,8 +13,7 @@ export class MaterialPreviewComponent implements OnInit { /** * Component constructor */ - constructor() { - } + constructor() {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -23,8 +22,7 @@ export class MaterialPreviewComponent implements OnInit { /** * On init */ - ngOnInit() { - } + ngOnInit() {} /** * Toggle visibility diff --git a/src/app/views/partials/content/general/material-preview/material-preview.module.ts b/src/app/views/partials/content/general/material-preview/material-preview.module.ts index ca75769..0c69dde 100644 --- a/src/app/views/partials/content/general/material-preview/material-preview.module.ts +++ b/src/app/views/partials/content/general/material-preview/material-preview.module.ts @@ -34,7 +34,6 @@ import { HighlightModule } from 'ngx-highlightjs'; MatIconModule, ], exports: [MaterialPreviewComponent], - declarations: [MaterialPreviewComponent] + declarations: [MaterialPreviewComponent], }) -export class MaterialPreviewModule { -} +export class MaterialPreviewModule {} diff --git a/src/app/views/partials/content/general/notice/notice.component.ts b/src/app/views/partials/content/general/notice/notice.component.ts index a03a142..5b243e7 100644 --- a/src/app/views/partials/content/general/notice/notice.component.ts +++ b/src/app/views/partials/content/general/notice/notice.component.ts @@ -4,7 +4,7 @@ import { Component, OnInit, Input, ChangeDetectionStrategy } from '@angular/core @Component({ selector: 'kt-notice', templateUrl: './notice.component.html', - changeDetection: ChangeDetectionStrategy.OnPush + changeDetection: ChangeDetectionStrategy.OnPush, }) export class NoticeComponent implements OnInit { // Public properties diff --git a/src/app/views/partials/content/general/portlet/portlet-body.component.ts b/src/app/views/partials/content/general/portlet/portlet-body.component.ts index 14a935e..e9790e7 100644 --- a/src/app/views/partials/content/general/portlet/portlet-body.component.ts +++ b/src/app/views/partials/content/general/portlet/portlet-body.component.ts @@ -4,7 +4,8 @@ import { Component, HostBinding, Input, OnInit } from '@angular/core'; @Component({ selector: 'kt-portlet-body', template: ` - ` + + `, }) export class PortletBodyComponent implements OnInit { // Public properties diff --git a/src/app/views/partials/content/general/portlet/portlet-footer.component.ts b/src/app/views/partials/content/general/portlet/portlet-footer.component.ts index a30f1e9..9a9b521 100644 --- a/src/app/views/partials/content/general/portlet/portlet-footer.component.ts +++ b/src/app/views/partials/content/general/portlet/portlet-footer.component.ts @@ -4,7 +4,8 @@ import { Component, HostBinding, Input, OnInit } from '@angular/core'; @Component({ selector: 'kt-portlet-footer', template: ` - ` + + `, }) export class PortletFooterComponent implements OnInit { // Public properties diff --git a/src/app/views/partials/content/general/portlet/portlet-header.component.ts b/src/app/views/partials/content/general/portlet/portlet-header.component.ts index 345b94d..ad69ad7 100644 --- a/src/app/views/partials/content/general/portlet/portlet-header.component.ts +++ b/src/app/views/partials/content/general/portlet/portlet-header.component.ts @@ -1,6 +1,16 @@ import { KtDialogService } from './../../../../../core/_base/layout'; // Angular -import { AfterViewInit, Component, ElementRef, HostBinding, Input, OnDestroy, OnInit, ViewChild, ChangeDetectorRef } from '@angular/core'; +import { + AfterViewInit, + Component, + ElementRef, + HostBinding, + Input, + OnDestroy, + OnInit, + ViewChild, + ChangeDetectorRef, +} from '@angular/core'; // RXJS import { Observable, Subscription } from 'rxjs'; import { distinctUntilChanged } from 'rxjs/operators'; @@ -19,7 +29,8 @@ import { distinctUntilChanged } from 'rxjs/operators';
-
` + + `, }) export class PortletHeaderComponent implements OnInit, AfterViewInit, OnDestroy { // Public properties @@ -47,8 +58,7 @@ export class PortletHeaderComponent implements OnInit, AfterViewInit, OnDestroy private subscriptions: Subscription[] = []; - constructor(private el: ElementRef, private ktDialogService: KtDialogService) { - } + constructor(private el: ElementRef, private ktDialogService: KtDialogService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -66,7 +76,6 @@ export class PortletHeaderComponent implements OnInit, AfterViewInit, OnDestroy // hide tools' parent node if no tools template is provided this.hideTools = this.refTools.nativeElement.children.length === 0; - } ngAfterViewInit(): void { diff --git a/src/app/views/partials/content/general/portlet/portlet.component.ts b/src/app/views/partials/content/general/portlet/portlet.component.ts index 618ec26..78634a1 100644 --- a/src/app/views/partials/content/general/portlet/portlet.component.ts +++ b/src/app/views/partials/content/general/portlet/portlet.component.ts @@ -18,7 +18,7 @@ export interface PortletOptions { @Component({ selector: 'kt-portlet', templateUrl: './portlet.component.html', - exportAs: 'ktPortlet' + exportAs: 'ktPortlet', }) export class PortletComponent implements OnInit, AfterViewInit { // Public properties @@ -44,8 +44,11 @@ export class PortletComponent implements OnInit, AfterViewInit { * @param loader: LoadingBarService * @param layoutConfigService: LayoutConfigService */ - constructor(private el: ElementRef, public loader: LoadingBarService, - private layoutConfigService: LayoutConfigService) { + constructor( + private el: ElementRef, + public loader: LoadingBarService, + private layoutConfigService: LayoutConfigService, + ) { this.loader.complete(); } @@ -56,13 +59,10 @@ export class PortletComponent implements OnInit, AfterViewInit { /** * On init */ - ngOnInit() { - } + ngOnInit() {} /** * After view init */ - ngAfterViewInit() { - } - + ngAfterViewInit() {} } diff --git a/src/app/views/partials/content/general/portlet/portlet.module.ts b/src/app/views/partials/content/general/portlet/portlet.module.ts index 2692146..4f5e8dd 100644 --- a/src/app/views/partials/content/general/portlet/portlet.module.ts +++ b/src/app/views/partials/content/general/portlet/portlet.module.ts @@ -12,24 +12,8 @@ import { PortletBodyComponent } from './portlet-body.component'; import { PortletFooterComponent } from './portlet-footer.component'; @NgModule({ - imports: [ - CommonModule, - CoreModule, - MatProgressSpinnerModule, - MatProgressBarModule - ], - declarations: [ - PortletComponent, - PortletHeaderComponent, - PortletBodyComponent, - PortletFooterComponent, - ], - exports: [ - PortletComponent, - PortletHeaderComponent, - PortletBodyComponent, - PortletFooterComponent, - ] + imports: [CommonModule, CoreModule, MatProgressSpinnerModule, MatProgressBarModule], + declarations: [PortletComponent, PortletHeaderComponent, PortletBodyComponent, PortletFooterComponent], + exports: [PortletComponent, PortletHeaderComponent, PortletBodyComponent, PortletFooterComponent], }) -export class PortletModule { -} +export class PortletModule {} diff --git a/src/app/views/partials/content/widgets/general/data-table/data-table.component.ts b/src/app/views/partials/content/widgets/general/data-table/data-table.component.ts index ead6b75..6d1ae4c 100644 --- a/src/app/views/partials/content/widgets/general/data-table/data-table.component.ts +++ b/src/app/views/partials/content/widgets/general/data-table/data-table.component.ts @@ -8,21 +8,28 @@ import { merge } from 'rxjs'; // Crud import { QueryParamsModel } from '../../../../../../core/_base/crud'; // Metronic -import { - DataTableItemModel, - DataTableService -} from '../../../../../../core/_base/metronic'; +import { DataTableItemModel, DataTableService } from '../../../../../../core/_base/metronic'; import { DataTableDataSource } from './data-table.data-source'; @Component({ selector: 'kt-data-table', templateUrl: './data-table.component.html', - styleUrls: ['./data-table.component.scss'] + styleUrls: ['./data-table.component.scss'], }) export class DataTableComponent implements OnInit { // Public properties dataSource: DataTableDataSource; - displayedColumns = ['id', 'cManufacture', 'cModel', 'cMileage', 'cColor', 'cPrice', 'cCondition', 'cStatus', 'actions' ]; + displayedColumns = [ + 'id', + 'cManufacture', + 'cModel', + 'cMileage', + 'cColor', + 'cPrice', + 'cCondition', + 'cStatus', + 'actions', + ]; @ViewChild(MatPaginator) paginator: MatPaginator; @ViewChild(MatSort) sort: MatSort; selection = new SelectionModel(true, []); @@ -53,7 +60,7 @@ export class DataTableComponent implements OnInit { .pipe( tap(() => { this.loadItems(); - }) + }), ) .subscribe(); @@ -74,7 +81,7 @@ export class DataTableComponent implements OnInit { this.sort.direction, this.sort.active, this.paginator.pageIndex, - firstLoad ? 6 : this.paginator.pageSize + firstLoad ? 6 : this.paginator.pageSize, ); this.dataSource.loadItems(queryParams); this.selection.clear(); diff --git a/src/app/views/partials/content/widgets/general/data-table/data-table.data-source.ts b/src/app/views/partials/content/widgets/general/data-table/data-table.data-source.ts index eb4e98e..8e7d2d8 100644 --- a/src/app/views/partials/content/widgets/general/data-table/data-table.data-source.ts +++ b/src/app/views/partials/content/widgets/general/data-table/data-table.data-source.ts @@ -1,10 +1,10 @@ // Angular import { CollectionViewer, DataSource } from '@angular/cdk/collections'; // RxJS -import { Observable, BehaviorSubject, of} from 'rxjs'; +import { Observable, BehaviorSubject, of } from 'rxjs'; import { catchError, finalize, tap } from 'rxjs/operators'; // CRUD -import { QueryParamsModel, QueryResultsModel, HttpExtenstionsModel } from '../../../../../../core/_base/crud'; +import { QueryParamsModel, QueryResultsModel, HttpExtenstionsModel } from '../../../../../../core/_base/crud'; import { DataTableService, DataTableItemModel } from '../../../../../../core/_base/metronic'; // Why not use MatTableDataSource? @@ -33,7 +33,7 @@ export class DataTableDataSource implements DataSource { constructor(private dataTableService: DataTableService) { this.loading$ = this.loadingSubject.asObservable(); this.paginatorTotal$ = this.paginatorTotalSubject.asObservable(); - this.paginatorTotal$.subscribe(res => this.hasItems = res > 0); + this.paginatorTotal$.subscribe(res => (this.hasItems = res > 0)); } /** @@ -43,8 +43,8 @@ export class DataTableDataSource implements DataSource { */ connect(collectionViewer: CollectionViewer): Observable { // Connecting data source - return this.entitySubject.asObservable(); - } + return this.entitySubject.asObservable(); + } /** * Disconnect data-source @@ -53,7 +53,7 @@ export class DataTableDataSource implements DataSource { */ disconnect(collectionViewer: CollectionViewer): void { // Disonnecting data source - this.entitySubject.complete(); + this.entitySubject.complete(); this.loadingSubject.complete(); this.paginatorTotalSubject.complete(); } @@ -79,21 +79,23 @@ export class DataTableDataSource implements DataSource { queryResults.items = entitiesResult; queryResults.totalCount = totalCount; return queryResults; - } + } - loadItems(queryParams: QueryParamsModel) { + loadItems(queryParams: QueryParamsModel) { this.loadingSubject.next(true); - this.dataTableService.getAllItems().pipe( - tap(res => { - const result = this.baseFilter(res, queryParams); - this.entitySubject.next(result.items); - this.paginatorTotalSubject.next(result.totalCount); - - }), - catchError(err => of(new QueryResultsModel([], err))), - finalize(() => this.loadingSubject.next(false)) - ).subscribe(); - } + this.dataTableService + .getAllItems() + .pipe( + tap(res => { + const result = this.baseFilter(res, queryParams); + this.entitySubject.next(result.items); + this.paginatorTotalSubject.next(result.totalCount); + }), + catchError(err => of(new QueryResultsModel([], err))), + finalize(() => this.loadingSubject.next(false)), + ) + .subscribe(); + } sortArray(_incomingArray: any[], _sortField: string = '', _sortOrder: string = 'asc'): any[] { const httpExtenstion = new HttpExtenstionsModel(); diff --git a/src/app/views/partials/content/widgets/timeline2/timeline2.component.ts b/src/app/views/partials/content/widgets/timeline2/timeline2.component.ts index 83590f7..a0cb771 100644 --- a/src/app/views/partials/content/widgets/timeline2/timeline2.component.ts +++ b/src/app/views/partials/content/widgets/timeline2/timeline2.component.ts @@ -11,7 +11,7 @@ export interface Timeline2Data { @Component({ selector: 'kt-timeline2', templateUrl: './timeline2.component.html', - styleUrls: ['./timeline2.component.scss'] + styleUrls: ['./timeline2.component.scss'], }) export class Timeline2Component implements OnInit { // Public properties @@ -30,40 +30,44 @@ export class Timeline2Component implements OnInit { { time: '10:00', icon: 'fa fa-genderless kt-font-danger', - text: 'Lorem ipsum dolor sit amit,consectetur eiusmdd tempor\n' + - 'incididunt ut labore et dolore magna', + text: 'Lorem ipsum dolor sit amit,consectetur eiusmdd tempor\n' + 'incididunt ut labore et dolore magna', }, { time: '12:45', icon: 'fa fa-genderless kt-font-success', text: 'AEOL Meeting With', - attachment: '\n' + + attachment: + '\n' + '' + '' + '' + - '' + '', }, { time: '14:00', icon: 'fa fa-genderless kt-font-brand', - text: 'Make Deposit USD 700 To ESL.', + text: + 'Make Deposit USD 700 To ESL.', }, { time: '17:00', icon: 'fa fa-genderless kt-font-info', - text: 'Placed a new order in SIGNATURE MOBILE marketplace.', + text: + 'Placed a new order in SIGNATURE MOBILE marketplace.', }, { time: '16:00', icon: 'fa fa-genderless kt-font-brand', - text: 'Lorem ipsum dolor sit amit,consectetur eiusmdd tempor
' + + text: + 'Lorem ipsum dolor sit amit,consectetur eiusmdd tempor
' + 'incididunt ut labore et dolore magna elit enim at minim
' + 'veniam quis nostrud', }, { time: '17:00', icon: 'fa fa-genderless kt-font-danger', - text: 'Received a new feedback on FinancePro App product.', + text: + 'Received a new feedback on FinancePro App product.', }, ]; } diff --git a/src/app/views/partials/content/widgets/widget.module.ts b/src/app/views/partials/content/widgets/widget.module.ts index 5e7a793..3686be1 100644 --- a/src/app/views/partials/content/widgets/widget.module.ts +++ b/src/app/views/partials/content/widgets/widget.module.ts @@ -1,6 +1,13 @@ import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; -import { MatButtonModule, MatIconModule, MatPaginatorModule, MatProgressSpinnerModule, MatSortModule, MatTableModule, } from '@angular/material'; +import { + MatButtonModule, + MatIconModule, + MatPaginatorModule, + MatProgressSpinnerModule, + MatSortModule, + MatTableModule, +} from '@angular/material'; import { CoreModule } from '../../../../core/core.module'; import { PerfectScrollbarModule } from 'ngx-perfect-scrollbar'; // Datatable @@ -47,7 +54,6 @@ import { Timeline2Component } from './timeline2/timeline2.component'; MatProgressSpinnerModule, MatPaginatorModule, MatSortModule, - ] + ], }) -export class WidgetModule { -} +export class WidgetModule {} diff --git a/src/app/views/partials/content/widgets/widget1/widget1.component.ts b/src/app/views/partials/content/widgets/widget1/widget1.component.ts index e4a4f54..14ec726 100644 --- a/src/app/views/partials/content/widgets/widget1/widget1.component.ts +++ b/src/app/views/partials/content/widgets/widget1/widget1.component.ts @@ -13,7 +13,7 @@ export interface Widget1Data { @Component({ selector: 'kt-widget1', templateUrl: './widget1.component.html', - styleUrls: ['./widget1.component.scss'] + styleUrls: ['./widget1.component.scss'], }) export class Widget1Component implements OnInit { // Public properties @@ -33,20 +33,21 @@ export class Widget1Component implements OnInit { title: 'Member Profit', desc: 'Awerage Weekly Profit', value: '+$17,800', - valueClass: 'kt-font-brand' - }, { + valueClass: 'kt-font-brand', + }, + { title: 'Orders', desc: 'Weekly Customer Orders', value: '+$1,800', - valueClass: 'kt-font-danger' - }, { + valueClass: 'kt-font-danger', + }, + { title: 'Issue Reports', desc: 'System bugs and issues', value: '-27,49%', - valueClass: 'kt-font-success' - } + valueClass: 'kt-font-success', + }, ]); } } - } diff --git a/src/app/views/partials/content/widgets/widget12/widget12.component.ts b/src/app/views/partials/content/widgets/widget12/widget12.component.ts index cd0bde8..ad763b9 100644 --- a/src/app/views/partials/content/widgets/widget12/widget12.component.ts +++ b/src/app/views/partials/content/widgets/widget12/widget12.component.ts @@ -9,12 +9,11 @@ import { LayoutConfigService } from '../../../../../core/_base/layout'; @Component({ selector: 'kt-widget12', templateUrl: './widget12.component.html', - styleUrls: ['./widget12.component.scss'] + styleUrls: ['./widget12.component.scss'], }) export class Widget12Component implements OnInit { - // Public properties - @Input() data: { labels: string[], datasets: any[] }; + @Input() data: { labels: string[]; datasets: any[] }; @Input() type: string = 'line'; @ViewChild('chart') chart: ElementRef; @@ -22,8 +21,7 @@ export class Widget12Component implements OnInit { * Component constructor * @param layoutConfigService */ - constructor(private layoutConfigService: LayoutConfigService) { - } + constructor(private layoutConfigService: LayoutConfigService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -41,34 +39,60 @@ export class Widget12Component implements OnInit { { fill: true, // borderWidth: 0, - backgroundColor: color(this.layoutConfigService.getConfig('colors.state.brand')).alpha(0.6).rgbString(), - borderColor: color(this.layoutConfigService.getConfig('colors.state.brand')).alpha(0).rgbString(), + backgroundColor: color(this.layoutConfigService.getConfig('colors.state.brand')) + .alpha(0.6) + .rgbString(), + borderColor: color(this.layoutConfigService.getConfig('colors.state.brand')) + .alpha(0) + .rgbString(), pointHoverRadius: 4, pointHoverBorderWidth: 12, - pointBackgroundColor: Chart.helpers.color('#000000').alpha(0).rgbString(), - pointBorderColor: Chart.helpers.color('#000000').alpha(0).rgbString(), + pointBackgroundColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointBorderColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), pointHoverBackgroundColor: this.layoutConfigService.getConfig('colors.state.brand'), - pointHoverBorderColor: Chart.helpers.color('#000000').alpha(0.1).rgbString(), + pointHoverBorderColor: Chart.helpers + .color('#000000') + .alpha(0.1) + .rgbString(), - data: [20, 40, 50, 25, 35, 60, 30] + data: [20, 40, 50, 25, 35, 60, 30], }, { fill: true, // borderWidth: 0, - backgroundColor: color(this.layoutConfigService.getConfig('colors.state.brand')).alpha(0.2).rgbString(), - borderColor: color(this.layoutConfigService.getConfig('colors.state.brand')).alpha(0).rgbString(), + backgroundColor: color(this.layoutConfigService.getConfig('colors.state.brand')) + .alpha(0.2) + .rgbString(), + borderColor: color(this.layoutConfigService.getConfig('colors.state.brand')) + .alpha(0) + .rgbString(), pointHoverRadius: 4, pointHoverBorderWidth: 12, - pointBackgroundColor: Chart.helpers.color('#000000').alpha(0).rgbString(), - pointBorderColor: Chart.helpers.color('#000000').alpha(0).rgbString(), + pointBackgroundColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointBorderColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), pointHoverBackgroundColor: this.layoutConfigService.getConfig('colors.state.brand'), - pointHoverBorderColor: Chart.helpers.color('#000000').alpha(0.1).rgbString(), + pointHoverBorderColor: Chart.helpers + .color('#000000') + .alpha(0.1) + .rgbString(), - data: [25, 45, 55, 30, 40, 65, 35] - } - ] + data: [25, 45, 55, 30, 40, 65, 35], + }, + ], }; } this.initChart(); @@ -86,57 +110,61 @@ export class Widget12Component implements OnInit { maintainAspectRatio: false, legend: false, scales: { - xAxes: [{ - categoryPercentage: 0.35, - barPercentage: 0.70, - display: true, - scaleLabel: { - display: false, - labelString: 'Month' - }, - gridLines: false, - ticks: { + xAxes: [ + { + categoryPercentage: 0.35, + barPercentage: 0.7, display: true, - beginAtZero: true, - fontColor: this.layoutConfigService.getConfig('colors.base.shape.3'), - fontSize: 13, - padding: 10 - } - }], - yAxes: [{ - categoryPercentage: 0.35, - barPercentage: 0.70, - display: true, - scaleLabel: { - display: false, - labelString: 'Value' + scaleLabel: { + display: false, + labelString: 'Month', + }, + gridLines: false, + ticks: { + display: true, + beginAtZero: true, + fontColor: this.layoutConfigService.getConfig('colors.base.shape.3'), + fontSize: 13, + padding: 10, + }, }, - gridLines: { - color: this.layoutConfigService.getConfig('colors.base.shape.2'), - drawBorder: false, - offsetGridLines: false, - drawTicks: false, - borderDash: [3, 4], - zeroLineWidth: 1, - zeroLineColor: this.layoutConfigService.getConfig('colors.base.shape.2'), - zeroLineBorderDash: [3, 4] - }, - ticks: { - max: 70, - stepSize: 10, + ], + yAxes: [ + { + categoryPercentage: 0.35, + barPercentage: 0.7, display: true, - beginAtZero: true, - fontColor: this.layoutConfigService.getConfig('colors.base.shape.3'), - fontSize: 13, - padding: 10 - } - }] + scaleLabel: { + display: false, + labelString: 'Value', + }, + gridLines: { + color: this.layoutConfigService.getConfig('colors.base.shape.2'), + drawBorder: false, + offsetGridLines: false, + drawTicks: false, + borderDash: [3, 4], + zeroLineWidth: 1, + zeroLineColor: this.layoutConfigService.getConfig('colors.base.shape.2'), + zeroLineBorderDash: [3, 4], + }, + ticks: { + max: 70, + stepSize: 10, + display: true, + beginAtZero: true, + fontColor: this.layoutConfigService.getConfig('colors.base.shape.3'), + fontSize: 13, + padding: 10, + }, + }, + ], }, title: { - display: false + display: false, }, hover: { - mode: 'index' + mode: 'index', }, tooltips: { enabled: true, @@ -151,17 +179,17 @@ export class Widget12Component implements OnInit { titleFontColor: '#ffffff', cornerRadius: 4, footerSpacing: 0, - titleSpacing: 0 + titleSpacing: 0, }, layout: { padding: { left: 0, right: 0, top: 5, - bottom: 5 - } - } - } + bottom: 5, + }, + }, + }, }); } } diff --git a/src/app/views/partials/content/widgets/widget14/widget14.component.ts b/src/app/views/partials/content/widgets/widget14/widget14.component.ts index 433bc51..226d296 100644 --- a/src/app/views/partials/content/widgets/widget14/widget14.component.ts +++ b/src/app/views/partials/content/widgets/widget14/widget14.component.ts @@ -22,8 +22,7 @@ export class Widget14Component implements OnInit { * * @param layoutConfigService: LayoutConfigService */ - constructor(private layoutConfigService: LayoutConfigService) { - } + constructor(private layoutConfigService: LayoutConfigService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -35,22 +34,36 @@ export class Widget14Component implements OnInit { ngOnInit() { if (!this.data) { this.data = { - labels: ['Label 1', 'Label 2', 'Label 3', 'Label 4', 'Label 5', 'Label 6', 'Label 7', 'Label 8', 'Label 9', 'Label 10', 'Label 11', 'Label 12', 'Label 13', 'Label 14', 'Label 15', 'Label 16'], + labels: [ + 'Label 1', + 'Label 2', + 'Label 3', + 'Label 4', + 'Label 5', + 'Label 6', + 'Label 7', + 'Label 8', + 'Label 9', + 'Label 10', + 'Label 11', + 'Label 12', + 'Label 13', + 'Label 14', + 'Label 15', + 'Label 16', + ], datasets: [ { // label: 'dataset 1', backgroundColor: this.layoutConfigService.getConfig('colors.state.success'), - data: [ - 15, 20, 25, 30, 25, 20, 15, 20, 25, 30, 25, 20, 15, 10, 15, 20 - ] - }, { + data: [15, 20, 25, 30, 25, 20, 15, 20, 25, 30, 25, 20, 15, 10, 15, 20], + }, + { // label: 'dataset 2', backgroundColor: '#f3f3fb', - data: [ - 15, 20, 25, 30, 25, 20, 15, 20, 25, 30, 25, 20, 15, 10, 15, 20 - ] - } - ] + data: [15, 20, 25, 30, 25, 20, 15, 20, 25, 30, 25, 20, 15, 10, 15, 20], + }, + ], }; } @@ -74,35 +87,39 @@ export class Widget14Component implements OnInit { mode: 'nearest', xPadding: 10, yPadding: 10, - caretPadding: 10 + caretPadding: 10, }, legend: { - display: false + display: false, }, responsive: true, maintainAspectRatio: false, barRadius: 4, scales: { - xAxes: [{ - display: false, - gridLines: false, - stacked: true - }], - yAxes: [{ - display: false, - stacked: true, - gridLines: false - }] + xAxes: [ + { + display: false, + gridLines: false, + stacked: true, + }, + ], + yAxes: [ + { + display: false, + stacked: true, + gridLines: false, + }, + ], }, layout: { padding: { left: 0, right: 0, top: 0, - bottom: 0 - } - } - } + bottom: 0, + }, + }, + }, }); } } diff --git a/src/app/views/partials/content/widgets/widget26/widget26.component.ts b/src/app/views/partials/content/widgets/widget26/widget26.component.ts index d7ef7ad..a5ec0e4 100644 --- a/src/app/views/partials/content/widgets/widget26/widget26.component.ts +++ b/src/app/views/partials/content/widgets/widget26/widget26.component.ts @@ -4,18 +4,14 @@ import { SparklineChartOptions } from '../../../../../core/_base/metronic'; @Component({ selector: 'kt-widget26', templateUrl: './widget26.component.html', - styleUrls: ['./widget26.component.scss'] + styleUrls: ['./widget26.component.scss'], }) export class Widget26Component implements OnInit { - @Input() value: string | number; @Input() desc: string; @Input() options: SparklineChartOptions; - constructor() { - } - - ngOnInit() { - } + constructor() {} + ngOnInit() {} } diff --git a/src/app/views/partials/content/widgets/widget4/widget4.component.ts b/src/app/views/partials/content/widgets/widget4/widget4.component.ts index e2f77c5..5881adb 100644 --- a/src/app/views/partials/content/widgets/widget4/widget4.component.ts +++ b/src/app/views/partials/content/widgets/widget4/widget4.component.ts @@ -17,7 +17,7 @@ export interface Widget4Data { @Component({ selector: 'kt-widget4', templateUrl: './widget4.component.html', - styleUrls: ['./widget4.component.scss'] + styleUrls: ['./widget4.component.scss'], }) export class Widget4Component implements OnInit { // Public properties @@ -30,8 +30,7 @@ export class Widget4Component implements OnInit { * * @param layoutConfigService: LayoutConfigService */ - constructor(private layoutConfigService: LayoutConfigService) { - } + constructor(private layoutConfigService: LayoutConfigService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -48,23 +47,28 @@ export class Widget4Component implements OnInit { pic: './assets/media/files/doc.svg', title: 'Metronic Documentation', url: 'https://keenthemes.com.my/metronic', - }, { + }, + { pic: './assets/media/files/jpg.svg', title: 'Project Launch Evgent', url: 'https://keenthemes.com.my/metronic', - }, { + }, + { pic: './assets/media/files/pdf.svg', title: 'Full Developer Manual For 4.7', url: 'https://keenthemes.com.my/metronic', - }, { + }, + { pic: './assets/media/files/javascript.svg', title: 'Make JS Great Again', url: 'https://keenthemes.com.my/metronic', - }, { + }, + { pic: './assets/media/files/zip.svg', title: 'Download Ziped version OF 5.0', url: 'https://keenthemes.com.my/metronic', - }, { + }, + { pic: './assets/media/files/pdf.svg', title: 'Finance Report 2016/2017', url: 'https://keenthemes.com.my/metronic', diff --git a/src/app/views/partials/content/widgets/widget5/widget5.component.ts b/src/app/views/partials/content/widgets/widget5/widget5.component.ts index b3a5f20..413ea5e 100644 --- a/src/app/views/partials/content/widgets/widget5/widget5.component.ts +++ b/src/app/views/partials/content/widgets/widget5/widget5.component.ts @@ -15,7 +15,7 @@ export interface Widget5Data { @Component({ selector: 'kt-widget5', templateUrl: './widget5.component.html', - styleUrls: ['./widget5.component.scss'] + styleUrls: ['./widget5.component.scss'], }) export class Widget5Component implements OnInit { // Public properties @@ -35,46 +35,52 @@ export class Widget5Component implements OnInit { pic: './assets/media/products/product6.jpg', title: 'Great Logo Designn', desc: 'Metronic admin themes.', - info: 'Author:Keenthemes' + + info: + 'Author:Keenthemes' + 'Released:23.08.17', - largeInfo: '
\n' + + largeInfo: + '
\n' + ' 19,200\n' + ' sales\n' + '
\n' + '
\n' + ' 1046\n' + ' votes\n' + - '
' + '
', }, { pic: './assets/media/products/product10.jpg', title: 'Branding Mockup', desc: 'Metronic bootstrap themes.', - info: 'Author:Fly themes' + + info: + 'Author:Fly themes' + 'Released:23.08.17', - largeInfo: '
\n' + + largeInfo: + '
\n' + ' 24,583\n' + ' sales\n' + '
\n' + '
\n' + ' 3809\n' + ' votes\n' + - '
' + '
', }, { pic: './assets/media/products/product11.jpg', title: 'Awesome Mobile App', desc: 'Metronic admin themes. Lorem Ipsum Amet.', - info: 'Author:Fly themes' + + info: + 'Author:Fly themes' + 'Released:23.08.17', - largeInfo: '
\n' + + largeInfo: + '
\n' + ' 210,054\n' + ' sales\n' + '
\n' + '
\n' + ' 1103\n' + ' votes\n' + - '
' + '
', }, ]); } diff --git a/src/app/views/partials/layout/context-menu/context-menu.component.ts b/src/app/views/partials/layout/context-menu/context-menu.component.ts index aea0c00..d1639e8 100644 --- a/src/app/views/partials/layout/context-menu/context-menu.component.ts +++ b/src/app/views/partials/layout/context-menu/context-menu.component.ts @@ -7,7 +7,6 @@ import { Component } from '@angular/core'; @Component({ selector: 'kt-context-menu', templateUrl: './context-menu.component.html', - styleUrls: ['./context-menu.component.scss'] + styleUrls: ['./context-menu.component.scss'], }) -export class ContextMenuComponent { -} +export class ContextMenuComponent {} diff --git a/src/app/views/partials/layout/context-menu2/context-menu2.component.ts b/src/app/views/partials/layout/context-menu2/context-menu2.component.ts index a37d480..485c9df 100644 --- a/src/app/views/partials/layout/context-menu2/context-menu2.component.ts +++ b/src/app/views/partials/layout/context-menu2/context-menu2.component.ts @@ -7,7 +7,6 @@ import { Component } from '@angular/core'; @Component({ selector: 'kt-context-menu2', templateUrl: './context-menu2.component.html', - styleUrls: ['./context-menu2.component.scss'] + styleUrls: ['./context-menu2.component.scss'], }) -export class ContextMenu2Component { -} +export class ContextMenu2Component {} diff --git a/src/app/views/partials/layout/index.ts b/src/app/views/partials/layout/index.ts index 4672983..3e63257 100644 --- a/src/app/views/partials/layout/index.ts +++ b/src/app/views/partials/layout/index.ts @@ -21,6 +21,5 @@ export { SearchDropdownComponent } from './topbar/search-dropdown/search-dropdow export { UserProfileComponent } from './topbar/user-profile/user-profile.component'; export { UserProfile2Component } from './topbar/user-profile2/user-profile2.component'; - // Models export { ISearchResult } from './search-result/search-result.component'; diff --git a/src/app/views/partials/layout/quick-panel/quick-panel.component.ts b/src/app/views/partials/layout/quick-panel/quick-panel.component.ts index 8439cd4..b1e4e14 100644 --- a/src/app/views/partials/layout/quick-panel/quick-panel.component.ts +++ b/src/app/views/partials/layout/quick-panel/quick-panel.component.ts @@ -6,7 +6,7 @@ import { OffcanvasOptions } from '../../../../core/_base/metronic'; @Component({ selector: 'kt-quick-panel', templateUrl: './quick-panel.component.html', - styleUrls: ['./quick-panel.component.scss'] + styleUrls: ['./quick-panel.component.scss'], }) export class QuickPanelComponent { // Public properties @@ -14,6 +14,6 @@ export class QuickPanelComponent { overlay: true, baseClass: 'kt-quick-panel', closeBy: 'kt_quick_panel_close_btn', - toggleBy: 'kt_quick_panel_toggler_btn' + toggleBy: 'kt_quick_panel_toggler_btn', }; } diff --git a/src/app/views/partials/layout/scroll-top/scroll-top.component.ts b/src/app/views/partials/layout/scroll-top/scroll-top.component.ts index 9cf8f2d..68ee9e2 100644 --- a/src/app/views/partials/layout/scroll-top/scroll-top.component.ts +++ b/src/app/views/partials/layout/scroll-top/scroll-top.component.ts @@ -11,6 +11,6 @@ export class ScrollTopComponent { // Public properties scrollTopOptions: ScrollTopOptions = { offset: 300, - speed: 600 + speed: 600, }; } diff --git a/src/app/views/partials/layout/search-result/search-result.component.ts b/src/app/views/partials/layout/search-result/search-result.component.ts index 5660b68..23f5ea1 100644 --- a/src/app/views/partials/layout/search-result/search-result.component.ts +++ b/src/app/views/partials/layout/search-result/search-result.component.ts @@ -9,7 +9,7 @@ export interface ISearchResult { @Component({ selector: 'kt-search-result', templateUrl: './search-result.component.html', - styleUrls: ['./search-result.component.scss'] + styleUrls: ['./search-result.component.scss'], }) export class SearchResultComponent { // Public properties diff --git a/src/app/views/partials/layout/splash-screen/splash-screen.component.ts b/src/app/views/partials/layout/splash-screen/splash-screen.component.ts index b040b1f..e7e3e9b 100644 --- a/src/app/views/partials/layout/splash-screen/splash-screen.component.ts +++ b/src/app/views/partials/layout/splash-screen/splash-screen.component.ts @@ -8,7 +8,7 @@ import { LayoutConfigService, SplashScreenService } from '../../../../core/_base @Component({ selector: 'kt-splash-screen', templateUrl: './splash-screen.component.html', - styleUrls: ['./splash-screen.component.scss'] + styleUrls: ['./splash-screen.component.scss'], }) export class SplashScreenComponent implements OnInit { // Public proprties @@ -28,8 +28,8 @@ export class SplashScreenComponent implements OnInit { constructor( private el: ElementRef, private layoutConfigService: LayoutConfigService, - private splashScreenService: SplashScreenService) { - } + private splashScreenService: SplashScreenService, + ) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/views/partials/layout/sticky-toolbar/sticky-toolbar.component.ts b/src/app/views/partials/layout/sticky-toolbar/sticky-toolbar.component.ts index 3be3a75..76c6964 100644 --- a/src/app/views/partials/layout/sticky-toolbar/sticky-toolbar.component.ts +++ b/src/app/views/partials/layout/sticky-toolbar/sticky-toolbar.component.ts @@ -6,7 +6,7 @@ import { OffcanvasOptions } from '../../../../core/_base/metronic'; @Component({ selector: 'kt-sticky-toolbar', templateUrl: './sticky-toolbar.component.html', - styleUrls: ['./sticky-toolbar.component.scss'] + styleUrls: ['./sticky-toolbar.component.scss'], }) export class StickyToolbarComponent { // Public properties @@ -14,7 +14,7 @@ export class StickyToolbarComponent { overlay: true, baseClass: 'kt-demo-panel', closeBy: 'kt_demo_panel_close', - toggleBy: 'kt_demo_panel_toggle' + toggleBy: 'kt_demo_panel_toggle', }; baseHref: string; diff --git a/src/app/views/partials/layout/subheader/subheader1/subheader1.component.ts b/src/app/views/partials/layout/subheader/subheader1/subheader1.component.ts index 6c4318c..0a610c0 100644 --- a/src/app/views/partials/layout/subheader/subheader1/subheader1.component.ts +++ b/src/app/views/partials/layout/subheader/subheader1/subheader1.component.ts @@ -9,7 +9,7 @@ import { Breadcrumb } from '../../../../../core/_base/layout/services/subheader. @Component({ selector: 'kt-subheader1', templateUrl: './subheader1.component.html', - styleUrls: ['./subheader1.component.scss'] + styleUrls: ['./subheader1.component.scss'], }) export class Subheader1Component implements OnInit, OnDestroy, AfterViewInit { // Public properties @@ -26,8 +26,7 @@ export class Subheader1Component implements OnInit, OnDestroy, AfterViewInit { * * @param subheaderService: SubheaderService */ - constructor(public subheaderService: SubheaderService) { - } + constructor(public subheaderService: SubheaderService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -36,28 +35,31 @@ export class Subheader1Component implements OnInit, OnDestroy, AfterViewInit { /** * On init */ - ngOnInit() { - } + ngOnInit() {} /** * After view init */ ngAfterViewInit(): void { - this.subscriptions.push(this.subheaderService.title$.subscribe(bt => { - // breadcrumbs title sometimes can be undefined - if (bt) { + this.subscriptions.push( + this.subheaderService.title$.subscribe(bt => { + // breadcrumbs title sometimes can be undefined + if (bt) { + Promise.resolve(null).then(() => { + this.title = bt.title; + this.desc = bt.desc; + }); + } + }), + ); + + this.subscriptions.push( + this.subheaderService.breadcrumbs$.subscribe(bc => { Promise.resolve(null).then(() => { - this.title = bt.title; - this.desc = bt.desc; + this.breadcrumbs = bc; }); - } - })); - - this.subscriptions.push(this.subheaderService.breadcrumbs$.subscribe(bc => { - Promise.resolve(null).then(() => { - this.breadcrumbs = bc; - }); - })); + }), + ); } /** diff --git a/src/app/views/partials/layout/subheader/subheader2/subheader2.component.ts b/src/app/views/partials/layout/subheader/subheader2/subheader2.component.ts index a864b27..347677e 100644 --- a/src/app/views/partials/layout/subheader/subheader2/subheader2.component.ts +++ b/src/app/views/partials/layout/subheader/subheader2/subheader2.component.ts @@ -9,7 +9,7 @@ import { Breadcrumb } from '../../../../../core/_base/layout/services/subheader. @Component({ selector: 'kt-subheader2', templateUrl: './subheader2.component.html', - styleUrls: ['./subheader2.component.scss'] + styleUrls: ['./subheader2.component.scss'], }) export class Subheader2Component implements OnInit, OnDestroy, AfterViewInit { // Public properties @@ -26,8 +26,7 @@ export class Subheader2Component implements OnInit, OnDestroy, AfterViewInit { * * @param subheaderService: SubheaderService */ - constructor(public subheaderService: SubheaderService) { - } + constructor(public subheaderService: SubheaderService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -36,28 +35,31 @@ export class Subheader2Component implements OnInit, OnDestroy, AfterViewInit { /** * On init */ - ngOnInit() { - } + ngOnInit() {} /** * After view init */ ngAfterViewInit(): void { - this.subscriptions.push(this.subheaderService.title$.subscribe(bt => { - // breadcrumbs title sometimes can be undefined - if (bt) { + this.subscriptions.push( + this.subheaderService.title$.subscribe(bt => { + // breadcrumbs title sometimes can be undefined + if (bt) { + Promise.resolve(null).then(() => { + this.title = bt.title; + this.desc = bt.desc; + }); + } + }), + ); + + this.subscriptions.push( + this.subheaderService.breadcrumbs$.subscribe(bc => { Promise.resolve(null).then(() => { - this.title = bt.title; - this.desc = bt.desc; + this.breadcrumbs = bc; }); - } - })); - - this.subscriptions.push(this.subheaderService.breadcrumbs$.subscribe(bc => { - Promise.resolve(null).then(() => { - this.breadcrumbs = bc; - }); - })); + }), + ); } /** diff --git a/src/app/views/partials/layout/subheader/subheader3/subheader3.component.ts b/src/app/views/partials/layout/subheader/subheader3/subheader3.component.ts index 07f106c..d09b23d 100644 --- a/src/app/views/partials/layout/subheader/subheader3/subheader3.component.ts +++ b/src/app/views/partials/layout/subheader/subheader3/subheader3.component.ts @@ -9,7 +9,7 @@ import { Breadcrumb } from '../../../../../core/_base/layout/services/subheader. @Component({ selector: 'kt-subheader3', templateUrl: './subheader3.component.html', - styleUrls: ['./subheader3.component.scss'] + styleUrls: ['./subheader3.component.scss'], }) export class Subheader3Component implements OnInit, OnDestroy, AfterViewInit { // Public properties @@ -26,8 +26,7 @@ export class Subheader3Component implements OnInit, OnDestroy, AfterViewInit { * * @param subheaderService: SubheaderService */ - constructor(public subheaderService: SubheaderService) { - } + constructor(public subheaderService: SubheaderService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -36,28 +35,31 @@ export class Subheader3Component implements OnInit, OnDestroy, AfterViewInit { /** * On init */ - ngOnInit() { - } + ngOnInit() {} /** * After view init */ ngAfterViewInit(): void { - this.subscriptions.push(this.subheaderService.title$.subscribe(bt => { - // breadcrumbs title sometimes can be undefined - if (bt) { + this.subscriptions.push( + this.subheaderService.title$.subscribe(bt => { + // breadcrumbs title sometimes can be undefined + if (bt) { + Promise.resolve(null).then(() => { + this.title = bt.title; + this.desc = bt.desc; + }); + } + }), + ); + + this.subscriptions.push( + this.subheaderService.breadcrumbs$.subscribe(bc => { Promise.resolve(null).then(() => { - this.title = bt.title; - this.desc = bt.desc; + this.breadcrumbs = bc; }); - } - })); - - this.subscriptions.push(this.subheaderService.breadcrumbs$.subscribe(bc => { - Promise.resolve(null).then(() => { - this.breadcrumbs = bc; - }); - })); + }), + ); } /** diff --git a/src/app/views/partials/layout/topbar/cart/cart.component.ts b/src/app/views/partials/layout/topbar/cart/cart.component.ts index 520d87e..e052b6a 100644 --- a/src/app/views/partials/layout/topbar/cart/cart.component.ts +++ b/src/app/views/partials/layout/topbar/cart/cart.component.ts @@ -4,7 +4,7 @@ import { AfterViewInit, Component, Input, OnInit } from '@angular/core'; @Component({ selector: 'kt-cart', templateUrl: './cart.component.html', - styleUrls: ['./cart.component.scss'] + styleUrls: ['./cart.component.scss'], }) export class CartComponent implements OnInit, AfterViewInit { // Public properties @@ -21,8 +21,7 @@ export class CartComponent implements OnInit, AfterViewInit { /** * Component constructor */ - constructor() { - } + constructor() {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -31,12 +30,10 @@ export class CartComponent implements OnInit, AfterViewInit { /** * After view init */ - ngAfterViewInit(): void { - } + ngAfterViewInit(): void {} /** * On init */ - ngOnInit(): void { - } + ngOnInit(): void {} } diff --git a/src/app/views/partials/layout/topbar/language-selector/language-selector.component.ts b/src/app/views/partials/layout/topbar/language-selector/language-selector.component.ts index cce184a..ec70b2f 100644 --- a/src/app/views/partials/layout/topbar/language-selector/language-selector.component.ts +++ b/src/app/views/partials/layout/topbar/language-selector/language-selector.component.ts @@ -26,32 +26,32 @@ export class LanguageSelectorComponent implements OnInit { { lang: 'en', name: 'English', - flag: './assets/media/flags/012-uk.svg' + flag: './assets/media/flags/012-uk.svg', }, { lang: 'ch', name: 'Mandarin', - flag: './assets/media/flags/015-china.svg' + flag: './assets/media/flags/015-china.svg', }, { lang: 'es', name: 'Spanish', - flag: './assets/media/flags/016-spain.svg' + flag: './assets/media/flags/016-spain.svg', }, { lang: 'jp', name: 'Japanese', - flag: './assets/media/flags/014-japan.svg' + flag: './assets/media/flags/014-japan.svg', }, { lang: 'de', name: 'German', - flag: './assets/media/flags/017-germany.svg' + flag: './assets/media/flags/017-germany.svg', }, { lang: 'fr', name: 'French', - flag: './assets/media/flags/019-france.svg' + flag: './assets/media/flags/019-france.svg', }, ]; @@ -61,8 +61,7 @@ export class LanguageSelectorComponent implements OnInit { * @param translationService: TranslationService * @param router: Router */ - constructor(private translationService: TranslationService, private router: Router) { - } + constructor(private translationService: TranslationService, private router: Router) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -73,11 +72,9 @@ export class LanguageSelectorComponent implements OnInit { */ ngOnInit() { this.setSelectedLanguage(); - this.router.events - .pipe(filter(event => event instanceof NavigationStart)) - .subscribe(event => { - this.setSelectedLanguage(); - }); + this.router.events.pipe(filter(event => event instanceof NavigationStart)).subscribe(event => { + this.setSelectedLanguage(); + }); } /** diff --git a/src/app/views/partials/layout/topbar/notification/notification.component.ts b/src/app/views/partials/layout/topbar/notification/notification.component.ts index 74e5502..8af8f1a 100644 --- a/src/app/views/partials/layout/topbar/notification/notification.component.ts +++ b/src/app/views/partials/layout/topbar/notification/notification.component.ts @@ -5,10 +5,9 @@ import { DomSanitizer } from '@angular/platform-browser'; @Component({ selector: 'kt-notification', templateUrl: './notification.component.html', - styleUrls: ['notification.component.scss'] + styleUrls: ['notification.component.scss'], }) export class NotificationComponent { - // Show dot on top of the icon @Input() dot: boolean; @@ -32,6 +31,5 @@ export class NotificationComponent { * * @param sanitizer: DomSanitizer */ - constructor(private sanitizer: DomSanitizer) { - } + constructor(private sanitizer: DomSanitizer) {} } diff --git a/src/app/views/partials/layout/topbar/quick-action/quick-action.component.ts b/src/app/views/partials/layout/topbar/quick-action/quick-action.component.ts index 1909c9f..a76b25d 100644 --- a/src/app/views/partials/layout/topbar/quick-action/quick-action.component.ts +++ b/src/app/views/partials/layout/topbar/quick-action/quick-action.component.ts @@ -23,8 +23,7 @@ export class QuickActionComponent implements OnInit, AfterViewInit { /** * Component constructor */ - constructor() { - } + constructor() {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -33,14 +32,12 @@ export class QuickActionComponent implements OnInit, AfterViewInit { /** * After view init */ - ngAfterViewInit(): void { - } + ngAfterViewInit(): void {} /** * On init */ - ngOnInit(): void { - } + ngOnInit(): void {} onSVGInserted(svg) { svg.classList.add('kt-svg-icon', 'kt-svg-icon--success', 'kt-svg-icon--lg'); diff --git a/src/app/views/partials/layout/topbar/search-default/search-default.component.ts b/src/app/views/partials/layout/topbar/search-default/search-default.component.ts index 29044d1..bbfe7c7 100644 --- a/src/app/views/partials/layout/topbar/search-default/search-default.component.ts +++ b/src/app/views/partials/layout/topbar/search-default/search-default.component.ts @@ -24,8 +24,7 @@ export class SearchDefaultComponent implements OnInit { * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks */ - constructor(private cdr: ChangeDetectorRef) { - } + constructor(private cdr: ChangeDetectorRef) {} /** * On init @@ -37,56 +36,68 @@ export class SearchDefaultComponent implements OnInit { { icon: '', text: 'Documents', - type: 0 - }, { + type: 0, + }, + { icon: '', text: 'Annual finance report', - type: 1 - }, { + type: 1, + }, + { icon: '', text: 'Company meeting schedule', - type: 1 - }, { + type: 1, + }, + { icon: '', text: 'Project quotations', - type: 1 - }, { + type: 1, + }, + { icon: '', text: 'Customers', - type: 0 - }, { + type: 0, + }, + { icon: '', text: 'Amanda Anderson', - type: 1 - }, { + type: 1, + }, + { icon: '', text: 'Kennedy Lloyd', - type: 1 - }, { + type: 1, + }, + { icon: '', text: 'Megan Weldon', - type: 1 - }, { + type: 1, + }, + { icon: '', text: 'Marc-André ter Stegen', - type: 1 - }, { + type: 1, + }, + { icon: '', text: 'Files', - type: 0 - }, { + type: 0, + }, + { icon: '', text: 'Revenue report', - type: 1 - }, { + type: 1, + }, + { icon: '', text: 'Anual finance report', - type: 1 - }, { + type: 1, + }, + { icon: '', text: 'Tax calculations', - type: 1 - } + type: 1, + }, ]; } diff --git a/src/app/views/partials/layout/topbar/search-dropdown/search-dropdown.component.ts b/src/app/views/partials/layout/topbar/search-dropdown/search-dropdown.component.ts index 8038334..9069cc4 100644 --- a/src/app/views/partials/layout/topbar/search-dropdown/search-dropdown.component.ts +++ b/src/app/views/partials/layout/topbar/search-dropdown/search-dropdown.component.ts @@ -24,8 +24,7 @@ export class SearchDropdownComponent implements OnInit { * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks */ - constructor(private cdr: ChangeDetectorRef) { - } + constructor(private cdr: ChangeDetectorRef) {} /** * On init @@ -37,56 +36,68 @@ export class SearchDropdownComponent implements OnInit { { icon: '', text: 'Documents', - type: 0 - }, { + type: 0, + }, + { icon: '', text: 'Annual finance report', - type: 1 - }, { + type: 1, + }, + { icon: '', text: 'Company meeting schedule', - type: 1 - }, { + type: 1, + }, + { icon: '', text: 'Project quotations', - type: 1 - }, { + type: 1, + }, + { icon: '', text: 'Customers', - type: 0 - }, { + type: 0, + }, + { icon: '', text: 'Amanda Anderson', - type: 1 - }, { + type: 1, + }, + { icon: '', text: 'Kennedy Lloyd', - type: 1 - }, { + type: 1, + }, + { icon: '', text: 'Megan Weldon', - type: 1 - }, { + type: 1, + }, + { icon: '', text: 'Marc-André ter Stegen', - type: 1 - }, { + type: 1, + }, + { icon: '', text: 'Files', - type: 0 - }, { + type: 0, + }, + { icon: '', text: 'Revenue report', - type: 1 - }, { + type: 1, + }, + { icon: '', text: 'Anual finance report', - type: 1 - }, { + type: 1, + }, + { icon: '', text: 'Tax calculations', - type: 1 - } + type: 1, + }, ]; } diff --git a/src/app/views/partials/layout/topbar/user-profile/user-profile.component.ts b/src/app/views/partials/layout/topbar/user-profile/user-profile.component.ts index bc12d30..daae3ce 100644 --- a/src/app/views/partials/layout/topbar/user-profile/user-profile.component.ts +++ b/src/app/views/partials/layout/topbar/user-profile/user-profile.component.ts @@ -21,8 +21,7 @@ export class UserProfileComponent implements OnInit { * * @param store: Store */ - constructor(private store: Store) { - } + constructor(private store: Store) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/views/partials/layout/topbar/user-profile2/user-profile2.component.ts b/src/app/views/partials/layout/topbar/user-profile2/user-profile2.component.ts index 462fb1b..0cb2e50 100644 --- a/src/app/views/partials/layout/topbar/user-profile2/user-profile2.component.ts +++ b/src/app/views/partials/layout/topbar/user-profile2/user-profile2.component.ts @@ -21,8 +21,7 @@ export class UserProfile2Component implements OnInit { * * @param store: Store */ - constructor(private store: Store) { - } + constructor(private store: Store) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/views/partials/partials.module.ts b/src/app/views/partials/partials.module.ts index d799808..d33be61 100644 --- a/src/app/views/partials/partials.module.ts +++ b/src/app/views/partials/partials.module.ts @@ -23,7 +23,7 @@ import { MatSortModule, MatTableModule, MatTabsModule, - MatTooltipModule + MatTooltipModule, } from '@angular/material'; // NgBootstrap import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; @@ -32,7 +32,13 @@ import { PerfectScrollbarModule } from 'ngx-perfect-scrollbar'; // Core module import { CoreModule } from '../../core/core.module'; // CRUD Partials -import { ActionNotificationComponent, AlertComponent, DeleteEntityDialogComponent, FetchEntityDialogComponent, UpdateStatusDialogComponent } from './content/crud'; +import { + ActionNotificationComponent, + AlertComponent, + DeleteEntityDialogComponent, + FetchEntityDialogComponent, + UpdateStatusDialogComponent, +} from './content/crud'; // Layout partials import { ContextMenu2Component, @@ -63,6 +69,7 @@ import { WidgetModule } from './content/widgets/widget.module'; // SVG inline import { InlineSVGModule } from 'ng-inline-svg'; import { CartComponent } from './layout/topbar/cart/cart.component'; +import { OptionsComponent } from '../steps/components/options/options.component'; @NgModule({ declarations: [ @@ -95,6 +102,7 @@ import { CartComponent } from './layout/topbar/cart/cart.component'; CartComponent, ErrorComponent, + OptionsComponent, ], exports: [ WidgetModule, @@ -127,8 +135,8 @@ import { CartComponent } from './layout/topbar/cart/cart.component'; UserProfileComponent, UserProfile2Component, CartComponent, - ErrorComponent, + OptionsComponent, ], imports: [ CommonModule, @@ -161,7 +169,6 @@ import { CartComponent } from './layout/topbar/cart/cart.component'; MatTabsModule, MatTooltipModule, MatDialogModule, - ] + ], }) -export class PartialsModule { -} +export class PartialsModule {} diff --git a/src/app/views/steps/components/options/options.component.html b/src/app/views/steps/components/options/options.component.html new file mode 100644 index 0000000..c10c979 --- /dev/null +++ b/src/app/views/steps/components/options/options.component.html @@ -0,0 +1,9 @@ +
+
+ {{option.name}} +
+
\ No newline at end of file diff --git a/src/app/views/steps/components/options/options.component.scss b/src/app/views/steps/components/options/options.component.scss new file mode 100644 index 0000000..c3d4733 --- /dev/null +++ b/src/app/views/steps/components/options/options.component.scss @@ -0,0 +1,22 @@ +.option-container{ + display: flex; + flex-wrap: wrap; + width: 80%; +} +.option{ + display: flex; + justify-content: center; + align-items: flex-end; + text-align: center; + width: 200px; + height: 200px; + cursor: pointer; + margin: 0 1.66%; +} +.option--dense{ + height: 100px; + align-items: center; +} +.option--selected{ + background-color: rgba(253, 57, 122,0.3); +} \ No newline at end of file diff --git a/src/app/views/steps/components/options/options.component.spec.ts b/src/app/views/steps/components/options/options.component.spec.ts new file mode 100644 index 0000000..90954da --- /dev/null +++ b/src/app/views/steps/components/options/options.component.spec.ts @@ -0,0 +1,24 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { OptionsComponent } from './options.component'; + +describe('OptionsComponent', () => { + let component: OptionsComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [OptionsComponent], + }).compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(OptionsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/views/steps/components/options/options.component.ts b/src/app/views/steps/components/options/options.component.ts new file mode 100644 index 0000000..64f552d --- /dev/null +++ b/src/app/views/steps/components/options/options.component.ts @@ -0,0 +1,18 @@ +import { Component, OnInit, Input, AfterContentChecked, AfterViewChecked } from '@angular/core'; +import { IOption } from '../../models/ioption'; + +@Component({ + selector: 'kt-options', + templateUrl: './options.component.html', + styleUrls: ['./options.component.scss'], +}) +export class OptionsComponent { + @Input() options: IOption[]; + @Input() dense: boolean = false; + currentOption: IOption; + constructor() {} + + onSelectOption(option: IOption) { + this.currentOption = option; + } +} diff --git a/src/app/views/steps/components/step3-first/step3-first.component.html b/src/app/views/steps/components/step3-first/step3-first.component.html new file mode 100644 index 0000000..034ba97 --- /dev/null +++ b/src/app/views/steps/components/step3-first/step3-first.component.html @@ -0,0 +1,53 @@ +
+
+
+ +
+

+ Super! Laten we Zollie afstemmen op jouw business. +

+
+
+
+ Wat is je bol.com verkopersnummer? +
+
+ +
+
+ Welk verkoopmodel pas je momenteel hoofdzakelijk toe? +
+ +
+ Welke leveringsmethode gebruik je hoofdzakelijk? +
+ +
+ Hoeveel prodcuten verkoop je momenteel via bol.com? +
+ +
+
+ Wat is je geschatter maandelijkse omzet? +
+ +
+ + +
+
+
+
+
\ No newline at end of file diff --git a/src/app/views/steps/components/step3-first/step3-first.component.scss b/src/app/views/steps/components/step3-first/step3-first.component.scss new file mode 100644 index 0000000..2e4bf9b --- /dev/null +++ b/src/app/views/steps/components/step3-first/step3-first.component.scss @@ -0,0 +1,53 @@ +:host { + ::ng-deep { + ngb-tabset > .nav-tabs { + display: none; + } + } + width: 100%; +} +.p-step3-first{ + background-color: #25282d; + &>*{ + color: #25282d; + background-color: #ffffff; + } + width: 100%; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + height: 100vh; + overflow: hidden; +} +.p-step3-first__step{ + width: 70%; + min-width: 800px; +} +.p-step3-first-content{ + width: 70%; + min-width: 800px; + height: 80vh; + @media only screen and (max-width: 800px){ + height: 100vh; + } + overflow-y: scroll; +} +.p-step3-first__button-group-form{ + margin-top: 24px; + width: 100%; + display: flex; + justify-content: flex-end; +} +.p-step3-first__input-form{ + width: 50%; +} +.p-step3-first__select-form{ + width: 80%; +} +.p-step3-first__button{ + min-width: 200px; + &:last-child{ + margin-left: 8px; + } +} \ No newline at end of file diff --git a/src/app/views/steps/components/step3-first/step3-first.component.spec.ts b/src/app/views/steps/components/step3-first/step3-first.component.spec.ts new file mode 100644 index 0000000..4ccb927 --- /dev/null +++ b/src/app/views/steps/components/step3-first/step3-first.component.spec.ts @@ -0,0 +1,24 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { Step3FirstComponent } from './step3-first.component'; + +describe('Step3FirstComponent', () => { + let component: Step3FirstComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [Step3FirstComponent], + }).compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(Step3FirstComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/views/steps/components/step3-first/step3-first.component.ts b/src/app/views/steps/components/step3-first/step3-first.component.ts new file mode 100644 index 0000000..458c393 --- /dev/null +++ b/src/app/views/steps/components/step3-first/step3-first.component.ts @@ -0,0 +1,29 @@ +import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core'; +import { IOption } from '../../models/ioption'; +import { Step } from '../../models/step3-enum'; + +@Component({ + selector: 'kt-step3-first', + templateUrl: './step3-first.component.html', + styleUrls: ['./step3-first.component.scss'], +}) +export class Step3FirstComponent implements OnInit { + @Input() step: Step; + @Output() stepChange = new EventEmitter(); + salesOptions: IOption[] = [ + { id: 1, name: 'Groothandel' }, + { id: 2, name: 'Private label' }, + { id: 3, name: 'Retailer' }, + { id: 4, name: 'E-tailer' }, + { id: 5, name: 'Merkeigenaar / fabrikant' }, + { id: 6, name: 'Dropshipping' }, + ]; + deliveryOptions: IOption[] = [{ id: 1, name: 'Logistiek via bol.com LVB' }, { id: 2, name: 'Eigen logistiek LVM' }]; + Step = Step; + constructor() {} + + ngOnInit() {} + changeStep(step: Step) { + this.stepChange.emit(step); + } +} diff --git a/src/app/views/steps/components/step3-second/step3-second.component.html b/src/app/views/steps/components/step3-second/step3-second.component.html new file mode 100644 index 0000000..9e9984e --- /dev/null +++ b/src/app/views/steps/components/step3-second/step3-second.component.html @@ -0,0 +1,52 @@ +
+
+
+ +
+

+ Nog betere data door te koppelen +

+
+
+

+ Door je verkopersaccount van bol.com te koppelen met zollie, is het mogelijk om relevante updates te + ontvangen omtreant jouw assortiment, voorad en je concurrentie. Om je bol.com verkopersaccount + te koppelen met Zollie, dien je onderstaande velden in te vullen. Weet je niet waar je de public en private + key kunt vinden, klik dan op de vraagtekens voor meer uitleg. + +

+
+ Bol.com verkopersnummer help +
+
+ +
+
+ Public Key help +
+
+ +
+
+ Private Key help +
+
+ +
+
+ + +
+
+ + +
+
+
+
+
\ No newline at end of file diff --git a/src/app/views/steps/components/step3-second/step3-second.component.scss b/src/app/views/steps/components/step3-second/step3-second.component.scss new file mode 100644 index 0000000..574dea5 --- /dev/null +++ b/src/app/views/steps/components/step3-second/step3-second.component.scss @@ -0,0 +1,53 @@ +:host { + ::ng-deep { + ngb-tabset > .nav-tabs { + display: none; + } + } + width: 100%; +} +.p-step3-second{ + background-color: #25282d; + &>*{ + color: #25282d; + background-color: #ffffff; + } + width: 100%; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + height: 100vh; + overflow: hidden; +} +.p-step3-second__step{ + width: 70%; + min-width: 800px; +} +.p-step3-second-content{ + width: 70%; + min-width: 800px; + height: 80vh; + @media only screen and (max-width: 800px){ + height: 100vh; + } + overflow-y: scroll; +} +.p-step3-second__button-group-form{ + margin-top: 24px; + width: 100%; + display: flex; + justify-content: flex-end; +} +.p-step3-second__input-form{ + width: 50%; +} +.p-step3-second__select-form{ + width: 80%; +} +.p-step3-second__button{ + min-width: 200px; + &:last-child{ + margin-left: 8px; + } +} \ No newline at end of file diff --git a/src/app/views/steps/components/step3-second/step3-second.component.spec.ts b/src/app/views/steps/components/step3-second/step3-second.component.spec.ts new file mode 100644 index 0000000..9b07227 --- /dev/null +++ b/src/app/views/steps/components/step3-second/step3-second.component.spec.ts @@ -0,0 +1,24 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { Step3SecondComponent } from './step3-second.component'; + +describe('Step3SecondComponent', () => { + let component: Step3SecondComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [Step3SecondComponent], + }).compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(Step3SecondComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/views/steps/components/step3-second/step3-second.component.ts b/src/app/views/steps/components/step3-second/step3-second.component.ts new file mode 100644 index 0000000..6257bab --- /dev/null +++ b/src/app/views/steps/components/step3-second/step3-second.component.ts @@ -0,0 +1,18 @@ +import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core'; +import { Step } from '../../models/step3-enum'; + +@Component({ + selector: 'kt-step3-second', + templateUrl: './step3-second.component.html', + styleUrls: ['./step3-second.component.scss'], +}) +export class Step3SecondComponent implements OnInit { + @Input() step: Step; + @Output() stepChange = new EventEmitter(); + Step = Step; + constructor() {} + ngOnInit() {} + changeStep(step: Step) { + this.stepChange.emit(step); + } +} diff --git a/src/app/views/steps/models/ioption.spec.ts b/src/app/views/steps/models/ioption.spec.ts new file mode 100644 index 0000000..928a9b9 --- /dev/null +++ b/src/app/views/steps/models/ioption.spec.ts @@ -0,0 +1,7 @@ +import { IOption } from './ioption'; + +describe('IOption', () => { + it('should create an instance', () => { + expect(new IOption()).toBeTruthy(); + }); +}); diff --git a/src/app/views/steps/models/ioption.ts b/src/app/views/steps/models/ioption.ts new file mode 100644 index 0000000..27a461e --- /dev/null +++ b/src/app/views/steps/models/ioption.ts @@ -0,0 +1,4 @@ +export class IOption { + id: number; + name: string; +} diff --git a/src/app/views/steps/models/step3-enum.ts b/src/app/views/steps/models/step3-enum.ts new file mode 100644 index 0000000..db9d37a --- /dev/null +++ b/src/app/views/steps/models/step3-enum.ts @@ -0,0 +1,5 @@ +export enum Step { + First, + Second, + Third, +} diff --git a/src/app/views/steps/step1/step1.component.html b/src/app/views/steps/step1/step1.component.html index 8de31d7..e74de3d 100644 --- a/src/app/views/steps/step1/step1.component.html +++ b/src/app/views/steps/step1/step1.component.html @@ -1,15 +1,25 @@
- -
-
- - -
- +
+
1/3
+
+ +
+

+ Hi Sander! +

+
+
+
+ Vertel ons hoe we kunnen helpen door aan te geven wat + jouw hoofddoel is voor het gebruiken van Zoille +
+ +
+ +
-

- Hi Sander! -

-
+ +
\ No newline at end of file diff --git a/src/app/views/steps/step1/step1.component.scss b/src/app/views/steps/step1/step1.component.scss index 05307a6..6e15fae 100644 --- a/src/app/views/steps/step1/step1.component.scss +++ b/src/app/views/steps/step1/step1.component.scss @@ -4,4 +4,40 @@ display: none; } } + width: 100%; } +.p-step1{ + background-color: #25282d; + &>*{ + color: #25282d; + background-color: #ffffff; + } + display: flex; + width: 100%; + flex-direction: column; + justify-content: center; + align-items: center; + height: 100vh; + overflow: hidden; +} +.p-step1__step{ + width: 70%; + min-width: 800px; +} +.p-step1-content{ + width: 70%; + min-width: 800px; + height: 80vh; + @media only screen and (max-width: 800px){ + height: 100vh; + } + overflow-y: scroll; +} +.p-step1__input-form{ + width: 100%; + display: flex; + justify-content: flex-end; +} +.p-step1__button--next{ + +} \ No newline at end of file diff --git a/src/app/views/steps/step1/step1.component.ts b/src/app/views/steps/step1/step1.component.ts index 1a86689..ffa3c8f 100644 --- a/src/app/views/steps/step1/step1.component.ts +++ b/src/app/views/steps/step1/step1.component.ts @@ -1,31 +1,26 @@ // Angular import { Component, OnInit } from '@angular/core'; + +import { IOption } from '../models/ioption'; + // Lodash -import { shuffle } from 'lodash'; // Services -// import { LayoutConfigService } from '../../../core/_base/layout'; // Widgets model -import { SparklineChartOptions } from '../../../core/_base/metronic'; -import { Widget4Data } from '../../partials/content/widgets/widget4/widget4.component'; - @Component({ selector: 'kt-step1', templateUrl: './step1.component.html', styleUrls: ['step1.component.scss'], }) export class Step1Component implements OnInit { - chartOptions1: SparklineChartOptions; - chartOptions2: SparklineChartOptions; - chartOptions3: SparklineChartOptions; - chartOptions4: SparklineChartOptions; - widget4_1: Widget4Data; - widget4_2: Widget4Data; - widget4_3: Widget4Data; - widget4_4: Widget4Data; - - constructor() { - } + options: IOption[] = [ + { id: 1, name: 'Nieuwe producten en/of niches ontdekken' }, + { id: 2, name: 'Huildig assortiment verbeteren' }, + { id: 3, name: 'Productiedee valideren' }, + { id: 4, name: 'Concurrentie monitoren / voorblijven' }, + { id: 5, name: 'Trend ontdekken' }, + { id: 6, name: 'Winstmarge product(en) voorspellen' }, + ]; + constructor() {} - ngOnInit(): void { - } + ngOnInit(): void {} } diff --git a/src/app/views/steps/step1/step1.module.ts b/src/app/views/steps/step1/step1.module.ts index 5f336c0..008f884 100644 --- a/src/app/views/steps/step1/step1.module.ts +++ b/src/app/views/steps/step1/step1.module.ts @@ -18,14 +18,11 @@ import { Step1Component } from './step1.component'; RouterModule.forChild([ { path: '', - component: Step1Component + component: Step1Component, }, ]), ], providers: [], - declarations: [ - Step1Component, - ] + declarations: [Step1Component], }) -export class Step1Module { -} +export class Step1Module {} diff --git a/src/app/views/steps/step2/step2.component.html b/src/app/views/steps/step2/step2.component.html index 0e73889..aba1ae6 100644 --- a/src/app/views/steps/step2/step2.component.html +++ b/src/app/views/steps/step2/step2.component.html @@ -1,196 +1,23 @@ -
-
-
-
- - - - - - -
- - - - - - +
+
+
2/3
+
+ +
+

+ Laten we elkaar beter leren kennen. +

- -
- - - - - - -
- - - - - - +
+
+ Ben je momenteel al een verkoper via bol.com? +
+ +
+ +
-
- - - - - - - - - - -
-
- - - - -
-
- -
-
- -
-
- -
-
-
-
- - -
-
- - - - - - - - - -
- - - -
-
-
-
-
-
-
- - - - - - - - - - Follow - - - - -
-
- - - - - - - - - - {{item.value}} - - - - -
-
- - -
-
- - - - - - - - - - -
-
- - - - - - - - - - {{item.value}} - - - - -
-
- - -
-
- - - - - - - - - - -
-
- - - - - - - - - - -
-
- - - +
\ No newline at end of file diff --git a/src/app/views/steps/step2/step2.component.scss b/src/app/views/steps/step2/step2.component.scss index 05307a6..fde3894 100644 --- a/src/app/views/steps/step2/step2.component.scss +++ b/src/app/views/steps/step2/step2.component.scss @@ -4,4 +4,40 @@ display: none; } } + width: 100%; } +.p-step2{ + background-color: #25282d; + &>*{ + color: #25282d; + background-color: #ffffff; + } + width: 100%; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + height: 100vh; + overflow: hidden; +} +.p-step2__step{ + width: 70%; + min-width: 800px; +} +.p-step2-content{ + width: 70%; + min-width: 800px; + height: 80vh; + @media only screen and (max-width: 800px){ + height: 100vh; + } + overflow-y: scroll; +} +.p-step2__input-form{ + width: 100%; + display: flex; + justify-content: flex-end; +} +.p-step2__button--next{ + +} \ No newline at end of file diff --git a/src/app/views/steps/step2/step2.component.ts b/src/app/views/steps/step2/step2.component.ts index 8eae18f..7fea4d0 100644 --- a/src/app/views/steps/step2/step2.component.ts +++ b/src/app/views/steps/step2/step2.component.ts @@ -1,199 +1,23 @@ // Angular import { Component, OnInit } from '@angular/core'; + +import { LayoutConfigService } from '../../../core/_base/layout'; +import { IOption } from '../models/ioption'; + // Lodash -import { shuffle } from 'lodash'; // Services -import { LayoutConfigService } from '../../../core/_base/layout'; // Widgets model -import { SparklineChartOptions } from '../../../core/_base/metronic'; -import { Widget4Data } from '../../partials/content/widgets/widget4/widget4.component'; - @Component({ selector: 'kt-step2', templateUrl: './step2.component.html', styleUrls: ['step2.component.scss'], }) export class Step2Component implements OnInit { - chartOptions1: SparklineChartOptions; - chartOptions2: SparklineChartOptions; - chartOptions3: SparklineChartOptions; - chartOptions4: SparklineChartOptions; - widget4_1: Widget4Data; - widget4_2: Widget4Data; - widget4_3: Widget4Data; - widget4_4: Widget4Data; - - constructor(private layoutConfigService: LayoutConfigService) { - } - - ngOnInit(): void { - this.chartOptions1 = { - data: [10, 14, 18, 11, 9, 12, 14, 17, 18, 14], - color: this.layoutConfigService.getConfig('colors.state.brand'), - border: 3 - }; - this.chartOptions2 = { - data: [11, 12, 18, 13, 11, 12, 15, 13, 19, 15], - color: this.layoutConfigService.getConfig('colors.state.danger'), - border: 3 - }; - this.chartOptions3 = { - data: [12, 12, 18, 11, 15, 12, 13, 16, 11, 18], - color: this.layoutConfigService.getConfig('colors.state.success'), - border: 3 - }; - this.chartOptions4 = { - data: [11, 9, 13, 18, 13, 15, 14, 13, 18, 15], - color: this.layoutConfigService.getConfig('colors.state.primary'), - border: 3 - }; + options: IOption[] = [ + { id: 1, name: 'Ja, ik ben verkoper via bol.com' }, + { id: 2, name: 'Nee, ik ben (nog) geen verkoper via bol.com' }, + ]; + constructor(private layoutConfigService: LayoutConfigService) {} - // @ts-ignore - this.widget4_1 = shuffle([ - { - pic: './assets/media/files/doc.svg', - title: 'Metronic Documentation', - url: 'https://keenthemes.com.my/metronic', - }, { - pic: './assets/media/files/jpg.svg', - title: 'Project Launch Evgent', - url: 'https://keenthemes.com.my/metronic', - }, { - pic: './assets/media/files/pdf.svg', - title: 'Full Developer Manual For 4.7', - url: 'https://keenthemes.com.my/metronic', - }, { - pic: './assets/media/files/javascript.svg', - title: 'Make JS Great Again', - url: 'https://keenthemes.com.my/metronic', - }, { - pic: './assets/media/files/zip.svg', - title: 'Download Ziped version OF 5.0', - url: 'https://keenthemes.com.my/metronic', - }, { - pic: './assets/media/files/pdf.svg', - title: 'Finance Report 2016/2017', - url: 'https://keenthemes.com.my/metronic', - }, - ]); - // @ts-ignore - this.widget4_2 = shuffle([ - { - pic: './assets/media/users/100_4.jpg', - username: 'Anna Strong', - desc: 'Visual Designer,Google Inc.', - url: 'https://keenthemes.com.my/metronic', - buttonClass: 'btn-label-brand' - }, { - pic: './assets/media/users/100_14.jpg', - username: 'Milano Esco', - desc: 'Product Designer, Apple Inc.', - url: 'https://keenthemes.com.my/metronic', - buttonClass: 'btn-label-warning' - }, { - pic: './assets/media/users/100_11.jpg', - username: 'Nick Bold', - desc: 'Web Developer, Facebook Inc.', - url: 'https://keenthemes.com.my/metronic', - buttonClass: 'btn-label-danger' - }, { - pic: './assets/media/users/100_1.jpg', - username: 'Wilter Delton', - desc: 'Project Manager, Amazon Inc.', - url: 'https://keenthemes.com.my/metronic', - buttonClass: 'btn-label-success' - }, { - pic: './assets/media/users/100_5.jpg', - username: 'Nick Stone', - desc: 'Visual Designer, Github Inc.', - url: 'https://keenthemes.com.my/metronic', - buttonClass: 'btn-label-dark' - }, - ]); - // @ts-ignore - this.widget4_3 = shuffle([ - { - icon: 'flaticon-pie-chart-1 kt-font-info', - title: 'Metronic v6 has been arrived!', - url: 'https://keenthemes.com.my/metronic', - value: '+$500', - valueColor: 'kt-font-info' - }, { - icon: 'flaticon-safe-shield-protection kt-font-success', - title: 'Metronic community meet-up 2019 in Rome.', - url: 'https://keenthemes.com.my/metronic', - value: '+$1260', - valueColor: 'kt-font-success' - }, { - icon: 'flaticon2-line-chart kt-font-danger', - title: 'Metronic Angular 7 version will be landing soon..', - url: 'https://keenthemes.com.my/metronic', - value: '+$1080', - valueColor: 'kt-font-danger' - }, { - icon: 'flaticon2-pie-chart-1 kt-font-primary', - title: 'ale! Purchase Metronic at 70% off for limited time', - url: 'https://keenthemes.com.my/metronic', - value: '70% Off!', - valueColor: 'kt-font-primary' - }, { - icon: 'flaticon2-rocket kt-font-brand', - title: 'Metronic VueJS version is in progress. Stay tuned!', - url: 'https://keenthemes.com.my/metronic', - value: '+134', - valueColor: 'kt-font-brand' - }, { - icon: 'flaticon2-notification kt-font-warning', - title: 'Black Friday! Purchase Metronic at ever lowest 90% off for limited time', - url: 'https://keenthemes.com.my/metronic', - value: '70% Off!', - valueColor: 'kt-font-warning' - }, { - icon: 'flaticon2-file kt-font-focus', - title: 'Metronic React version is in progress.', - url: 'https://keenthemes.com.my/metronic', - value: '+13%', - valueColor: 'kt-font-focus' - }, - ]); - // @ts-ignore - this.widget4_4 = shuffle([ - { - pic: './assets/media/client-logos/logo5.png', - title: 'Trump Themes', - desc: 'Make Metronic Great Again', - url: 'https://keenthemes.com.my/metronic', - value: '+$2500', - valueColor: 'kt-font-brand' - }, { - pic: './assets/media/client-logos/logo4.png', - title: 'StarBucks', - desc: 'Good Coffee & Snacks', - url: 'https://keenthemes.com.my/metronic', - value: '-$290', - valueColor: 'kt-font-brand' - }, { - pic: './assets/media/client-logos/logo3.png', - title: 'Phyton', - desc: 'A Programming Language', - url: 'https://keenthemes.com.my/metronic', - value: '+$17', - valueColor: 'kt-font-brand' - }, { - pic: './assets/media/client-logos/logo2.png', - title: 'GreenMakers', - desc: 'Make Green Great Again', - url: 'https://keenthemes.com.my/metronic', - value: '-$2.50', - valueColor: 'kt-font-brand' - }, { - pic: './assets/media/client-logos/logo1.png', - title: 'FlyThemes', - desc: 'A Let\'s Fly Fast Again Language', - url: 'https://keenthemes.com.my/metronic', - value: '+200', - valueColor: 'kt-font-brand' - }, - ]); - } + ngOnInit(): void {} } diff --git a/src/app/views/steps/step2/step2.module.ts b/src/app/views/steps/step2/step2.module.ts index 4a82937..0430f3a 100644 --- a/src/app/views/steps/step2/step2.module.ts +++ b/src/app/views/steps/step2/step2.module.ts @@ -1,14 +1,15 @@ // Angular +import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router'; -import { CommonModule } from '@angular/common'; -// NgBootstrap import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; -// Core Module + import { CoreModule } from '../../../core/core.module'; import { PartialsModule } from '../../partials/partials.module'; import { Step2Component } from './step2.component'; +// NgBootstrap +// Core Module @NgModule({ imports: [ CommonModule, @@ -18,14 +19,11 @@ import { Step2Component } from './step2.component'; RouterModule.forChild([ { path: '', - component: Step2Component + component: Step2Component, }, ]), ], providers: [], - declarations: [ - Step2Component, - ] + declarations: [Step2Component], }) -export class Step2Module { -} +export class Step2Module {} diff --git a/src/app/views/steps/step3/step3.component.html b/src/app/views/steps/step3/step3.component.html index 0e73889..0e91d54 100644 --- a/src/app/views/steps/step3/step3.component.html +++ b/src/app/views/steps/step3/step3.component.html @@ -1,196 +1,39 @@ -
-
-
-
- - - - - - -
- - - - - - + + +
+
+
3/3
+
+ +
+

+ Zollie is er om jou te helpen! +

- -
- - - - - - -
- - - - - - +
+
+ Om jou zo goed mogelijk te kunnen helpen, maken we graag kennis. +
+
+ Ik ben een: +
+ +
+ + +
-
- - - - - - - - - - -
-
- - - - -
-
- -
-
- -
-
- -
-
-
-
- - -
-
- - - - - - - - - -
- - - -
-
-
-
-
-
-
- - - - - - - - - - Follow - - - - -
-
- - - - - - - - - - {{item.value}} - - - - -
-
- - -
-
- - - - - - - - - - -
-
- - - - - - - - - - {{item.value}} - - - - -
-
- - -
-
- - - - - - - - - - -
-
- - - - - - - - - - -
-
- - - +
\ No newline at end of file diff --git a/src/app/views/steps/step3/step3.component.scss b/src/app/views/steps/step3/step3.component.scss index 05307a6..57f70a3 100644 --- a/src/app/views/steps/step3/step3.component.scss +++ b/src/app/views/steps/step3/step3.component.scss @@ -4,4 +4,43 @@ display: none; } } + width: 100%; } +.p-step3{ + background-color: #25282d; + &>*{ + color: #25282d; + background-color: #ffffff; + } + width: 100%; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + height: 100vh; + overflow: hidden; +} +.p-step3__step{ + width: 70%; + min-width: 800px; +} +.p-step3-content{ + width: 70%; + min-width: 800px; + height: 80vh; + @media only screen and (max-width: 800px){ + height: 100vh; + } + overflow-y: scroll; +} +.p-step3__input-form{ + width: 100%; + display: flex; + justify-content: flex-end; +} +.p-step3__button{ + min-width: 200px; + &:last-child{ + margin-left: 8px; + } +} \ No newline at end of file diff --git a/src/app/views/steps/step3/step3.component.ts b/src/app/views/steps/step3/step3.component.ts index b1b1664..445a469 100644 --- a/src/app/views/steps/step3/step3.component.ts +++ b/src/app/views/steps/step3/step3.component.ts @@ -1,12 +1,10 @@ // Angular import { Component, OnInit } from '@angular/core'; -// Lodash -import { shuffle } from 'lodash'; // Services import { LayoutConfigService } from '../../../core/_base/layout'; +import { IOption } from '../models/ioption'; +import { Step } from '../models/step3-enum'; // Widgets model -import { SparklineChartOptions } from '../../../core/_base/metronic'; -import { Widget4Data } from '../../partials/content/widgets/widget4/widget4.component'; @Component({ selector: 'kt-step3', @@ -14,186 +12,23 @@ import { Widget4Data } from '../../partials/content/widgets/widget4/widget4.comp styleUrls: ['step3.component.scss'], }) export class Step3Component implements OnInit { - chartOptions1: SparklineChartOptions; - chartOptions2: SparklineChartOptions; - chartOptions3: SparklineChartOptions; - chartOptions4: SparklineChartOptions; - widget4_1: Widget4Data; - widget4_2: Widget4Data; - widget4_3: Widget4Data; - widget4_4: Widget4Data; + options: IOption[] = [ + { id: 1, name: 'Groonthandel' }, + { id: 2, name: 'Private label' }, + { id: 3, name: 'Retailes' }, + { id: 4, name: 'E-tailer' }, + { id: 5, name: 'Merkeigenaar' }, + { id: 6, name: 'Dropshipping' }, + { id: 7, name: 'Startend ondernemer' }, + { id: 8, name: 'Student' }, + { id: 9, name: 'Oriênterend' }, + ]; + Step = Step; + step: Step = Step.First; + constructor(private layoutConfigService: LayoutConfigService) {} - constructor(private layoutConfigService: LayoutConfigService) { - } - - ngOnInit(): void { - this.chartOptions1 = { - data: [10, 14, 18, 11, 9, 12, 14, 17, 18, 14], - color: this.layoutConfigService.getConfig('colors.state.brand'), - border: 3 - }; - this.chartOptions2 = { - data: [11, 12, 18, 13, 11, 12, 15, 13, 19, 15], - color: this.layoutConfigService.getConfig('colors.state.danger'), - border: 3 - }; - this.chartOptions3 = { - data: [12, 12, 18, 11, 15, 12, 13, 16, 11, 18], - color: this.layoutConfigService.getConfig('colors.state.success'), - border: 3 - }; - this.chartOptions4 = { - data: [11, 9, 13, 18, 13, 15, 14, 13, 18, 15], - color: this.layoutConfigService.getConfig('colors.state.primary'), - border: 3 - }; - - // @ts-ignore - this.widget4_1 = shuffle([ - { - pic: './assets/media/files/doc.svg', - title: 'Metronic Documentation', - url: 'https://keenthemes.com.my/metronic', - }, { - pic: './assets/media/files/jpg.svg', - title: 'Project Launch Evgent', - url: 'https://keenthemes.com.my/metronic', - }, { - pic: './assets/media/files/pdf.svg', - title: 'Full Developer Manual For 4.7', - url: 'https://keenthemes.com.my/metronic', - }, { - pic: './assets/media/files/javascript.svg', - title: 'Make JS Great Again', - url: 'https://keenthemes.com.my/metronic', - }, { - pic: './assets/media/files/zip.svg', - title: 'Download Ziped version OF 5.0', - url: 'https://keenthemes.com.my/metronic', - }, { - pic: './assets/media/files/pdf.svg', - title: 'Finance Report 2016/2017', - url: 'https://keenthemes.com.my/metronic', - }, - ]); - // @ts-ignore - this.widget4_2 = shuffle([ - { - pic: './assets/media/users/100_4.jpg', - username: 'Anna Strong', - desc: 'Visual Designer,Google Inc.', - url: 'https://keenthemes.com.my/metronic', - buttonClass: 'btn-label-brand' - }, { - pic: './assets/media/users/100_14.jpg', - username: 'Milano Esco', - desc: 'Product Designer, Apple Inc.', - url: 'https://keenthemes.com.my/metronic', - buttonClass: 'btn-label-warning' - }, { - pic: './assets/media/users/100_11.jpg', - username: 'Nick Bold', - desc: 'Web Developer, Facebook Inc.', - url: 'https://keenthemes.com.my/metronic', - buttonClass: 'btn-label-danger' - }, { - pic: './assets/media/users/100_1.jpg', - username: 'Wilter Delton', - desc: 'Project Manager, Amazon Inc.', - url: 'https://keenthemes.com.my/metronic', - buttonClass: 'btn-label-success' - }, { - pic: './assets/media/users/100_5.jpg', - username: 'Nick Stone', - desc: 'Visual Designer, Github Inc.', - url: 'https://keenthemes.com.my/metronic', - buttonClass: 'btn-label-dark' - }, - ]); - // @ts-ignore - this.widget4_3 = shuffle([ - { - icon: 'flaticon-pie-chart-1 kt-font-info', - title: 'Metronic v6 has been arrived!', - url: 'https://keenthemes.com.my/metronic', - value: '+$500', - valueColor: 'kt-font-info' - }, { - icon: 'flaticon-safe-shield-protection kt-font-success', - title: 'Metronic community meet-up 2019 in Rome.', - url: 'https://keenthemes.com.my/metronic', - value: '+$1260', - valueColor: 'kt-font-success' - }, { - icon: 'flaticon2-line-chart kt-font-danger', - title: 'Metronic Angular 7 version will be landing soon..', - url: 'https://keenthemes.com.my/metronic', - value: '+$1080', - valueColor: 'kt-font-danger' - }, { - icon: 'flaticon2-pie-chart-1 kt-font-primary', - title: 'ale! Purchase Metronic at 70% off for limited time', - url: 'https://keenthemes.com.my/metronic', - value: '70% Off!', - valueColor: 'kt-font-primary' - }, { - icon: 'flaticon2-rocket kt-font-brand', - title: 'Metronic VueJS version is in progress. Stay tuned!', - url: 'https://keenthemes.com.my/metronic', - value: '+134', - valueColor: 'kt-font-brand' - }, { - icon: 'flaticon2-notification kt-font-warning', - title: 'Black Friday! Purchase Metronic at ever lowest 90% off for limited time', - url: 'https://keenthemes.com.my/metronic', - value: '70% Off!', - valueColor: 'kt-font-warning' - }, { - icon: 'flaticon2-file kt-font-focus', - title: 'Metronic React version is in progress.', - url: 'https://keenthemes.com.my/metronic', - value: '+13%', - valueColor: 'kt-font-focus' - }, - ]); - // @ts-ignore - this.widget4_4 = shuffle([ - { - pic: './assets/media/client-logos/logo5.png', - title: 'Trump Themes', - desc: 'Make Metronic Great Again', - url: 'https://keenthemes.com.my/metronic', - value: '+$2500', - valueColor: 'kt-font-brand' - }, { - pic: './assets/media/client-logos/logo4.png', - title: 'StarBucks', - desc: 'Good Coffee & Snacks', - url: 'https://keenthemes.com.my/metronic', - value: '-$290', - valueColor: 'kt-font-brand' - }, { - pic: './assets/media/client-logos/logo3.png', - title: 'Phyton', - desc: 'A Programming Language', - url: 'https://keenthemes.com.my/metronic', - value: '+$17', - valueColor: 'kt-font-brand' - }, { - pic: './assets/media/client-logos/logo2.png', - title: 'GreenMakers', - desc: 'Make Green Great Again', - url: 'https://keenthemes.com.my/metronic', - value: '-$2.50', - valueColor: 'kt-font-brand' - }, { - pic: './assets/media/client-logos/logo1.png', - title: 'FlyThemes', - desc: 'A Let\'s Fly Fast Again Language', - url: 'https://keenthemes.com.my/metronic', - value: '+200', - valueColor: 'kt-font-brand' - }, - ]); + ngOnInit(): void {} + handleStepChange(state: Step) { + this.step = state; } } diff --git a/src/app/views/steps/step3/step3.module.ts b/src/app/views/steps/step3/step3.module.ts index 43d8032..b597d27 100644 --- a/src/app/views/steps/step3/step3.module.ts +++ b/src/app/views/steps/step3/step3.module.ts @@ -1,14 +1,17 @@ // Angular +import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router'; -import { CommonModule } from '@angular/common'; -// NgBootstrap import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; -// Core Module + import { CoreModule } from '../../../core/core.module'; import { PartialsModule } from '../../partials/partials.module'; +import { Step3FirstComponent } from '../components/step3-first/step3-first.component'; +import { Step3SecondComponent } from '../components/step3-second/step3-second.component'; import { Step3Component } from './step3.component'; +// NgBootstrap +// Core Module @NgModule({ imports: [ CommonModule, @@ -18,14 +21,11 @@ import { Step3Component } from './step3.component'; RouterModule.forChild([ { path: '', - component: Step3Component + component: Step3Component, }, ]), ], providers: [], - declarations: [ - Step3Component, - ] + declarations: [Step3Component, Step3FirstComponent, Step3SecondComponent], }) -export class Step3Module { -} +export class Step3Module {} diff --git a/src/app/views/themes/default/aside/aside-left.component.ts b/src/app/views/themes/default/aside/aside-left.component.ts index 6d34d06..0b5571e 100644 --- a/src/app/views/themes/default/aside/aside-left.component.ts +++ b/src/app/views/themes/default/aside/aside-left.component.ts @@ -1,4 +1,12 @@ -import { AfterViewInit, ChangeDetectionStrategy, Component, ElementRef, OnInit, Renderer2, ViewChild } from '@angular/core'; +import { + AfterViewInit, + ChangeDetectionStrategy, + Component, + ElementRef, + OnInit, + Renderer2, + ViewChild, +} from '@angular/core'; import { filter } from 'rxjs/operators'; import { NavigationEnd, Router } from '@angular/router'; import * as objectPath from 'object-path'; @@ -10,10 +18,9 @@ import { HtmlClassService } from '../html-class.service'; selector: 'kt-aside-left', templateUrl: './aside-left.component.html', styleUrls: ['./aside-left.component.scss'], - changeDetection: ChangeDetectionStrategy.OnPush + changeDetection: ChangeDetectionStrategy.OnPush, }) export class AsideLeftComponent implements OnInit, AfterViewInit { - @ViewChild('asideMenu') asideMenu: ElementRef; currentRouteUrl: string = ''; @@ -26,8 +33,8 @@ export class AsideLeftComponent implements OnInit, AfterViewInit { closeBy: 'kt_aside_close_btn', toggleBy: { target: 'kt_aside_mobile_toggler', - state: 'kt-header-mobile__toolbar-toggler--active' - } + state: 'kt-header-mobile__toolbar-toggler--active', + }, }; menuOptions: MenuOptions = { @@ -41,13 +48,13 @@ export class AsideLeftComponent implements OnInit, AfterViewInit { default: 'dropdown', }, tablet: 'accordion', // menu set to accordion in tablet mode - mobile: 'accordion' // menu set to accordion in mobile mode + mobile: 'accordion', // menu set to accordion in mobile mode }, // accordion setup accordion: { - expandAll: false // allow having multiple expanded accordions in the menu - } + expandAll: false, // allow having multiple expanded accordions in the menu + }, }; constructor( @@ -55,19 +62,17 @@ export class AsideLeftComponent implements OnInit, AfterViewInit { public menuAsideService: MenuAsideService, public layoutConfigService: LayoutConfigService, private router: Router, - private render: Renderer2 - ) { - } + private render: Renderer2, + ) {} - ngAfterViewInit(): void { - } + ngAfterViewInit(): void {} ngOnInit() { this.currentRouteUrl = this.router.url.split(/[?#]/)[0]; this.router.events .pipe(filter(event => event instanceof NavigationEnd)) - .subscribe(event => this.currentRouteUrl = this.router.url.split(/[?#]/)[0]); + .subscribe(event => (this.currentRouteUrl = this.router.url.split(/[?#]/)[0])); const config = this.layoutConfigService.getConfig(); @@ -78,7 +83,11 @@ export class AsideLeftComponent implements OnInit, AfterViewInit { if (objectPath.get(config, 'aside.menu.dropdown')) { this.render.setAttribute(this.asideMenu.nativeElement, 'data-ktmenu-dropdown', '1'); // tslint:disable-next-line:max-line-length - this.render.setAttribute(this.asideMenu.nativeElement, 'data-ktmenu-dropdown-timeout', objectPath.get(config, 'aside.menu.submenu.dropdown.hover-timeout')); + this.render.setAttribute( + this.asideMenu.nativeElement, + 'data-ktmenu-dropdown-timeout', + objectPath.get(config, 'aside.menu.submenu.dropdown.hover-timeout'), + ); } } diff --git a/src/app/views/themes/default/base/base.component.ts b/src/app/views/themes/default/base/base.component.ts index c78d736..40ed98c 100644 --- a/src/app/views/themes/default/base/base.component.ts +++ b/src/app/views/themes/default/base/base.component.ts @@ -19,7 +19,7 @@ import { AppState } from '../../../../core/reducers'; selector: 'kt-base', templateUrl: './base.component.html', styleUrls: ['./base.component.scss'], - encapsulation: ViewEncapsulation.None + encapsulation: ViewEncapsulation.None, }) export class BaseComponent implements OnInit, OnDestroy { // Public constructor @@ -32,7 +32,6 @@ export class BaseComponent implements OnInit, OnDestroy { private unsubscribe: Subscription[] = []; // Read more: => https://brianflove.com/2016/12/11/anguar-2-unsubscribe-observables/ private currentUserPermissions$: Observable; - /** * Component constructor * @@ -47,10 +46,10 @@ export class BaseComponent implements OnInit, OnDestroy { private pageConfigService: PageConfigService, private htmlClassService: HtmlClassService, private store: Store, - private permissionsService: NgxPermissionsService) { + private permissionsService: NgxPermissionsService, + ) { this.loadRolesWithPermissions(); - // register configs by demos this.layoutConfigService.loadConfigs(new LayoutConfig().configs); this.menuConfigService.loadConfigs(new MenuConfig().configs); diff --git a/src/app/views/themes/default/content/builder/builder.component.ts b/src/app/views/themes/default/content/builder/builder.component.ts index 13d64bf..149bcf5 100644 --- a/src/app/views/themes/default/content/builder/builder.component.ts +++ b/src/app/views/themes/default/content/builder/builder.component.ts @@ -7,7 +7,7 @@ import { LayoutConfigModel, LayoutConfigService } from '../../../../../core/_bas @Component({ selector: 'kt-builder', templateUrl: './builder.component.html', - styleUrls: ['./builder.component.scss'] + styleUrls: ['./builder.component.scss'], }) export class BuilderComponent implements OnInit { // Public properties @@ -19,8 +19,7 @@ export class BuilderComponent implements OnInit { * * @param layoutConfigService: LayoutConfigService */ - constructor(private layoutConfigService: LayoutConfigService) { - } + constructor(private layoutConfigService: LayoutConfigService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/views/themes/default/content/builder/builder.module.ts b/src/app/views/themes/default/content/builder/builder.module.ts index c9dcefa..6e28742 100644 --- a/src/app/views/themes/default/content/builder/builder.module.ts +++ b/src/app/views/themes/default/content/builder/builder.module.ts @@ -30,12 +30,11 @@ import { BuilderComponent } from './builder.component'; RouterModule.forChild([ { path: '', - component: BuilderComponent - } - ]) + component: BuilderComponent, + }, + ]), ], providers: [], - declarations: [BuilderComponent] + declarations: [BuilderComponent], }) -export class BuilderModule { -} +export class BuilderModule {} diff --git a/src/app/views/themes/default/content/error-page/error-page.component.ts b/src/app/views/themes/default/content/error-page/error-page.component.ts index 75145d4..46d4079 100644 --- a/src/app/views/themes/default/content/error-page/error-page.component.ts +++ b/src/app/views/themes/default/content/error-page/error-page.component.ts @@ -10,7 +10,7 @@ import { LayoutConfigService } from '../../../../../core/_base/layout'; selector: 'kt-error-page', templateUrl: './error-page.component.html', styleUrls: ['./error-page.component.scss'], - encapsulation: ViewEncapsulation.None + encapsulation: ViewEncapsulation.None, }) export class ErrorPageComponent implements OnInit, OnDestroy { // Public properties @@ -39,7 +39,7 @@ export class ErrorPageComponent implements OnInit, OnDestroy { */ constructor(private route: ActivatedRoute, private layoutConfigService: LayoutConfigService) { // set temporary values to the layout config on this page - this.layoutConfigService.setConfig({self: {layout: 'blank'}}); + this.layoutConfigService.setConfig({ self: { layout: 'blank' } }); } /** @@ -109,10 +109,12 @@ export class ErrorPageComponent implements OnInit, OnDestroy { this.title = 'How did you get here'; } if (!this.subtitle) { - this.subtitle = 'Sorry we can\'t seem to find the page you\'re looking for.'; + this.subtitle = "Sorry we can't seem to find the page you're looking for."; } if (!this.desc) { - this.desc = 'There may be amisspelling in the URL entered,
' + 'or the page you are looking for may no longer exist.'; + this.desc = + 'There may be amisspelling in the URL entered,
' + + 'or the page you are looking for may no longer exist.'; } if (!this.image) { this.image = './assets/media/error/bg3.jpg'; @@ -140,7 +142,10 @@ export class ErrorPageComponent implements OnInit, OnDestroy { this.subtitle = 'Something went wrong here'; } if (!this.desc) { - this.desc = 'We\'re working on it and we\'ll get it fixed
' + 'as soon possible.
' + 'You can back or use our Help Center.'; + this.desc = + "We're working on it and we'll get it fixed
" + + 'as soon possible.
' + + 'You can back or use our Help Center.'; } if (!this.image) { this.image = './assets/media/error/bg5.jpg'; @@ -151,7 +156,7 @@ export class ErrorPageComponent implements OnInit, OnDestroy { this.title = 'Oops...'; } if (!this.desc) { - this.desc = 'Looks like something went wrong.
' + 'We\'re working on it'; + this.desc = 'Looks like something went wrong.
' + "We're working on it"; } if (!this.image) { this.image = './assets/media/error/bg6.jpg'; diff --git a/src/app/views/themes/default/footer/footer.component.ts b/src/app/views/themes/default/footer/footer.component.ts index 724e790..9978147 100644 --- a/src/app/views/themes/default/footer/footer.component.ts +++ b/src/app/views/themes/default/footer/footer.component.ts @@ -15,8 +15,7 @@ export class FooterComponent implements OnInit { * * @param layoutConfigService: LayouConfigService */ - constructor(private layoutConfigService: LayoutConfigService) { - } + constructor(private layoutConfigService: LayoutConfigService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/views/themes/default/header/brand/brand.component.ts b/src/app/views/themes/default/header/brand/brand.component.ts index 59a714a..1f3053f 100644 --- a/src/app/views/themes/default/header/brand/brand.component.ts +++ b/src/app/views/themes/default/header/brand/brand.component.ts @@ -18,7 +18,7 @@ export class BrandComponent implements OnInit, AfterViewInit { toggleOptions: ToggleOptions = { target: 'body', targetState: 'kt-aside--minimize', - togglerState: 'kt-aside__brand-aside-toggler--active' + togglerState: 'kt-aside__brand-aside-toggler--active', }; /** @@ -27,8 +27,7 @@ export class BrandComponent implements OnInit, AfterViewInit { * @param layoutConfigService: LayoutConfigService * @param htmlClassService: HtmlClassService */ - constructor(private layoutConfigService: LayoutConfigService, public htmlClassService: HtmlClassService) { - } + constructor(private layoutConfigService: LayoutConfigService, public htmlClassService: HtmlClassService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -45,6 +44,5 @@ export class BrandComponent implements OnInit, AfterViewInit { /** * On destroy */ - ngAfterViewInit(): void { - } + ngAfterViewInit(): void {} } diff --git a/src/app/views/themes/default/header/header-mobile/header-mobile.component.ts b/src/app/views/themes/default/header/header-mobile/header-mobile.component.ts index 402a0e4..66f3b71 100644 --- a/src/app/views/themes/default/header/header-mobile/header-mobile.component.ts +++ b/src/app/views/themes/default/header/header-mobile/header-mobile.component.ts @@ -8,7 +8,7 @@ import { LayoutConfigService } from '../../../../../core/_base/layout'; @Component({ selector: 'kt-header-mobile', templateUrl: './header-mobile.component.html', - styleUrls: ['./header-mobile.component.scss'] + styleUrls: ['./header-mobile.component.scss'], }) export class HeaderMobileComponent implements OnInit { // Public properties @@ -18,7 +18,7 @@ export class HeaderMobileComponent implements OnInit { toggleOptions: ToggleOptions = { target: 'body', targetState: 'kt-header__topbar--mobile-on', - togglerState: 'kt-header-mobile__toolbar-topbar-toggler--active' + togglerState: 'kt-header-mobile__toolbar-topbar-toggler--active', }; /** @@ -26,8 +26,7 @@ export class HeaderMobileComponent implements OnInit { * * @param layoutConfigService: LayoutConfigService */ - constructor(private layoutConfigService: LayoutConfigService) { - } + constructor(private layoutConfigService: LayoutConfigService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/views/themes/default/header/header.component.ts b/src/app/views/themes/default/header/header.component.ts index 6c0acf0..8b7ca57 100644 --- a/src/app/views/themes/default/header/header.component.ts +++ b/src/app/views/themes/default/header/header.component.ts @@ -1,6 +1,13 @@ // Angular import { AfterViewInit, Component, ElementRef, OnInit, ViewChild } from '@angular/core'; -import { NavigationCancel, NavigationEnd, NavigationStart, RouteConfigLoadEnd, RouteConfigLoadStart, Router } from '@angular/router'; +import { + NavigationCancel, + NavigationEnd, + NavigationStart, + RouteConfigLoadEnd, + RouteConfigLoadStart, + Router, +} from '@angular/router'; // Object-Path import * as objectPath from 'object-path'; // Loading bar @@ -10,7 +17,6 @@ import { LayoutRefService, LayoutConfigService } from '../../../../core/_base/la // HTML Class Service import { HtmlClassService } from '../html-class.service'; - @Component({ selector: 'kt-header', templateUrl: './header.component.html', @@ -35,7 +41,7 @@ export class HeaderComponent implements OnInit, AfterViewInit { private layoutRefService: LayoutRefService, private layoutConfigService: LayoutConfigService, public loader: LoadingBarService, - public htmlClassService: HtmlClassService + public htmlClassService: HtmlClassService, ) { // page progress bar percentage this.router.events.subscribe(event => { diff --git a/src/app/views/themes/default/header/menu-horizontal/menu-horizontal.component.ts b/src/app/views/themes/default/header/menu-horizontal/menu-horizontal.component.ts index 96642f4..030a44f 100644 --- a/src/app/views/themes/default/header/menu-horizontal/menu-horizontal.component.ts +++ b/src/app/views/themes/default/header/menu-horizontal/menu-horizontal.component.ts @@ -6,7 +6,12 @@ import { filter } from 'rxjs/operators'; // Object-Path import * as objectPath from 'object-path'; // Layout -import { LayoutConfigService, MenuConfigService, MenuHorizontalService, MenuOptions } from '../../../../../core/_base/layout'; +import { + LayoutConfigService, + MenuConfigService, + MenuHorizontalService, + MenuOptions, +} from '../../../../../core/_base/layout'; // Metronic import { OffcanvasOptions } from '../../../../../core/_base/metronic'; // HTML Class @@ -28,12 +33,12 @@ export class MenuHorizontalComponent implements OnInit, AfterViewInit { submenu: { desktop: 'dropdown', tablet: 'accordion', - mobile: 'accordion' + mobile: 'accordion', }, accordion: { slideSpeed: 200, // accordion toggle slide speed in milliseconds - expandAll: false // allow having multiple expanded accordions in the menu - } + expandAll: false, // allow having multiple expanded accordions in the menu + }, }; offcanvasOptions: OffcanvasOptions = { @@ -42,8 +47,8 @@ export class MenuHorizontalComponent implements OnInit, AfterViewInit { closeBy: 'kt_header_menu_mobile_close_btn', toggleBy: { target: 'kt_header_mobile_toggler', - state: 'kt-header-mobile__toolbar-toggler--active' - } + state: 'kt-header-mobile__toolbar-toggler--active', + }, }; /** @@ -64,9 +69,8 @@ export class MenuHorizontalComponent implements OnInit, AfterViewInit { private menuConfigService: MenuConfigService, private layoutConfigService: LayoutConfigService, private router: Router, - private render: Renderer2 - ) { - } + private render: Renderer2, + ) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -75,8 +79,7 @@ export class MenuHorizontalComponent implements OnInit, AfterViewInit { /** * After view init */ - ngAfterViewInit(): void { - } + ngAfterViewInit(): void {} /** * On init @@ -85,11 +88,9 @@ export class MenuHorizontalComponent implements OnInit, AfterViewInit { this.rootArrowEnabled = this.layoutConfigService.getConfig('header.menu.self.root-arrow'); this.currentRouteUrl = this.router.url; - this.router.events - .pipe(filter(event => event instanceof NavigationEnd)) - .subscribe(event => { - this.currentRouteUrl = this.router.url; - }); + this.router.events.pipe(filter(event => event instanceof NavigationEnd)).subscribe(event => { + this.currentRouteUrl = this.router.url; + }); } /** @@ -116,8 +117,10 @@ export class MenuHorizontalComponent implements OnInit, AfterViewInit { } const menuType = objectPath.get(item, 'submenu.type') || 'classic'; - if ((objectPath.get(item, 'root') && menuType === 'classic') - || parseInt(objectPath.get(item, 'submenu.width'), 10) > 0) { + if ( + (objectPath.get(item, 'root') && menuType === 'classic') || + parseInt(objectPath.get(item, 'submenu.width'), 10) > 0 + ) { classes += ' kt-menu__item--rel'; } diff --git a/src/app/views/themes/default/header/topbar/topbar.component.ts b/src/app/views/themes/default/header/topbar/topbar.component.ts index 88dfd61..87e701f 100644 --- a/src/app/views/themes/default/header/topbar/topbar.component.ts +++ b/src/app/views/themes/default/header/topbar/topbar.component.ts @@ -6,4 +6,4 @@ import { Component } from '@angular/core'; templateUrl: './topbar.component.html', styleUrls: ['./topbar.component.scss'], }) -export class TopbarComponent { } +export class TopbarComponent {} diff --git a/src/app/views/themes/default/html-class.service.ts b/src/app/views/themes/default/html-class.service.ts index dcf573f..69654ed 100644 --- a/src/app/views/themes/default/html-class.service.ts +++ b/src/app/views/themes/default/html-class.service.ts @@ -89,7 +89,10 @@ export class HtmlClassService { if (objectPath.has(this.config, 'self.body.class')) { document.body.classList.add(objectPath.get(this.config, 'self.body.class')); } - if (objectPath.get(this.config, 'self.layout') === 'boxed' && objectPath.has(this.config, 'self.body.background-image')) { + if ( + objectPath.get(this.config, 'self.layout') === 'boxed' && + objectPath.has(this.config, 'self.body.background-image') + ) { document.body.style.backgroundImage = 'url("' + objectPath.get(this.config, 'self.body.background-image') + '")'; } } @@ -97,8 +100,7 @@ export class HtmlClassService { /** * Init Loader */ - private initLoader() { - } + private initLoader() {} /** * Init Header @@ -118,7 +120,11 @@ export class HtmlClassService { } if (objectPath.get(this.config, 'header.menu.self.layout')) { - objectPath.push(this.classes, 'header_menu', 'kt-header-menu--layout-' + objectPath.get(this.config, 'header.menu.self.layout')); + objectPath.push( + this.classes, + 'header_menu', + 'kt-header-menu--layout-' + objectPath.get(this.config, 'header.menu.self.layout'), + ); } } @@ -165,7 +171,10 @@ export class HtmlClassService { // Menu // Dropdown Submenu - if (objectPath.get(this.config, 'aside.self.fixed') !== true && objectPath.get(this.config, 'aside.menu.dropdown')) { + if ( + objectPath.get(this.config, 'aside.self.fixed') !== true && + objectPath.get(this.config, 'aside.menu.dropdown') + ) { objectPath.push(this.classes, 'aside_menu', 'kt-aside-menu--dropdown'); // enable menu dropdown } @@ -181,7 +190,10 @@ export class HtmlClassService { } // tslint:disable-next-line:max-line-length - if (objectPath.get(this.config, 'aside-secondary.self.expanded') === true && objectPath.get(this.config, 'aside-secondary.self.layout') !== 'layout-2') { + if ( + objectPath.get(this.config, 'aside-secondary.self.expanded') === true && + objectPath.get(this.config, 'aside-secondary.self.layout') !== 'layout-2' + ) { document.body.classList.add('kt-aside-secondary--expanded'); } @@ -193,8 +205,7 @@ export class HtmlClassService { /** * Init Content */ - private initContent() { - } + private initContent() {} /** * Init Footer diff --git a/src/app/views/themes/default/pages-routing.module.ts b/src/app/views/themes/default/pages-routing.module.ts index 59a599d..50ec255 100644 --- a/src/app/views/themes/default/pages-routing.module.ts +++ b/src/app/views/themes/default/pages-routing.module.ts @@ -15,22 +15,21 @@ const routes: Routes = [ children: [ { path: 'dashboard', - loadChildren: 'app/views/pages/dashboard/dashboard.module#DashboardModule' + loadChildren: 'app/views/pages/dashboard/dashboard.module#DashboardModule', }, { path: 'builder', - loadChildren: 'app/views/themes/default/content/builder/builder.module#BuilderModule' + loadChildren: 'app/views/themes/default/content/builder/builder.module#BuilderModule', }, - {path: 'error/:type', component: ErrorPageComponent}, - {path: '', redirectTo: 'dashboard', pathMatch: 'full'}, - {path: '**', redirectTo: 'dashboard', pathMatch: 'full'} - ] + { path: 'error/:type', component: ErrorPageComponent }, + { path: '', redirectTo: 'dashboard', pathMatch: 'full' }, + { path: '**', redirectTo: 'dashboard', pathMatch: 'full' }, + ], }, ]; @NgModule({ imports: [RouterModule.forChild(routes)], - exports: [RouterModule] + exports: [RouterModule], }) -export class PagesRoutingModule { -} +export class PagesRoutingModule {} diff --git a/src/app/views/themes/default/subheader/subheader.component.ts b/src/app/views/themes/default/subheader/subheader.component.ts index 0209e79..d19108a 100644 --- a/src/app/views/themes/default/subheader/subheader.component.ts +++ b/src/app/views/themes/default/subheader/subheader.component.ts @@ -17,8 +17,7 @@ export class SubheaderComponent implements OnInit { * * @param layoutConfigService: LayoutConfigService */ - constructor(private layoutConfigService: LayoutConfigService) { - } + constructor(private layoutConfigService: LayoutConfigService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/views/themes/default/theme.module.ts b/src/app/views/themes/default/theme.module.ts index e9ca792..96ed87b 100644 --- a/src/app/views/themes/default/theme.module.ts +++ b/src/app/views/themes/default/theme.module.ts @@ -85,9 +85,7 @@ import { PermissionEffects, permissionsReducer, RoleEffects, rolesReducer } from ErrorPageComponent, ], - providers: [ - HtmlClassService, - ], + providers: [HtmlClassService], imports: [ CommonModule, RouterModule, @@ -109,8 +107,7 @@ import { PermissionEffects, permissionsReducer, RoleEffects, rolesReducer } from TranslateModule.forChild(), LoadingBarModule, NgxDaterangepickerMd, - InlineSVGModule - ] + InlineSVGModule, + ], }) -export class ThemeModule { -} +export class ThemeModule {} diff --git a/src/app/views/themes/demo2/aside/aside-left.component.ts b/src/app/views/themes/demo2/aside/aside-left.component.ts index 6d34d06..0b5571e 100644 --- a/src/app/views/themes/demo2/aside/aside-left.component.ts +++ b/src/app/views/themes/demo2/aside/aside-left.component.ts @@ -1,4 +1,12 @@ -import { AfterViewInit, ChangeDetectionStrategy, Component, ElementRef, OnInit, Renderer2, ViewChild } from '@angular/core'; +import { + AfterViewInit, + ChangeDetectionStrategy, + Component, + ElementRef, + OnInit, + Renderer2, + ViewChild, +} from '@angular/core'; import { filter } from 'rxjs/operators'; import { NavigationEnd, Router } from '@angular/router'; import * as objectPath from 'object-path'; @@ -10,10 +18,9 @@ import { HtmlClassService } from '../html-class.service'; selector: 'kt-aside-left', templateUrl: './aside-left.component.html', styleUrls: ['./aside-left.component.scss'], - changeDetection: ChangeDetectionStrategy.OnPush + changeDetection: ChangeDetectionStrategy.OnPush, }) export class AsideLeftComponent implements OnInit, AfterViewInit { - @ViewChild('asideMenu') asideMenu: ElementRef; currentRouteUrl: string = ''; @@ -26,8 +33,8 @@ export class AsideLeftComponent implements OnInit, AfterViewInit { closeBy: 'kt_aside_close_btn', toggleBy: { target: 'kt_aside_mobile_toggler', - state: 'kt-header-mobile__toolbar-toggler--active' - } + state: 'kt-header-mobile__toolbar-toggler--active', + }, }; menuOptions: MenuOptions = { @@ -41,13 +48,13 @@ export class AsideLeftComponent implements OnInit, AfterViewInit { default: 'dropdown', }, tablet: 'accordion', // menu set to accordion in tablet mode - mobile: 'accordion' // menu set to accordion in mobile mode + mobile: 'accordion', // menu set to accordion in mobile mode }, // accordion setup accordion: { - expandAll: false // allow having multiple expanded accordions in the menu - } + expandAll: false, // allow having multiple expanded accordions in the menu + }, }; constructor( @@ -55,19 +62,17 @@ export class AsideLeftComponent implements OnInit, AfterViewInit { public menuAsideService: MenuAsideService, public layoutConfigService: LayoutConfigService, private router: Router, - private render: Renderer2 - ) { - } + private render: Renderer2, + ) {} - ngAfterViewInit(): void { - } + ngAfterViewInit(): void {} ngOnInit() { this.currentRouteUrl = this.router.url.split(/[?#]/)[0]; this.router.events .pipe(filter(event => event instanceof NavigationEnd)) - .subscribe(event => this.currentRouteUrl = this.router.url.split(/[?#]/)[0]); + .subscribe(event => (this.currentRouteUrl = this.router.url.split(/[?#]/)[0])); const config = this.layoutConfigService.getConfig(); @@ -78,7 +83,11 @@ export class AsideLeftComponent implements OnInit, AfterViewInit { if (objectPath.get(config, 'aside.menu.dropdown')) { this.render.setAttribute(this.asideMenu.nativeElement, 'data-ktmenu-dropdown', '1'); // tslint:disable-next-line:max-line-length - this.render.setAttribute(this.asideMenu.nativeElement, 'data-ktmenu-dropdown-timeout', objectPath.get(config, 'aside.menu.submenu.dropdown.hover-timeout')); + this.render.setAttribute( + this.asideMenu.nativeElement, + 'data-ktmenu-dropdown-timeout', + objectPath.get(config, 'aside.menu.submenu.dropdown.hover-timeout'), + ); } } diff --git a/src/app/views/themes/demo2/base/base.component.ts b/src/app/views/themes/demo2/base/base.component.ts index 6627a03..00aa925 100644 --- a/src/app/views/themes/demo2/base/base.component.ts +++ b/src/app/views/themes/demo2/base/base.component.ts @@ -19,7 +19,7 @@ import { AppState } from '../../../../core/reducers'; selector: 'kt-base', templateUrl: './base.component.html', styleUrls: ['./base.component.scss'], - encapsulation: ViewEncapsulation.None + encapsulation: ViewEncapsulation.None, }) export class BaseComponent implements OnInit, OnDestroy { // Public constructor @@ -32,7 +32,6 @@ export class BaseComponent implements OnInit, OnDestroy { private unsubscribe: Subscription[] = []; // Read more: => https://brianflove.com/2016/12/11/anguar-2-unsubscribe-observables/ private currentUserPermissions$: Observable; - /** * Component constructor * @@ -47,10 +46,10 @@ export class BaseComponent implements OnInit, OnDestroy { private pageConfigService: PageConfigService, private htmlClassService: HtmlClassService, private store: Store, - private permissionsService: NgxPermissionsService) { + private permissionsService: NgxPermissionsService, + ) { this.loadRolesWithPermissions(); - // register configs by demos this.layoutConfigService.loadConfigs(new LayoutConfig().configs); this.menuConfigService.loadConfigs(new MenuConfig().configs); diff --git a/src/app/views/themes/demo2/content/builder/builder.component.ts b/src/app/views/themes/demo2/content/builder/builder.component.ts index 13d64bf..149bcf5 100644 --- a/src/app/views/themes/demo2/content/builder/builder.component.ts +++ b/src/app/views/themes/demo2/content/builder/builder.component.ts @@ -7,7 +7,7 @@ import { LayoutConfigModel, LayoutConfigService } from '../../../../../core/_bas @Component({ selector: 'kt-builder', templateUrl: './builder.component.html', - styleUrls: ['./builder.component.scss'] + styleUrls: ['./builder.component.scss'], }) export class BuilderComponent implements OnInit { // Public properties @@ -19,8 +19,7 @@ export class BuilderComponent implements OnInit { * * @param layoutConfigService: LayoutConfigService */ - constructor(private layoutConfigService: LayoutConfigService) { - } + constructor(private layoutConfigService: LayoutConfigService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/views/themes/demo2/content/builder/builder.module.ts b/src/app/views/themes/demo2/content/builder/builder.module.ts index c9dcefa..6e28742 100644 --- a/src/app/views/themes/demo2/content/builder/builder.module.ts +++ b/src/app/views/themes/demo2/content/builder/builder.module.ts @@ -30,12 +30,11 @@ import { BuilderComponent } from './builder.component'; RouterModule.forChild([ { path: '', - component: BuilderComponent - } - ]) + component: BuilderComponent, + }, + ]), ], providers: [], - declarations: [BuilderComponent] + declarations: [BuilderComponent], }) -export class BuilderModule { -} +export class BuilderModule {} diff --git a/src/app/views/themes/demo2/content/error-page/error-page.component.ts b/src/app/views/themes/demo2/content/error-page/error-page.component.ts index 75145d4..46d4079 100644 --- a/src/app/views/themes/demo2/content/error-page/error-page.component.ts +++ b/src/app/views/themes/demo2/content/error-page/error-page.component.ts @@ -10,7 +10,7 @@ import { LayoutConfigService } from '../../../../../core/_base/layout'; selector: 'kt-error-page', templateUrl: './error-page.component.html', styleUrls: ['./error-page.component.scss'], - encapsulation: ViewEncapsulation.None + encapsulation: ViewEncapsulation.None, }) export class ErrorPageComponent implements OnInit, OnDestroy { // Public properties @@ -39,7 +39,7 @@ export class ErrorPageComponent implements OnInit, OnDestroy { */ constructor(private route: ActivatedRoute, private layoutConfigService: LayoutConfigService) { // set temporary values to the layout config on this page - this.layoutConfigService.setConfig({self: {layout: 'blank'}}); + this.layoutConfigService.setConfig({ self: { layout: 'blank' } }); } /** @@ -109,10 +109,12 @@ export class ErrorPageComponent implements OnInit, OnDestroy { this.title = 'How did you get here'; } if (!this.subtitle) { - this.subtitle = 'Sorry we can\'t seem to find the page you\'re looking for.'; + this.subtitle = "Sorry we can't seem to find the page you're looking for."; } if (!this.desc) { - this.desc = 'There may be amisspelling in the URL entered,
' + 'or the page you are looking for may no longer exist.'; + this.desc = + 'There may be amisspelling in the URL entered,
' + + 'or the page you are looking for may no longer exist.'; } if (!this.image) { this.image = './assets/media/error/bg3.jpg'; @@ -140,7 +142,10 @@ export class ErrorPageComponent implements OnInit, OnDestroy { this.subtitle = 'Something went wrong here'; } if (!this.desc) { - this.desc = 'We\'re working on it and we\'ll get it fixed
' + 'as soon possible.
' + 'You can back or use our Help Center.'; + this.desc = + "We're working on it and we'll get it fixed
" + + 'as soon possible.
' + + 'You can back or use our Help Center.'; } if (!this.image) { this.image = './assets/media/error/bg5.jpg'; @@ -151,7 +156,7 @@ export class ErrorPageComponent implements OnInit, OnDestroy { this.title = 'Oops...'; } if (!this.desc) { - this.desc = 'Looks like something went wrong.
' + 'We\'re working on it'; + this.desc = 'Looks like something went wrong.
' + "We're working on it"; } if (!this.image) { this.image = './assets/media/error/bg6.jpg'; diff --git a/src/app/views/themes/demo2/footer/footer.component.ts b/src/app/views/themes/demo2/footer/footer.component.ts index 724e790..9978147 100644 --- a/src/app/views/themes/demo2/footer/footer.component.ts +++ b/src/app/views/themes/demo2/footer/footer.component.ts @@ -15,8 +15,7 @@ export class FooterComponent implements OnInit { * * @param layoutConfigService: LayouConfigService */ - constructor(private layoutConfigService: LayoutConfigService) { - } + constructor(private layoutConfigService: LayoutConfigService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/views/themes/demo2/header/brand/brand.component.ts b/src/app/views/themes/demo2/header/brand/brand.component.ts index 59a714a..1f3053f 100644 --- a/src/app/views/themes/demo2/header/brand/brand.component.ts +++ b/src/app/views/themes/demo2/header/brand/brand.component.ts @@ -18,7 +18,7 @@ export class BrandComponent implements OnInit, AfterViewInit { toggleOptions: ToggleOptions = { target: 'body', targetState: 'kt-aside--minimize', - togglerState: 'kt-aside__brand-aside-toggler--active' + togglerState: 'kt-aside__brand-aside-toggler--active', }; /** @@ -27,8 +27,7 @@ export class BrandComponent implements OnInit, AfterViewInit { * @param layoutConfigService: LayoutConfigService * @param htmlClassService: HtmlClassService */ - constructor(private layoutConfigService: LayoutConfigService, public htmlClassService: HtmlClassService) { - } + constructor(private layoutConfigService: LayoutConfigService, public htmlClassService: HtmlClassService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -45,6 +44,5 @@ export class BrandComponent implements OnInit, AfterViewInit { /** * On destroy */ - ngAfterViewInit(): void { - } + ngAfterViewInit(): void {} } diff --git a/src/app/views/themes/demo2/header/header-mobile/header-mobile.component.ts b/src/app/views/themes/demo2/header/header-mobile/header-mobile.component.ts index 402a0e4..66f3b71 100644 --- a/src/app/views/themes/demo2/header/header-mobile/header-mobile.component.ts +++ b/src/app/views/themes/demo2/header/header-mobile/header-mobile.component.ts @@ -8,7 +8,7 @@ import { LayoutConfigService } from '../../../../../core/_base/layout'; @Component({ selector: 'kt-header-mobile', templateUrl: './header-mobile.component.html', - styleUrls: ['./header-mobile.component.scss'] + styleUrls: ['./header-mobile.component.scss'], }) export class HeaderMobileComponent implements OnInit { // Public properties @@ -18,7 +18,7 @@ export class HeaderMobileComponent implements OnInit { toggleOptions: ToggleOptions = { target: 'body', targetState: 'kt-header__topbar--mobile-on', - togglerState: 'kt-header-mobile__toolbar-topbar-toggler--active' + togglerState: 'kt-header-mobile__toolbar-topbar-toggler--active', }; /** @@ -26,8 +26,7 @@ export class HeaderMobileComponent implements OnInit { * * @param layoutConfigService: LayoutConfigService */ - constructor(private layoutConfigService: LayoutConfigService) { - } + constructor(private layoutConfigService: LayoutConfigService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/views/themes/demo2/header/header.component.ts b/src/app/views/themes/demo2/header/header.component.ts index d727279..09f59df 100644 --- a/src/app/views/themes/demo2/header/header.component.ts +++ b/src/app/views/themes/demo2/header/header.component.ts @@ -1,6 +1,13 @@ // Angular import { AfterViewInit, Component, ElementRef, OnInit, ViewChild } from '@angular/core'; -import { NavigationCancel, NavigationEnd, NavigationStart, RouteConfigLoadEnd, RouteConfigLoadStart, Router } from '@angular/router'; +import { + NavigationCancel, + NavigationEnd, + NavigationStart, + RouteConfigLoadEnd, + RouteConfigLoadStart, + Router, +} from '@angular/router'; // Object-Path import * as objectPath from 'object-path'; // Loading bar @@ -10,7 +17,6 @@ import { LayoutRefService, LayoutConfigService } from '../../../../core/_base/la // HTML Class Service import { HtmlClassService } from '../html-class.service'; - @Component({ selector: 'kt-header', templateUrl: './header.component.html', @@ -35,7 +41,7 @@ export class HeaderComponent implements OnInit, AfterViewInit { private layoutRefService: LayoutRefService, private layoutConfigService: LayoutConfigService, public loader: LoadingBarService, - public htmlClassService: HtmlClassService + public htmlClassService: HtmlClassService, ) { // page progress bar percentage this.router.events.subscribe(event => { @@ -70,7 +76,10 @@ export class HeaderComponent implements OnInit, AfterViewInit { this.menuHeaderDisplay = objectPath.get(config, 'header.menu.self.display'); // animate the header minimize the height on scroll down - if (objectPath.get(config, 'header.self.fixed.desktop.enabled') || objectPath.get(config, 'header.self.fixed.desktop')) { + if ( + objectPath.get(config, 'header.self.fixed.desktop.enabled') || + objectPath.get(config, 'header.self.fixed.desktop') + ) { // header minimize on scroll down this.ktHeader.nativeElement.setAttribute('data-ktheader-minimize', '1'); } diff --git a/src/app/views/themes/demo2/header/menu-horizontal/menu-horizontal.component.ts b/src/app/views/themes/demo2/header/menu-horizontal/menu-horizontal.component.ts index 96642f4..030a44f 100644 --- a/src/app/views/themes/demo2/header/menu-horizontal/menu-horizontal.component.ts +++ b/src/app/views/themes/demo2/header/menu-horizontal/menu-horizontal.component.ts @@ -6,7 +6,12 @@ import { filter } from 'rxjs/operators'; // Object-Path import * as objectPath from 'object-path'; // Layout -import { LayoutConfigService, MenuConfigService, MenuHorizontalService, MenuOptions } from '../../../../../core/_base/layout'; +import { + LayoutConfigService, + MenuConfigService, + MenuHorizontalService, + MenuOptions, +} from '../../../../../core/_base/layout'; // Metronic import { OffcanvasOptions } from '../../../../../core/_base/metronic'; // HTML Class @@ -28,12 +33,12 @@ export class MenuHorizontalComponent implements OnInit, AfterViewInit { submenu: { desktop: 'dropdown', tablet: 'accordion', - mobile: 'accordion' + mobile: 'accordion', }, accordion: { slideSpeed: 200, // accordion toggle slide speed in milliseconds - expandAll: false // allow having multiple expanded accordions in the menu - } + expandAll: false, // allow having multiple expanded accordions in the menu + }, }; offcanvasOptions: OffcanvasOptions = { @@ -42,8 +47,8 @@ export class MenuHorizontalComponent implements OnInit, AfterViewInit { closeBy: 'kt_header_menu_mobile_close_btn', toggleBy: { target: 'kt_header_mobile_toggler', - state: 'kt-header-mobile__toolbar-toggler--active' - } + state: 'kt-header-mobile__toolbar-toggler--active', + }, }; /** @@ -64,9 +69,8 @@ export class MenuHorizontalComponent implements OnInit, AfterViewInit { private menuConfigService: MenuConfigService, private layoutConfigService: LayoutConfigService, private router: Router, - private render: Renderer2 - ) { - } + private render: Renderer2, + ) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -75,8 +79,7 @@ export class MenuHorizontalComponent implements OnInit, AfterViewInit { /** * After view init */ - ngAfterViewInit(): void { - } + ngAfterViewInit(): void {} /** * On init @@ -85,11 +88,9 @@ export class MenuHorizontalComponent implements OnInit, AfterViewInit { this.rootArrowEnabled = this.layoutConfigService.getConfig('header.menu.self.root-arrow'); this.currentRouteUrl = this.router.url; - this.router.events - .pipe(filter(event => event instanceof NavigationEnd)) - .subscribe(event => { - this.currentRouteUrl = this.router.url; - }); + this.router.events.pipe(filter(event => event instanceof NavigationEnd)).subscribe(event => { + this.currentRouteUrl = this.router.url; + }); } /** @@ -116,8 +117,10 @@ export class MenuHorizontalComponent implements OnInit, AfterViewInit { } const menuType = objectPath.get(item, 'submenu.type') || 'classic'; - if ((objectPath.get(item, 'root') && menuType === 'classic') - || parseInt(objectPath.get(item, 'submenu.width'), 10) > 0) { + if ( + (objectPath.get(item, 'root') && menuType === 'classic') || + parseInt(objectPath.get(item, 'submenu.width'), 10) > 0 + ) { classes += ' kt-menu__item--rel'; } diff --git a/src/app/views/themes/demo2/header/topbar/topbar.component.ts b/src/app/views/themes/demo2/header/topbar/topbar.component.ts index 88dfd61..87e701f 100644 --- a/src/app/views/themes/demo2/header/topbar/topbar.component.ts +++ b/src/app/views/themes/demo2/header/topbar/topbar.component.ts @@ -6,4 +6,4 @@ import { Component } from '@angular/core'; templateUrl: './topbar.component.html', styleUrls: ['./topbar.component.scss'], }) -export class TopbarComponent { } +export class TopbarComponent {} diff --git a/src/app/views/themes/demo2/html-class.service.ts b/src/app/views/themes/demo2/html-class.service.ts index ab78dcc..c24eaa4 100644 --- a/src/app/views/themes/demo2/html-class.service.ts +++ b/src/app/views/themes/demo2/html-class.service.ts @@ -88,7 +88,10 @@ export class HtmlClassService { if (objectPath.has(this.config, 'self.body.class')) { document.body.classList.add(objectPath.get(this.config, 'self.body.class')); } - if (objectPath.get(this.config, 'self.layout') === 'boxed' && objectPath.has(this.config, 'self.body.background-image')) { + if ( + objectPath.get(this.config, 'self.layout') === 'boxed' && + objectPath.has(this.config, 'self.body.background-image') + ) { document.body.style.backgroundImage = 'url("' + objectPath.get(this.config, 'self.body.background-image') + '")'; } if (objectPath.get(this.config, 'width')) { @@ -99,8 +102,7 @@ export class HtmlClassService { /** * Init Loader */ - private initLoader() { - } + private initLoader() {} /** * Init Header @@ -110,7 +112,9 @@ export class HtmlClassService { if (objectPath.get(this.config, 'header.self.fixed.desktop.enabled')) { document.body.classList.add('kt-header--fixed'); objectPath.push(this.classes, 'header', 'kt-header--fixed'); - document.body.classList.add('kt-header--minimize-' + objectPath.get(this.config, 'header.self.fixed.desktop.mode')); + document.body.classList.add( + 'kt-header--minimize-' + objectPath.get(this.config, 'header.self.fixed.desktop.mode'), + ); } else { document.body.classList.add('kt-header--static'); } @@ -152,7 +156,11 @@ export class HtmlClassService { if (objectPath.get(this.config, 'aside.self.skin')) { objectPath.push(this.classes, 'aside', 'kt-aside--skin-' + objectPath.get(this.config, 'aside.self.skin')); document.body.classList.add('kt-aside--skin-' + objectPath.get(this.config, 'aside.self.skin')); - objectPath.push(this.classes, 'aside_menu', 'kt-aside-menu--skin-' + objectPath.get(this.config, 'aside.self.skin')); + objectPath.push( + this.classes, + 'aside_menu', + 'kt-aside-menu--skin-' + objectPath.get(this.config, 'aside.self.skin'), + ); document.body.classList.add('kt-aside__brand--skin-' + objectPath.get(this.config, 'aside.self.skin')); objectPath.push(this.classes, 'brand', 'kt-aside__brand--skin-' + objectPath.get(this.config, 'aside.self.skin')); @@ -173,7 +181,10 @@ export class HtmlClassService { // Menu // Dropdown Submenu - if (objectPath.get(this.config, 'aside.self.fixed') !== true && objectPath.get(this.config, 'aside.menu.dropdown')) { + if ( + objectPath.get(this.config, 'aside.self.fixed') !== true && + objectPath.get(this.config, 'aside.menu.dropdown') + ) { objectPath.push(this.classes, 'aside_menu', 'kt-aside-menu--dropdown'); // enable menu dropdown } @@ -187,7 +198,10 @@ export class HtmlClassService { document.body.classList.add('kt-aside-secondary--enabled'); } - if (objectPath.get(this.config, 'aside-secondary.self.expanded') === true && objectPath.get(this.config, 'aside-secondary.self.layout') !== 'layout-2') { + if ( + objectPath.get(this.config, 'aside-secondary.self.expanded') === true && + objectPath.get(this.config, 'aside-secondary.self.layout') !== 'layout-2' + ) { document.body.classList.add('kt-aside-secondary--expanded'); } diff --git a/src/app/views/themes/demo2/pages-routing.module.ts b/src/app/views/themes/demo2/pages-routing.module.ts index b9e79c6..fd84cb8 100644 --- a/src/app/views/themes/demo2/pages-routing.module.ts +++ b/src/app/views/themes/demo2/pages-routing.module.ts @@ -15,22 +15,21 @@ const routes: Routes = [ children: [ { path: 'dashboard', - loadChildren: 'app/views/pages/dashboard/dashboard.module#DashboardModule' + loadChildren: 'app/views/pages/dashboard/dashboard.module#DashboardModule', }, { path: 'builder', - loadChildren: 'app/views/themes/demo2/content/builder/builder.module#BuilderModule' + loadChildren: 'app/views/themes/demo2/content/builder/builder.module#BuilderModule', }, - {path: 'error/:type', component: ErrorPageComponent}, - {path: '', redirectTo: 'dashboard', pathMatch: 'full'}, - {path: '**', redirectTo: 'dashboard', pathMatch: 'full'} - ] + { path: 'error/:type', component: ErrorPageComponent }, + { path: '', redirectTo: 'dashboard', pathMatch: 'full' }, + { path: '**', redirectTo: 'dashboard', pathMatch: 'full' }, + ], }, ]; @NgModule({ imports: [RouterModule.forChild(routes)], - exports: [RouterModule] + exports: [RouterModule], }) -export class PagesRoutingModule { -} +export class PagesRoutingModule {} diff --git a/src/app/views/themes/demo2/subheader/subheader.component.ts b/src/app/views/themes/demo2/subheader/subheader.component.ts index 0209e79..d19108a 100644 --- a/src/app/views/themes/demo2/subheader/subheader.component.ts +++ b/src/app/views/themes/demo2/subheader/subheader.component.ts @@ -17,8 +17,7 @@ export class SubheaderComponent implements OnInit { * * @param layoutConfigService: LayoutConfigService */ - constructor(private layoutConfigService: LayoutConfigService) { - } + constructor(private layoutConfigService: LayoutConfigService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/views/themes/demo2/theme.module.ts b/src/app/views/themes/demo2/theme.module.ts index e8f5921..96ed87b 100644 --- a/src/app/views/themes/demo2/theme.module.ts +++ b/src/app/views/themes/demo2/theme.module.ts @@ -38,7 +38,6 @@ import { HeaderMobileComponent } from './header/header-mobile/header-mobile.comp import { ErrorPageComponent } from './content/error-page/error-page.component'; import { PermissionEffects, permissionsReducer, RoleEffects, rolesReducer } from '../../../core/auth'; - @NgModule({ declarations: [ BaseComponent, @@ -86,9 +85,7 @@ import { PermissionEffects, permissionsReducer, RoleEffects, rolesReducer } from ErrorPageComponent, ], - providers: [ - HtmlClassService, - ], + providers: [HtmlClassService], imports: [ CommonModule, RouterModule, @@ -110,8 +107,7 @@ import { PermissionEffects, permissionsReducer, RoleEffects, rolesReducer } from TranslateModule.forChild(), LoadingBarModule, NgxDaterangepickerMd, - InlineSVGModule - ] + InlineSVGModule, + ], }) -export class ThemeModule { -} +export class ThemeModule {} diff --git a/src/app/views/themes/steps/aside/aside-left.component.ts b/src/app/views/themes/steps/aside/aside-left.component.ts index 6d34d06..0b5571e 100644 --- a/src/app/views/themes/steps/aside/aside-left.component.ts +++ b/src/app/views/themes/steps/aside/aside-left.component.ts @@ -1,4 +1,12 @@ -import { AfterViewInit, ChangeDetectionStrategy, Component, ElementRef, OnInit, Renderer2, ViewChild } from '@angular/core'; +import { + AfterViewInit, + ChangeDetectionStrategy, + Component, + ElementRef, + OnInit, + Renderer2, + ViewChild, +} from '@angular/core'; import { filter } from 'rxjs/operators'; import { NavigationEnd, Router } from '@angular/router'; import * as objectPath from 'object-path'; @@ -10,10 +18,9 @@ import { HtmlClassService } from '../html-class.service'; selector: 'kt-aside-left', templateUrl: './aside-left.component.html', styleUrls: ['./aside-left.component.scss'], - changeDetection: ChangeDetectionStrategy.OnPush + changeDetection: ChangeDetectionStrategy.OnPush, }) export class AsideLeftComponent implements OnInit, AfterViewInit { - @ViewChild('asideMenu') asideMenu: ElementRef; currentRouteUrl: string = ''; @@ -26,8 +33,8 @@ export class AsideLeftComponent implements OnInit, AfterViewInit { closeBy: 'kt_aside_close_btn', toggleBy: { target: 'kt_aside_mobile_toggler', - state: 'kt-header-mobile__toolbar-toggler--active' - } + state: 'kt-header-mobile__toolbar-toggler--active', + }, }; menuOptions: MenuOptions = { @@ -41,13 +48,13 @@ export class AsideLeftComponent implements OnInit, AfterViewInit { default: 'dropdown', }, tablet: 'accordion', // menu set to accordion in tablet mode - mobile: 'accordion' // menu set to accordion in mobile mode + mobile: 'accordion', // menu set to accordion in mobile mode }, // accordion setup accordion: { - expandAll: false // allow having multiple expanded accordions in the menu - } + expandAll: false, // allow having multiple expanded accordions in the menu + }, }; constructor( @@ -55,19 +62,17 @@ export class AsideLeftComponent implements OnInit, AfterViewInit { public menuAsideService: MenuAsideService, public layoutConfigService: LayoutConfigService, private router: Router, - private render: Renderer2 - ) { - } + private render: Renderer2, + ) {} - ngAfterViewInit(): void { - } + ngAfterViewInit(): void {} ngOnInit() { this.currentRouteUrl = this.router.url.split(/[?#]/)[0]; this.router.events .pipe(filter(event => event instanceof NavigationEnd)) - .subscribe(event => this.currentRouteUrl = this.router.url.split(/[?#]/)[0]); + .subscribe(event => (this.currentRouteUrl = this.router.url.split(/[?#]/)[0])); const config = this.layoutConfigService.getConfig(); @@ -78,7 +83,11 @@ export class AsideLeftComponent implements OnInit, AfterViewInit { if (objectPath.get(config, 'aside.menu.dropdown')) { this.render.setAttribute(this.asideMenu.nativeElement, 'data-ktmenu-dropdown', '1'); // tslint:disable-next-line:max-line-length - this.render.setAttribute(this.asideMenu.nativeElement, 'data-ktmenu-dropdown-timeout', objectPath.get(config, 'aside.menu.submenu.dropdown.hover-timeout')); + this.render.setAttribute( + this.asideMenu.nativeElement, + 'data-ktmenu-dropdown-timeout', + objectPath.get(config, 'aside.menu.submenu.dropdown.hover-timeout'), + ); } } diff --git a/src/app/views/themes/steps/base/base.component.ts b/src/app/views/themes/steps/base/base.component.ts index c78d736..40ed98c 100644 --- a/src/app/views/themes/steps/base/base.component.ts +++ b/src/app/views/themes/steps/base/base.component.ts @@ -19,7 +19,7 @@ import { AppState } from '../../../../core/reducers'; selector: 'kt-base', templateUrl: './base.component.html', styleUrls: ['./base.component.scss'], - encapsulation: ViewEncapsulation.None + encapsulation: ViewEncapsulation.None, }) export class BaseComponent implements OnInit, OnDestroy { // Public constructor @@ -32,7 +32,6 @@ export class BaseComponent implements OnInit, OnDestroy { private unsubscribe: Subscription[] = []; // Read more: => https://brianflove.com/2016/12/11/anguar-2-unsubscribe-observables/ private currentUserPermissions$: Observable; - /** * Component constructor * @@ -47,10 +46,10 @@ export class BaseComponent implements OnInit, OnDestroy { private pageConfigService: PageConfigService, private htmlClassService: HtmlClassService, private store: Store, - private permissionsService: NgxPermissionsService) { + private permissionsService: NgxPermissionsService, + ) { this.loadRolesWithPermissions(); - // register configs by demos this.layoutConfigService.loadConfigs(new LayoutConfig().configs); this.menuConfigService.loadConfigs(new MenuConfig().configs); diff --git a/src/app/views/themes/steps/content/builder/builder.component.ts b/src/app/views/themes/steps/content/builder/builder.component.ts index 13d64bf..149bcf5 100644 --- a/src/app/views/themes/steps/content/builder/builder.component.ts +++ b/src/app/views/themes/steps/content/builder/builder.component.ts @@ -7,7 +7,7 @@ import { LayoutConfigModel, LayoutConfigService } from '../../../../../core/_bas @Component({ selector: 'kt-builder', templateUrl: './builder.component.html', - styleUrls: ['./builder.component.scss'] + styleUrls: ['./builder.component.scss'], }) export class BuilderComponent implements OnInit { // Public properties @@ -19,8 +19,7 @@ export class BuilderComponent implements OnInit { * * @param layoutConfigService: LayoutConfigService */ - constructor(private layoutConfigService: LayoutConfigService) { - } + constructor(private layoutConfigService: LayoutConfigService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/views/themes/steps/content/builder/builder.module.ts b/src/app/views/themes/steps/content/builder/builder.module.ts index c9dcefa..6e28742 100644 --- a/src/app/views/themes/steps/content/builder/builder.module.ts +++ b/src/app/views/themes/steps/content/builder/builder.module.ts @@ -30,12 +30,11 @@ import { BuilderComponent } from './builder.component'; RouterModule.forChild([ { path: '', - component: BuilderComponent - } - ]) + component: BuilderComponent, + }, + ]), ], providers: [], - declarations: [BuilderComponent] + declarations: [BuilderComponent], }) -export class BuilderModule { -} +export class BuilderModule {} diff --git a/src/app/views/themes/steps/content/error-page/error-page.component.ts b/src/app/views/themes/steps/content/error-page/error-page.component.ts index 75145d4..46d4079 100644 --- a/src/app/views/themes/steps/content/error-page/error-page.component.ts +++ b/src/app/views/themes/steps/content/error-page/error-page.component.ts @@ -10,7 +10,7 @@ import { LayoutConfigService } from '../../../../../core/_base/layout'; selector: 'kt-error-page', templateUrl: './error-page.component.html', styleUrls: ['./error-page.component.scss'], - encapsulation: ViewEncapsulation.None + encapsulation: ViewEncapsulation.None, }) export class ErrorPageComponent implements OnInit, OnDestroy { // Public properties @@ -39,7 +39,7 @@ export class ErrorPageComponent implements OnInit, OnDestroy { */ constructor(private route: ActivatedRoute, private layoutConfigService: LayoutConfigService) { // set temporary values to the layout config on this page - this.layoutConfigService.setConfig({self: {layout: 'blank'}}); + this.layoutConfigService.setConfig({ self: { layout: 'blank' } }); } /** @@ -109,10 +109,12 @@ export class ErrorPageComponent implements OnInit, OnDestroy { this.title = 'How did you get here'; } if (!this.subtitle) { - this.subtitle = 'Sorry we can\'t seem to find the page you\'re looking for.'; + this.subtitle = "Sorry we can't seem to find the page you're looking for."; } if (!this.desc) { - this.desc = 'There may be amisspelling in the URL entered,
' + 'or the page you are looking for may no longer exist.'; + this.desc = + 'There may be amisspelling in the URL entered,
' + + 'or the page you are looking for may no longer exist.'; } if (!this.image) { this.image = './assets/media/error/bg3.jpg'; @@ -140,7 +142,10 @@ export class ErrorPageComponent implements OnInit, OnDestroy { this.subtitle = 'Something went wrong here'; } if (!this.desc) { - this.desc = 'We\'re working on it and we\'ll get it fixed
' + 'as soon possible.
' + 'You can back or use our Help Center.'; + this.desc = + "We're working on it and we'll get it fixed
" + + 'as soon possible.
' + + 'You can back or use our Help Center.'; } if (!this.image) { this.image = './assets/media/error/bg5.jpg'; @@ -151,7 +156,7 @@ export class ErrorPageComponent implements OnInit, OnDestroy { this.title = 'Oops...'; } if (!this.desc) { - this.desc = 'Looks like something went wrong.
' + 'We\'re working on it'; + this.desc = 'Looks like something went wrong.
' + "We're working on it"; } if (!this.image) { this.image = './assets/media/error/bg6.jpg'; diff --git a/src/app/views/themes/steps/footer/footer.component.ts b/src/app/views/themes/steps/footer/footer.component.ts index 724e790..9978147 100644 --- a/src/app/views/themes/steps/footer/footer.component.ts +++ b/src/app/views/themes/steps/footer/footer.component.ts @@ -15,8 +15,7 @@ export class FooterComponent implements OnInit { * * @param layoutConfigService: LayouConfigService */ - constructor(private layoutConfigService: LayoutConfigService) { - } + constructor(private layoutConfigService: LayoutConfigService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/views/themes/steps/header/brand/brand.component.ts b/src/app/views/themes/steps/header/brand/brand.component.ts index 59a714a..1f3053f 100644 --- a/src/app/views/themes/steps/header/brand/brand.component.ts +++ b/src/app/views/themes/steps/header/brand/brand.component.ts @@ -18,7 +18,7 @@ export class BrandComponent implements OnInit, AfterViewInit { toggleOptions: ToggleOptions = { target: 'body', targetState: 'kt-aside--minimize', - togglerState: 'kt-aside__brand-aside-toggler--active' + togglerState: 'kt-aside__brand-aside-toggler--active', }; /** @@ -27,8 +27,7 @@ export class BrandComponent implements OnInit, AfterViewInit { * @param layoutConfigService: LayoutConfigService * @param htmlClassService: HtmlClassService */ - constructor(private layoutConfigService: LayoutConfigService, public htmlClassService: HtmlClassService) { - } + constructor(private layoutConfigService: LayoutConfigService, public htmlClassService: HtmlClassService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -45,6 +44,5 @@ export class BrandComponent implements OnInit, AfterViewInit { /** * On destroy */ - ngAfterViewInit(): void { - } + ngAfterViewInit(): void {} } diff --git a/src/app/views/themes/steps/header/header-mobile/header-mobile.component.ts b/src/app/views/themes/steps/header/header-mobile/header-mobile.component.ts index 402a0e4..66f3b71 100644 --- a/src/app/views/themes/steps/header/header-mobile/header-mobile.component.ts +++ b/src/app/views/themes/steps/header/header-mobile/header-mobile.component.ts @@ -8,7 +8,7 @@ import { LayoutConfigService } from '../../../../../core/_base/layout'; @Component({ selector: 'kt-header-mobile', templateUrl: './header-mobile.component.html', - styleUrls: ['./header-mobile.component.scss'] + styleUrls: ['./header-mobile.component.scss'], }) export class HeaderMobileComponent implements OnInit { // Public properties @@ -18,7 +18,7 @@ export class HeaderMobileComponent implements OnInit { toggleOptions: ToggleOptions = { target: 'body', targetState: 'kt-header__topbar--mobile-on', - togglerState: 'kt-header-mobile__toolbar-topbar-toggler--active' + togglerState: 'kt-header-mobile__toolbar-topbar-toggler--active', }; /** @@ -26,8 +26,7 @@ export class HeaderMobileComponent implements OnInit { * * @param layoutConfigService: LayoutConfigService */ - constructor(private layoutConfigService: LayoutConfigService) { - } + constructor(private layoutConfigService: LayoutConfigService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/views/themes/steps/header/header.component.ts b/src/app/views/themes/steps/header/header.component.ts index 6c0acf0..8b7ca57 100644 --- a/src/app/views/themes/steps/header/header.component.ts +++ b/src/app/views/themes/steps/header/header.component.ts @@ -1,6 +1,13 @@ // Angular import { AfterViewInit, Component, ElementRef, OnInit, ViewChild } from '@angular/core'; -import { NavigationCancel, NavigationEnd, NavigationStart, RouteConfigLoadEnd, RouteConfigLoadStart, Router } from '@angular/router'; +import { + NavigationCancel, + NavigationEnd, + NavigationStart, + RouteConfigLoadEnd, + RouteConfigLoadStart, + Router, +} from '@angular/router'; // Object-Path import * as objectPath from 'object-path'; // Loading bar @@ -10,7 +17,6 @@ import { LayoutRefService, LayoutConfigService } from '../../../../core/_base/la // HTML Class Service import { HtmlClassService } from '../html-class.service'; - @Component({ selector: 'kt-header', templateUrl: './header.component.html', @@ -35,7 +41,7 @@ export class HeaderComponent implements OnInit, AfterViewInit { private layoutRefService: LayoutRefService, private layoutConfigService: LayoutConfigService, public loader: LoadingBarService, - public htmlClassService: HtmlClassService + public htmlClassService: HtmlClassService, ) { // page progress bar percentage this.router.events.subscribe(event => { diff --git a/src/app/views/themes/steps/header/menu-horizontal/menu-horizontal.component.ts b/src/app/views/themes/steps/header/menu-horizontal/menu-horizontal.component.ts index 96642f4..030a44f 100644 --- a/src/app/views/themes/steps/header/menu-horizontal/menu-horizontal.component.ts +++ b/src/app/views/themes/steps/header/menu-horizontal/menu-horizontal.component.ts @@ -6,7 +6,12 @@ import { filter } from 'rxjs/operators'; // Object-Path import * as objectPath from 'object-path'; // Layout -import { LayoutConfigService, MenuConfigService, MenuHorizontalService, MenuOptions } from '../../../../../core/_base/layout'; +import { + LayoutConfigService, + MenuConfigService, + MenuHorizontalService, + MenuOptions, +} from '../../../../../core/_base/layout'; // Metronic import { OffcanvasOptions } from '../../../../../core/_base/metronic'; // HTML Class @@ -28,12 +33,12 @@ export class MenuHorizontalComponent implements OnInit, AfterViewInit { submenu: { desktop: 'dropdown', tablet: 'accordion', - mobile: 'accordion' + mobile: 'accordion', }, accordion: { slideSpeed: 200, // accordion toggle slide speed in milliseconds - expandAll: false // allow having multiple expanded accordions in the menu - } + expandAll: false, // allow having multiple expanded accordions in the menu + }, }; offcanvasOptions: OffcanvasOptions = { @@ -42,8 +47,8 @@ export class MenuHorizontalComponent implements OnInit, AfterViewInit { closeBy: 'kt_header_menu_mobile_close_btn', toggleBy: { target: 'kt_header_mobile_toggler', - state: 'kt-header-mobile__toolbar-toggler--active' - } + state: 'kt-header-mobile__toolbar-toggler--active', + }, }; /** @@ -64,9 +69,8 @@ export class MenuHorizontalComponent implements OnInit, AfterViewInit { private menuConfigService: MenuConfigService, private layoutConfigService: LayoutConfigService, private router: Router, - private render: Renderer2 - ) { - } + private render: Renderer2, + ) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks @@ -75,8 +79,7 @@ export class MenuHorizontalComponent implements OnInit, AfterViewInit { /** * After view init */ - ngAfterViewInit(): void { - } + ngAfterViewInit(): void {} /** * On init @@ -85,11 +88,9 @@ export class MenuHorizontalComponent implements OnInit, AfterViewInit { this.rootArrowEnabled = this.layoutConfigService.getConfig('header.menu.self.root-arrow'); this.currentRouteUrl = this.router.url; - this.router.events - .pipe(filter(event => event instanceof NavigationEnd)) - .subscribe(event => { - this.currentRouteUrl = this.router.url; - }); + this.router.events.pipe(filter(event => event instanceof NavigationEnd)).subscribe(event => { + this.currentRouteUrl = this.router.url; + }); } /** @@ -116,8 +117,10 @@ export class MenuHorizontalComponent implements OnInit, AfterViewInit { } const menuType = objectPath.get(item, 'submenu.type') || 'classic'; - if ((objectPath.get(item, 'root') && menuType === 'classic') - || parseInt(objectPath.get(item, 'submenu.width'), 10) > 0) { + if ( + (objectPath.get(item, 'root') && menuType === 'classic') || + parseInt(objectPath.get(item, 'submenu.width'), 10) > 0 + ) { classes += ' kt-menu__item--rel'; } diff --git a/src/app/views/themes/steps/header/topbar/topbar.component.ts b/src/app/views/themes/steps/header/topbar/topbar.component.ts index 88dfd61..87e701f 100644 --- a/src/app/views/themes/steps/header/topbar/topbar.component.ts +++ b/src/app/views/themes/steps/header/topbar/topbar.component.ts @@ -6,4 +6,4 @@ import { Component } from '@angular/core'; templateUrl: './topbar.component.html', styleUrls: ['./topbar.component.scss'], }) -export class TopbarComponent { } +export class TopbarComponent {} diff --git a/src/app/views/themes/steps/html-class.service.ts b/src/app/views/themes/steps/html-class.service.ts index 2721fcd..9b89966 100644 --- a/src/app/views/themes/steps/html-class.service.ts +++ b/src/app/views/themes/steps/html-class.service.ts @@ -89,7 +89,10 @@ export class HtmlClassService { if (objectPath.has(this.config, 'self.body.class')) { document.body.classList.add(objectPath.get(this.config, 'self.body.class')); } - if (objectPath.get(this.config, 'self.layout') === 'boxed' && objectPath.has(this.config, 'self.body.background-image')) { + if ( + objectPath.get(this.config, 'self.layout') === 'boxed' && + objectPath.has(this.config, 'self.body.background-image') + ) { document.body.style.backgroundImage = 'url("' + objectPath.get(this.config, 'self.body.background-image') + '")'; } } @@ -97,8 +100,7 @@ export class HtmlClassService { /** * Init Loader */ - private initLoader() { - } + private initLoader() {} /** * Init Header @@ -118,7 +120,11 @@ export class HtmlClassService { } if (objectPath.get(this.config, 'header.menu.self.layout')) { - objectPath.push(this.classes, 'header_menu', 'kt-header-menu--layout-' + objectPath.get(this.config, 'header.menu.self.layout')); + objectPath.push( + this.classes, + 'header_menu', + 'kt-header-menu--layout-' + objectPath.get(this.config, 'header.menu.self.layout'), + ); } } @@ -165,7 +171,10 @@ export class HtmlClassService { // Menu // Dropdown Submenu - if (objectPath.get(this.config, 'aside.self.fixed') !== true && objectPath.get(this.config, 'aside.menu.dropdown')) { + if ( + objectPath.get(this.config, 'aside.self.fixed') !== true && + objectPath.get(this.config, 'aside.menu.dropdown') + ) { objectPath.push(this.classes, 'aside_menu', 'kt-aside-menu--dropdown'); // enable menu dropdown } @@ -181,7 +190,10 @@ export class HtmlClassService { } // tslint:disable-next-line:max-line-length - if (objectPath.get(this.config, 'aside-secondary.self.expanded') === true && objectPath.get(this.config, 'aside-secondary.self.layout') !== 'layout-2') { + if ( + objectPath.get(this.config, 'aside-secondary.self.expanded') === true && + objectPath.get(this.config, 'aside-secondary.self.layout') !== 'layout-2' + ) { document.body.classList.add('kt-aside-secondary--expanded'); } @@ -193,8 +205,7 @@ export class HtmlClassService { /** * Init Content */ - private initContent() { - } + private initContent() {} /** * Init Footer diff --git a/src/app/views/themes/steps/pages-routing.module.ts b/src/app/views/themes/steps/pages-routing.module.ts index 9fe17b2..48f7201 100644 --- a/src/app/views/themes/steps/pages-routing.module.ts +++ b/src/app/views/themes/steps/pages-routing.module.ts @@ -15,26 +15,25 @@ const routes: Routes = [ children: [ { path: 'step1', - loadChildren: 'app/views/steps/step1/step1.module#Step1Module' + loadChildren: 'app/views/steps/step1/step1.module#Step1Module', }, { path: 'step2', - loadChildren: 'app/views/steps/step2/step2.module#Step2Module' + loadChildren: 'app/views/steps/step2/step2.module#Step2Module', }, { path: 'step3', - loadChildren: 'app/views/steps/step3/step3.module#Step3Module' + loadChildren: 'app/views/steps/step3/step3.module#Step3Module', }, - {path: 'error/:type', component: ErrorPageComponent}, - {path: '', redirectTo: 'step1', pathMatch: 'full'}, - {path: '**', redirectTo: 'step1', pathMatch: 'full'} - ] + { path: 'error/:type', component: ErrorPageComponent }, + { path: '', redirectTo: 'step1', pathMatch: 'full' }, + { path: '**', redirectTo: 'step1', pathMatch: 'full' }, + ], }, ]; @NgModule({ imports: [RouterModule.forChild(routes)], - exports: [RouterModule] + exports: [RouterModule], }) -export class PagesRoutingModule { -} +export class PagesRoutingModule {} diff --git a/src/app/views/themes/steps/subheader/subheader.component.ts b/src/app/views/themes/steps/subheader/subheader.component.ts index 0209e79..d19108a 100644 --- a/src/app/views/themes/steps/subheader/subheader.component.ts +++ b/src/app/views/themes/steps/subheader/subheader.component.ts @@ -17,8 +17,7 @@ export class SubheaderComponent implements OnInit { * * @param layoutConfigService: LayoutConfigService */ - constructor(private layoutConfigService: LayoutConfigService) { - } + constructor(private layoutConfigService: LayoutConfigService) {} /** * @ Lifecycle sequences => https://angular.io/guide/lifecycle-hooks diff --git a/src/app/views/themes/steps/theme.module.ts b/src/app/views/themes/steps/theme.module.ts index e9ca792..e1ff3fa 100644 --- a/src/app/views/themes/steps/theme.module.ts +++ b/src/app/views/themes/steps/theme.module.ts @@ -1,43 +1,44 @@ -import { NgxPermissionsModule } from 'ngx-permissions'; -// Angular -import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; -import { RouterModule } from '@angular/router'; +import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { MatButtonModule, MatProgressBarModule, MatTabsModule, MatTooltipModule } from '@angular/material'; -// NgBootstrap +import { RouterModule } from '@angular/router'; import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; -// Translation -import { TranslateModule } from '@ngx-translate/core'; -// Loading bar -import { LoadingBarModule } from '@ngx-loading-bar/core'; -// NGRX -import { StoreModule } from '@ngrx/store'; import { EffectsModule } from '@ngrx/effects'; -// Ngx DatePicker +import { StoreModule } from '@ngrx/store'; +import { LoadingBarModule } from '@ngx-loading-bar/core'; +import { TranslateModule } from '@ngx-translate/core'; +import { InlineSVGModule } from 'ng-inline-svg'; import { NgxDaterangepickerMd } from 'ngx-daterangepicker-material'; -// Perfect Scrollbar import { PerfectScrollbarModule } from 'ngx-perfect-scrollbar'; -// SVG inline -import { InlineSVGModule } from 'ng-inline-svg'; -// Core Module +import { NgxPermissionsModule } from 'ngx-permissions'; + +import { PermissionEffects, permissionsReducer, RoleEffects, rolesReducer } from '../../../core/auth'; import { CoreModule } from '../../../core/core.module'; -import { HeaderComponent } from './header/header.component'; +import { PagesModule } from '../../pages/pages.module'; +import { PartialsModule } from '../../partials/partials.module'; import { AsideLeftComponent } from './aside/aside-left.component'; +import { BaseComponent } from './base/base.component'; +import { ErrorPageComponent } from './content/error-page/error-page.component'; import { FooterComponent } from './footer/footer.component'; -import { SubheaderComponent } from './subheader/subheader.component'; import { BrandComponent } from './header/brand/brand.component'; -import { TopbarComponent } from './header/topbar/topbar.component'; +import { HeaderMobileComponent } from './header/header-mobile/header-mobile.component'; +import { HeaderComponent } from './header/header.component'; import { MenuHorizontalComponent } from './header/menu-horizontal/menu-horizontal.component'; -import { PartialsModule } from '../../partials/partials.module'; -import { BaseComponent } from './base/base.component'; -import { PagesRoutingModule } from './pages-routing.module'; -import { PagesModule } from '../../pages/pages.module'; +import { TopbarComponent } from './header/topbar/topbar.component'; import { HtmlClassService } from './html-class.service'; -import { HeaderMobileComponent } from './header/header-mobile/header-mobile.component'; -import { ErrorPageComponent } from './content/error-page/error-page.component'; -import { PermissionEffects, permissionsReducer, RoleEffects, rolesReducer } from '../../../core/auth'; +import { PagesRoutingModule } from './pages-routing.module'; +import { SubheaderComponent } from './subheader/subheader.component'; +// Angular +// NgBootstrap +// Translation +// Loading bar +// NGRX +// Ngx DatePicker +// Perfect Scrollbar +// SVG inline +// Core Module @NgModule({ declarations: [ BaseComponent, @@ -85,9 +86,7 @@ import { PermissionEffects, permissionsReducer, RoleEffects, rolesReducer } from ErrorPageComponent, ], - providers: [ - HtmlClassService, - ], + providers: [HtmlClassService], imports: [ CommonModule, RouterModule, @@ -109,8 +108,7 @@ import { PermissionEffects, permissionsReducer, RoleEffects, rolesReducer } from TranslateModule.forChild(), LoadingBarModule, NgxDaterangepickerMd, - InlineSVGModule - ] + InlineSVGModule, + ], }) -export class ThemeModule { -} +export class ThemeModule {} diff --git a/src/assets/app/bundle/app.bundle.js b/src/assets/app/bundle/app.bundle.js index 9400e92..839c295 100644 --- a/src/assets/app/bundle/app.bundle.js +++ b/src/assets/app/bundle/app.bundle.js @@ -1 +1,305 @@ -"use strict";var KTDemoPanel=function(){var t,e=KTUtil.getByID("kt_demo_panel");return{init:function(){!function(){t=new KTOffcanvas(e,{overlay:!0,baseClass:"kt-demo-panel",closeBy:"kt_demo_panel_close",toggleBy:"kt_demo_panel_toggle"});var n=KTUtil.find(e,".kt-demo-panel__head"),i=KTUtil.find(e,".kt-demo-panel__body");KTUtil.scrollInit(i,{disableForMobile:!0,resetHeightOnDestroy:!0,handleWindowResize:!0,height:function(){var t=parseInt(KTUtil.getViewPort().height);return n&&(t-=parseInt(KTUtil.actualHeight(n)),t-=parseInt(KTUtil.css(n,"marginBottom"))),t-=parseInt(KTUtil.css(e,"paddingTop")),t-=parseInt(KTUtil.css(e,"paddingBottom"))}}),void 0!==t&&0===t.length&&t.on("hide",function(){var t=new Date((new Date).getTime()+36e5);Cookies.set("kt_demo_panel_shown",1,{expires:t})})}(),"keenthemes.com"!=encodeURI(window.location.hostname)&&"www.keenthemes.com"!=encodeURI(window.location.hostname)||setTimeout(function(){if(!Cookies.get("kt_demo_panel_shown")){var e=new Date((new Date).getTime()+9e5);Cookies.set("kt_demo_panel_shown",1,{expires:e}),t.show()}},4e3)}}}();$(document).ready(function(){KTDemoPanel.init()});var KTOffcanvasPanel=function(){var t=KTUtil.get("kt_offcanvas_toolbar_notifications"),e=KTUtil.get("kt_offcanvas_toolbar_quick_actions"),n=KTUtil.get("kt_offcanvas_toolbar_profile"),i=KTUtil.get("kt_offcanvas_toolbar_search");return{init:function(){!function(){var e=KTUtil.find(t,".kt-offcanvas-panel__head"),n=KTUtil.find(t,".kt-offcanvas-panel__body");new KTOffcanvas(t,{overlay:!0,baseClass:"kt-offcanvas-panel",closeBy:"kt_offcanvas_toolbar_notifications_close",toggleBy:"kt_offcanvas_toolbar_notifications_toggler_btn"});KTUtil.scrollInit(n,{disableForMobile:!0,resetHeightOnDestroy:!0,handleWindowResize:!0,height:function(){var n=parseInt(KTUtil.getViewPort().height);return e&&(n-=parseInt(KTUtil.actualHeight(e)),n-=parseInt(KTUtil.css(e,"marginBottom"))),n-=parseInt(KTUtil.css(t,"paddingTop")),n-=parseInt(KTUtil.css(t,"paddingBottom"))}})}(),function(){var t=KTUtil.find(e,".kt-offcanvas-panel__head"),n=KTUtil.find(e,".kt-offcanvas-panel__body");new KTOffcanvas(e,{overlay:!0,baseClass:"kt-offcanvas-panel",closeBy:"kt_offcanvas_toolbar_quick_actions_close",toggleBy:"kt_offcanvas_toolbar_quick_actions_toggler_btn"});KTUtil.scrollInit(n,{disableForMobile:!0,resetHeightOnDestroy:!0,handleWindowResize:!0,height:function(){var n=parseInt(KTUtil.getViewPort().height);return t&&(n-=parseInt(KTUtil.actualHeight(t)),n-=parseInt(KTUtil.css(t,"marginBottom"))),n-=parseInt(KTUtil.css(e,"paddingTop")),n-=parseInt(KTUtil.css(e,"paddingBottom"))}})}(),function(){var t=KTUtil.find(n,".kt-offcanvas-panel__head"),e=KTUtil.find(n,".kt-offcanvas-panel__body");new KTOffcanvas(n,{overlay:!0,baseClass:"kt-offcanvas-panel",closeBy:"kt_offcanvas_toolbar_profile_close",toggleBy:"kt_offcanvas_toolbar_profile_toggler_btn"});KTUtil.scrollInit(e,{disableForMobile:!0,resetHeightOnDestroy:!0,handleWindowResize:!0,height:function(){var e=parseInt(KTUtil.getViewPort().height);return t&&(e-=parseInt(KTUtil.actualHeight(t)),e-=parseInt(KTUtil.css(t,"marginBottom"))),e-=parseInt(KTUtil.css(n,"paddingTop")),e-=parseInt(KTUtil.css(n,"paddingBottom"))}})}(),function(){var t=KTUtil.find(i,".kt-offcanvas-panel__head"),e=KTUtil.find(i,".kt-offcanvas-panel__body");new KTOffcanvas(i,{overlay:!0,baseClass:"kt-offcanvas-panel",closeBy:"kt_offcanvas_toolbar_search_close",toggleBy:"kt_offcanvas_toolbar_search_toggler_btn"});KTUtil.scrollInit(e,{disableForMobile:!0,resetHeightOnDestroy:!0,handleWindowResize:!0,height:function(){var e=parseInt(KTUtil.getViewPort().height);return t&&(e-=parseInt(KTUtil.actualHeight(t)),e-=parseInt(KTUtil.css(t,"marginBottom"))),e-=parseInt(KTUtil.css(i,"paddingTop")),e-=parseInt(KTUtil.css(i,"paddingBottom"))}})}()}}}();$(document).ready(function(){KTOffcanvasPanel.init()});var KTQuickPanel=function(){var t=KTUtil.get("kt_quick_panel"),e=KTUtil.get("kt_quick_panel_tab_notifications"),n=KTUtil.get("kt_quick_panel_tab_logs"),i=KTUtil.get("kt_quick_panel_tab_settings"),a=function(){var e=KTUtil.find(t,".kt-quick-panel__nav");KTUtil.find(t,".kt-quick-panel__content");return parseInt(KTUtil.getViewPort().height)-parseInt(KTUtil.actualHeight(e))-2*parseInt(KTUtil.css(e,"padding-top"))-10};return{init:function(){new KTOffcanvas(t,{overlay:!0,baseClass:"kt-quick-panel",closeBy:"kt_quick_panel_close_btn",toggleBy:"kt_quick_panel_toggler_btn"}),KTUtil.scrollInit(e,{disableForMobile:!0,resetHeightOnDestroy:!0,handleWindowResize:!0,height:function(){return a()}}),KTUtil.scrollInit(n,{disableForMobile:!0,resetHeightOnDestroy:!0,handleWindowResize:!0,height:function(){return a()}}),KTUtil.scrollInit(i,{disableForMobile:!0,resetHeightOnDestroy:!0,handleWindowResize:!0,height:function(){return a()}}),$(t).find('a[data-toggle="tab"]').on("shown.bs.tab",function(t){KTUtil.scrollUpdate(e),KTUtil.scrollUpdate(n),KTUtil.scrollUpdate(i)})}}}();$(document).ready(function(){KTQuickPanel.init()});var KTQuickSearch=function(){var t,e,n,i,a,o,l,s,r="",c=!1,d=!1,f=!1,_="kt-spinner kt-spinner--input kt-spinner--sm kt-spinner--brand kt-spinner--right",T="kt-quick-search--has-result",u=function(){f=!1,KTUtil.removeClass(s,_),i&&(n.value.length<2?KTUtil.hide(i):KTUtil.show(i,"flex"))},p=function(){l&&!KTUtil.hasClass(o,"show")&&($(l).dropdown("toggle"),$(l).dropdown("update"))},g=function(){l&&KTUtil.hasClass(o,"show")&&$(l).dropdown("toggle")},K=function(){if(c&&r===n.value)return u(),KTUtil.addClass(t,T),p(),void KTUtil.scrollUpdate(a);r=n.value,KTUtil.removeClass(t,T),f=!0,KTUtil.addClass(s,_),i&&KTUtil.hide(i),setTimeout(function(){$.ajax({url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/quick_search.php",data:{query:r},dataType:"html",success:function(e){c=!0,u(),KTUtil.addClass(t,T),KTUtil.setHTML(a,e),p(),KTUtil.scrollUpdate(a)},error:function(e){c=!1,u(),KTUtil.addClass(t,T),KTUtil.setHTML(a,'Connection error. Pleae try again later.
'),p(),KTUtil.scrollUpdate(a)}})},1e3)},h=function(e){n.value="",r="",c=!1,KTUtil.hide(i),KTUtil.removeClass(t,T),g()},U=function(){if(n.value.length<2)return u(),void g();1!=f&&(d&&clearTimeout(d),d=setTimeout(function(){K()},200))};return{init:function(r){t=r,e=KTUtil.find(t,".kt-quick-search__form"),n=KTUtil.find(t,".kt-quick-search__input"),i=KTUtil.find(t,".kt-quick-search__close"),a=KTUtil.find(t,".kt-quick-search__wrapper"),o=KTUtil.find(t,".dropdown-menu"),l=KTUtil.find(t,'[data-toggle="dropdown"]'),s=KTUtil.find(t,".input-group"),KTUtil.addEvent(n,"keyup",U),KTUtil.addEvent(n,"focus",U),e.onkeypress=function(t){13==(t.charCode||t.keyCode||0)&&t.preventDefault()},KTUtil.addEvent(i,"click",h);var c=KTUtil.getByID("kt_quick_search_toggle");c&&$(c).on("shown.bs.dropdown",function(){n.focus()})}}},KTQuickSearchMobile=KTQuickSearch;$(document).ready(function(){KTUtil.get("kt_quick_search_default")&&KTQuickSearch().init(KTUtil.get("kt_quick_search_default")),KTUtil.get("kt_quick_search_inline")&&KTQuickSearchMobile().init(KTUtil.get("kt_quick_search_inline"))}); \ No newline at end of file +'use strict'; +var KTDemoPanel = (function() { + var t, + e = KTUtil.getByID('kt_demo_panel'); + return { + init: function() { + !(function() { + t = new KTOffcanvas(e, { + overlay: !0, + baseClass: 'kt-demo-panel', + closeBy: 'kt_demo_panel_close', + toggleBy: 'kt_demo_panel_toggle', + }); + var n = KTUtil.find(e, '.kt-demo-panel__head'), + i = KTUtil.find(e, '.kt-demo-panel__body'); + KTUtil.scrollInit(i, { + disableForMobile: !0, + resetHeightOnDestroy: !0, + handleWindowResize: !0, + height: function() { + var t = parseInt(KTUtil.getViewPort().height); + return ( + n && ((t -= parseInt(KTUtil.actualHeight(n))), (t -= parseInt(KTUtil.css(n, 'marginBottom')))), + (t -= parseInt(KTUtil.css(e, 'paddingTop'))), + (t -= parseInt(KTUtil.css(e, 'paddingBottom'))) + ); + }, + }), + void 0 !== t && + 0 === t.length && + t.on('hide', function() { + var t = new Date(new Date().getTime() + 36e5); + Cookies.set('kt_demo_panel_shown', 1, { expires: t }); + }); + })(), + ('keenthemes.com' != encodeURI(window.location.hostname) && + 'www.keenthemes.com' != encodeURI(window.location.hostname)) || + setTimeout(function() { + if (!Cookies.get('kt_demo_panel_shown')) { + var e = new Date(new Date().getTime() + 9e5); + Cookies.set('kt_demo_panel_shown', 1, { expires: e }), t.show(); + } + }, 4e3); + }, + }; +})(); +$(document).ready(function() { + KTDemoPanel.init(); +}); +var KTOffcanvasPanel = (function() { + var t = KTUtil.get('kt_offcanvas_toolbar_notifications'), + e = KTUtil.get('kt_offcanvas_toolbar_quick_actions'), + n = KTUtil.get('kt_offcanvas_toolbar_profile'), + i = KTUtil.get('kt_offcanvas_toolbar_search'); + return { + init: function() { + !(function() { + var e = KTUtil.find(t, '.kt-offcanvas-panel__head'), + n = KTUtil.find(t, '.kt-offcanvas-panel__body'); + new KTOffcanvas(t, { + overlay: !0, + baseClass: 'kt-offcanvas-panel', + closeBy: 'kt_offcanvas_toolbar_notifications_close', + toggleBy: 'kt_offcanvas_toolbar_notifications_toggler_btn', + }); + KTUtil.scrollInit(n, { + disableForMobile: !0, + resetHeightOnDestroy: !0, + handleWindowResize: !0, + height: function() { + var n = parseInt(KTUtil.getViewPort().height); + return ( + e && ((n -= parseInt(KTUtil.actualHeight(e))), (n -= parseInt(KTUtil.css(e, 'marginBottom')))), + (n -= parseInt(KTUtil.css(t, 'paddingTop'))), + (n -= parseInt(KTUtil.css(t, 'paddingBottom'))) + ); + }, + }); + })(), + (function() { + var t = KTUtil.find(e, '.kt-offcanvas-panel__head'), + n = KTUtil.find(e, '.kt-offcanvas-panel__body'); + new KTOffcanvas(e, { + overlay: !0, + baseClass: 'kt-offcanvas-panel', + closeBy: 'kt_offcanvas_toolbar_quick_actions_close', + toggleBy: 'kt_offcanvas_toolbar_quick_actions_toggler_btn', + }); + KTUtil.scrollInit(n, { + disableForMobile: !0, + resetHeightOnDestroy: !0, + handleWindowResize: !0, + height: function() { + var n = parseInt(KTUtil.getViewPort().height); + return ( + t && ((n -= parseInt(KTUtil.actualHeight(t))), (n -= parseInt(KTUtil.css(t, 'marginBottom')))), + (n -= parseInt(KTUtil.css(e, 'paddingTop'))), + (n -= parseInt(KTUtil.css(e, 'paddingBottom'))) + ); + }, + }); + })(), + (function() { + var t = KTUtil.find(n, '.kt-offcanvas-panel__head'), + e = KTUtil.find(n, '.kt-offcanvas-panel__body'); + new KTOffcanvas(n, { + overlay: !0, + baseClass: 'kt-offcanvas-panel', + closeBy: 'kt_offcanvas_toolbar_profile_close', + toggleBy: 'kt_offcanvas_toolbar_profile_toggler_btn', + }); + KTUtil.scrollInit(e, { + disableForMobile: !0, + resetHeightOnDestroy: !0, + handleWindowResize: !0, + height: function() { + var e = parseInt(KTUtil.getViewPort().height); + return ( + t && ((e -= parseInt(KTUtil.actualHeight(t))), (e -= parseInt(KTUtil.css(t, 'marginBottom')))), + (e -= parseInt(KTUtil.css(n, 'paddingTop'))), + (e -= parseInt(KTUtil.css(n, 'paddingBottom'))) + ); + }, + }); + })(), + (function() { + var t = KTUtil.find(i, '.kt-offcanvas-panel__head'), + e = KTUtil.find(i, '.kt-offcanvas-panel__body'); + new KTOffcanvas(i, { + overlay: !0, + baseClass: 'kt-offcanvas-panel', + closeBy: 'kt_offcanvas_toolbar_search_close', + toggleBy: 'kt_offcanvas_toolbar_search_toggler_btn', + }); + KTUtil.scrollInit(e, { + disableForMobile: !0, + resetHeightOnDestroy: !0, + handleWindowResize: !0, + height: function() { + var e = parseInt(KTUtil.getViewPort().height); + return ( + t && ((e -= parseInt(KTUtil.actualHeight(t))), (e -= parseInt(KTUtil.css(t, 'marginBottom')))), + (e -= parseInt(KTUtil.css(i, 'paddingTop'))), + (e -= parseInt(KTUtil.css(i, 'paddingBottom'))) + ); + }, + }); + })(); + }, + }; +})(); +$(document).ready(function() { + KTOffcanvasPanel.init(); +}); +var KTQuickPanel = (function() { + var t = KTUtil.get('kt_quick_panel'), + e = KTUtil.get('kt_quick_panel_tab_notifications'), + n = KTUtil.get('kt_quick_panel_tab_logs'), + i = KTUtil.get('kt_quick_panel_tab_settings'), + a = function() { + var e = KTUtil.find(t, '.kt-quick-panel__nav'); + KTUtil.find(t, '.kt-quick-panel__content'); + return ( + parseInt(KTUtil.getViewPort().height) - + parseInt(KTUtil.actualHeight(e)) - + 2 * parseInt(KTUtil.css(e, 'padding-top')) - + 10 + ); + }; + return { + init: function() { + new KTOffcanvas(t, { + overlay: !0, + baseClass: 'kt-quick-panel', + closeBy: 'kt_quick_panel_close_btn', + toggleBy: 'kt_quick_panel_toggler_btn', + }), + KTUtil.scrollInit(e, { + disableForMobile: !0, + resetHeightOnDestroy: !0, + handleWindowResize: !0, + height: function() { + return a(); + }, + }), + KTUtil.scrollInit(n, { + disableForMobile: !0, + resetHeightOnDestroy: !0, + handleWindowResize: !0, + height: function() { + return a(); + }, + }), + KTUtil.scrollInit(i, { + disableForMobile: !0, + resetHeightOnDestroy: !0, + handleWindowResize: !0, + height: function() { + return a(); + }, + }), + $(t) + .find('a[data-toggle="tab"]') + .on('shown.bs.tab', function(t) { + KTUtil.scrollUpdate(e), KTUtil.scrollUpdate(n), KTUtil.scrollUpdate(i); + }); + }, + }; +})(); +$(document).ready(function() { + KTQuickPanel.init(); +}); +var KTQuickSearch = function() { + var t, + e, + n, + i, + a, + o, + l, + s, + r = '', + c = !1, + d = !1, + f = !1, + _ = 'kt-spinner kt-spinner--input kt-spinner--sm kt-spinner--brand kt-spinner--right', + T = 'kt-quick-search--has-result', + u = function() { + (f = !1), KTUtil.removeClass(s, _), i && (n.value.length < 2 ? KTUtil.hide(i) : KTUtil.show(i, 'flex')); + }, + p = function() { + l && !KTUtil.hasClass(o, 'show') && ($(l).dropdown('toggle'), $(l).dropdown('update')); + }, + g = function() { + l && KTUtil.hasClass(o, 'show') && $(l).dropdown('toggle'); + }, + K = function() { + if (c && r === n.value) return u(), KTUtil.addClass(t, T), p(), void KTUtil.scrollUpdate(a); + (r = n.value), + KTUtil.removeClass(t, T), + (f = !0), + KTUtil.addClass(s, _), + i && KTUtil.hide(i), + setTimeout(function() { + $.ajax({ + url: 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/quick_search.php', + data: { query: r }, + dataType: 'html', + success: function(e) { + (c = !0), u(), KTUtil.addClass(t, T), KTUtil.setHTML(a, e), p(), KTUtil.scrollUpdate(a); + }, + error: function(e) { + (c = !1), + u(), + KTUtil.addClass(t, T), + KTUtil.setHTML( + a, + 'Connection error. Pleae try again later.
', + ), + p(), + KTUtil.scrollUpdate(a); + }, + }); + }, 1e3); + }, + h = function(e) { + (n.value = ''), (r = ''), (c = !1), KTUtil.hide(i), KTUtil.removeClass(t, T), g(); + }, + U = function() { + if (n.value.length < 2) return u(), void g(); + 1 != f && + (d && clearTimeout(d), + (d = setTimeout(function() { + K(); + }, 200))); + }; + return { + init: function(r) { + (t = r), + (e = KTUtil.find(t, '.kt-quick-search__form')), + (n = KTUtil.find(t, '.kt-quick-search__input')), + (i = KTUtil.find(t, '.kt-quick-search__close')), + (a = KTUtil.find(t, '.kt-quick-search__wrapper')), + (o = KTUtil.find(t, '.dropdown-menu')), + (l = KTUtil.find(t, '[data-toggle="dropdown"]')), + (s = KTUtil.find(t, '.input-group')), + KTUtil.addEvent(n, 'keyup', U), + KTUtil.addEvent(n, 'focus', U), + (e.onkeypress = function(t) { + 13 == (t.charCode || t.keyCode || 0) && t.preventDefault(); + }), + KTUtil.addEvent(i, 'click', h); + var c = KTUtil.getByID('kt_quick_search_toggle'); + c && + $(c).on('shown.bs.dropdown', function() { + n.focus(); + }); + }, + }; + }, + KTQuickSearchMobile = KTQuickSearch; +$(document).ready(function() { + KTUtil.get('kt_quick_search_default') && KTQuickSearch().init(KTUtil.get('kt_quick_search_default')), + KTUtil.get('kt_quick_search_inline') && KTQuickSearchMobile().init(KTUtil.get('kt_quick_search_inline')); +}); diff --git a/src/assets/app/custom/general/components/base/dropdown.js b/src/assets/app/custom/general/components/base/dropdown.js index 1569d9d..455b8dd 100644 --- a/src/assets/app/custom/general/components/base/dropdown.js +++ b/src/assets/app/custom/general/components/base/dropdown.js @@ -1 +1,36 @@ -"use strict";var KTDropdownDemo={init:function(){var e,o,n;e=$("#kt_dropdown_api_output"),o=new KTDropdown("kt_dropdown_api_1"),n=new KTDropdown("kt_dropdown_api_2"),o.on("afterShow",function(o){e.append("

Dropdown 1: afterShow event fired

")}),o.on("beforeShow",function(o){e.append("

Dropdown 1: beforeShow event fired

")}),o.on("afterHide",function(o){e.append("

Dropdown 1: afterHide event fired

")}),o.on("beforeHide",function(o){e.append("

Dropdown 1: beforeHide event fired

")}),n.on("afterShow",function(o){e.append("

Dropdown 2: afterShow event fired

")}),n.on("beforeShow",function(o){e.append("

Dropdown 2: beforeShow event fired

")}),n.on("afterHide",function(o){e.append("

Dropdown 2: afterHide event fired

")}),n.on("beforeHide",function(o){e.append("

Dropdown 2: beforeHide event fired

")})}};jQuery(document).ready(function(){KTDropdownDemo.init()}); \ No newline at end of file +'use strict'; +var KTDropdownDemo = { + init: function() { + var e, o, n; + (e = $('#kt_dropdown_api_output')), + (o = new KTDropdown('kt_dropdown_api_1')), + (n = new KTDropdown('kt_dropdown_api_2')), + o.on('afterShow', function(o) { + e.append('

Dropdown 1: afterShow event fired

'); + }), + o.on('beforeShow', function(o) { + e.append('

Dropdown 1: beforeShow event fired

'); + }), + o.on('afterHide', function(o) { + e.append('

Dropdown 1: afterHide event fired

'); + }), + o.on('beforeHide', function(o) { + e.append('

Dropdown 1: beforeHide event fired

'); + }), + n.on('afterShow', function(o) { + e.append('

Dropdown 2: afterShow event fired

'); + }), + n.on('beforeShow', function(o) { + e.append('

Dropdown 2: beforeShow event fired

'); + }), + n.on('afterHide', function(o) { + e.append('

Dropdown 2: afterHide event fired

'); + }), + n.on('beforeHide', function(o) { + e.append('

Dropdown 2: beforeHide event fired

'); + }); + }, +}; +jQuery(document).ready(function() { + KTDropdownDemo.init(); +}); diff --git a/src/assets/app/custom/general/components/calendar/background-events.js b/src/assets/app/custom/general/components/calendar/background-events.js index 791c8c4..2a4d714 100644 --- a/src/assets/app/custom/general/components/calendar/background-events.js +++ b/src/assets/app/custom/general/components/calendar/background-events.js @@ -1 +1,139 @@ -"use strict";var KTCalendarBackgroundEvents={init:function(){var t=moment().startOf("day"),e=t.format("YYYY-MM"),i=t.clone().subtract(1,"day").format("YYYY-MM-DD"),r=t.format("YYYY-MM-DD"),o=t.clone().add(1,"day").format("YYYY-MM-DD");$("#kt_calendar").fullCalendar({isRTL:KTUtil.isRTL(),header:{left:"prev,next today",center:"title",right:"month,agendaWeek,agendaDay,listWeek"},editable:!0,eventLimit:!0,navLinks:!0,businessHours:!0,events:[{title:"All Day Event",start:e+"-01",description:"Lorem ipsum dolor sit incid idunt ut",className:"fc-event-danger fc-event-solid-success"},{title:"Reporting",start:e+"-14T13:30:00",description:"Lorem ipsum dolor incid idunt ut labore",end:e+"-14",className:"fc-event-brand",constraint:"businessHours"},{title:"Company Trip",start:e+"-02",description:"Lorem ipsum dolor sit tempor incid",end:e+"-03",className:"fc-event-light fc-event-solid-primary"},{title:"Expo",start:e+"-03",description:"Lorem ipsum dolor sit tempor inci",end:e+"-05",className:"fc-event-primary",rendering:"background",color:KTApp.getStateColor("brand")},{title:"Dinner",start:e+"-12",description:"Lorem ipsum dolor sit amet, conse ctetur",end:e+"-10",rendering:"background",color:KTApp.getStateColor("info")},{id:999,title:"Repeating Event",start:e+"-09T16:00:00",description:"Lorem ipsum dolor sit ncididunt ut labore",className:"fc-event-danger",color:KTApp.getStateColor("primary")},{id:1e3,title:"Repeating Event",description:"Lorem ipsum dolor sit amet, labore",start:e+"-16T16:00:00"},{title:"Conference",start:i,end:o,description:"Lorem ipsum dolor eius mod tempor labore",className:"fc-event-accent",rendering:"background",color:KTApp.getStateColor("dark")},{title:"Meeting",start:r+"T10:30:00",end:r+"T12:30:00",description:"Lorem ipsum dolor eiu idunt ut labore"},{title:"Lunch",start:r+"T12:00:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, ut labore"},{title:"Meeting",start:r+"T14:30:00",className:"fc-event-warning",description:"Lorem ipsum conse ctetur adipi scing",rendering:"background",color:KTApp.getStateColor("warning")},{title:"Happy Hour",start:r+"T17:30:00",className:"fc-event-metal",description:"Lorem ipsum dolor sit amet, conse ctetur"},{title:"Dinner",start:r+"T20:00:00",description:"Lorem ipsum dolor sit ctetur adipi scing"},{title:"Birthday Party",start:o+"T07:00:00",className:"fc-event-primary",description:"Lorem ipsum dolor sit amet, scing",rendering:"background",color:KTApp.getStateColor("success")},{title:"Click for Google",url:"http://google.com/",start:e+"-28",description:"Lorem ipsum dolor sit amet, labore"}],eventRender:function(t,e){e.hasClass("fc-day-grid-event")?(e.data("content",t.description),e.data("placement","top"),KTApp.initPopover(e)):e.hasClass("fc-time-grid-event")?e.find(".fc-title").append('
'+t.description+"
"):0!==e.find(".fc-list-item-title").lenght&&e.find(".fc-list-item-title").append('
'+t.description+"
")}})}};jQuery(document).ready(function(){KTCalendarBackgroundEvents.init()}); \ No newline at end of file +'use strict'; +var KTCalendarBackgroundEvents = { + init: function() { + var t = moment().startOf('day'), + e = t.format('YYYY-MM'), + i = t + .clone() + .subtract(1, 'day') + .format('YYYY-MM-DD'), + r = t.format('YYYY-MM-DD'), + o = t + .clone() + .add(1, 'day') + .format('YYYY-MM-DD'); + $('#kt_calendar').fullCalendar({ + isRTL: KTUtil.isRTL(), + header: { left: 'prev,next today', center: 'title', right: 'month,agendaWeek,agendaDay,listWeek' }, + editable: !0, + eventLimit: !0, + navLinks: !0, + businessHours: !0, + events: [ + { + title: 'All Day Event', + start: e + '-01', + description: 'Lorem ipsum dolor sit incid idunt ut', + className: 'fc-event-danger fc-event-solid-success', + }, + { + title: 'Reporting', + start: e + '-14T13:30:00', + description: 'Lorem ipsum dolor incid idunt ut labore', + end: e + '-14', + className: 'fc-event-brand', + constraint: 'businessHours', + }, + { + title: 'Company Trip', + start: e + '-02', + description: 'Lorem ipsum dolor sit tempor incid', + end: e + '-03', + className: 'fc-event-light fc-event-solid-primary', + }, + { + title: 'Expo', + start: e + '-03', + description: 'Lorem ipsum dolor sit tempor inci', + end: e + '-05', + className: 'fc-event-primary', + rendering: 'background', + color: KTApp.getStateColor('brand'), + }, + { + title: 'Dinner', + start: e + '-12', + description: 'Lorem ipsum dolor sit amet, conse ctetur', + end: e + '-10', + rendering: 'background', + color: KTApp.getStateColor('info'), + }, + { + id: 999, + title: 'Repeating Event', + start: e + '-09T16:00:00', + description: 'Lorem ipsum dolor sit ncididunt ut labore', + className: 'fc-event-danger', + color: KTApp.getStateColor('primary'), + }, + { + id: 1e3, + title: 'Repeating Event', + description: 'Lorem ipsum dolor sit amet, labore', + start: e + '-16T16:00:00', + }, + { + title: 'Conference', + start: i, + end: o, + description: 'Lorem ipsum dolor eius mod tempor labore', + className: 'fc-event-accent', + rendering: 'background', + color: KTApp.getStateColor('dark'), + }, + { + title: 'Meeting', + start: r + 'T10:30:00', + end: r + 'T12:30:00', + description: 'Lorem ipsum dolor eiu idunt ut labore', + }, + { + title: 'Lunch', + start: r + 'T12:00:00', + className: 'fc-event-info', + description: 'Lorem ipsum dolor sit amet, ut labore', + }, + { + title: 'Meeting', + start: r + 'T14:30:00', + className: 'fc-event-warning', + description: 'Lorem ipsum conse ctetur adipi scing', + rendering: 'background', + color: KTApp.getStateColor('warning'), + }, + { + title: 'Happy Hour', + start: r + 'T17:30:00', + className: 'fc-event-metal', + description: 'Lorem ipsum dolor sit amet, conse ctetur', + }, + { title: 'Dinner', start: r + 'T20:00:00', description: 'Lorem ipsum dolor sit ctetur adipi scing' }, + { + title: 'Birthday Party', + start: o + 'T07:00:00', + className: 'fc-event-primary', + description: 'Lorem ipsum dolor sit amet, scing', + rendering: 'background', + color: KTApp.getStateColor('success'), + }, + { + title: 'Click for Google', + url: 'http://google.com/', + start: e + '-28', + description: 'Lorem ipsum dolor sit amet, labore', + }, + ], + eventRender: function(t, e) { + e.hasClass('fc-day-grid-event') + ? (e.data('content', t.description), e.data('placement', 'top'), KTApp.initPopover(e)) + : e.hasClass('fc-time-grid-event') + ? e.find('.fc-title').append('
' + t.description + '
') + : 0 !== e.find('.fc-list-item-title').lenght && + e.find('.fc-list-item-title').append('
' + t.description + '
'); + }, + }); + }, +}; +jQuery(document).ready(function() { + KTCalendarBackgroundEvents.init(); +}); diff --git a/src/assets/app/custom/general/components/calendar/basic.js b/src/assets/app/custom/general/components/calendar/basic.js index 7928b76..01301cb 100644 --- a/src/assets/app/custom/general/components/calendar/basic.js +++ b/src/assets/app/custom/general/components/calendar/basic.js @@ -1 +1,127 @@ -"use strict";var KTCalendarBasic={init:function(){var t=moment().startOf("day"),e=t.format("YYYY-MM"),i=t.clone().subtract(1,"day").format("YYYY-MM-DD"),n=t.format("YYYY-MM-DD"),r=t.clone().add(1,"day").format("YYYY-MM-DD");$("#kt_calendar").fullCalendar({isRTL:KTUtil.isRTL(),header:{left:"prev,next today",center:"title",right:"month,agendaWeek,agendaDay,listWeek"},editable:!0,eventLimit:!0,navLinks:!0,events:[{title:"All Day Event",start:e+"-01",description:"Lorem ipsum dolor sit incid idunt ut",className:"fc-event-danger fc-event-solid-warning"},{title:"Reporting",start:e+"-14T13:30:00",description:"Lorem ipsum dolor incid idunt ut labore",end:e+"-14",className:"fc-event-accent"},{title:"Company Trip",start:e+"-02",description:"Lorem ipsum dolor sit tempor incid",end:e+"-03",className:"fc-event-primary"},{title:"ICT Expo 2017 - Product Release",start:e+"-03",description:"Lorem ipsum dolor sit tempor inci",end:e+"-05",className:"fc-event-light fc-event-solid-primary"},{title:"Dinner",start:e+"-12",description:"Lorem ipsum dolor sit amet, conse ctetur",end:e+"-10"},{id:999,title:"Repeating Event",start:e+"-09T16:00:00",description:"Lorem ipsum dolor sit ncididunt ut labore",className:"fc-event-danger"},{id:1e3,title:"Repeating Event",description:"Lorem ipsum dolor sit amet, labore",start:e+"-16T16:00:00"},{title:"Conference",start:i,end:r,description:"Lorem ipsum dolor eius mod tempor labore",className:"fc-event-accent"},{title:"Meeting",start:n+"T10:30:00",end:n+"T12:30:00",description:"Lorem ipsum dolor eiu idunt ut labore"},{title:"Lunch",start:n+"T12:00:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, ut labore"},{title:"Meeting",start:n+"T14:30:00",className:"fc-event-warning",description:"Lorem ipsum conse ctetur adipi scing"},{title:"Happy Hour",start:n+"T17:30:00",className:"fc-event-metal",description:"Lorem ipsum dolor sit amet, conse ctetur"},{title:"Dinner",start:n+"T20:00:00",className:"fc-event-solid-focus fc-event-light",description:"Lorem ipsum dolor sit ctetur adipi scing"},{title:"Birthday Party",start:r+"T07:00:00",className:"fc-event-primary",description:"Lorem ipsum dolor sit amet, scing"},{title:"Click for Google",url:"http://google.com/",start:e+"-28",className:"fc-event-solid-info fc-event-light",description:"Lorem ipsum dolor sit amet, labore"}],eventRender:function(t,e){e.hasClass("fc-day-grid-event")?(e.data("content",t.description),e.data("placement","top"),KTApp.initPopover(e)):e.hasClass("fc-time-grid-event")?e.find(".fc-title").append('
'+t.description+"
"):0!==e.find(".fc-list-item-title").lenght&&e.find(".fc-list-item-title").append('
'+t.description+"
")}})}};jQuery(document).ready(function(){KTCalendarBasic.init()}); \ No newline at end of file +'use strict'; +var KTCalendarBasic = { + init: function() { + var t = moment().startOf('day'), + e = t.format('YYYY-MM'), + i = t + .clone() + .subtract(1, 'day') + .format('YYYY-MM-DD'), + n = t.format('YYYY-MM-DD'), + r = t + .clone() + .add(1, 'day') + .format('YYYY-MM-DD'); + $('#kt_calendar').fullCalendar({ + isRTL: KTUtil.isRTL(), + header: { left: 'prev,next today', center: 'title', right: 'month,agendaWeek,agendaDay,listWeek' }, + editable: !0, + eventLimit: !0, + navLinks: !0, + events: [ + { + title: 'All Day Event', + start: e + '-01', + description: 'Lorem ipsum dolor sit incid idunt ut', + className: 'fc-event-danger fc-event-solid-warning', + }, + { + title: 'Reporting', + start: e + '-14T13:30:00', + description: 'Lorem ipsum dolor incid idunt ut labore', + end: e + '-14', + className: 'fc-event-accent', + }, + { + title: 'Company Trip', + start: e + '-02', + description: 'Lorem ipsum dolor sit tempor incid', + end: e + '-03', + className: 'fc-event-primary', + }, + { + title: 'ICT Expo 2017 - Product Release', + start: e + '-03', + description: 'Lorem ipsum dolor sit tempor inci', + end: e + '-05', + className: 'fc-event-light fc-event-solid-primary', + }, + { title: 'Dinner', start: e + '-12', description: 'Lorem ipsum dolor sit amet, conse ctetur', end: e + '-10' }, + { + id: 999, + title: 'Repeating Event', + start: e + '-09T16:00:00', + description: 'Lorem ipsum dolor sit ncididunt ut labore', + className: 'fc-event-danger', + }, + { + id: 1e3, + title: 'Repeating Event', + description: 'Lorem ipsum dolor sit amet, labore', + start: e + '-16T16:00:00', + }, + { + title: 'Conference', + start: i, + end: r, + description: 'Lorem ipsum dolor eius mod tempor labore', + className: 'fc-event-accent', + }, + { + title: 'Meeting', + start: n + 'T10:30:00', + end: n + 'T12:30:00', + description: 'Lorem ipsum dolor eiu idunt ut labore', + }, + { + title: 'Lunch', + start: n + 'T12:00:00', + className: 'fc-event-info', + description: 'Lorem ipsum dolor sit amet, ut labore', + }, + { + title: 'Meeting', + start: n + 'T14:30:00', + className: 'fc-event-warning', + description: 'Lorem ipsum conse ctetur adipi scing', + }, + { + title: 'Happy Hour', + start: n + 'T17:30:00', + className: 'fc-event-metal', + description: 'Lorem ipsum dolor sit amet, conse ctetur', + }, + { + title: 'Dinner', + start: n + 'T20:00:00', + className: 'fc-event-solid-focus fc-event-light', + description: 'Lorem ipsum dolor sit ctetur adipi scing', + }, + { + title: 'Birthday Party', + start: r + 'T07:00:00', + className: 'fc-event-primary', + description: 'Lorem ipsum dolor sit amet, scing', + }, + { + title: 'Click for Google', + url: 'http://google.com/', + start: e + '-28', + className: 'fc-event-solid-info fc-event-light', + description: 'Lorem ipsum dolor sit amet, labore', + }, + ], + eventRender: function(t, e) { + e.hasClass('fc-day-grid-event') + ? (e.data('content', t.description), e.data('placement', 'top'), KTApp.initPopover(e)) + : e.hasClass('fc-time-grid-event') + ? e.find('.fc-title').append('
' + t.description + '
') + : 0 !== e.find('.fc-list-item-title').lenght && + e.find('.fc-list-item-title').append('
' + t.description + '
'); + }, + }); + }, +}; +jQuery(document).ready(function() { + KTCalendarBasic.init(); +}); diff --git a/src/assets/app/custom/general/components/calendar/external-events.js b/src/assets/app/custom/general/components/calendar/external-events.js index 8c9e643..49ec27a 100644 --- a/src/assets/app/custom/general/components/calendar/external-events.js +++ b/src/assets/app/custom/general/components/calendar/external-events.js @@ -1 +1,147 @@ -"use strict";var KTCalendarExternalEvents={init:function(){var t,e,i,r,a;$("#kt_calendar_external_events .fc-event").each(function(){$(this).data("event",{title:$.trim($(this).text()),stick:!0,className:$(this).data("color"),description:"Lorem ipsum dolor eius mod tempor labore"}),$(this).draggable({zIndex:999,revert:!0,revertDuration:0})}),t=moment().startOf("day"),e=t.format("YYYY-MM"),i=t.clone().subtract(1,"day").format("YYYY-MM-DD"),r=t.format("YYYY-MM-DD"),a=t.clone().add(1,"day").format("YYYY-MM-DD"),$("#kt_calendar").fullCalendar({isRTL:KTUtil.isRTL(),header:{left:"prev,next today",center:"title",right:"month,agendaWeek,agendaDay,listWeek"},eventLimit:!0,navLinks:!0,events:[{title:"All Day Event",start:e+"-01",description:"Lorem ipsum dolor sit incid idunt ut",className:"fc-event-success"},{title:"Reporting",start:e+"-14T13:30:00",description:"Lorem ipsum dolor incid idunt ut labore",end:e+"-14",className:"fc-event-accent"},{title:"Company Trip",start:e+"-02",description:"Lorem ipsum dolor sit tempor incid",end:e+"-03",className:"fc-event-primary"},{title:"Expo",start:e+"-03",description:"Lorem ipsum dolor sit tempor inci",end:e+"-05",className:"fc-event-primary"},{title:"Dinner",start:e+"-12",description:"Lorem ipsum dolor sit amet, conse ctetur",end:e+"-10"},{id:999,title:"Repeating Event",start:e+"-09T16:00:00",description:"Lorem ipsum dolor sit ncididunt ut labore",className:"fc-event-danger"},{id:1e3,title:"Repeating Event",description:"Lorem ipsum dolor sit amet, labore",start:e+"-16T16:00:00"},{title:"Conference",start:i,end:a,description:"Lorem ipsum dolor eius mod tempor labore",className:"fc-event-accent"},{title:"Meeting",start:r+"T10:30:00",end:r+"T12:30:00",description:"Lorem ipsum dolor eiu idunt ut labore"},{title:"Lunch",start:r+"T12:00:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, ut labore"},{title:"Meeting",start:r+"T14:30:00",className:"fc-event-warning",description:"Lorem ipsum conse ctetur adipi scing"},{title:"Happy Hour",start:r+"T17:30:00",className:"fc-event-metal",description:"Lorem ipsum dolor sit amet, conse ctetur"},{title:"Dinner",start:r+"T20:00:00",description:"Lorem ipsum dolor sit ctetur adipi scing"},{title:"Birthday Party",start:a+"T07:00:00",className:"fc-event-primary",description:"Lorem ipsum dolor sit amet, scing"},{title:"Click for Google",url:"http://google.com/",start:e+"-28",description:"Lorem ipsum dolor sit amet, labore"}],editable:!0,droppable:!0,drop:function(t,e,i,r){var a=$.fullCalendar.moment(t.format());a.stripTime(),a.time("08:00:00");var n=$.fullCalendar.moment(t.format());n.stripTime(),n.time("12:00:00"),$(this).data("event").start=a,$(this).data("event").end=n,$("#kt_calendar_external_events_remove").is(":checked")&&$(this).remove()},eventRender:function(t,e){e.hasClass("fc-day-grid-event")?(e.data("content",t.description),e.data("placement","top"),KTApp.initPopover(e)):e.hasClass("fc-time-grid-event")?e.find(".fc-title").append('
'+t.description+"
"):0!==e.find(".fc-list-item-title").lenght&&e.find(".fc-list-item-title").append('
'+t.description+"
")}})}};jQuery(document).ready(function(){KTCalendarExternalEvents.init()}); \ No newline at end of file +'use strict'; +var KTCalendarExternalEvents = { + init: function() { + var t, e, i, r, a; + $('#kt_calendar_external_events .fc-event').each(function() { + $(this).data('event', { + title: $.trim($(this).text()), + stick: !0, + className: $(this).data('color'), + description: 'Lorem ipsum dolor eius mod tempor labore', + }), + $(this).draggable({ zIndex: 999, revert: !0, revertDuration: 0 }); + }), + (t = moment().startOf('day')), + (e = t.format('YYYY-MM')), + (i = t + .clone() + .subtract(1, 'day') + .format('YYYY-MM-DD')), + (r = t.format('YYYY-MM-DD')), + (a = t + .clone() + .add(1, 'day') + .format('YYYY-MM-DD')), + $('#kt_calendar').fullCalendar({ + isRTL: KTUtil.isRTL(), + header: { left: 'prev,next today', center: 'title', right: 'month,agendaWeek,agendaDay,listWeek' }, + eventLimit: !0, + navLinks: !0, + events: [ + { + title: 'All Day Event', + start: e + '-01', + description: 'Lorem ipsum dolor sit incid idunt ut', + className: 'fc-event-success', + }, + { + title: 'Reporting', + start: e + '-14T13:30:00', + description: 'Lorem ipsum dolor incid idunt ut labore', + end: e + '-14', + className: 'fc-event-accent', + }, + { + title: 'Company Trip', + start: e + '-02', + description: 'Lorem ipsum dolor sit tempor incid', + end: e + '-03', + className: 'fc-event-primary', + }, + { + title: 'Expo', + start: e + '-03', + description: 'Lorem ipsum dolor sit tempor inci', + end: e + '-05', + className: 'fc-event-primary', + }, + { + title: 'Dinner', + start: e + '-12', + description: 'Lorem ipsum dolor sit amet, conse ctetur', + end: e + '-10', + }, + { + id: 999, + title: 'Repeating Event', + start: e + '-09T16:00:00', + description: 'Lorem ipsum dolor sit ncididunt ut labore', + className: 'fc-event-danger', + }, + { + id: 1e3, + title: 'Repeating Event', + description: 'Lorem ipsum dolor sit amet, labore', + start: e + '-16T16:00:00', + }, + { + title: 'Conference', + start: i, + end: a, + description: 'Lorem ipsum dolor eius mod tempor labore', + className: 'fc-event-accent', + }, + { + title: 'Meeting', + start: r + 'T10:30:00', + end: r + 'T12:30:00', + description: 'Lorem ipsum dolor eiu idunt ut labore', + }, + { + title: 'Lunch', + start: r + 'T12:00:00', + className: 'fc-event-info', + description: 'Lorem ipsum dolor sit amet, ut labore', + }, + { + title: 'Meeting', + start: r + 'T14:30:00', + className: 'fc-event-warning', + description: 'Lorem ipsum conse ctetur adipi scing', + }, + { + title: 'Happy Hour', + start: r + 'T17:30:00', + className: 'fc-event-metal', + description: 'Lorem ipsum dolor sit amet, conse ctetur', + }, + { title: 'Dinner', start: r + 'T20:00:00', description: 'Lorem ipsum dolor sit ctetur adipi scing' }, + { + title: 'Birthday Party', + start: a + 'T07:00:00', + className: 'fc-event-primary', + description: 'Lorem ipsum dolor sit amet, scing', + }, + { + title: 'Click for Google', + url: 'http://google.com/', + start: e + '-28', + description: 'Lorem ipsum dolor sit amet, labore', + }, + ], + editable: !0, + droppable: !0, + drop: function(t, e, i, r) { + var a = $.fullCalendar.moment(t.format()); + a.stripTime(), a.time('08:00:00'); + var n = $.fullCalendar.moment(t.format()); + n.stripTime(), + n.time('12:00:00'), + ($(this).data('event').start = a), + ($(this).data('event').end = n), + $('#kt_calendar_external_events_remove').is(':checked') && $(this).remove(); + }, + eventRender: function(t, e) { + e.hasClass('fc-day-grid-event') + ? (e.data('content', t.description), e.data('placement', 'top'), KTApp.initPopover(e)) + : e.hasClass('fc-time-grid-event') + ? e.find('.fc-title').append('
' + t.description + '
') + : 0 !== e.find('.fc-list-item-title').lenght && + e.find('.fc-list-item-title').append('
' + t.description + '
'); + }, + }); + }, +}; +jQuery(document).ready(function() { + KTCalendarExternalEvents.init(); +}); diff --git a/src/assets/app/custom/general/components/calendar/google.js b/src/assets/app/custom/general/components/calendar/google.js index eeb9156..1f417c3 100644 --- a/src/assets/app/custom/general/components/calendar/google.js +++ b/src/assets/app/custom/general/components/calendar/google.js @@ -1 +1,28 @@ -"use strict";var KTCalendarGoogle={init:function(){$("#kt_calendar").fullCalendar({isRTL:KTUtil.isRTL(),header:{left:"prev,next today",center:"title",right:"month,listYear"},displayEventTime:!1,googleCalendarApiKey:"AIzaSyDcnW6WejpTOCffshGDDb4neIrXVUA1EAE",events:"en.usa#holiday@group.v.calendar.google.com",eventClick:function(e){return window.open(e.url,"gcalevent","width=700,height=600"),!1},loading:function(e){},eventRender:function(e,i){e.description&&(i.hasClass("fc-day-grid-event")?(i.data("content",e.description),i.data("placement","top"),KTApp.initPopover(i)):i.hasClass("fc-time-grid-event")?i.find(".fc-title").append('
'+e.description+"
"):0!==i.find(".fc-list-item-title").lenght&&i.find(".fc-list-item-title").append('
'+e.description+"
"))}})}};jQuery(document).ready(function(){KTCalendarGoogle.init()}); \ No newline at end of file +'use strict'; +var KTCalendarGoogle = { + init: function() { + $('#kt_calendar').fullCalendar({ + isRTL: KTUtil.isRTL(), + header: { left: 'prev,next today', center: 'title', right: 'month,listYear' }, + displayEventTime: !1, + googleCalendarApiKey: 'AIzaSyDcnW6WejpTOCffshGDDb4neIrXVUA1EAE', + events: 'en.usa#holiday@group.v.calendar.google.com', + eventClick: function(e) { + return window.open(e.url, 'gcalevent', 'width=700,height=600'), !1; + }, + loading: function(e) {}, + eventRender: function(e, i) { + e.description && + (i.hasClass('fc-day-grid-event') + ? (i.data('content', e.description), i.data('placement', 'top'), KTApp.initPopover(i)) + : i.hasClass('fc-time-grid-event') + ? i.find('.fc-title').append('
' + e.description + '
') + : 0 !== i.find('.fc-list-item-title').lenght && + i.find('.fc-list-item-title').append('
' + e.description + '
')); + }, + }); + }, +}; +jQuery(document).ready(function() { + KTCalendarGoogle.init(); +}); diff --git a/src/assets/app/custom/general/components/calendar/list-view.js b/src/assets/app/custom/general/components/calendar/list-view.js index 57bc935..4152549 100644 --- a/src/assets/app/custom/general/components/calendar/list-view.js +++ b/src/assets/app/custom/general/components/calendar/list-view.js @@ -1 +1,123 @@ -"use strict";var KTCalendarListView={init:function(){var t=moment().startOf("day"),e=t.format("YYYY-MM"),i=t.clone().subtract(1,"day").format("YYYY-MM-DD"),r=t.format("YYYY-MM-DD"),s=t.clone().add(1,"day").format("YYYY-MM-DD");$("#kt_calendar").fullCalendar({isRTL:KTUtil.isRTL(),header:{left:"prev,next today",center:"title",right:"month,agendaDay,listWeek"},defaultView:"listWeek",editable:!0,eventLimit:!0,navLinks:!0,height:900,events:[{title:"All Day Event",start:e+"-01",description:"Lorem ipsum dolor sit incid idunt ut",className:"fc-event-success"},{title:"Reporting",start:e+"-14T13:30:00",description:"Lorem ipsum dolor incid idunt ut labore",end:e+"-14",className:"fc-event-accent"},{title:"Company Trip",start:e+"-02",description:"Lorem ipsum dolor sit tempor incid",end:e+"-03",className:"fc-event-primary"},{title:"Expo",start:e+"-03",description:"Lorem ipsum dolor sit tempor inci",end:e+"-05",className:"fc-event-primary"},{title:"Dinner",start:e+"-12",description:"Lorem ipsum dolor sit amet, conse ctetur",end:e+"-10"},{id:999,title:"Repeating Event",start:e+"-09T16:00:00",description:"Lorem ipsum dolor sit ncididunt ut labore",className:"fc-event-danger"},{id:1e3,title:"Repeating Event",description:"Lorem ipsum dolor sit amet, labore",start:e+"-16T16:00:00"},{title:"Conference",start:i,end:s,description:"Lorem ipsum dolor eius mod tempor labore",className:"fc-event-accent"},{title:"Meeting",start:r+"T10:30:00",end:r+"T12:30:00",description:"Lorem ipsum dolor eiu idunt ut labore"},{title:"Lunch",start:r+"T12:00:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, ut labore"},{title:"Meeting",start:r+"T14:30:00",className:"fc-event-warning",description:"Lorem ipsum conse ctetur adipi scing"},{title:"Happy Hour",start:r+"T17:30:00",className:"fc-event-metal",description:"Lorem ipsum dolor sit amet, conse ctetur"},{title:"Dinner",start:r+"T20:00:00",description:"Lorem ipsum dolor sit ctetur adipi scing"},{title:"Birthday Party",start:s+"T07:00:00",className:"fc-event-primary",description:"Lorem ipsum dolor sit amet, scing"},{title:"Click for Google",url:"http://google.com/",start:e+"-28",description:"Lorem ipsum dolor sit amet, labore"}],eventRender:function(t,e){e.hasClass("fc-day-grid-event")?(e.data("content",t.description),e.data("placement","top"),KTApp.initPopover(e)):e.hasClass("fc-time-grid-event")?e.find(".fc-title").append('
'+t.description+"
"):0!==e.find(".fc-list-item-title").lenght&&e.find(".fc-list-item-title").append('
'+t.description+"
")}})}};jQuery(document).ready(function(){KTCalendarListView.init()}); \ No newline at end of file +'use strict'; +var KTCalendarListView = { + init: function() { + var t = moment().startOf('day'), + e = t.format('YYYY-MM'), + i = t + .clone() + .subtract(1, 'day') + .format('YYYY-MM-DD'), + r = t.format('YYYY-MM-DD'), + s = t + .clone() + .add(1, 'day') + .format('YYYY-MM-DD'); + $('#kt_calendar').fullCalendar({ + isRTL: KTUtil.isRTL(), + header: { left: 'prev,next today', center: 'title', right: 'month,agendaDay,listWeek' }, + defaultView: 'listWeek', + editable: !0, + eventLimit: !0, + navLinks: !0, + height: 900, + events: [ + { + title: 'All Day Event', + start: e + '-01', + description: 'Lorem ipsum dolor sit incid idunt ut', + className: 'fc-event-success', + }, + { + title: 'Reporting', + start: e + '-14T13:30:00', + description: 'Lorem ipsum dolor incid idunt ut labore', + end: e + '-14', + className: 'fc-event-accent', + }, + { + title: 'Company Trip', + start: e + '-02', + description: 'Lorem ipsum dolor sit tempor incid', + end: e + '-03', + className: 'fc-event-primary', + }, + { + title: 'Expo', + start: e + '-03', + description: 'Lorem ipsum dolor sit tempor inci', + end: e + '-05', + className: 'fc-event-primary', + }, + { title: 'Dinner', start: e + '-12', description: 'Lorem ipsum dolor sit amet, conse ctetur', end: e + '-10' }, + { + id: 999, + title: 'Repeating Event', + start: e + '-09T16:00:00', + description: 'Lorem ipsum dolor sit ncididunt ut labore', + className: 'fc-event-danger', + }, + { + id: 1e3, + title: 'Repeating Event', + description: 'Lorem ipsum dolor sit amet, labore', + start: e + '-16T16:00:00', + }, + { + title: 'Conference', + start: i, + end: s, + description: 'Lorem ipsum dolor eius mod tempor labore', + className: 'fc-event-accent', + }, + { + title: 'Meeting', + start: r + 'T10:30:00', + end: r + 'T12:30:00', + description: 'Lorem ipsum dolor eiu idunt ut labore', + }, + { + title: 'Lunch', + start: r + 'T12:00:00', + className: 'fc-event-info', + description: 'Lorem ipsum dolor sit amet, ut labore', + }, + { + title: 'Meeting', + start: r + 'T14:30:00', + className: 'fc-event-warning', + description: 'Lorem ipsum conse ctetur adipi scing', + }, + { + title: 'Happy Hour', + start: r + 'T17:30:00', + className: 'fc-event-metal', + description: 'Lorem ipsum dolor sit amet, conse ctetur', + }, + { title: 'Dinner', start: r + 'T20:00:00', description: 'Lorem ipsum dolor sit ctetur adipi scing' }, + { + title: 'Birthday Party', + start: s + 'T07:00:00', + className: 'fc-event-primary', + description: 'Lorem ipsum dolor sit amet, scing', + }, + { + title: 'Click for Google', + url: 'http://google.com/', + start: e + '-28', + description: 'Lorem ipsum dolor sit amet, labore', + }, + ], + eventRender: function(t, e) { + e.hasClass('fc-day-grid-event') + ? (e.data('content', t.description), e.data('placement', 'top'), KTApp.initPopover(e)) + : e.hasClass('fc-time-grid-event') + ? e.find('.fc-title').append('
' + t.description + '
') + : 0 !== e.find('.fc-list-item-title').lenght && + e.find('.fc-list-item-title').append('
' + t.description + '
'); + }, + }); + }, +}; +jQuery(document).ready(function() { + KTCalendarListView.init(); +}); diff --git a/src/assets/app/custom/general/components/charts/amcharts/charts.js b/src/assets/app/custom/general/components/charts/amcharts/charts.js index 97e3aab..33d9188 100644 --- a/src/assets/app/custom/general/components/charts/amcharts/charts.js +++ b/src/assets/app/custom/general/components/charts/amcharts/charts.js @@ -1 +1,1156 @@ -"use strict";var KTamChartsChartsDemo=function(){var e=function(){var e={1995:[{sector:"Agriculture",size:6.6},{sector:"Mining and Quarrying",size:.6},{sector:"Manufacturing",size:23.2},{sector:"Electricity and Water",size:2.2},{sector:"Construction",size:4.5},{sector:"Trade (Wholesale, Retail, Motor)",size:14.6},{sector:"Transport and Communication",size:9.3},{sector:"Finance, real estate and business services",size:22.5}],1996:[{sector:"Agriculture",size:6.4},{sector:"Mining and Quarrying",size:.5},{sector:"Manufacturing",size:22.4},{sector:"Electricity and Water",size:2},{sector:"Construction",size:4.2},{sector:"Trade (Wholesale, Retail, Motor)",size:14.8},{sector:"Transport and Communication",size:9.7},{sector:"Finance, real estate and business services",size:22}],1997:[{sector:"Agriculture",size:6.1},{sector:"Mining and Quarrying",size:.2},{sector:"Manufacturing",size:20.9},{sector:"Electricity and Water",size:1.8},{sector:"Construction",size:4.2},{sector:"Trade (Wholesale, Retail, Motor)",size:13.7},{sector:"Transport and Communication",size:9.4},{sector:"Finance, real estate and business services",size:22.1}],1998:[{sector:"Agriculture",size:6.2},{sector:"Mining and Quarrying",size:.3},{sector:"Manufacturing",size:21.4},{sector:"Electricity and Water",size:1.9},{sector:"Construction",size:4.2},{sector:"Trade (Wholesale, Retail, Motor)",size:14.5},{sector:"Transport and Communication",size:10.6},{sector:"Finance, real estate and business services",size:23}],1999:[{sector:"Agriculture",size:5.7},{sector:"Mining and Quarrying",size:.2},{sector:"Manufacturing",size:20},{sector:"Electricity and Water",size:1.8},{sector:"Construction",size:4.4},{sector:"Trade (Wholesale, Retail, Motor)",size:15.2},{sector:"Transport and Communication",size:10.5},{sector:"Finance, real estate and business services",size:24.7}],2000:[{sector:"Agriculture",size:5.1},{sector:"Mining and Quarrying",size:.3},{sector:"Manufacturing",size:20.4},{sector:"Electricity and Water",size:1.7},{sector:"Construction",size:4},{sector:"Trade (Wholesale, Retail, Motor)",size:16.3},{sector:"Transport and Communication",size:10.7},{sector:"Finance, real estate and business services",size:24.6}],2001:[{sector:"Agriculture",size:5.5},{sector:"Mining and Quarrying",size:.2},{sector:"Manufacturing",size:20.3},{sector:"Electricity and Water",size:1.6},{sector:"Construction",size:3.1},{sector:"Trade (Wholesale, Retail, Motor)",size:16.3},{sector:"Transport and Communication",size:10.7},{sector:"Finance, real estate and business services",size:25.8}],2002:[{sector:"Agriculture",size:5.7},{sector:"Mining and Quarrying",size:.2},{sector:"Manufacturing",size:20.5},{sector:"Electricity and Water",size:1.6},{sector:"Construction",size:3.6},{sector:"Trade (Wholesale, Retail, Motor)",size:16.1},{sector:"Transport and Communication",size:10.7},{sector:"Finance, real estate and business services",size:26}],2003:[{sector:"Agriculture",size:4.9},{sector:"Mining and Quarrying",size:.2},{sector:"Manufacturing",size:19.4},{sector:"Electricity and Water",size:1.5},{sector:"Construction",size:3.3},{sector:"Trade (Wholesale, Retail, Motor)",size:16.2},{sector:"Transport and Communication",size:11},{sector:"Finance, real estate and business services",size:27.5}],2004:[{sector:"Agriculture",size:4.7},{sector:"Mining and Quarrying",size:.2},{sector:"Manufacturing",size:18.4},{sector:"Electricity and Water",size:1.4},{sector:"Construction",size:3.3},{sector:"Trade (Wholesale, Retail, Motor)",size:16.9},{sector:"Transport and Communication",size:10.6},{sector:"Finance, real estate and business services",size:28.1}],2005:[{sector:"Agriculture",size:4.3},{sector:"Mining and Quarrying",size:.2},{sector:"Manufacturing",size:18.1},{sector:"Electricity and Water",size:1.4},{sector:"Construction",size:3.9},{sector:"Trade (Wholesale, Retail, Motor)",size:15.7},{sector:"Transport and Communication",size:10.6},{sector:"Finance, real estate and business services",size:29.1}],2006:[{sector:"Agriculture",size:4},{sector:"Mining and Quarrying",size:.2},{sector:"Manufacturing",size:16.5},{sector:"Electricity and Water",size:1.3},{sector:"Construction",size:3.7},{sector:"Trade (Wholesale, Retail, Motor)",size:14.2},{sector:"Transport and Communication",size:12.1},{sector:"Finance, real estate and business services",size:29.1}],2007:[{sector:"Agriculture",size:4.7},{sector:"Mining and Quarrying",size:.2},{sector:"Manufacturing",size:16.2},{sector:"Electricity and Water",size:1.2},{sector:"Construction",size:4.1},{sector:"Trade (Wholesale, Retail, Motor)",size:15.6},{sector:"Transport and Communication",size:11.2},{sector:"Finance, real estate and business services",size:30.4}],2008:[{sector:"Agriculture",size:4.9},{sector:"Mining and Quarrying",size:.3},{sector:"Manufacturing",size:17.2},{sector:"Electricity and Water",size:1.4},{sector:"Construction",size:5.1},{sector:"Trade (Wholesale, Retail, Motor)",size:15.4},{sector:"Transport and Communication",size:11.1},{sector:"Finance, real estate and business services",size:28.4}],2009:[{sector:"Agriculture",size:4.7},{sector:"Mining and Quarrying",size:.3},{sector:"Manufacturing",size:16.4},{sector:"Electricity and Water",size:1.9},{sector:"Construction",size:4.9},{sector:"Trade (Wholesale, Retail, Motor)",size:15.5},{sector:"Transport and Communication",size:10.9},{sector:"Finance, real estate and business services",size:27.9}],2010:[{sector:"Agriculture",size:4.2},{sector:"Mining and Quarrying",size:.3},{sector:"Manufacturing",size:16.2},{sector:"Electricity and Water",size:2.2},{sector:"Construction",size:4.3},{sector:"Trade (Wholesale, Retail, Motor)",size:15.7},{sector:"Transport and Communication",size:10.2},{sector:"Finance, real estate and business services",size:28.8}],2011:[{sector:"Agriculture",size:4.1},{sector:"Mining and Quarrying",size:.3},{sector:"Manufacturing",size:14.9},{sector:"Electricity and Water",size:2.3},{sector:"Construction",size:5},{sector:"Trade (Wholesale, Retail, Motor)",size:17.3},{sector:"Transport and Communication",size:10.2},{sector:"Finance, real estate and business services",size:27.2}],2012:[{sector:"Agriculture",size:3.8},{sector:"Mining and Quarrying",size:.3},{sector:"Manufacturing",size:14.9},{sector:"Electricity and Water",size:2.6},{sector:"Construction",size:5.1},{sector:"Trade (Wholesale, Retail, Motor)",size:15.8},{sector:"Transport and Communication",size:10.7},{sector:"Finance, real estate and business services",size:28}],2013:[{sector:"Agriculture",size:3.7},{sector:"Mining and Quarrying",size:.2},{sector:"Manufacturing",size:14.9},{sector:"Electricity and Water",size:2.7},{sector:"Construction",size:5.7},{sector:"Trade (Wholesale, Retail, Motor)",size:16.5},{sector:"Transport and Communication",size:10.5},{sector:"Finance, real estate and business services",size:26.6}],2014:[{sector:"Agriculture",size:3.9},{sector:"Mining and Quarrying",size:.2},{sector:"Manufacturing",size:14.5},{sector:"Electricity and Water",size:2.7},{sector:"Construction",size:5.6},{sector:"Trade (Wholesale, Retail, Motor)",size:16.6},{sector:"Transport and Communication",size:10.5},{sector:"Finance, real estate and business services",size:26.5}]},a=1995;AmCharts.makeChart("kt_amcharts_13",{type:"pie",theme:"light",dataProvider:[],valueField:"size",titleField:"sector",startDuration:0,innerRadius:80,pullOutRadius:20,marginTop:30,titles:[{text:"South African Economy"}],allLabels:[{y:"54%",align:"center",size:25,bold:!0,text:"1995",color:"#555"},{y:"49%",align:"center",size:15,text:"Year",color:"#555"}],listeners:[{event:"init",method:function(t){var i=t.chart;!function t(){i.allLabels[0].text=a;var r=function(){var t=e[a];return++a>2014&&(a=1995),t}();i.animateData(r,{duration:1e3,complete:function(){setTimeout(t,3e3)}})}()}}],export:{enabled:!0}})};return{init:function(){AmCharts.makeChart("kt_amcharts_1",{rtl:KTUtil.isRTL(),type:"serial",theme:"light",dataProvider:[{country:"USA",visits:2025},{country:"China",visits:1882},{country:"Japan",visits:1809},{country:"Germany",visits:1322},{country:"UK",visits:1122},{country:"France",visits:1114},{country:"India",visits:984},{country:"Spain",visits:711},{country:"Netherlands",visits:665},{country:"Russia",visits:580},{country:"South Korea",visits:443},{country:"Canada",visits:441},{country:"Brazil",visits:395}],valueAxes:[{gridColor:"#FFFFFF",gridAlpha:.2,dashLength:0}],gridAboveGraphs:!0,startDuration:1,graphs:[{balloonText:"[[category]]: [[value]]",fillAlphas:.8,lineAlpha:.2,type:"column",valueField:"visits"}],chartCursor:{categoryBalloonEnabled:!1,cursorAlpha:0,zoomable:!1},categoryField:"country",categoryAxis:{gridPosition:"start",gridAlpha:0,tickPosition:"start",tickLength:20},export:{enabled:!0}}),AmCharts.makeChart("kt_amcharts_2",{rtl:KTUtil.isRTL(),type:"serial",addClassNames:!0,theme:"light",autoMargins:!1,marginLeft:30,marginRight:8,marginTop:10,marginBottom:26,balloon:{adjustBorderColor:!1,horizontalPadding:10,verticalPadding:8,color:"#ffffff"},dataProvider:[{year:2009,income:23.5,expenses:21.1},{year:2010,income:26.2,expenses:30.5},{year:2011,income:30.1,expenses:34.9},{year:2012,income:29.5,expenses:31.1},{year:2013,income:30.6,expenses:28.2,dashLengthLine:5},{year:2014,income:34.1,expenses:32.9,dashLengthColumn:5,alpha:.2,additional:"(projection)"}],valueAxes:[{axisAlpha:0,position:"left"}],startDuration:1,graphs:[{alphaField:"alpha",balloonText:"[[title]] in [[category]]:
[[value]] [[additional]]
",fillAlphas:1,title:"Income",type:"column",valueField:"income",dashLengthField:"dashLengthColumn"},{id:"graph2",balloonText:"[[title]] in [[category]]:
[[value]] [[additional]]
",bullet:"round",lineThickness:3,bulletSize:7,bulletBorderAlpha:1,bulletColor:"#FFFFFF",useLineColorForBulletBorder:!0,bulletBorderThickness:3,fillAlphas:0,lineAlpha:1,title:"Expenses",valueField:"expenses",dashLengthField:"dashLengthLine"}],categoryField:"year",categoryAxis:{gridPosition:"start",axisAlpha:0,tickLength:0},export:{enabled:!0}}),AmCharts.makeChart("kt_amcharts_3",{theme:"light",type:"serial",dataProvider:[{country:"USA",year2004:3.5,year2005:4.2},{country:"UK",year2004:1.7,year2005:3.1},{country:"Canada",year2004:2.8,year2005:2.9},{country:"Japan",year2004:2.6,year2005:2.3},{country:"France",year2004:1.4,year2005:2.1},{country:"Brazil",year2004:2.6,year2005:4.9}],valueAxes:[{unit:"%",position:"left",title:"GDP growth rate"}],startDuration:1,graphs:[{balloonText:"GDP grow in [[category]] (2004): [[value]]",fillAlphas:.9,lineAlpha:.2,title:"2004",type:"column",valueField:"year2004"},{balloonText:"GDP grow in [[category]] (2005): [[value]]",fillAlphas:.9,lineAlpha:.2,title:"2005",type:"column",clustered:!1,columnWidth:.5,valueField:"year2005"}],plotAreaFillAlphas:.1,categoryField:"country",categoryAxis:{gridPosition:"start"},export:{enabled:!0}}),AmCharts.makeChart("kt_amcharts_4",{theme:"light",type:"serial",dataProvider:[{country:"USA",year2004:3.5,year2005:4.2},{country:"UK",year2004:1.7,year2005:3.1},{country:"Canada",year2004:2.8,year2005:2.9},{country:"Japan",year2004:2.6,year2005:2.3},{country:"France",year2004:1.4,year2005:2.1},{country:"Brazil",year2004:2.6,year2005:4.9},{country:"Russia",year2004:6.4,year2005:7.2},{country:"India",year2004:8,year2005:7.1},{country:"China",year2004:9.9,year2005:10.1}],valueAxes:[{stackType:"3d",unit:"%",position:"left",title:"GDP growth rate"}],startDuration:1,graphs:[{balloonText:"GDP grow in [[category]] (2004): [[value]]",fillAlphas:.9,lineAlpha:.2,title:"2004",type:"column",valueField:"year2004"},{balloonText:"GDP grow in [[category]] (2005): [[value]]",fillAlphas:.9,lineAlpha:.2,title:"2005",type:"column",valueField:"year2005"}],plotAreaFillAlphas:.1,depth3D:60,angle:30,categoryField:"country",categoryAxis:{gridPosition:"start"},export:{enabled:!0}}),AmCharts.makeChart("kt_amcharts_5",{type:"serial",theme:"light",handDrawn:!0,handDrawScatter:3,legend:{useGraphSettings:!0,markerSize:12,valueWidth:0,verticalGap:0},dataProvider:[{year:2005,income:23.5,expenses:18.1},{year:2006,income:26.2,expenses:22.8},{year:2007,income:30.1,expenses:23.9},{year:2008,income:29.5,expenses:25.1},{year:2009,income:24.6,expenses:25}],valueAxes:[{minorGridAlpha:.08,minorGridEnabled:!0,position:"top",axisAlpha:0}],startDuration:1,graphs:[{balloonText:"[[title]] in [[category]]:[[value]]",title:"Income",type:"column",fillAlphas:.8,valueField:"income"},{balloonText:"[[title]] in [[category]]:[[value]]",bullet:"round",bulletBorderAlpha:1,bulletColor:"#FFFFFF",useLineColorForBulletBorder:!0,fillAlphas:0,lineThickness:2,lineAlpha:1,bulletSize:7,title:"Expenses",valueField:"expenses"}],rotate:!0,categoryField:"year",categoryAxis:{gridPosition:"start"},export:{enabled:!0}}),function(){var e=AmCharts.makeChart("kt_amcharts_6",{type:"serial",theme:"light",marginRight:40,marginLeft:40,autoMarginOffset:20,mouseWheelZoomEnabled:!0,dataDateFormat:"YYYY-MM-DD",valueAxes:[{id:"v1",axisAlpha:0,position:"left",ignoreAxisWidth:!0}],balloon:{borderThickness:1,shadowAlpha:0},graphs:[{id:"g1",balloon:{drop:!0,adjustBorderColor:!1,color:"#ffffff"},bullet:"round",bulletBorderAlpha:1,bulletColor:"#FFFFFF",bulletSize:5,hideBulletsCount:50,lineThickness:2,title:"red line",useLineColorForBulletBorder:!0,valueField:"value",balloonText:"[[value]]"}],chartScrollbar:{graph:"g1",oppositeAxis:!1,offset:30,scrollbarHeight:80,backgroundAlpha:0,selectedBackgroundAlpha:.1,selectedBackgroundColor:"#888888",graphFillAlpha:0,graphLineAlpha:.5,selectedGraphFillAlpha:0,selectedGraphLineAlpha:1,autoGridCount:!0,color:"#AAAAAA"},chartCursor:{pan:!0,valueLineEnabled:!0,valueLineBalloonEnabled:!0,cursorAlpha:1,cursorColor:"#258cbb",limitToGraph:"g1",valueLineAlpha:.2,valueZoomable:!0},valueScrollbar:{oppositeAxis:!1,offset:50,scrollbarHeight:10},categoryField:"date",categoryAxis:{parseDates:!0,dashLength:1,minorGridEnabled:!0},export:{enabled:!0},dataProvider:[{date:"2012-07-27",value:13},{date:"2012-07-28",value:11},{date:"2012-07-29",value:15},{date:"2012-07-30",value:16},{date:"2012-07-31",value:18},{date:"2012-08-01",value:13},{date:"2012-08-02",value:22},{date:"2012-08-03",value:23},{date:"2012-08-04",value:20},{date:"2012-08-05",value:17},{date:"2012-08-06",value:16},{date:"2012-08-07",value:18},{date:"2012-08-08",value:21},{date:"2012-08-09",value:26},{date:"2012-08-10",value:24},{date:"2012-08-11",value:29},{date:"2012-08-12",value:32},{date:"2012-08-13",value:18},{date:"2012-08-14",value:24},{date:"2012-08-15",value:22},{date:"2012-08-16",value:18},{date:"2012-08-17",value:19},{date:"2012-08-18",value:14},{date:"2012-08-19",value:15},{date:"2012-08-20",value:12},{date:"2012-08-21",value:8},{date:"2012-08-22",value:9},{date:"2012-08-23",value:8},{date:"2012-08-24",value:7},{date:"2012-08-25",value:5},{date:"2012-08-26",value:11},{date:"2012-08-27",value:13},{date:"2012-08-28",value:18},{date:"2012-08-29",value:20},{date:"2012-08-30",value:29},{date:"2012-08-31",value:33},{date:"2012-09-01",value:42},{date:"2012-09-02",value:35},{date:"2012-09-03",value:31},{date:"2012-09-04",value:47},{date:"2012-09-05",value:52},{date:"2012-09-06",value:46},{date:"2012-09-07",value:41},{date:"2012-09-08",value:43},{date:"2012-09-09",value:40},{date:"2012-09-10",value:39},{date:"2012-09-11",value:34},{date:"2012-09-12",value:29},{date:"2012-09-13",value:34},{date:"2012-09-14",value:37},{date:"2012-09-15",value:42},{date:"2012-09-16",value:49},{date:"2012-09-17",value:46},{date:"2012-09-18",value:47},{date:"2012-09-19",value:55},{date:"2012-09-20",value:59},{date:"2012-09-21",value:58},{date:"2012-09-22",value:57},{date:"2012-09-23",value:61},{date:"2012-09-24",value:59},{date:"2012-09-25",value:67},{date:"2012-09-26",value:65},{date:"2012-09-27",value:61},{date:"2012-09-28",value:66},{date:"2012-09-29",value:69},{date:"2012-09-30",value:71},{date:"2012-10-01",value:67},{date:"2012-10-02",value:63},{date:"2012-10-03",value:46},{date:"2012-10-04",value:32},{date:"2012-10-05",value:21},{date:"2012-10-06",value:18},{date:"2012-10-07",value:21},{date:"2012-10-08",value:28},{date:"2012-10-09",value:27},{date:"2012-10-10",value:36},{date:"2012-10-11",value:33},{date:"2012-10-12",value:31},{date:"2012-10-13",value:30},{date:"2012-10-14",value:34},{date:"2012-10-15",value:38},{date:"2012-10-16",value:37},{date:"2012-10-17",value:44},{date:"2012-10-18",value:49},{date:"2012-10-19",value:53},{date:"2012-10-20",value:57},{date:"2012-10-21",value:60},{date:"2012-10-22",value:61},{date:"2012-10-23",value:69},{date:"2012-10-24",value:67},{date:"2012-10-25",value:72},{date:"2012-10-26",value:77},{date:"2012-10-27",value:75},{date:"2012-10-28",value:70},{date:"2012-10-29",value:72},{date:"2012-10-30",value:70},{date:"2012-10-31",value:72},{date:"2012-11-01",value:73},{date:"2012-11-02",value:67},{date:"2012-11-03",value:68},{date:"2012-11-04",value:65},{date:"2012-11-05",value:71},{date:"2012-11-06",value:75},{date:"2012-11-07",value:74},{date:"2012-11-08",value:71},{date:"2012-11-09",value:76},{date:"2012-11-10",value:77},{date:"2012-11-11",value:81},{date:"2012-11-12",value:83},{date:"2012-11-13",value:80},{date:"2012-11-14",value:81},{date:"2012-11-15",value:87},{date:"2012-11-16",value:82},{date:"2012-11-17",value:86},{date:"2012-11-18",value:80},{date:"2012-11-19",value:87},{date:"2012-11-20",value:83},{date:"2012-11-21",value:85},{date:"2012-11-22",value:84},{date:"2012-11-23",value:82},{date:"2012-11-24",value:73},{date:"2012-11-25",value:71},{date:"2012-11-26",value:75},{date:"2012-11-27",value:79},{date:"2012-11-28",value:70},{date:"2012-11-29",value:73},{date:"2012-11-30",value:61},{date:"2012-12-01",value:62},{date:"2012-12-02",value:66},{date:"2012-12-03",value:65},{date:"2012-12-04",value:73},{date:"2012-12-05",value:79},{date:"2012-12-06",value:78},{date:"2012-12-07",value:78},{date:"2012-12-08",value:78},{date:"2012-12-09",value:74},{date:"2012-12-10",value:73},{date:"2012-12-11",value:75},{date:"2012-12-12",value:70},{date:"2012-12-13",value:77},{date:"2012-12-14",value:67},{date:"2012-12-15",value:62},{date:"2012-12-16",value:64},{date:"2012-12-17",value:61},{date:"2012-12-18",value:59},{date:"2012-12-19",value:53},{date:"2012-12-20",value:54},{date:"2012-12-21",value:56},{date:"2012-12-22",value:59},{date:"2012-12-23",value:58},{date:"2012-12-24",value:55},{date:"2012-12-25",value:52},{date:"2012-12-26",value:54},{date:"2012-12-27",value:50},{date:"2012-12-28",value:50},{date:"2012-12-29",value:51},{date:"2012-12-30",value:52},{date:"2012-12-31",value:58},{date:"2013-01-01",value:60},{date:"2013-01-02",value:67},{date:"2013-01-03",value:64},{date:"2013-01-04",value:66},{date:"2013-01-05",value:60},{date:"2013-01-06",value:63},{date:"2013-01-07",value:61},{date:"2013-01-08",value:60},{date:"2013-01-09",value:65},{date:"2013-01-10",value:75},{date:"2013-01-11",value:77},{date:"2013-01-12",value:78},{date:"2013-01-13",value:70},{date:"2013-01-14",value:70},{date:"2013-01-15",value:73},{date:"2013-01-16",value:71},{date:"2013-01-17",value:74},{date:"2013-01-18",value:78},{date:"2013-01-19",value:85},{date:"2013-01-20",value:82},{date:"2013-01-21",value:83},{date:"2013-01-22",value:88},{date:"2013-01-23",value:85},{date:"2013-01-24",value:85},{date:"2013-01-25",value:80},{date:"2013-01-26",value:87},{date:"2013-01-27",value:84},{date:"2013-01-28",value:83},{date:"2013-01-29",value:84},{date:"2013-01-30",value:81}]});function a(){e.zoomToIndexes(e.dataProvider.length-40,e.dataProvider.length-1)}e.addListener("rendered",a),a()}(),function(){var e=function(){var e=[],a=new Date;a.setDate(a.getDate()-5);for(var t=0;t<1e3;t++){var i=new Date(a);i.setDate(i.getDate()+t);var r=Math.round(Math.random()*(40+t/5))+20+t;e.push({date:i,visits:r})}return e}(),a=AmCharts.makeChart("kt_amcharts_7",{type:"serial",theme:"light",marginRight:80,autoMarginOffset:20,marginTop:7,dataProvider:e,valueAxes:[{axisAlpha:.2,dashLength:1,position:"left"}],mouseWheelZoomEnabled:!0,graphs:[{id:"g1",balloonText:"[[value]]",bullet:"round",bulletBorderAlpha:1,bulletColor:"#FFFFFF",hideBulletsCount:50,title:"red line",valueField:"visits",useLineColorForBulletBorder:!0,balloon:{drop:!0}}],chartScrollbar:{autoGridCount:!0,graph:"g1",scrollbarHeight:40},chartCursor:{limitToGraph:"g1"},categoryField:"date",categoryAxis:{parseDates:!0,axisColor:"#DADADA",dashLength:1,minorGridEnabled:!0},export:{enabled:!0}});function t(){a.zoomToIndexes(e.length-40,e.length-1)}a.addListener("rendered",t),t()}(),AmCharts.makeChart("kt_amcharts_8",{type:"serial",theme:"light",legend:{equalWidths:!1,useGraphSettings:!0,valueAlign:"left",valueWidth:120},dataProvider:[{date:"2012-01-01",distance:227,townName:"New York",townName2:"New York",townSize:25,latitude:40.71,duration:408},{date:"2012-01-02",distance:371,townName:"Washington",townSize:14,latitude:38.89,duration:482},{date:"2012-01-03",distance:433,townName:"Wilmington",townSize:6,latitude:34.22,duration:562},{date:"2012-01-04",distance:345,townName:"Jacksonville",townSize:7,latitude:30.35,duration:379},{date:"2012-01-05",distance:480,townName:"Miami",townName2:"Miami",townSize:10,latitude:25.83,duration:501},{date:"2012-01-06",distance:386,townName:"Tallahassee",townSize:7,latitude:30.46,duration:443},{date:"2012-01-07",distance:348,townName:"New Orleans",townSize:10,latitude:29.94,duration:405},{date:"2012-01-08",distance:238,townName:"Houston",townName2:"Houston",townSize:16,latitude:29.76,duration:309},{date:"2012-01-09",distance:218,townName:"Dalas",townSize:17,latitude:32.8,duration:287},{date:"2012-01-10",distance:349,townName:"Oklahoma City",townSize:11,latitude:35.49,duration:485},{date:"2012-01-11",distance:603,townName:"Kansas City",townSize:10,latitude:39.1,duration:890},{date:"2012-01-12",distance:534,townName:"Denver",townName2:"Denver",townSize:18,latitude:39.74,duration:810},{date:"2012-01-13",townName:"Salt Lake City",townSize:12,distance:425,duration:670,latitude:40.75,dashLength:8,alpha:.4},{date:"2012-01-14",latitude:36.1,duration:470,townName:"Las Vegas",townName2:"Las Vegas"},{date:"2012-01-15"},{date:"2012-01-16"},{date:"2012-01-17"},{date:"2012-01-18"},{date:"2012-01-19"}],valueAxes:[{id:"distanceAxis",axisAlpha:0,gridAlpha:0,position:"left",title:"distance"},{id:"latitudeAxis",axisAlpha:0,gridAlpha:0,labelsEnabled:!1,position:"right"},{id:"durationAxis",duration:"mm",durationUnits:{hh:"h ",mm:"min"},axisAlpha:0,gridAlpha:0,inside:!0,position:"right",title:"duration"}],graphs:[{alphaField:"alpha",balloonText:"[[value]] miles",dashLengthField:"dashLength",fillAlphas:.7,legendPeriodValueText:"total: [[value.sum]] mi",legendValueText:"[[value]] mi",title:"distance",type:"column",valueField:"distance",valueAxis:"distanceAxis"},{balloonText:"latitude:[[value]]",bullet:"round",bulletBorderAlpha:1,useLineColorForBulletBorder:!0,bulletColor:"#FFFFFF",bulletSizeField:"townSize",dashLengthField:"dashLength",descriptionField:"townName",labelPosition:"right",labelText:"[[townName2]]",legendValueText:"[[value]]/[[description]]",title:"latitude/city",fillAlphas:0,valueField:"latitude",valueAxis:"latitudeAxis"},{bullet:"square",bulletBorderAlpha:1,bulletBorderThickness:1,dashLengthField:"dashLength",legendValueText:"[[value]]",title:"duration",fillAlphas:0,valueField:"duration",valueAxis:"durationAxis"}],chartCursor:{categoryBalloonDateFormat:"DD",cursorAlpha:.1,cursorColor:"#000000",fullWidth:!0,valueBalloonsEnabled:!1,zoomable:!1},dataDateFormat:"YYYY-MM-DD",categoryField:"date",categoryAxis:{dateFormats:[{period:"DD",format:"DD"},{period:"WW",format:"MMM DD"},{period:"MM",format:"MMM"},{period:"YYYY",format:"YYYY"}],parseDates:!0,autoGridCount:!1,axisColor:"#555555",gridAlpha:.1,gridColor:"#FFFFFF",gridCount:50},export:{enabled:!0}}),AmCharts.makeChart("kt_amcharts_9",{type:"radar",theme:"light",dataProvider:[{country:"Czech Republic",litres:156.9},{country:"Ireland",litres:131.1},{country:"Germany",litres:115.8},{country:"Australia",litres:109.9},{country:"Austria",litres:108.3},{country:"UK",litres:99}],valueAxes:[{axisTitleOffset:20,minimum:0,axisAlpha:.15}],startDuration:2,graphs:[{balloonText:"[[value]] litres of beer per year",bullet:"round",lineThickness:2,valueField:"litres"}],categoryField:"country",export:{enabled:!0}}),AmCharts.makeChart("kt_amcharts_10",{type:"radar",theme:"light",dataProvider:[{direction:"N",value:8},{direction:"NE",value:9},{direction:"E",value:4.5},{direction:"SE",value:3.5},{direction:"S",value:9.2},{direction:"SW",value:8.4},{direction:"W",value:11.1},{direction:"NW",value:10}],valueAxes:[{gridType:"circles",minimum:0,autoGridCount:!1,axisAlpha:.2,fillAlpha:.05,fillColor:"#FFFFFF",gridAlpha:.08,guides:[{angle:225,fillAlpha:.3,fillColor:"#0066CC",tickLength:0,toAngle:315,toValue:14,value:0,lineAlpha:0},{angle:45,fillAlpha:.3,fillColor:"#CC3333",tickLength:0,toAngle:135,toValue:14,value:0,lineAlpha:0}],position:"left"}],startDuration:1,graphs:[{balloonText:"[[category]]: [[value]] m/s",bullet:"round",fillAlphas:.3,valueField:"value"}],categoryField:"direction",export:{enabled:!0}}),AmCharts.makeChart("kt_amcharts_11",{type:"radar",theme:"light",dataProvider:[],valueAxes:[{gridType:"circles",minimum:0}],startDuration:1,polarScatter:{minimum:0,maximum:359,step:1},legend:{position:"right"},graphs:[{title:"Trial #1",balloonText:"[[category]]: [[value]] m/s",bullet:"round",lineAlpha:0,series:[[83,5.1],[44,5.8],[76,9],[2,1.4],[100,8.3],[96,1.7],[68,3.9],[0,3],[100,4.1],[16,5.5],[71,6.8],[100,7.9],[9,6.8],[85,8.3],[51,6.7],[95,3.8],[95,4.4],[1,.2],[107,9.7],[50,4.2],[42,9.2],[35,8],[44,6],[64,.7],[53,3.3],[92,4.1],[43,7.3],[15,7.5],[43,4.3],[90,9.9]]},{title:"Trial #2",balloonText:"[[category]]: [[value]] m/s",bullet:"round",lineAlpha:0,series:[[178,1.3],[129,3.4],[99,2.4],[80,9.9],[118,9.4],[103,8.7],[91,4.2],[151,1.2],[168,5.2],[168,1.6],[152,1.2],[149,3.4],[182,8.8],[106,6.7],[111,9.2],[130,6.3],[147,2.9],[81,8.1],[138,7.7],[107,3.9],[124,.7],[130,2.6],[86,9.2],[169,7.5],[122,9.9],[100,3.8],[172,4.1],[140,7.3],[161,2.3],[141,.9]]},{title:"Trial #3",balloonText:"[[category]]: [[value]] m/s",bullet:"round",lineAlpha:0,series:[[419,4.9],[417,5.5],[434,.1],[344,2.5],[279,7.5],[307,8.4],[279,9],[220,8.4],[204,8],[446,.9],[397,8.9],[351,1.7],[393,.7],[254,1.8],[260,.4],[300,3.5],[199,2.7],[182,5.8],[173,2],[201,9.7],[288,1.2],[333,7.4],[308,1.9],[330,8],[408,1.7],[274,.8],[296,3.1],[279,4.3],[379,5.6],[175,6.8]]}],export:{enabled:!0}}),AmCharts.makeChart("kt_amcharts_12",{type:"pie",theme:"light",dataProvider:[{country:"Lithuania",litres:501.9},{country:"Czech Republic",litres:301.9},{country:"Ireland",litres:201.1},{country:"Germany",litres:165.8},{country:"Australia",litres:139.9},{country:"Austria",litres:128.3},{country:"UK",litres:99},{country:"Belgium",litres:60},{country:"The Netherlands",litres:50}],valueField:"litres",titleField:"country",balloon:{fixedPosition:!0},export:{enabled:!0}}),e()}}}();jQuery(document).ready(function(){KTamChartsChartsDemo.init()}); \ No newline at end of file +'use strict'; +var KTamChartsChartsDemo = (function() { + var e = function() { + var e = { + 1995: [ + { sector: 'Agriculture', size: 6.6 }, + { sector: 'Mining and Quarrying', size: 0.6 }, + { sector: 'Manufacturing', size: 23.2 }, + { sector: 'Electricity and Water', size: 2.2 }, + { sector: 'Construction', size: 4.5 }, + { sector: 'Trade (Wholesale, Retail, Motor)', size: 14.6 }, + { sector: 'Transport and Communication', size: 9.3 }, + { sector: 'Finance, real estate and business services', size: 22.5 }, + ], + 1996: [ + { sector: 'Agriculture', size: 6.4 }, + { sector: 'Mining and Quarrying', size: 0.5 }, + { sector: 'Manufacturing', size: 22.4 }, + { sector: 'Electricity and Water', size: 2 }, + { sector: 'Construction', size: 4.2 }, + { sector: 'Trade (Wholesale, Retail, Motor)', size: 14.8 }, + { sector: 'Transport and Communication', size: 9.7 }, + { sector: 'Finance, real estate and business services', size: 22 }, + ], + 1997: [ + { sector: 'Agriculture', size: 6.1 }, + { sector: 'Mining and Quarrying', size: 0.2 }, + { sector: 'Manufacturing', size: 20.9 }, + { sector: 'Electricity and Water', size: 1.8 }, + { sector: 'Construction', size: 4.2 }, + { sector: 'Trade (Wholesale, Retail, Motor)', size: 13.7 }, + { sector: 'Transport and Communication', size: 9.4 }, + { sector: 'Finance, real estate and business services', size: 22.1 }, + ], + 1998: [ + { sector: 'Agriculture', size: 6.2 }, + { sector: 'Mining and Quarrying', size: 0.3 }, + { sector: 'Manufacturing', size: 21.4 }, + { sector: 'Electricity and Water', size: 1.9 }, + { sector: 'Construction', size: 4.2 }, + { sector: 'Trade (Wholesale, Retail, Motor)', size: 14.5 }, + { sector: 'Transport and Communication', size: 10.6 }, + { sector: 'Finance, real estate and business services', size: 23 }, + ], + 1999: [ + { sector: 'Agriculture', size: 5.7 }, + { sector: 'Mining and Quarrying', size: 0.2 }, + { sector: 'Manufacturing', size: 20 }, + { sector: 'Electricity and Water', size: 1.8 }, + { sector: 'Construction', size: 4.4 }, + { sector: 'Trade (Wholesale, Retail, Motor)', size: 15.2 }, + { sector: 'Transport and Communication', size: 10.5 }, + { sector: 'Finance, real estate and business services', size: 24.7 }, + ], + 2000: [ + { sector: 'Agriculture', size: 5.1 }, + { sector: 'Mining and Quarrying', size: 0.3 }, + { sector: 'Manufacturing', size: 20.4 }, + { sector: 'Electricity and Water', size: 1.7 }, + { sector: 'Construction', size: 4 }, + { sector: 'Trade (Wholesale, Retail, Motor)', size: 16.3 }, + { sector: 'Transport and Communication', size: 10.7 }, + { sector: 'Finance, real estate and business services', size: 24.6 }, + ], + 2001: [ + { sector: 'Agriculture', size: 5.5 }, + { sector: 'Mining and Quarrying', size: 0.2 }, + { sector: 'Manufacturing', size: 20.3 }, + { sector: 'Electricity and Water', size: 1.6 }, + { sector: 'Construction', size: 3.1 }, + { sector: 'Trade (Wholesale, Retail, Motor)', size: 16.3 }, + { sector: 'Transport and Communication', size: 10.7 }, + { sector: 'Finance, real estate and business services', size: 25.8 }, + ], + 2002: [ + { sector: 'Agriculture', size: 5.7 }, + { sector: 'Mining and Quarrying', size: 0.2 }, + { sector: 'Manufacturing', size: 20.5 }, + { sector: 'Electricity and Water', size: 1.6 }, + { sector: 'Construction', size: 3.6 }, + { sector: 'Trade (Wholesale, Retail, Motor)', size: 16.1 }, + { sector: 'Transport and Communication', size: 10.7 }, + { sector: 'Finance, real estate and business services', size: 26 }, + ], + 2003: [ + { sector: 'Agriculture', size: 4.9 }, + { sector: 'Mining and Quarrying', size: 0.2 }, + { sector: 'Manufacturing', size: 19.4 }, + { sector: 'Electricity and Water', size: 1.5 }, + { sector: 'Construction', size: 3.3 }, + { sector: 'Trade (Wholesale, Retail, Motor)', size: 16.2 }, + { sector: 'Transport and Communication', size: 11 }, + { sector: 'Finance, real estate and business services', size: 27.5 }, + ], + 2004: [ + { sector: 'Agriculture', size: 4.7 }, + { sector: 'Mining and Quarrying', size: 0.2 }, + { sector: 'Manufacturing', size: 18.4 }, + { sector: 'Electricity and Water', size: 1.4 }, + { sector: 'Construction', size: 3.3 }, + { sector: 'Trade (Wholesale, Retail, Motor)', size: 16.9 }, + { sector: 'Transport and Communication', size: 10.6 }, + { sector: 'Finance, real estate and business services', size: 28.1 }, + ], + 2005: [ + { sector: 'Agriculture', size: 4.3 }, + { sector: 'Mining and Quarrying', size: 0.2 }, + { sector: 'Manufacturing', size: 18.1 }, + { sector: 'Electricity and Water', size: 1.4 }, + { sector: 'Construction', size: 3.9 }, + { sector: 'Trade (Wholesale, Retail, Motor)', size: 15.7 }, + { sector: 'Transport and Communication', size: 10.6 }, + { sector: 'Finance, real estate and business services', size: 29.1 }, + ], + 2006: [ + { sector: 'Agriculture', size: 4 }, + { sector: 'Mining and Quarrying', size: 0.2 }, + { sector: 'Manufacturing', size: 16.5 }, + { sector: 'Electricity and Water', size: 1.3 }, + { sector: 'Construction', size: 3.7 }, + { sector: 'Trade (Wholesale, Retail, Motor)', size: 14.2 }, + { sector: 'Transport and Communication', size: 12.1 }, + { sector: 'Finance, real estate and business services', size: 29.1 }, + ], + 2007: [ + { sector: 'Agriculture', size: 4.7 }, + { sector: 'Mining and Quarrying', size: 0.2 }, + { sector: 'Manufacturing', size: 16.2 }, + { sector: 'Electricity and Water', size: 1.2 }, + { sector: 'Construction', size: 4.1 }, + { sector: 'Trade (Wholesale, Retail, Motor)', size: 15.6 }, + { sector: 'Transport and Communication', size: 11.2 }, + { sector: 'Finance, real estate and business services', size: 30.4 }, + ], + 2008: [ + { sector: 'Agriculture', size: 4.9 }, + { sector: 'Mining and Quarrying', size: 0.3 }, + { sector: 'Manufacturing', size: 17.2 }, + { sector: 'Electricity and Water', size: 1.4 }, + { sector: 'Construction', size: 5.1 }, + { sector: 'Trade (Wholesale, Retail, Motor)', size: 15.4 }, + { sector: 'Transport and Communication', size: 11.1 }, + { sector: 'Finance, real estate and business services', size: 28.4 }, + ], + 2009: [ + { sector: 'Agriculture', size: 4.7 }, + { sector: 'Mining and Quarrying', size: 0.3 }, + { sector: 'Manufacturing', size: 16.4 }, + { sector: 'Electricity and Water', size: 1.9 }, + { sector: 'Construction', size: 4.9 }, + { sector: 'Trade (Wholesale, Retail, Motor)', size: 15.5 }, + { sector: 'Transport and Communication', size: 10.9 }, + { sector: 'Finance, real estate and business services', size: 27.9 }, + ], + 2010: [ + { sector: 'Agriculture', size: 4.2 }, + { sector: 'Mining and Quarrying', size: 0.3 }, + { sector: 'Manufacturing', size: 16.2 }, + { sector: 'Electricity and Water', size: 2.2 }, + { sector: 'Construction', size: 4.3 }, + { sector: 'Trade (Wholesale, Retail, Motor)', size: 15.7 }, + { sector: 'Transport and Communication', size: 10.2 }, + { sector: 'Finance, real estate and business services', size: 28.8 }, + ], + 2011: [ + { sector: 'Agriculture', size: 4.1 }, + { sector: 'Mining and Quarrying', size: 0.3 }, + { sector: 'Manufacturing', size: 14.9 }, + { sector: 'Electricity and Water', size: 2.3 }, + { sector: 'Construction', size: 5 }, + { sector: 'Trade (Wholesale, Retail, Motor)', size: 17.3 }, + { sector: 'Transport and Communication', size: 10.2 }, + { sector: 'Finance, real estate and business services', size: 27.2 }, + ], + 2012: [ + { sector: 'Agriculture', size: 3.8 }, + { sector: 'Mining and Quarrying', size: 0.3 }, + { sector: 'Manufacturing', size: 14.9 }, + { sector: 'Electricity and Water', size: 2.6 }, + { sector: 'Construction', size: 5.1 }, + { sector: 'Trade (Wholesale, Retail, Motor)', size: 15.8 }, + { sector: 'Transport and Communication', size: 10.7 }, + { sector: 'Finance, real estate and business services', size: 28 }, + ], + 2013: [ + { sector: 'Agriculture', size: 3.7 }, + { sector: 'Mining and Quarrying', size: 0.2 }, + { sector: 'Manufacturing', size: 14.9 }, + { sector: 'Electricity and Water', size: 2.7 }, + { sector: 'Construction', size: 5.7 }, + { sector: 'Trade (Wholesale, Retail, Motor)', size: 16.5 }, + { sector: 'Transport and Communication', size: 10.5 }, + { sector: 'Finance, real estate and business services', size: 26.6 }, + ], + 2014: [ + { sector: 'Agriculture', size: 3.9 }, + { sector: 'Mining and Quarrying', size: 0.2 }, + { sector: 'Manufacturing', size: 14.5 }, + { sector: 'Electricity and Water', size: 2.7 }, + { sector: 'Construction', size: 5.6 }, + { sector: 'Trade (Wholesale, Retail, Motor)', size: 16.6 }, + { sector: 'Transport and Communication', size: 10.5 }, + { sector: 'Finance, real estate and business services', size: 26.5 }, + ], + }, + a = 1995; + AmCharts.makeChart('kt_amcharts_13', { + type: 'pie', + theme: 'light', + dataProvider: [], + valueField: 'size', + titleField: 'sector', + startDuration: 0, + innerRadius: 80, + pullOutRadius: 20, + marginTop: 30, + titles: [{ text: 'South African Economy' }], + allLabels: [ + { y: '54%', align: 'center', size: 25, bold: !0, text: '1995', color: '#555' }, + { y: '49%', align: 'center', size: 15, text: 'Year', color: '#555' }, + ], + listeners: [ + { + event: 'init', + method: function(t) { + var i = t.chart; + !(function t() { + i.allLabels[0].text = a; + var r = (function() { + var t = e[a]; + return ++a > 2014 && (a = 1995), t; + })(); + i.animateData(r, { + duration: 1e3, + complete: function() { + setTimeout(t, 3e3); + }, + }); + })(); + }, + }, + ], + export: { enabled: !0 }, + }); + }; + return { + init: function() { + AmCharts.makeChart('kt_amcharts_1', { + rtl: KTUtil.isRTL(), + type: 'serial', + theme: 'light', + dataProvider: [ + { country: 'USA', visits: 2025 }, + { country: 'China', visits: 1882 }, + { country: 'Japan', visits: 1809 }, + { country: 'Germany', visits: 1322 }, + { country: 'UK', visits: 1122 }, + { country: 'France', visits: 1114 }, + { country: 'India', visits: 984 }, + { country: 'Spain', visits: 711 }, + { country: 'Netherlands', visits: 665 }, + { country: 'Russia', visits: 580 }, + { country: 'South Korea', visits: 443 }, + { country: 'Canada', visits: 441 }, + { country: 'Brazil', visits: 395 }, + ], + valueAxes: [{ gridColor: '#FFFFFF', gridAlpha: 0.2, dashLength: 0 }], + gridAboveGraphs: !0, + startDuration: 1, + graphs: [ + { + balloonText: '[[category]]: [[value]]', + fillAlphas: 0.8, + lineAlpha: 0.2, + type: 'column', + valueField: 'visits', + }, + ], + chartCursor: { categoryBalloonEnabled: !1, cursorAlpha: 0, zoomable: !1 }, + categoryField: 'country', + categoryAxis: { gridPosition: 'start', gridAlpha: 0, tickPosition: 'start', tickLength: 20 }, + export: { enabled: !0 }, + }), + AmCharts.makeChart('kt_amcharts_2', { + rtl: KTUtil.isRTL(), + type: 'serial', + addClassNames: !0, + theme: 'light', + autoMargins: !1, + marginLeft: 30, + marginRight: 8, + marginTop: 10, + marginBottom: 26, + balloon: { adjustBorderColor: !1, horizontalPadding: 10, verticalPadding: 8, color: '#ffffff' }, + dataProvider: [ + { year: 2009, income: 23.5, expenses: 21.1 }, + { year: 2010, income: 26.2, expenses: 30.5 }, + { year: 2011, income: 30.1, expenses: 34.9 }, + { year: 2012, income: 29.5, expenses: 31.1 }, + { year: 2013, income: 30.6, expenses: 28.2, dashLengthLine: 5 }, + { year: 2014, income: 34.1, expenses: 32.9, dashLengthColumn: 5, alpha: 0.2, additional: '(projection)' }, + ], + valueAxes: [{ axisAlpha: 0, position: 'left' }], + startDuration: 1, + graphs: [ + { + alphaField: 'alpha', + balloonText: + "[[title]] in [[category]]:
[[value]] [[additional]]
", + fillAlphas: 1, + title: 'Income', + type: 'column', + valueField: 'income', + dashLengthField: 'dashLengthColumn', + }, + { + id: 'graph2', + balloonText: + "[[title]] in [[category]]:
[[value]] [[additional]]
", + bullet: 'round', + lineThickness: 3, + bulletSize: 7, + bulletBorderAlpha: 1, + bulletColor: '#FFFFFF', + useLineColorForBulletBorder: !0, + bulletBorderThickness: 3, + fillAlphas: 0, + lineAlpha: 1, + title: 'Expenses', + valueField: 'expenses', + dashLengthField: 'dashLengthLine', + }, + ], + categoryField: 'year', + categoryAxis: { gridPosition: 'start', axisAlpha: 0, tickLength: 0 }, + export: { enabled: !0 }, + }), + AmCharts.makeChart('kt_amcharts_3', { + theme: 'light', + type: 'serial', + dataProvider: [ + { country: 'USA', year2004: 3.5, year2005: 4.2 }, + { country: 'UK', year2004: 1.7, year2005: 3.1 }, + { country: 'Canada', year2004: 2.8, year2005: 2.9 }, + { country: 'Japan', year2004: 2.6, year2005: 2.3 }, + { country: 'France', year2004: 1.4, year2005: 2.1 }, + { country: 'Brazil', year2004: 2.6, year2005: 4.9 }, + ], + valueAxes: [{ unit: '%', position: 'left', title: 'GDP growth rate' }], + startDuration: 1, + graphs: [ + { + balloonText: 'GDP grow in [[category]] (2004): [[value]]', + fillAlphas: 0.9, + lineAlpha: 0.2, + title: '2004', + type: 'column', + valueField: 'year2004', + }, + { + balloonText: 'GDP grow in [[category]] (2005): [[value]]', + fillAlphas: 0.9, + lineAlpha: 0.2, + title: '2005', + type: 'column', + clustered: !1, + columnWidth: 0.5, + valueField: 'year2005', + }, + ], + plotAreaFillAlphas: 0.1, + categoryField: 'country', + categoryAxis: { gridPosition: 'start' }, + export: { enabled: !0 }, + }), + AmCharts.makeChart('kt_amcharts_4', { + theme: 'light', + type: 'serial', + dataProvider: [ + { country: 'USA', year2004: 3.5, year2005: 4.2 }, + { country: 'UK', year2004: 1.7, year2005: 3.1 }, + { country: 'Canada', year2004: 2.8, year2005: 2.9 }, + { country: 'Japan', year2004: 2.6, year2005: 2.3 }, + { country: 'France', year2004: 1.4, year2005: 2.1 }, + { country: 'Brazil', year2004: 2.6, year2005: 4.9 }, + { country: 'Russia', year2004: 6.4, year2005: 7.2 }, + { country: 'India', year2004: 8, year2005: 7.1 }, + { country: 'China', year2004: 9.9, year2005: 10.1 }, + ], + valueAxes: [{ stackType: '3d', unit: '%', position: 'left', title: 'GDP growth rate' }], + startDuration: 1, + graphs: [ + { + balloonText: 'GDP grow in [[category]] (2004): [[value]]', + fillAlphas: 0.9, + lineAlpha: 0.2, + title: '2004', + type: 'column', + valueField: 'year2004', + }, + { + balloonText: 'GDP grow in [[category]] (2005): [[value]]', + fillAlphas: 0.9, + lineAlpha: 0.2, + title: '2005', + type: 'column', + valueField: 'year2005', + }, + ], + plotAreaFillAlphas: 0.1, + depth3D: 60, + angle: 30, + categoryField: 'country', + categoryAxis: { gridPosition: 'start' }, + export: { enabled: !0 }, + }), + AmCharts.makeChart('kt_amcharts_5', { + type: 'serial', + theme: 'light', + handDrawn: !0, + handDrawScatter: 3, + legend: { useGraphSettings: !0, markerSize: 12, valueWidth: 0, verticalGap: 0 }, + dataProvider: [ + { year: 2005, income: 23.5, expenses: 18.1 }, + { year: 2006, income: 26.2, expenses: 22.8 }, + { year: 2007, income: 30.1, expenses: 23.9 }, + { year: 2008, income: 29.5, expenses: 25.1 }, + { year: 2009, income: 24.6, expenses: 25 }, + ], + valueAxes: [{ minorGridAlpha: 0.08, minorGridEnabled: !0, position: 'top', axisAlpha: 0 }], + startDuration: 1, + graphs: [ + { + balloonText: "[[title]] in [[category]]:[[value]]", + title: 'Income', + type: 'column', + fillAlphas: 0.8, + valueField: 'income', + }, + { + balloonText: "[[title]] in [[category]]:[[value]]", + bullet: 'round', + bulletBorderAlpha: 1, + bulletColor: '#FFFFFF', + useLineColorForBulletBorder: !0, + fillAlphas: 0, + lineThickness: 2, + lineAlpha: 1, + bulletSize: 7, + title: 'Expenses', + valueField: 'expenses', + }, + ], + rotate: !0, + categoryField: 'year', + categoryAxis: { gridPosition: 'start' }, + export: { enabled: !0 }, + }), + (function() { + var e = AmCharts.makeChart('kt_amcharts_6', { + type: 'serial', + theme: 'light', + marginRight: 40, + marginLeft: 40, + autoMarginOffset: 20, + mouseWheelZoomEnabled: !0, + dataDateFormat: 'YYYY-MM-DD', + valueAxes: [{ id: 'v1', axisAlpha: 0, position: 'left', ignoreAxisWidth: !0 }], + balloon: { borderThickness: 1, shadowAlpha: 0 }, + graphs: [ + { + id: 'g1', + balloon: { drop: !0, adjustBorderColor: !1, color: '#ffffff' }, + bullet: 'round', + bulletBorderAlpha: 1, + bulletColor: '#FFFFFF', + bulletSize: 5, + hideBulletsCount: 50, + lineThickness: 2, + title: 'red line', + useLineColorForBulletBorder: !0, + valueField: 'value', + balloonText: "[[value]]", + }, + ], + chartScrollbar: { + graph: 'g1', + oppositeAxis: !1, + offset: 30, + scrollbarHeight: 80, + backgroundAlpha: 0, + selectedBackgroundAlpha: 0.1, + selectedBackgroundColor: '#888888', + graphFillAlpha: 0, + graphLineAlpha: 0.5, + selectedGraphFillAlpha: 0, + selectedGraphLineAlpha: 1, + autoGridCount: !0, + color: '#AAAAAA', + }, + chartCursor: { + pan: !0, + valueLineEnabled: !0, + valueLineBalloonEnabled: !0, + cursorAlpha: 1, + cursorColor: '#258cbb', + limitToGraph: 'g1', + valueLineAlpha: 0.2, + valueZoomable: !0, + }, + valueScrollbar: { oppositeAxis: !1, offset: 50, scrollbarHeight: 10 }, + categoryField: 'date', + categoryAxis: { parseDates: !0, dashLength: 1, minorGridEnabled: !0 }, + export: { enabled: !0 }, + dataProvider: [ + { date: '2012-07-27', value: 13 }, + { date: '2012-07-28', value: 11 }, + { date: '2012-07-29', value: 15 }, + { date: '2012-07-30', value: 16 }, + { date: '2012-07-31', value: 18 }, + { date: '2012-08-01', value: 13 }, + { date: '2012-08-02', value: 22 }, + { date: '2012-08-03', value: 23 }, + { date: '2012-08-04', value: 20 }, + { date: '2012-08-05', value: 17 }, + { date: '2012-08-06', value: 16 }, + { date: '2012-08-07', value: 18 }, + { date: '2012-08-08', value: 21 }, + { date: '2012-08-09', value: 26 }, + { date: '2012-08-10', value: 24 }, + { date: '2012-08-11', value: 29 }, + { date: '2012-08-12', value: 32 }, + { date: '2012-08-13', value: 18 }, + { date: '2012-08-14', value: 24 }, + { date: '2012-08-15', value: 22 }, + { date: '2012-08-16', value: 18 }, + { date: '2012-08-17', value: 19 }, + { date: '2012-08-18', value: 14 }, + { date: '2012-08-19', value: 15 }, + { date: '2012-08-20', value: 12 }, + { date: '2012-08-21', value: 8 }, + { date: '2012-08-22', value: 9 }, + { date: '2012-08-23', value: 8 }, + { date: '2012-08-24', value: 7 }, + { date: '2012-08-25', value: 5 }, + { date: '2012-08-26', value: 11 }, + { date: '2012-08-27', value: 13 }, + { date: '2012-08-28', value: 18 }, + { date: '2012-08-29', value: 20 }, + { date: '2012-08-30', value: 29 }, + { date: '2012-08-31', value: 33 }, + { date: '2012-09-01', value: 42 }, + { date: '2012-09-02', value: 35 }, + { date: '2012-09-03', value: 31 }, + { date: '2012-09-04', value: 47 }, + { date: '2012-09-05', value: 52 }, + { date: '2012-09-06', value: 46 }, + { date: '2012-09-07', value: 41 }, + { date: '2012-09-08', value: 43 }, + { date: '2012-09-09', value: 40 }, + { date: '2012-09-10', value: 39 }, + { date: '2012-09-11', value: 34 }, + { date: '2012-09-12', value: 29 }, + { date: '2012-09-13', value: 34 }, + { date: '2012-09-14', value: 37 }, + { date: '2012-09-15', value: 42 }, + { date: '2012-09-16', value: 49 }, + { date: '2012-09-17', value: 46 }, + { date: '2012-09-18', value: 47 }, + { date: '2012-09-19', value: 55 }, + { date: '2012-09-20', value: 59 }, + { date: '2012-09-21', value: 58 }, + { date: '2012-09-22', value: 57 }, + { date: '2012-09-23', value: 61 }, + { date: '2012-09-24', value: 59 }, + { date: '2012-09-25', value: 67 }, + { date: '2012-09-26', value: 65 }, + { date: '2012-09-27', value: 61 }, + { date: '2012-09-28', value: 66 }, + { date: '2012-09-29', value: 69 }, + { date: '2012-09-30', value: 71 }, + { date: '2012-10-01', value: 67 }, + { date: '2012-10-02', value: 63 }, + { date: '2012-10-03', value: 46 }, + { date: '2012-10-04', value: 32 }, + { date: '2012-10-05', value: 21 }, + { date: '2012-10-06', value: 18 }, + { date: '2012-10-07', value: 21 }, + { date: '2012-10-08', value: 28 }, + { date: '2012-10-09', value: 27 }, + { date: '2012-10-10', value: 36 }, + { date: '2012-10-11', value: 33 }, + { date: '2012-10-12', value: 31 }, + { date: '2012-10-13', value: 30 }, + { date: '2012-10-14', value: 34 }, + { date: '2012-10-15', value: 38 }, + { date: '2012-10-16', value: 37 }, + { date: '2012-10-17', value: 44 }, + { date: '2012-10-18', value: 49 }, + { date: '2012-10-19', value: 53 }, + { date: '2012-10-20', value: 57 }, + { date: '2012-10-21', value: 60 }, + { date: '2012-10-22', value: 61 }, + { date: '2012-10-23', value: 69 }, + { date: '2012-10-24', value: 67 }, + { date: '2012-10-25', value: 72 }, + { date: '2012-10-26', value: 77 }, + { date: '2012-10-27', value: 75 }, + { date: '2012-10-28', value: 70 }, + { date: '2012-10-29', value: 72 }, + { date: '2012-10-30', value: 70 }, + { date: '2012-10-31', value: 72 }, + { date: '2012-11-01', value: 73 }, + { date: '2012-11-02', value: 67 }, + { date: '2012-11-03', value: 68 }, + { date: '2012-11-04', value: 65 }, + { date: '2012-11-05', value: 71 }, + { date: '2012-11-06', value: 75 }, + { date: '2012-11-07', value: 74 }, + { date: '2012-11-08', value: 71 }, + { date: '2012-11-09', value: 76 }, + { date: '2012-11-10', value: 77 }, + { date: '2012-11-11', value: 81 }, + { date: '2012-11-12', value: 83 }, + { date: '2012-11-13', value: 80 }, + { date: '2012-11-14', value: 81 }, + { date: '2012-11-15', value: 87 }, + { date: '2012-11-16', value: 82 }, + { date: '2012-11-17', value: 86 }, + { date: '2012-11-18', value: 80 }, + { date: '2012-11-19', value: 87 }, + { date: '2012-11-20', value: 83 }, + { date: '2012-11-21', value: 85 }, + { date: '2012-11-22', value: 84 }, + { date: '2012-11-23', value: 82 }, + { date: '2012-11-24', value: 73 }, + { date: '2012-11-25', value: 71 }, + { date: '2012-11-26', value: 75 }, + { date: '2012-11-27', value: 79 }, + { date: '2012-11-28', value: 70 }, + { date: '2012-11-29', value: 73 }, + { date: '2012-11-30', value: 61 }, + { date: '2012-12-01', value: 62 }, + { date: '2012-12-02', value: 66 }, + { date: '2012-12-03', value: 65 }, + { date: '2012-12-04', value: 73 }, + { date: '2012-12-05', value: 79 }, + { date: '2012-12-06', value: 78 }, + { date: '2012-12-07', value: 78 }, + { date: '2012-12-08', value: 78 }, + { date: '2012-12-09', value: 74 }, + { date: '2012-12-10', value: 73 }, + { date: '2012-12-11', value: 75 }, + { date: '2012-12-12', value: 70 }, + { date: '2012-12-13', value: 77 }, + { date: '2012-12-14', value: 67 }, + { date: '2012-12-15', value: 62 }, + { date: '2012-12-16', value: 64 }, + { date: '2012-12-17', value: 61 }, + { date: '2012-12-18', value: 59 }, + { date: '2012-12-19', value: 53 }, + { date: '2012-12-20', value: 54 }, + { date: '2012-12-21', value: 56 }, + { date: '2012-12-22', value: 59 }, + { date: '2012-12-23', value: 58 }, + { date: '2012-12-24', value: 55 }, + { date: '2012-12-25', value: 52 }, + { date: '2012-12-26', value: 54 }, + { date: '2012-12-27', value: 50 }, + { date: '2012-12-28', value: 50 }, + { date: '2012-12-29', value: 51 }, + { date: '2012-12-30', value: 52 }, + { date: '2012-12-31', value: 58 }, + { date: '2013-01-01', value: 60 }, + { date: '2013-01-02', value: 67 }, + { date: '2013-01-03', value: 64 }, + { date: '2013-01-04', value: 66 }, + { date: '2013-01-05', value: 60 }, + { date: '2013-01-06', value: 63 }, + { date: '2013-01-07', value: 61 }, + { date: '2013-01-08', value: 60 }, + { date: '2013-01-09', value: 65 }, + { date: '2013-01-10', value: 75 }, + { date: '2013-01-11', value: 77 }, + { date: '2013-01-12', value: 78 }, + { date: '2013-01-13', value: 70 }, + { date: '2013-01-14', value: 70 }, + { date: '2013-01-15', value: 73 }, + { date: '2013-01-16', value: 71 }, + { date: '2013-01-17', value: 74 }, + { date: '2013-01-18', value: 78 }, + { date: '2013-01-19', value: 85 }, + { date: '2013-01-20', value: 82 }, + { date: '2013-01-21', value: 83 }, + { date: '2013-01-22', value: 88 }, + { date: '2013-01-23', value: 85 }, + { date: '2013-01-24', value: 85 }, + { date: '2013-01-25', value: 80 }, + { date: '2013-01-26', value: 87 }, + { date: '2013-01-27', value: 84 }, + { date: '2013-01-28', value: 83 }, + { date: '2013-01-29', value: 84 }, + { date: '2013-01-30', value: 81 }, + ], + }); + function a() { + e.zoomToIndexes(e.dataProvider.length - 40, e.dataProvider.length - 1); + } + e.addListener('rendered', a), a(); + })(), + (function() { + var e = (function() { + var e = [], + a = new Date(); + a.setDate(a.getDate() - 5); + for (var t = 0; t < 1e3; t++) { + var i = new Date(a); + i.setDate(i.getDate() + t); + var r = Math.round(Math.random() * (40 + t / 5)) + 20 + t; + e.push({ date: i, visits: r }); + } + return e; + })(), + a = AmCharts.makeChart('kt_amcharts_7', { + type: 'serial', + theme: 'light', + marginRight: 80, + autoMarginOffset: 20, + marginTop: 7, + dataProvider: e, + valueAxes: [{ axisAlpha: 0.2, dashLength: 1, position: 'left' }], + mouseWheelZoomEnabled: !0, + graphs: [ + { + id: 'g1', + balloonText: '[[value]]', + bullet: 'round', + bulletBorderAlpha: 1, + bulletColor: '#FFFFFF', + hideBulletsCount: 50, + title: 'red line', + valueField: 'visits', + useLineColorForBulletBorder: !0, + balloon: { drop: !0 }, + }, + ], + chartScrollbar: { autoGridCount: !0, graph: 'g1', scrollbarHeight: 40 }, + chartCursor: { limitToGraph: 'g1' }, + categoryField: 'date', + categoryAxis: { parseDates: !0, axisColor: '#DADADA', dashLength: 1, minorGridEnabled: !0 }, + export: { enabled: !0 }, + }); + function t() { + a.zoomToIndexes(e.length - 40, e.length - 1); + } + a.addListener('rendered', t), t(); + })(), + AmCharts.makeChart('kt_amcharts_8', { + type: 'serial', + theme: 'light', + legend: { equalWidths: !1, useGraphSettings: !0, valueAlign: 'left', valueWidth: 120 }, + dataProvider: [ + { + date: '2012-01-01', + distance: 227, + townName: 'New York', + townName2: 'New York', + townSize: 25, + latitude: 40.71, + duration: 408, + }, + { date: '2012-01-02', distance: 371, townName: 'Washington', townSize: 14, latitude: 38.89, duration: 482 }, + { date: '2012-01-03', distance: 433, townName: 'Wilmington', townSize: 6, latitude: 34.22, duration: 562 }, + { + date: '2012-01-04', + distance: 345, + townName: 'Jacksonville', + townSize: 7, + latitude: 30.35, + duration: 379, + }, + { + date: '2012-01-05', + distance: 480, + townName: 'Miami', + townName2: 'Miami', + townSize: 10, + latitude: 25.83, + duration: 501, + }, + { date: '2012-01-06', distance: 386, townName: 'Tallahassee', townSize: 7, latitude: 30.46, duration: 443 }, + { + date: '2012-01-07', + distance: 348, + townName: 'New Orleans', + townSize: 10, + latitude: 29.94, + duration: 405, + }, + { + date: '2012-01-08', + distance: 238, + townName: 'Houston', + townName2: 'Houston', + townSize: 16, + latitude: 29.76, + duration: 309, + }, + { date: '2012-01-09', distance: 218, townName: 'Dalas', townSize: 17, latitude: 32.8, duration: 287 }, + { + date: '2012-01-10', + distance: 349, + townName: 'Oklahoma City', + townSize: 11, + latitude: 35.49, + duration: 485, + }, + { date: '2012-01-11', distance: 603, townName: 'Kansas City', townSize: 10, latitude: 39.1, duration: 890 }, + { + date: '2012-01-12', + distance: 534, + townName: 'Denver', + townName2: 'Denver', + townSize: 18, + latitude: 39.74, + duration: 810, + }, + { + date: '2012-01-13', + townName: 'Salt Lake City', + townSize: 12, + distance: 425, + duration: 670, + latitude: 40.75, + dashLength: 8, + alpha: 0.4, + }, + { date: '2012-01-14', latitude: 36.1, duration: 470, townName: 'Las Vegas', townName2: 'Las Vegas' }, + { date: '2012-01-15' }, + { date: '2012-01-16' }, + { date: '2012-01-17' }, + { date: '2012-01-18' }, + { date: '2012-01-19' }, + ], + valueAxes: [ + { id: 'distanceAxis', axisAlpha: 0, gridAlpha: 0, position: 'left', title: 'distance' }, + { id: 'latitudeAxis', axisAlpha: 0, gridAlpha: 0, labelsEnabled: !1, position: 'right' }, + { + id: 'durationAxis', + duration: 'mm', + durationUnits: { hh: 'h ', mm: 'min' }, + axisAlpha: 0, + gridAlpha: 0, + inside: !0, + position: 'right', + title: 'duration', + }, + ], + graphs: [ + { + alphaField: 'alpha', + balloonText: '[[value]] miles', + dashLengthField: 'dashLength', + fillAlphas: 0.7, + legendPeriodValueText: 'total: [[value.sum]] mi', + legendValueText: '[[value]] mi', + title: 'distance', + type: 'column', + valueField: 'distance', + valueAxis: 'distanceAxis', + }, + { + balloonText: 'latitude:[[value]]', + bullet: 'round', + bulletBorderAlpha: 1, + useLineColorForBulletBorder: !0, + bulletColor: '#FFFFFF', + bulletSizeField: 'townSize', + dashLengthField: 'dashLength', + descriptionField: 'townName', + labelPosition: 'right', + labelText: '[[townName2]]', + legendValueText: '[[value]]/[[description]]', + title: 'latitude/city', + fillAlphas: 0, + valueField: 'latitude', + valueAxis: 'latitudeAxis', + }, + { + bullet: 'square', + bulletBorderAlpha: 1, + bulletBorderThickness: 1, + dashLengthField: 'dashLength', + legendValueText: '[[value]]', + title: 'duration', + fillAlphas: 0, + valueField: 'duration', + valueAxis: 'durationAxis', + }, + ], + chartCursor: { + categoryBalloonDateFormat: 'DD', + cursorAlpha: 0.1, + cursorColor: '#000000', + fullWidth: !0, + valueBalloonsEnabled: !1, + zoomable: !1, + }, + dataDateFormat: 'YYYY-MM-DD', + categoryField: 'date', + categoryAxis: { + dateFormats: [ + { period: 'DD', format: 'DD' }, + { period: 'WW', format: 'MMM DD' }, + { period: 'MM', format: 'MMM' }, + { period: 'YYYY', format: 'YYYY' }, + ], + parseDates: !0, + autoGridCount: !1, + axisColor: '#555555', + gridAlpha: 0.1, + gridColor: '#FFFFFF', + gridCount: 50, + }, + export: { enabled: !0 }, + }), + AmCharts.makeChart('kt_amcharts_9', { + type: 'radar', + theme: 'light', + dataProvider: [ + { country: 'Czech Republic', litres: 156.9 }, + { country: 'Ireland', litres: 131.1 }, + { country: 'Germany', litres: 115.8 }, + { country: 'Australia', litres: 109.9 }, + { country: 'Austria', litres: 108.3 }, + { country: 'UK', litres: 99 }, + ], + valueAxes: [{ axisTitleOffset: 20, minimum: 0, axisAlpha: 0.15 }], + startDuration: 2, + graphs: [ + { + balloonText: '[[value]] litres of beer per year', + bullet: 'round', + lineThickness: 2, + valueField: 'litres', + }, + ], + categoryField: 'country', + export: { enabled: !0 }, + }), + AmCharts.makeChart('kt_amcharts_10', { + type: 'radar', + theme: 'light', + dataProvider: [ + { direction: 'N', value: 8 }, + { direction: 'NE', value: 9 }, + { direction: 'E', value: 4.5 }, + { direction: 'SE', value: 3.5 }, + { direction: 'S', value: 9.2 }, + { direction: 'SW', value: 8.4 }, + { direction: 'W', value: 11.1 }, + { direction: 'NW', value: 10 }, + ], + valueAxes: [ + { + gridType: 'circles', + minimum: 0, + autoGridCount: !1, + axisAlpha: 0.2, + fillAlpha: 0.05, + fillColor: '#FFFFFF', + gridAlpha: 0.08, + guides: [ + { + angle: 225, + fillAlpha: 0.3, + fillColor: '#0066CC', + tickLength: 0, + toAngle: 315, + toValue: 14, + value: 0, + lineAlpha: 0, + }, + { + angle: 45, + fillAlpha: 0.3, + fillColor: '#CC3333', + tickLength: 0, + toAngle: 135, + toValue: 14, + value: 0, + lineAlpha: 0, + }, + ], + position: 'left', + }, + ], + startDuration: 1, + graphs: [ + { balloonText: '[[category]]: [[value]] m/s', bullet: 'round', fillAlphas: 0.3, valueField: 'value' }, + ], + categoryField: 'direction', + export: { enabled: !0 }, + }), + AmCharts.makeChart('kt_amcharts_11', { + type: 'radar', + theme: 'light', + dataProvider: [], + valueAxes: [{ gridType: 'circles', minimum: 0 }], + startDuration: 1, + polarScatter: { minimum: 0, maximum: 359, step: 1 }, + legend: { position: 'right' }, + graphs: [ + { + title: 'Trial #1', + balloonText: '[[category]]: [[value]] m/s', + bullet: 'round', + lineAlpha: 0, + series: [ + [83, 5.1], + [44, 5.8], + [76, 9], + [2, 1.4], + [100, 8.3], + [96, 1.7], + [68, 3.9], + [0, 3], + [100, 4.1], + [16, 5.5], + [71, 6.8], + [100, 7.9], + [9, 6.8], + [85, 8.3], + [51, 6.7], + [95, 3.8], + [95, 4.4], + [1, 0.2], + [107, 9.7], + [50, 4.2], + [42, 9.2], + [35, 8], + [44, 6], + [64, 0.7], + [53, 3.3], + [92, 4.1], + [43, 7.3], + [15, 7.5], + [43, 4.3], + [90, 9.9], + ], + }, + { + title: 'Trial #2', + balloonText: '[[category]]: [[value]] m/s', + bullet: 'round', + lineAlpha: 0, + series: [ + [178, 1.3], + [129, 3.4], + [99, 2.4], + [80, 9.9], + [118, 9.4], + [103, 8.7], + [91, 4.2], + [151, 1.2], + [168, 5.2], + [168, 1.6], + [152, 1.2], + [149, 3.4], + [182, 8.8], + [106, 6.7], + [111, 9.2], + [130, 6.3], + [147, 2.9], + [81, 8.1], + [138, 7.7], + [107, 3.9], + [124, 0.7], + [130, 2.6], + [86, 9.2], + [169, 7.5], + [122, 9.9], + [100, 3.8], + [172, 4.1], + [140, 7.3], + [161, 2.3], + [141, 0.9], + ], + }, + { + title: 'Trial #3', + balloonText: '[[category]]: [[value]] m/s', + bullet: 'round', + lineAlpha: 0, + series: [ + [419, 4.9], + [417, 5.5], + [434, 0.1], + [344, 2.5], + [279, 7.5], + [307, 8.4], + [279, 9], + [220, 8.4], + [204, 8], + [446, 0.9], + [397, 8.9], + [351, 1.7], + [393, 0.7], + [254, 1.8], + [260, 0.4], + [300, 3.5], + [199, 2.7], + [182, 5.8], + [173, 2], + [201, 9.7], + [288, 1.2], + [333, 7.4], + [308, 1.9], + [330, 8], + [408, 1.7], + [274, 0.8], + [296, 3.1], + [279, 4.3], + [379, 5.6], + [175, 6.8], + ], + }, + ], + export: { enabled: !0 }, + }), + AmCharts.makeChart('kt_amcharts_12', { + type: 'pie', + theme: 'light', + dataProvider: [ + { country: 'Lithuania', litres: 501.9 }, + { country: 'Czech Republic', litres: 301.9 }, + { country: 'Ireland', litres: 201.1 }, + { country: 'Germany', litres: 165.8 }, + { country: 'Australia', litres: 139.9 }, + { country: 'Austria', litres: 128.3 }, + { country: 'UK', litres: 99 }, + { country: 'Belgium', litres: 60 }, + { country: 'The Netherlands', litres: 50 }, + ], + valueField: 'litres', + titleField: 'country', + balloon: { fixedPosition: !0 }, + export: { enabled: !0 }, + }), + e(); + }, + }; +})(); +jQuery(document).ready(function() { + KTamChartsChartsDemo.init(); +}); diff --git a/src/assets/app/custom/general/components/charts/amcharts/maps.js b/src/assets/app/custom/general/components/charts/amcharts/maps.js index a00e817..2ecef1c 100644 --- a/src/assets/app/custom/general/components/charts/amcharts/maps.js +++ b/src/assets/app/custom/general/components/charts/amcharts/maps.js @@ -1 +1,407 @@ -"use strict";var KTamChartsMapsDemo={init:function(){var t,e;t="M9,0C4.029,0,0,4.029,0,9s4.029,9,9,9s9-4.029,9-9S13.971,0,9,0z M9,15.93 c-3.83,0-6.93-3.1-6.93-6.93S5.17,2.07,9,2.07s6.93,3.1,6.93,6.93S12.83,15.93,9,15.93 M12.5,9c0,1.933-1.567,3.5-3.5,3.5S5.5,10.933,5.5,9S7.067,5.5,9,5.5 S12.5,7.067,12.5,9z",e="m2,106h28l24,30h72l-44,-133h35l80,132h98c21,0 21,34 0,34l-98,0 -80,134h-35l43,-133h-71l-24,30h-28l15,-47",AmCharts.makeChart("kt_amcharts_1",{type:"map",theme:"light",dataProvider:{map:"worldLow",zoomLevel:3.5,zoomLongitude:-55,zoomLatitude:42,lines:[{id:"line1",arc:-.85,alpha:.3,latitudes:[48.8567,43.8163,34.3,23],longitudes:[2.351,-79.4287,-118.15,-82]},{id:"line2",alpha:0,color:"#000000",latitudes:[48.8567,43.8163,34.3,23],longitudes:[2.351,-79.4287,-118.15,-82]}],images:[{svgPath:t,title:"Paris",latitude:48.8567,longitude:2.351},{svgPath:t,title:"Toronto",latitude:43.8163,longitude:-79.4287},{svgPath:t,title:"Los Angeles",latitude:34.3,longitude:-118.15},{svgPath:t,title:"Havana",latitude:23,longitude:-82},{svgPath:e,positionOnLine:0,color:"#000000",alpha:.1,animateAlongLine:!0,lineId:"line2",flipDirection:!0,loop:!0,scale:.03,positionScale:1.3},{svgPath:e,positionOnLine:0,color:"#585869",animateAlongLine:!0,lineId:"line1",flipDirection:!0,loop:!0,scale:.03,positionScale:1.8}]},areasSettings:{unlistedAreasColor:"#8dd9ef"},imagesSettings:{color:"#585869",rollOverColor:"#585869",selectedColor:"#585869",pauseDuration:.2,animationDuration:2.5,adjustAnimationSpeed:!0},linesSettings:{color:"#585869",alpha:.4},export:{enabled:!0}}),function(){var t="M9,0C4.029,0,0,4.029,0,9s4.029,9,9,9s9-4.029,9-9S13.971,0,9,0z M9,15.93 c-3.83,0-6.93-3.1-6.93-6.93S5.17,2.07,9,2.07s6.93,3.1,6.93,6.93S12.83,15.93,9,15.93 M12.5,9c0,1.933-1.567,3.5-3.5,3.5S5.5,10.933,5.5,9S7.067,5.5,9,5.5 S12.5,7.067,12.5,9z";AmCharts.makeChart("kt_amcharts_2",{type:"map",theme:"light",dataProvider:{map:"worldLow",zoomLevel:3.5,zoomLongitude:-20.1341,zoomLatitude:49.1712,lines:[{latitudes:[51.5002,50.4422],longitudes:[-.1262,30.5367]},{latitudes:[51.5002,46.948],longitudes:[-.1262,7.4481]},{latitudes:[51.5002,59.3328],longitudes:[-.1262,18.0645]},{latitudes:[51.5002,40.4167],longitudes:[-.1262,-3.7033]},{latitudes:[51.5002,46.0514],longitudes:[-.1262,14.506]},{latitudes:[51.5002,48.2116],longitudes:[-.1262,17.1547]},{latitudes:[51.5002,44.8048],longitudes:[-.1262,20.4781]},{latitudes:[51.5002,55.7558],longitudes:[-.1262,37.6176]},{latitudes:[51.5002,38.7072],longitudes:[-.1262,-9.1355]},{latitudes:[51.5002,54.6896],longitudes:[-.1262,25.2799]},{latitudes:[51.5002,64.1353],longitudes:[-.1262,-21.8952]},{latitudes:[51.5002,40.43],longitudes:[-.1262,-74]}],images:[{id:"london",svgPath:t,title:"London",latitude:51.5002,longitude:-.1262,scale:1},{svgPath:t,title:"Brussels",latitude:50.8371,longitude:4.3676,scale:.5},{svgPath:t,title:"Prague",latitude:50.0878,longitude:14.4205,scale:.5},{svgPath:t,title:"Athens",latitude:37.9792,longitude:23.7166,scale:.5},{svgPath:t,title:"Reykjavik",latitude:64.1353,longitude:-21.8952,scale:.5},{svgPath:t,title:"Dublin",latitude:53.3441,longitude:-6.2675,scale:.5},{svgPath:t,title:"Oslo",latitude:59.9138,longitude:10.7387,scale:.5},{svgPath:t,title:"Lisbon",latitude:38.7072,longitude:-9.1355,scale:.5},{svgPath:t,title:"Moscow",latitude:55.7558,longitude:37.6176,scale:.5},{svgPath:t,title:"Belgrade",latitude:44.8048,longitude:20.4781,scale:.5},{svgPath:t,title:"Bratislava",latitude:48.2116,longitude:17.1547,scale:.5},{svgPath:t,title:"Ljubljana",latitude:46.0514,longitude:14.506,scale:.5},{svgPath:t,title:"Madrid",latitude:40.4167,longitude:-3.7033,scale:.5},{svgPath:t,title:"Stockholm",latitude:59.3328,longitude:18.0645,scale:.5},{svgPath:t,title:"Bern",latitude:46.948,longitude:7.4481,scale:.5},{svgPath:t,title:"Kiev",latitude:50.4422,longitude:30.5367,scale:.5},{svgPath:t,title:"Paris",latitude:48.8567,longitude:2.351,scale:.5},{svgPath:t,title:"New York",latitude:40.43,longitude:-74,scale:.5}]},areasSettings:{unlistedAreasColor:"#FFCC00",unlistedAreasAlpha:.9},imagesSettings:{color:"#CC0000",rollOverColor:"#CC0000",selectedColor:"#000000"},linesSettings:{arc:-.7,arrow:"middle",color:"#CC0000",alpha:.4,arrowAlpha:1,arrowSize:4},zoomControl:{gridHeight:100,draggerAlpha:1,gridAlpha:.2},backgroundZoomsToTop:!0,linesAboveImages:!0,export:{enabled:!0}})}(),AmCharts.makeChart("kt_amcharts_3",{type:"map",theme:"light",projection:"miller",dataProvider:{map:"worldLow",getAreasFromMap:!0},areasSettings:{autoZoom:!0,selectedColor:"#CC0000"},smallMap:{},export:{enabled:!0,position:"bottom-right"}}),function(){var t="M9,0C4.029,0,0,4.029,0,9s4.029,9,9,9s9-4.029,9-9S13.971,0,9,0z M9,15.93 c-3.83,0-6.93-3.1-6.93-6.93S5.17,2.07,9,2.07s6.93,3.1,6.93,6.93S12.83,15.93,9,15.93 M12.5,9c0,1.933-1.567,3.5-3.5,3.5S5.5,10.933,5.5,9S7.067,5.5,9,5.5 S12.5,7.067,12.5,9z",e="M19.671,8.11l-2.777,2.777l-3.837-0.861c0.362-0.505,0.916-1.683,0.464-2.135c-0.518-0.517-1.979,0.278-2.305,0.604l-0.913,0.913L7.614,8.804l-2.021,2.021l2.232,1.061l-0.082,0.082l1.701,1.701l0.688-0.687l3.164,1.504L9.571,18.21H6.413l-1.137,1.138l3.6,0.948l1.83,1.83l0.947,3.598l1.137-1.137V21.43l3.725-3.725l1.504,3.164l-0.687,0.687l1.702,1.701l0.081-0.081l1.062,2.231l2.02-2.02l-0.604-2.689l0.912-0.912c0.326-0.326,1.121-1.789,0.604-2.306c-0.452-0.452-1.63,0.101-2.135,0.464l-0.861-3.838l2.777-2.777c0.947-0.947,3.599-4.862,2.62-5.839C24.533,4.512,20.618,7.163,19.671,8.11z";AmCharts.makeChart("kt_amcharts_4",{type:"map",theme:"light",dataProvider:{map:"worldLow",linkToObject:"london",images:[{id:"london",color:"#000000",svgPath:t,title:"London",latitude:51.5002,longitude:-.1262,scale:1.5,zoomLevel:2.74,zoomLongitude:-20.1341,zoomLatitude:49.1712,lines:[{latitudes:[51.5002,50.4422],longitudes:[-.1262,30.5367]},{latitudes:[51.5002,46.948],longitudes:[-.1262,7.4481]},{latitudes:[51.5002,59.3328],longitudes:[-.1262,18.0645]},{latitudes:[51.5002,40.4167],longitudes:[-.1262,-3.7033]},{latitudes:[51.5002,46.0514],longitudes:[-.1262,14.506]},{latitudes:[51.5002,48.2116],longitudes:[-.1262,17.1547]},{latitudes:[51.5002,44.8048],longitudes:[-.1262,20.4781]},{latitudes:[51.5002,55.7558],longitudes:[-.1262,37.6176]},{latitudes:[51.5002,38.7072],longitudes:[-.1262,-9.1355]},{latitudes:[51.5002,54.6896],longitudes:[-.1262,25.2799]},{latitudes:[51.5002,64.1353],longitudes:[-.1262,-21.8952]},{latitudes:[51.5002,40.43],longitudes:[-.1262,-74]}],images:[{label:"Flights from London",svgPath:e,left:100,top:45,labelShiftY:5,color:"#CC0000",labelColor:"#CC0000",labelRollOverColor:"#CC0000",labelFontSize:20},{label:"show flights from Vilnius",left:106,top:70,labelColor:"#000000",labelRollOverColor:"#CC0000",labelFontSize:11,linkToObject:"vilnius"}]},{id:"vilnius",color:"#000000",svgPath:t,title:"Vilnius",latitude:54.6896,longitude:25.2799,scale:1.5,zoomLevel:4.92,zoomLongitude:15.4492,zoomLatitude:50.2631,lines:[{latitudes:[54.6896,50.8371],longitudes:[25.2799,4.3676]},{latitudes:[54.6896,59.9138],longitudes:[25.2799,10.7387]},{latitudes:[54.6896,40.4167],longitudes:[25.2799,-3.7033]},{latitudes:[54.6896,50.0878],longitudes:[25.2799,14.4205]},{latitudes:[54.6896,48.2116],longitudes:[25.2799,17.1547]},{latitudes:[54.6896,44.8048],longitudes:[25.2799,20.4781]},{latitudes:[54.6896,55.7558],longitudes:[25.2799,37.6176]},{latitudes:[54.6896,37.9792],longitudes:[25.2799,23.7166]},{latitudes:[54.6896,54.6896],longitudes:[25.2799,25.2799]},{latitudes:[54.6896,51.5002],longitudes:[25.2799,-.1262]},{latitudes:[54.6896,53.3441],longitudes:[25.2799,-6.2675]}],images:[{label:"Flights from Vilnius",svgPath:e,left:100,top:45,labelShiftY:5,color:"#CC0000",labelColor:"#CC0000",labelRollOverColor:"#CC0000",labelFontSize:20},{label:"show flights from London",left:106,top:70,labelColor:"#000000",labelRollOverColor:"#CC0000",labelFontSize:11,linkToObject:"london"}]},{svgPath:t,title:"Brussels",latitude:50.8371,longitude:4.3676},{svgPath:t,title:"Prague",latitude:50.0878,longitude:14.4205},{svgPath:t,title:"Athens",latitude:37.9792,longitude:23.7166},{svgPath:t,title:"Reykjavik",latitude:64.1353,longitude:-21.8952},{svgPath:t,title:"Dublin",latitude:53.3441,longitude:-6.2675},{svgPath:t,title:"Oslo",latitude:59.9138,longitude:10.7387},{svgPath:t,title:"Lisbon",latitude:38.7072,longitude:-9.1355},{svgPath:t,title:"Moscow",latitude:55.7558,longitude:37.6176},{svgPath:t,title:"Belgrade",latitude:44.8048,longitude:20.4781},{svgPath:t,title:"Bratislava",latitude:48.2116,longitude:17.1547},{svgPath:t,title:"Ljubljana",latitude:46.0514,longitude:14.506},{svgPath:t,title:"Madrid",latitude:40.4167,longitude:-3.7033},{svgPath:t,title:"Stockholm",latitude:59.3328,longitude:18.0645},{svgPath:t,title:"Bern",latitude:46.948,longitude:7.4481},{svgPath:t,title:"Kiev",latitude:50.4422,longitude:30.5367},{svgPath:t,title:"Paris",latitude:48.8567,longitude:2.351},{svgPath:t,title:"New York",latitude:40.43,longitude:-74}]},areasSettings:{unlistedAreasColor:"#FFCC00"},imagesSettings:{color:"#CC0000",rollOverColor:"#CC0000",selectedColor:"#000000"},linesSettings:{color:"#CC0000",alpha:.4},balloon:{drop:!0},backgroundZoomsToTop:!0,linesAboveImages:!0,export:{enabled:!0}})}(),AmCharts.makeChart("kt_amcharts_5",{type:"map",theme:"light",dataProvider:{map:"worldHigh",zoomLevel:3.5,zoomLongitude:10,zoomLatitude:52,areas:[{title:"Austria",id:"AT",color:"#67b7dc",customData:"1995",groupId:"before2004"},{title:"Ireland",id:"IE",color:"#67b7dc",customData:"1973",groupId:"before2004"},{title:"Denmark",id:"DK",color:"#67b7dc",customData:"1973",groupId:"before2004"},{title:"Finland",id:"FI",color:"#67b7dc",customData:"1995",groupId:"before2004"},{title:"Sweden",id:"SE",color:"#67b7dc",customData:"1995",groupId:"before2004"},{title:"Great Britain",id:"GB",color:"#67b7dc",customData:"1973",groupId:"before2004"},{title:"Italy",id:"IT",color:"#67b7dc",customData:"1957",groupId:"before2004"},{title:"France",id:"FR",color:"#67b7dc",customData:"1957",groupId:"before2004"},{title:"Spain",id:"ES",color:"#67b7dc",customData:"1986",groupId:"before2004"},{title:"Greece",id:"GR",color:"#67b7dc",customData:"1981",groupId:"before2004"},{title:"Germany",id:"DE",color:"#67b7dc",customData:"1957",groupId:"before2004"},{title:"Belgium",id:"BE",color:"#67b7dc",customData:"1957",groupId:"before2004"},{title:"Luxembourg",id:"LU",color:"#67b7dc",customData:"1957",groupId:"before2004"},{title:"Netherlands",id:"NL",color:"#67b7dc",customData:"1957",groupId:"before2004"},{title:"Portugal",id:"PT",color:"#67b7dc",customData:"1986",groupId:"before2004"},{title:"Lithuania",id:"LT",color:"#ebdb8b",customData:"2004",groupId:"2004"},{title:"Latvia",id:"LV",color:"#ebdb8b",customData:"2004",groupId:"2004"},{title:"Czech Republic ",id:"CZ",color:"#ebdb8b",customData:"2004",groupId:"2004"},{title:"Slovakia",id:"SK",color:"#ebdb8b",customData:"2004",groupId:"2004"},{title:"Slovenia",id:"SI",color:"#ebdb8b",customData:"2004",groupId:"2004"},{title:"Estonia",id:"EE",color:"#ebdb8b",customData:"2004",groupId:"2004"},{title:"Hungary",id:"HU",color:"#ebdb8b",customData:"2004",groupId:"2004"},{title:"Cyprus",id:"CY",color:"#ebdb8b",customData:"2004",groupId:"2004"},{title:"Malta",id:"MT",color:"#ebdb8b",customData:"2004",groupId:"2004"},{title:"Poland",id:"PL",color:"#ebdb8b",customData:"2004",groupId:"2004"},{title:"Romania",id:"RO",color:"#83c2ba",customData:"2007",groupId:"2007"},{title:"Bulgaria",id:"BG",color:"#83c2ba",customData:"2007",groupId:"2007"},{title:"Croatia",id:"HR",color:"#db8383",customData:"2013",groupId:"2013"}]},areasSettings:{rollOverOutlineColor:"#FFFFFF",rollOverColor:"#CC0000",alpha:.8,unlistedAreasAlpha:.1,balloonText:"[[title]] joined EU at [[customData]]"},legend:{width:"100%",marginRight:27,marginLeft:27,equalWidths:!1,backgroundAlpha:.5,backgroundColor:"#FFFFFF",borderColor:"#ffffff",borderAlpha:1,top:450,left:0,horizontalGap:10,data:[{title:"EU member before 2004",color:"#67b7dc"},{title:"Joined at 2004",color:"#ebdb8b"},{title:"Joined at 2007",color:"#83c2ba"},{title:"Joined at 2013",color:"#db8383"}]},export:{enabled:!0}}),AmCharts.makeChart("kt_amcharts_6",{type:"map",theme:"light",colorSteps:10,dataProvider:{map:"usaLow",areas:[{id:"US-AL",value:4447100},{id:"US-AK",value:626932},{id:"US-AZ",value:5130632},{id:"US-AR",value:2673400},{id:"US-CA",value:33871648},{id:"US-CO",value:4301261},{id:"US-CT",value:3405565},{id:"US-DE",value:783600},{id:"US-FL",value:15982378},{id:"US-GA",value:8186453},{id:"US-HI",value:1211537},{id:"US-ID",value:1293953},{id:"US-IL",value:12419293},{id:"US-IN",value:6080485},{id:"US-IA",value:2926324},{id:"US-KS",value:2688418},{id:"US-KY",value:4041769},{id:"US-LA",value:4468976},{id:"US-ME",value:1274923},{id:"US-MD",value:5296486},{id:"US-MA",value:6349097},{id:"US-MI",value:9938444},{id:"US-MN",value:4919479},{id:"US-MS",value:2844658},{id:"US-MO",value:5595211},{id:"US-MT",value:902195},{id:"US-NE",value:1711263},{id:"US-NV",value:1998257},{id:"US-NH",value:1235786},{id:"US-NJ",value:8414350},{id:"US-NM",value:1819046},{id:"US-NY",value:18976457},{id:"US-NC",value:8049313},{id:"US-ND",value:642200},{id:"US-OH",value:11353140},{id:"US-OK",value:3450654},{id:"US-OR",value:3421399},{id:"US-PA",value:12281054},{id:"US-RI",value:1048319},{id:"US-SC",value:4012012},{id:"US-SD",value:754844},{id:"US-TN",value:5689283},{id:"US-TX",value:20851820},{id:"US-UT",value:2233169},{id:"US-VT",value:608827},{id:"US-VA",value:7078515},{id:"US-WA",value:5894121},{id:"US-WV",value:1808344},{id:"US-WI",value:5363675},{id:"US-WY",value:493782}]},areasSettings:{autoZoom:!0},valueLegend:{right:10,minValue:"little",maxValue:"a lot!"},export:{enabled:!0}})}};jQuery(document).ready(function(){KTamChartsMapsDemo.init()}); \ No newline at end of file +'use strict'; +var KTamChartsMapsDemo = { + init: function() { + var t, e; + (t = + 'M9,0C4.029,0,0,4.029,0,9s4.029,9,9,9s9-4.029,9-9S13.971,0,9,0z M9,15.93 c-3.83,0-6.93-3.1-6.93-6.93S5.17,2.07,9,2.07s6.93,3.1,6.93,6.93S12.83,15.93,9,15.93 M12.5,9c0,1.933-1.567,3.5-3.5,3.5S5.5,10.933,5.5,9S7.067,5.5,9,5.5 S12.5,7.067,12.5,9z'), + (e = 'm2,106h28l24,30h72l-44,-133h35l80,132h98c21,0 21,34 0,34l-98,0 -80,134h-35l43,-133h-71l-24,30h-28l15,-47'), + AmCharts.makeChart('kt_amcharts_1', { + type: 'map', + theme: 'light', + dataProvider: { + map: 'worldLow', + zoomLevel: 3.5, + zoomLongitude: -55, + zoomLatitude: 42, + lines: [ + { + id: 'line1', + arc: -0.85, + alpha: 0.3, + latitudes: [48.8567, 43.8163, 34.3, 23], + longitudes: [2.351, -79.4287, -118.15, -82], + }, + { + id: 'line2', + alpha: 0, + color: '#000000', + latitudes: [48.8567, 43.8163, 34.3, 23], + longitudes: [2.351, -79.4287, -118.15, -82], + }, + ], + images: [ + { svgPath: t, title: 'Paris', latitude: 48.8567, longitude: 2.351 }, + { svgPath: t, title: 'Toronto', latitude: 43.8163, longitude: -79.4287 }, + { svgPath: t, title: 'Los Angeles', latitude: 34.3, longitude: -118.15 }, + { svgPath: t, title: 'Havana', latitude: 23, longitude: -82 }, + { + svgPath: e, + positionOnLine: 0, + color: '#000000', + alpha: 0.1, + animateAlongLine: !0, + lineId: 'line2', + flipDirection: !0, + loop: !0, + scale: 0.03, + positionScale: 1.3, + }, + { + svgPath: e, + positionOnLine: 0, + color: '#585869', + animateAlongLine: !0, + lineId: 'line1', + flipDirection: !0, + loop: !0, + scale: 0.03, + positionScale: 1.8, + }, + ], + }, + areasSettings: { unlistedAreasColor: '#8dd9ef' }, + imagesSettings: { + color: '#585869', + rollOverColor: '#585869', + selectedColor: '#585869', + pauseDuration: 0.2, + animationDuration: 2.5, + adjustAnimationSpeed: !0, + }, + linesSettings: { color: '#585869', alpha: 0.4 }, + export: { enabled: !0 }, + }), + (function() { + var t = + 'M9,0C4.029,0,0,4.029,0,9s4.029,9,9,9s9-4.029,9-9S13.971,0,9,0z M9,15.93 c-3.83,0-6.93-3.1-6.93-6.93S5.17,2.07,9,2.07s6.93,3.1,6.93,6.93S12.83,15.93,9,15.93 M12.5,9c0,1.933-1.567,3.5-3.5,3.5S5.5,10.933,5.5,9S7.067,5.5,9,5.5 S12.5,7.067,12.5,9z'; + AmCharts.makeChart('kt_amcharts_2', { + type: 'map', + theme: 'light', + dataProvider: { + map: 'worldLow', + zoomLevel: 3.5, + zoomLongitude: -20.1341, + zoomLatitude: 49.1712, + lines: [ + { latitudes: [51.5002, 50.4422], longitudes: [-0.1262, 30.5367] }, + { latitudes: [51.5002, 46.948], longitudes: [-0.1262, 7.4481] }, + { latitudes: [51.5002, 59.3328], longitudes: [-0.1262, 18.0645] }, + { latitudes: [51.5002, 40.4167], longitudes: [-0.1262, -3.7033] }, + { latitudes: [51.5002, 46.0514], longitudes: [-0.1262, 14.506] }, + { latitudes: [51.5002, 48.2116], longitudes: [-0.1262, 17.1547] }, + { latitudes: [51.5002, 44.8048], longitudes: [-0.1262, 20.4781] }, + { latitudes: [51.5002, 55.7558], longitudes: [-0.1262, 37.6176] }, + { latitudes: [51.5002, 38.7072], longitudes: [-0.1262, -9.1355] }, + { latitudes: [51.5002, 54.6896], longitudes: [-0.1262, 25.2799] }, + { latitudes: [51.5002, 64.1353], longitudes: [-0.1262, -21.8952] }, + { latitudes: [51.5002, 40.43], longitudes: [-0.1262, -74] }, + ], + images: [ + { id: 'london', svgPath: t, title: 'London', latitude: 51.5002, longitude: -0.1262, scale: 1 }, + { svgPath: t, title: 'Brussels', latitude: 50.8371, longitude: 4.3676, scale: 0.5 }, + { svgPath: t, title: 'Prague', latitude: 50.0878, longitude: 14.4205, scale: 0.5 }, + { svgPath: t, title: 'Athens', latitude: 37.9792, longitude: 23.7166, scale: 0.5 }, + { svgPath: t, title: 'Reykjavik', latitude: 64.1353, longitude: -21.8952, scale: 0.5 }, + { svgPath: t, title: 'Dublin', latitude: 53.3441, longitude: -6.2675, scale: 0.5 }, + { svgPath: t, title: 'Oslo', latitude: 59.9138, longitude: 10.7387, scale: 0.5 }, + { svgPath: t, title: 'Lisbon', latitude: 38.7072, longitude: -9.1355, scale: 0.5 }, + { svgPath: t, title: 'Moscow', latitude: 55.7558, longitude: 37.6176, scale: 0.5 }, + { svgPath: t, title: 'Belgrade', latitude: 44.8048, longitude: 20.4781, scale: 0.5 }, + { svgPath: t, title: 'Bratislava', latitude: 48.2116, longitude: 17.1547, scale: 0.5 }, + { svgPath: t, title: 'Ljubljana', latitude: 46.0514, longitude: 14.506, scale: 0.5 }, + { svgPath: t, title: 'Madrid', latitude: 40.4167, longitude: -3.7033, scale: 0.5 }, + { svgPath: t, title: 'Stockholm', latitude: 59.3328, longitude: 18.0645, scale: 0.5 }, + { svgPath: t, title: 'Bern', latitude: 46.948, longitude: 7.4481, scale: 0.5 }, + { svgPath: t, title: 'Kiev', latitude: 50.4422, longitude: 30.5367, scale: 0.5 }, + { svgPath: t, title: 'Paris', latitude: 48.8567, longitude: 2.351, scale: 0.5 }, + { svgPath: t, title: 'New York', latitude: 40.43, longitude: -74, scale: 0.5 }, + ], + }, + areasSettings: { unlistedAreasColor: '#FFCC00', unlistedAreasAlpha: 0.9 }, + imagesSettings: { color: '#CC0000', rollOverColor: '#CC0000', selectedColor: '#000000' }, + linesSettings: { arc: -0.7, arrow: 'middle', color: '#CC0000', alpha: 0.4, arrowAlpha: 1, arrowSize: 4 }, + zoomControl: { gridHeight: 100, draggerAlpha: 1, gridAlpha: 0.2 }, + backgroundZoomsToTop: !0, + linesAboveImages: !0, + export: { enabled: !0 }, + }); + })(), + AmCharts.makeChart('kt_amcharts_3', { + type: 'map', + theme: 'light', + projection: 'miller', + dataProvider: { map: 'worldLow', getAreasFromMap: !0 }, + areasSettings: { autoZoom: !0, selectedColor: '#CC0000' }, + smallMap: {}, + export: { enabled: !0, position: 'bottom-right' }, + }), + (function() { + var t = + 'M9,0C4.029,0,0,4.029,0,9s4.029,9,9,9s9-4.029,9-9S13.971,0,9,0z M9,15.93 c-3.83,0-6.93-3.1-6.93-6.93S5.17,2.07,9,2.07s6.93,3.1,6.93,6.93S12.83,15.93,9,15.93 M12.5,9c0,1.933-1.567,3.5-3.5,3.5S5.5,10.933,5.5,9S7.067,5.5,9,5.5 S12.5,7.067,12.5,9z', + e = + 'M19.671,8.11l-2.777,2.777l-3.837-0.861c0.362-0.505,0.916-1.683,0.464-2.135c-0.518-0.517-1.979,0.278-2.305,0.604l-0.913,0.913L7.614,8.804l-2.021,2.021l2.232,1.061l-0.082,0.082l1.701,1.701l0.688-0.687l3.164,1.504L9.571,18.21H6.413l-1.137,1.138l3.6,0.948l1.83,1.83l0.947,3.598l1.137-1.137V21.43l3.725-3.725l1.504,3.164l-0.687,0.687l1.702,1.701l0.081-0.081l1.062,2.231l2.02-2.02l-0.604-2.689l0.912-0.912c0.326-0.326,1.121-1.789,0.604-2.306c-0.452-0.452-1.63,0.101-2.135,0.464l-0.861-3.838l2.777-2.777c0.947-0.947,3.599-4.862,2.62-5.839C24.533,4.512,20.618,7.163,19.671,8.11z'; + AmCharts.makeChart('kt_amcharts_4', { + type: 'map', + theme: 'light', + dataProvider: { + map: 'worldLow', + linkToObject: 'london', + images: [ + { + id: 'london', + color: '#000000', + svgPath: t, + title: 'London', + latitude: 51.5002, + longitude: -0.1262, + scale: 1.5, + zoomLevel: 2.74, + zoomLongitude: -20.1341, + zoomLatitude: 49.1712, + lines: [ + { latitudes: [51.5002, 50.4422], longitudes: [-0.1262, 30.5367] }, + { latitudes: [51.5002, 46.948], longitudes: [-0.1262, 7.4481] }, + { latitudes: [51.5002, 59.3328], longitudes: [-0.1262, 18.0645] }, + { latitudes: [51.5002, 40.4167], longitudes: [-0.1262, -3.7033] }, + { latitudes: [51.5002, 46.0514], longitudes: [-0.1262, 14.506] }, + { latitudes: [51.5002, 48.2116], longitudes: [-0.1262, 17.1547] }, + { latitudes: [51.5002, 44.8048], longitudes: [-0.1262, 20.4781] }, + { latitudes: [51.5002, 55.7558], longitudes: [-0.1262, 37.6176] }, + { latitudes: [51.5002, 38.7072], longitudes: [-0.1262, -9.1355] }, + { latitudes: [51.5002, 54.6896], longitudes: [-0.1262, 25.2799] }, + { latitudes: [51.5002, 64.1353], longitudes: [-0.1262, -21.8952] }, + { latitudes: [51.5002, 40.43], longitudes: [-0.1262, -74] }, + ], + images: [ + { + label: 'Flights from London', + svgPath: e, + left: 100, + top: 45, + labelShiftY: 5, + color: '#CC0000', + labelColor: '#CC0000', + labelRollOverColor: '#CC0000', + labelFontSize: 20, + }, + { + label: 'show flights from Vilnius', + left: 106, + top: 70, + labelColor: '#000000', + labelRollOverColor: '#CC0000', + labelFontSize: 11, + linkToObject: 'vilnius', + }, + ], + }, + { + id: 'vilnius', + color: '#000000', + svgPath: t, + title: 'Vilnius', + latitude: 54.6896, + longitude: 25.2799, + scale: 1.5, + zoomLevel: 4.92, + zoomLongitude: 15.4492, + zoomLatitude: 50.2631, + lines: [ + { latitudes: [54.6896, 50.8371], longitudes: [25.2799, 4.3676] }, + { latitudes: [54.6896, 59.9138], longitudes: [25.2799, 10.7387] }, + { latitudes: [54.6896, 40.4167], longitudes: [25.2799, -3.7033] }, + { latitudes: [54.6896, 50.0878], longitudes: [25.2799, 14.4205] }, + { latitudes: [54.6896, 48.2116], longitudes: [25.2799, 17.1547] }, + { latitudes: [54.6896, 44.8048], longitudes: [25.2799, 20.4781] }, + { latitudes: [54.6896, 55.7558], longitudes: [25.2799, 37.6176] }, + { latitudes: [54.6896, 37.9792], longitudes: [25.2799, 23.7166] }, + { latitudes: [54.6896, 54.6896], longitudes: [25.2799, 25.2799] }, + { latitudes: [54.6896, 51.5002], longitudes: [25.2799, -0.1262] }, + { latitudes: [54.6896, 53.3441], longitudes: [25.2799, -6.2675] }, + ], + images: [ + { + label: 'Flights from Vilnius', + svgPath: e, + left: 100, + top: 45, + labelShiftY: 5, + color: '#CC0000', + labelColor: '#CC0000', + labelRollOverColor: '#CC0000', + labelFontSize: 20, + }, + { + label: 'show flights from London', + left: 106, + top: 70, + labelColor: '#000000', + labelRollOverColor: '#CC0000', + labelFontSize: 11, + linkToObject: 'london', + }, + ], + }, + { svgPath: t, title: 'Brussels', latitude: 50.8371, longitude: 4.3676 }, + { svgPath: t, title: 'Prague', latitude: 50.0878, longitude: 14.4205 }, + { svgPath: t, title: 'Athens', latitude: 37.9792, longitude: 23.7166 }, + { svgPath: t, title: 'Reykjavik', latitude: 64.1353, longitude: -21.8952 }, + { svgPath: t, title: 'Dublin', latitude: 53.3441, longitude: -6.2675 }, + { svgPath: t, title: 'Oslo', latitude: 59.9138, longitude: 10.7387 }, + { svgPath: t, title: 'Lisbon', latitude: 38.7072, longitude: -9.1355 }, + { svgPath: t, title: 'Moscow', latitude: 55.7558, longitude: 37.6176 }, + { svgPath: t, title: 'Belgrade', latitude: 44.8048, longitude: 20.4781 }, + { svgPath: t, title: 'Bratislava', latitude: 48.2116, longitude: 17.1547 }, + { svgPath: t, title: 'Ljubljana', latitude: 46.0514, longitude: 14.506 }, + { svgPath: t, title: 'Madrid', latitude: 40.4167, longitude: -3.7033 }, + { svgPath: t, title: 'Stockholm', latitude: 59.3328, longitude: 18.0645 }, + { svgPath: t, title: 'Bern', latitude: 46.948, longitude: 7.4481 }, + { svgPath: t, title: 'Kiev', latitude: 50.4422, longitude: 30.5367 }, + { svgPath: t, title: 'Paris', latitude: 48.8567, longitude: 2.351 }, + { svgPath: t, title: 'New York', latitude: 40.43, longitude: -74 }, + ], + }, + areasSettings: { unlistedAreasColor: '#FFCC00' }, + imagesSettings: { color: '#CC0000', rollOverColor: '#CC0000', selectedColor: '#000000' }, + linesSettings: { color: '#CC0000', alpha: 0.4 }, + balloon: { drop: !0 }, + backgroundZoomsToTop: !0, + linesAboveImages: !0, + export: { enabled: !0 }, + }); + })(), + AmCharts.makeChart('kt_amcharts_5', { + type: 'map', + theme: 'light', + dataProvider: { + map: 'worldHigh', + zoomLevel: 3.5, + zoomLongitude: 10, + zoomLatitude: 52, + areas: [ + { title: 'Austria', id: 'AT', color: '#67b7dc', customData: '1995', groupId: 'before2004' }, + { title: 'Ireland', id: 'IE', color: '#67b7dc', customData: '1973', groupId: 'before2004' }, + { title: 'Denmark', id: 'DK', color: '#67b7dc', customData: '1973', groupId: 'before2004' }, + { title: 'Finland', id: 'FI', color: '#67b7dc', customData: '1995', groupId: 'before2004' }, + { title: 'Sweden', id: 'SE', color: '#67b7dc', customData: '1995', groupId: 'before2004' }, + { title: 'Great Britain', id: 'GB', color: '#67b7dc', customData: '1973', groupId: 'before2004' }, + { title: 'Italy', id: 'IT', color: '#67b7dc', customData: '1957', groupId: 'before2004' }, + { title: 'France', id: 'FR', color: '#67b7dc', customData: '1957', groupId: 'before2004' }, + { title: 'Spain', id: 'ES', color: '#67b7dc', customData: '1986', groupId: 'before2004' }, + { title: 'Greece', id: 'GR', color: '#67b7dc', customData: '1981', groupId: 'before2004' }, + { title: 'Germany', id: 'DE', color: '#67b7dc', customData: '1957', groupId: 'before2004' }, + { title: 'Belgium', id: 'BE', color: '#67b7dc', customData: '1957', groupId: 'before2004' }, + { title: 'Luxembourg', id: 'LU', color: '#67b7dc', customData: '1957', groupId: 'before2004' }, + { title: 'Netherlands', id: 'NL', color: '#67b7dc', customData: '1957', groupId: 'before2004' }, + { title: 'Portugal', id: 'PT', color: '#67b7dc', customData: '1986', groupId: 'before2004' }, + { title: 'Lithuania', id: 'LT', color: '#ebdb8b', customData: '2004', groupId: '2004' }, + { title: 'Latvia', id: 'LV', color: '#ebdb8b', customData: '2004', groupId: '2004' }, + { title: 'Czech Republic ', id: 'CZ', color: '#ebdb8b', customData: '2004', groupId: '2004' }, + { title: 'Slovakia', id: 'SK', color: '#ebdb8b', customData: '2004', groupId: '2004' }, + { title: 'Slovenia', id: 'SI', color: '#ebdb8b', customData: '2004', groupId: '2004' }, + { title: 'Estonia', id: 'EE', color: '#ebdb8b', customData: '2004', groupId: '2004' }, + { title: 'Hungary', id: 'HU', color: '#ebdb8b', customData: '2004', groupId: '2004' }, + { title: 'Cyprus', id: 'CY', color: '#ebdb8b', customData: '2004', groupId: '2004' }, + { title: 'Malta', id: 'MT', color: '#ebdb8b', customData: '2004', groupId: '2004' }, + { title: 'Poland', id: 'PL', color: '#ebdb8b', customData: '2004', groupId: '2004' }, + { title: 'Romania', id: 'RO', color: '#83c2ba', customData: '2007', groupId: '2007' }, + { title: 'Bulgaria', id: 'BG', color: '#83c2ba', customData: '2007', groupId: '2007' }, + { title: 'Croatia', id: 'HR', color: '#db8383', customData: '2013', groupId: '2013' }, + ], + }, + areasSettings: { + rollOverOutlineColor: '#FFFFFF', + rollOverColor: '#CC0000', + alpha: 0.8, + unlistedAreasAlpha: 0.1, + balloonText: '[[title]] joined EU at [[customData]]', + }, + legend: { + width: '100%', + marginRight: 27, + marginLeft: 27, + equalWidths: !1, + backgroundAlpha: 0.5, + backgroundColor: '#FFFFFF', + borderColor: '#ffffff', + borderAlpha: 1, + top: 450, + left: 0, + horizontalGap: 10, + data: [ + { title: 'EU member before 2004', color: '#67b7dc' }, + { title: 'Joined at 2004', color: '#ebdb8b' }, + { title: 'Joined at 2007', color: '#83c2ba' }, + { title: 'Joined at 2013', color: '#db8383' }, + ], + }, + export: { enabled: !0 }, + }), + AmCharts.makeChart('kt_amcharts_6', { + type: 'map', + theme: 'light', + colorSteps: 10, + dataProvider: { + map: 'usaLow', + areas: [ + { id: 'US-AL', value: 4447100 }, + { id: 'US-AK', value: 626932 }, + { id: 'US-AZ', value: 5130632 }, + { id: 'US-AR', value: 2673400 }, + { id: 'US-CA', value: 33871648 }, + { id: 'US-CO', value: 4301261 }, + { id: 'US-CT', value: 3405565 }, + { id: 'US-DE', value: 783600 }, + { id: 'US-FL', value: 15982378 }, + { id: 'US-GA', value: 8186453 }, + { id: 'US-HI', value: 1211537 }, + { id: 'US-ID', value: 1293953 }, + { id: 'US-IL', value: 12419293 }, + { id: 'US-IN', value: 6080485 }, + { id: 'US-IA', value: 2926324 }, + { id: 'US-KS', value: 2688418 }, + { id: 'US-KY', value: 4041769 }, + { id: 'US-LA', value: 4468976 }, + { id: 'US-ME', value: 1274923 }, + { id: 'US-MD', value: 5296486 }, + { id: 'US-MA', value: 6349097 }, + { id: 'US-MI', value: 9938444 }, + { id: 'US-MN', value: 4919479 }, + { id: 'US-MS', value: 2844658 }, + { id: 'US-MO', value: 5595211 }, + { id: 'US-MT', value: 902195 }, + { id: 'US-NE', value: 1711263 }, + { id: 'US-NV', value: 1998257 }, + { id: 'US-NH', value: 1235786 }, + { id: 'US-NJ', value: 8414350 }, + { id: 'US-NM', value: 1819046 }, + { id: 'US-NY', value: 18976457 }, + { id: 'US-NC', value: 8049313 }, + { id: 'US-ND', value: 642200 }, + { id: 'US-OH', value: 11353140 }, + { id: 'US-OK', value: 3450654 }, + { id: 'US-OR', value: 3421399 }, + { id: 'US-PA', value: 12281054 }, + { id: 'US-RI', value: 1048319 }, + { id: 'US-SC', value: 4012012 }, + { id: 'US-SD', value: 754844 }, + { id: 'US-TN', value: 5689283 }, + { id: 'US-TX', value: 20851820 }, + { id: 'US-UT', value: 2233169 }, + { id: 'US-VT', value: 608827 }, + { id: 'US-VA', value: 7078515 }, + { id: 'US-WA', value: 5894121 }, + { id: 'US-WV', value: 1808344 }, + { id: 'US-WI', value: 5363675 }, + { id: 'US-WY', value: 493782 }, + ], + }, + areasSettings: { autoZoom: !0 }, + valueLegend: { right: 10, minValue: 'little', maxValue: 'a lot!' }, + export: { enabled: !0 }, + }); + }, +}; +jQuery(document).ready(function() { + KTamChartsMapsDemo.init(); +}); diff --git a/src/assets/app/custom/general/components/charts/amcharts/stock-charts.js b/src/assets/app/custom/general/components/charts/amcharts/stock-charts.js index 373c3eb..ca06c73 100644 --- a/src/assets/app/custom/general/components/charts/amcharts/stock-charts.js +++ b/src/assets/app/custom/general/components/charts/amcharts/stock-charts.js @@ -1 +1,471 @@ -"use strict";var KTamChartsStockChartsDemo={init:function(){var e,t,a,o,l;t=[],a=[],o=[],l=[],function(){var e=new Date;e.setDate(e.getDate()-500),e.setHours(0,0,0,0);for(var r=0;r<500;r++){var i=new Date(e);i.setDate(i.getDate()+r);var d=Math.round(Math.random()*(40+r))+100+r,n=Math.round(Math.random()*(1e3+r))+500+2*r,s=Math.round(Math.random()*(100+r))+200+r,u=Math.round(Math.random()*(1e3+r))+600+2*r,p=Math.round(Math.random()*(100+r))+200,h=Math.round(Math.random()*(1e3+r))+600+2*r,c=Math.round(Math.random()*(100+r))+200+r,g=Math.round(Math.random()*(100+r))+600+r;t.push({date:i,value:d,volume:n}),a.push({date:i,value:s,volume:u}),o.push({date:i,value:p,volume:h}),l.push({date:i,value:c,volume:g})}}(),AmCharts.makeChart("kt_amcharts_1",{rtl:KTUtil.isRTL(),type:"stock",theme:"light",dataSets:[{title:"first data set",fieldMappings:[{fromField:"value",toField:"value"},{fromField:"volume",toField:"volume"}],dataProvider:t,categoryField:"date"},{title:"second data set",fieldMappings:[{fromField:"value",toField:"value"},{fromField:"volume",toField:"volume"}],dataProvider:a,categoryField:"date"},{title:"third data set",fieldMappings:[{fromField:"value",toField:"value"},{fromField:"volume",toField:"volume"}],dataProvider:o,categoryField:"date"},{title:"fourth data set",fieldMappings:[{fromField:"value",toField:"value"},{fromField:"volume",toField:"volume"}],dataProvider:l,categoryField:"date"}],panels:[{showCategoryAxis:!1,title:"Value",percentHeight:70,stockGraphs:[{id:"g1",valueField:"value",comparable:!0,compareField:"value",balloonText:"[[title]]:[[value]]",compareGraphBalloonText:"[[title]]:[[value]]"}],stockLegend:{periodValueTextComparing:"[[percents.value.close]]%",periodValueTextRegular:"[[value.close]]"}},{title:"Volume",percentHeight:30,stockGraphs:[{valueField:"volume",type:"column",showBalloon:!1,fillAlphas:1}],stockLegend:{periodValueTextRegular:"[[value.close]]"}}],chartScrollbarSettings:{graph:"g1"},chartCursorSettings:{valueBalloonsEnabled:!0,fullWidth:!0,cursorAlpha:.1,valueLineBalloonEnabled:!0,valueLineEnabled:!0,valueLineAlpha:.5},periodSelector:{position:"left",periods:[{period:"MM",selected:!0,count:1,label:"1 month"},{period:"YYYY",count:1,label:"1 year"},{period:"YTD",label:"YTD"},{period:"MAX",label:"MAX"}]},dataSetSelector:{position:"left"},export:{enabled:!0}}),e=[],function(){var t=new Date(2012,0,1);t.setDate(t.getDate()-500),t.setHours(0,0,0,0);for(var a=0;a<500;a++){var o=new Date(t);o.setDate(o.getDate()+a);var l=Math.round(Math.random()*(40+a))+100+a,r=Math.round(1e8*Math.random());e.push({date:o,value:l,volume:r})}}(),AmCharts.makeChart("kt_amcharts_2",{type:"stock",theme:"light",dataSets:[{color:"#b0de09",fieldMappings:[{fromField:"value",toField:"value"},{fromField:"volume",toField:"volume"}],dataProvider:e,categoryField:"date",stockEvents:[{date:new Date(2010,8,19),type:"sign",backgroundColor:"#85CDE6",graph:"g1",text:"S",description:"This is description of an event"},{date:new Date(2010,10,19),type:"flag",backgroundColor:"#FFFFFF",backgroundAlpha:.5,graph:"g1",text:"F",description:"Some longer\ntext can also\n be added"},{date:new Date(2010,11,10),showOnAxis:!0,backgroundColor:"#85CDE6",type:"pin",text:"X",graph:"g1",description:"This is description of an event"},{date:new Date(2010,11,26),showOnAxis:!0,backgroundColor:"#85CDE6",type:"pin",text:"Z",graph:"g1",description:"This is description of an event"},{date:new Date(2011,0,3),type:"sign",backgroundColor:"#85CDE6",graph:"g1",text:"U",description:"This is description of an event"},{date:new Date(2011,1,6),type:"sign",graph:"g1",text:"D",description:"This is description of an event"},{date:new Date(2011,3,5),type:"sign",graph:"g1",text:"L",description:"This is description of an event"},{date:new Date(2011,3,5),type:"sign",graph:"g1",text:"R",description:"This is description of an event"},{date:new Date(2011,5,15),type:"arrowUp",backgroundColor:"#00CC00",graph:"g1",description:"This is description of an event"},{date:new Date(2011,6,25),type:"arrowDown",backgroundColor:"#CC0000",graph:"g1",description:"This is description of an event"},{date:new Date(2011,8,1),type:"text",graph:"g1",text:"Longer text can\nalso be displayed",description:"This is description of an event"}]}],panels:[{title:"Value",stockGraphs:[{id:"g1",valueField:"value"}],stockLegend:{valueTextRegular:" ",markerType:"none"}}],chartScrollbarSettings:{graph:"g1"},chartCursorSettings:{valueBalloonsEnabled:!0,graphBulletSize:1,valueLineBalloonEnabled:!0,valueLineEnabled:!0,valueLineAlpha:.5},periodSelector:{periods:[{period:"DD",count:10,label:"10 days"},{period:"MM",count:1,label:"1 month"},{period:"YYYY",count:1,label:"1 year"},{period:"YTD",label:"YTD"},{period:"MAX",label:"MAX"}]},panelsSettings:{usePrefixes:!0},export:{enabled:!0}}),function(){var e=function(){var e=[],t=new Date(2012,0,1);t.setDate(t.getDate()-500),t.setHours(0,0,0,0);for(var a=0;a<500;a++){var o=new Date(t);o.setDate(o.getDate()+a);var l=Math.round(Math.random()*(40+a))+100+a;e.push({date:o,value:l})}return e}();AmCharts.makeChart("kt_amcharts_3",{type:"stock",theme:"light",dataSets:[{color:"#b0de09",fieldMappings:[{fromField:"value",toField:"value"}],dataProvider:e,categoryField:"date"}],panels:[{showCategoryAxis:!0,title:"Value",eraseAll:!1,allLabels:[{x:0,y:115,text:"Click on the pencil icon on top-right to start drawing",align:"center",size:16}],stockGraphs:[{id:"g1",valueField:"value",useDataSetColors:!1}],stockLegend:{valueTextRegular:" ",markerType:"none"},drawingIconsEnabled:!0}],chartScrollbarSettings:{graph:"g1"},chartCursorSettings:{valueBalloonsEnabled:!0},periodSelector:{position:"bottom",periods:[{period:"DD",count:10,label:"10 days"},{period:"MM",count:1,label:"1 month"},{period:"YYYY",count:1,label:"1 year"},{period:"YTD",label:"YTD"},{period:"MAX",label:"MAX"}]}})}(),function(){var e=function(){var e=[],t=new Date(2012,0,1);t.setDate(t.getDate()-1e3),t.setHours(0,0,0,0);for(var a=0;a<1e3;a++){var o=new Date(t);o.setHours(0,a,0,0);var l=Math.round(Math.random()*(40+a))+100+a,r=Math.round(1e8*Math.random());e.push({date:o,value:l,volume:r})}return e}();AmCharts.makeChart("kt_amcharts_4",{type:"stock",theme:"light",categoryAxesSettings:{minPeriod:"mm"},dataSets:[{color:"#b0de09",fieldMappings:[{fromField:"value",toField:"value"},{fromField:"volume",toField:"volume"}],dataProvider:e,categoryField:"date"}],panels:[{showCategoryAxis:!1,title:"Value",percentHeight:70,stockGraphs:[{id:"g1",valueField:"value",type:"smoothedLine",lineThickness:2,bullet:"round"}],stockLegend:{valueTextRegular:" ",markerType:"none"}},{title:"Volume",percentHeight:30,stockGraphs:[{valueField:"volume",type:"column",cornerRadiusTop:2,fillAlphas:1}],stockLegend:{valueTextRegular:" ",markerType:"none"}}],chartScrollbarSettings:{graph:"g1",usePeriod:"10mm",position:"top"},chartCursorSettings:{valueBalloonsEnabled:!0},periodSelector:{position:"top",dateFormat:"YYYY-MM-DD JJ:NN",inputFieldWidth:150,periods:[{period:"hh",count:1,label:"1 hour",selected:!0},{period:"hh",count:2,label:"2 hours"},{period:"hh",count:5,label:"5 hour"},{period:"hh",count:12,label:"12 hours"},{period:"MAX",label:"MAX"}]},panelsSettings:{usePrefixes:!0},export:{enabled:!0,position:"bottom-right"}})}(),function(){var e=[];!function(){var t=new Date;t.setHours(0,0,0,0),t.setDate(t.getDate()-2e3);for(var a=0;a<2e3;a++){var o=new Date(t);o.setDate(o.getDate()+a);var l,r,i=Math.round(30*Math.random()+100),d=i+Math.round(15*Math.random()-10*Math.random());l=i[[value]]', + compareGraphBalloonText: '[[title]]:[[value]]', + }, + ], + stockLegend: { + periodValueTextComparing: '[[percents.value.close]]%', + periodValueTextRegular: '[[value.close]]', + }, + }, + { + title: 'Volume', + percentHeight: 30, + stockGraphs: [{ valueField: 'volume', type: 'column', showBalloon: !1, fillAlphas: 1 }], + stockLegend: { periodValueTextRegular: '[[value.close]]' }, + }, + ], + chartScrollbarSettings: { graph: 'g1' }, + chartCursorSettings: { + valueBalloonsEnabled: !0, + fullWidth: !0, + cursorAlpha: 0.1, + valueLineBalloonEnabled: !0, + valueLineEnabled: !0, + valueLineAlpha: 0.5, + }, + periodSelector: { + position: 'left', + periods: [ + { period: 'MM', selected: !0, count: 1, label: '1 month' }, + { period: 'YYYY', count: 1, label: '1 year' }, + { period: 'YTD', label: 'YTD' }, + { period: 'MAX', label: 'MAX' }, + ], + }, + dataSetSelector: { position: 'left' }, + export: { enabled: !0 }, + }), + (e = []), + (function() { + var t = new Date(2012, 0, 1); + t.setDate(t.getDate() - 500), t.setHours(0, 0, 0, 0); + for (var a = 0; a < 500; a++) { + var o = new Date(t); + o.setDate(o.getDate() + a); + var l = Math.round(Math.random() * (40 + a)) + 100 + a, + r = Math.round(1e8 * Math.random()); + e.push({ date: o, value: l, volume: r }); + } + })(), + AmCharts.makeChart('kt_amcharts_2', { + type: 'stock', + theme: 'light', + dataSets: [ + { + color: '#b0de09', + fieldMappings: [{ fromField: 'value', toField: 'value' }, { fromField: 'volume', toField: 'volume' }], + dataProvider: e, + categoryField: 'date', + stockEvents: [ + { + date: new Date(2010, 8, 19), + type: 'sign', + backgroundColor: '#85CDE6', + graph: 'g1', + text: 'S', + description: 'This is description of an event', + }, + { + date: new Date(2010, 10, 19), + type: 'flag', + backgroundColor: '#FFFFFF', + backgroundAlpha: 0.5, + graph: 'g1', + text: 'F', + description: 'Some longer\ntext can also\n be added', + }, + { + date: new Date(2010, 11, 10), + showOnAxis: !0, + backgroundColor: '#85CDE6', + type: 'pin', + text: 'X', + graph: 'g1', + description: 'This is description of an event', + }, + { + date: new Date(2010, 11, 26), + showOnAxis: !0, + backgroundColor: '#85CDE6', + type: 'pin', + text: 'Z', + graph: 'g1', + description: 'This is description of an event', + }, + { + date: new Date(2011, 0, 3), + type: 'sign', + backgroundColor: '#85CDE6', + graph: 'g1', + text: 'U', + description: 'This is description of an event', + }, + { + date: new Date(2011, 1, 6), + type: 'sign', + graph: 'g1', + text: 'D', + description: 'This is description of an event', + }, + { + date: new Date(2011, 3, 5), + type: 'sign', + graph: 'g1', + text: 'L', + description: 'This is description of an event', + }, + { + date: new Date(2011, 3, 5), + type: 'sign', + graph: 'g1', + text: 'R', + description: 'This is description of an event', + }, + { + date: new Date(2011, 5, 15), + type: 'arrowUp', + backgroundColor: '#00CC00', + graph: 'g1', + description: 'This is description of an event', + }, + { + date: new Date(2011, 6, 25), + type: 'arrowDown', + backgroundColor: '#CC0000', + graph: 'g1', + description: 'This is description of an event', + }, + { + date: new Date(2011, 8, 1), + type: 'text', + graph: 'g1', + text: 'Longer text can\nalso be displayed', + description: 'This is description of an event', + }, + ], + }, + ], + panels: [ + { + title: 'Value', + stockGraphs: [{ id: 'g1', valueField: 'value' }], + stockLegend: { valueTextRegular: ' ', markerType: 'none' }, + }, + ], + chartScrollbarSettings: { graph: 'g1' }, + chartCursorSettings: { + valueBalloonsEnabled: !0, + graphBulletSize: 1, + valueLineBalloonEnabled: !0, + valueLineEnabled: !0, + valueLineAlpha: 0.5, + }, + periodSelector: { + periods: [ + { period: 'DD', count: 10, label: '10 days' }, + { period: 'MM', count: 1, label: '1 month' }, + { period: 'YYYY', count: 1, label: '1 year' }, + { period: 'YTD', label: 'YTD' }, + { period: 'MAX', label: 'MAX' }, + ], + }, + panelsSettings: { usePrefixes: !0 }, + export: { enabled: !0 }, + }), + (function() { + var e = (function() { + var e = [], + t = new Date(2012, 0, 1); + t.setDate(t.getDate() - 500), t.setHours(0, 0, 0, 0); + for (var a = 0; a < 500; a++) { + var o = new Date(t); + o.setDate(o.getDate() + a); + var l = Math.round(Math.random() * (40 + a)) + 100 + a; + e.push({ date: o, value: l }); + } + return e; + })(); + AmCharts.makeChart('kt_amcharts_3', { + type: 'stock', + theme: 'light', + dataSets: [ + { + color: '#b0de09', + fieldMappings: [{ fromField: 'value', toField: 'value' }], + dataProvider: e, + categoryField: 'date', + }, + ], + panels: [ + { + showCategoryAxis: !0, + title: 'Value', + eraseAll: !1, + allLabels: [ + { + x: 0, + y: 115, + text: 'Click on the pencil icon on top-right to start drawing', + align: 'center', + size: 16, + }, + ], + stockGraphs: [{ id: 'g1', valueField: 'value', useDataSetColors: !1 }], + stockLegend: { valueTextRegular: ' ', markerType: 'none' }, + drawingIconsEnabled: !0, + }, + ], + chartScrollbarSettings: { graph: 'g1' }, + chartCursorSettings: { valueBalloonsEnabled: !0 }, + periodSelector: { + position: 'bottom', + periods: [ + { period: 'DD', count: 10, label: '10 days' }, + { period: 'MM', count: 1, label: '1 month' }, + { period: 'YYYY', count: 1, label: '1 year' }, + { period: 'YTD', label: 'YTD' }, + { period: 'MAX', label: 'MAX' }, + ], + }, + }); + })(), + (function() { + var e = (function() { + var e = [], + t = new Date(2012, 0, 1); + t.setDate(t.getDate() - 1e3), t.setHours(0, 0, 0, 0); + for (var a = 0; a < 1e3; a++) { + var o = new Date(t); + o.setHours(0, a, 0, 0); + var l = Math.round(Math.random() * (40 + a)) + 100 + a, + r = Math.round(1e8 * Math.random()); + e.push({ date: o, value: l, volume: r }); + } + return e; + })(); + AmCharts.makeChart('kt_amcharts_4', { + type: 'stock', + theme: 'light', + categoryAxesSettings: { minPeriod: 'mm' }, + dataSets: [ + { + color: '#b0de09', + fieldMappings: [{ fromField: 'value', toField: 'value' }, { fromField: 'volume', toField: 'volume' }], + dataProvider: e, + categoryField: 'date', + }, + ], + panels: [ + { + showCategoryAxis: !1, + title: 'Value', + percentHeight: 70, + stockGraphs: [{ id: 'g1', valueField: 'value', type: 'smoothedLine', lineThickness: 2, bullet: 'round' }], + stockLegend: { valueTextRegular: ' ', markerType: 'none' }, + }, + { + title: 'Volume', + percentHeight: 30, + stockGraphs: [{ valueField: 'volume', type: 'column', cornerRadiusTop: 2, fillAlphas: 1 }], + stockLegend: { valueTextRegular: ' ', markerType: 'none' }, + }, + ], + chartScrollbarSettings: { graph: 'g1', usePeriod: '10mm', position: 'top' }, + chartCursorSettings: { valueBalloonsEnabled: !0 }, + periodSelector: { + position: 'top', + dateFormat: 'YYYY-MM-DD JJ:NN', + inputFieldWidth: 150, + periods: [ + { period: 'hh', count: 1, label: '1 hour', selected: !0 }, + { period: 'hh', count: 2, label: '2 hours' }, + { period: 'hh', count: 5, label: '5 hour' }, + { period: 'hh', count: 12, label: '12 hours' }, + { period: 'MAX', label: 'MAX' }, + ], + }, + panelsSettings: { usePrefixes: !0 }, + export: { enabled: !0, position: 'bottom-right' }, + }); + })(), + (function() { + var e = []; + !(function() { + var t = new Date(); + t.setHours(0, 0, 0, 0), t.setDate(t.getDate() - 2e3); + for (var a = 0; a < 2e3; a++) { + var o = new Date(t); + o.setDate(o.getDate() + a); + var l, + r, + i = Math.round(30 * Math.random() + 100), + d = i + Math.round(15 * Math.random() - 10 * Math.random()); + (l = i < d ? i - Math.round(5 * Math.random()) : d - Math.round(5 * Math.random())), + (r = i < d ? d + Math.round(5 * Math.random()) : i + Math.round(5 * Math.random())); + var n = Math.round(Math.random() * (1e3 + a)) + 100 + a, + s = Math.round(30 * Math.random() + 100); + e[a] = { date: o, open: i, close: d, high: r, low: l, volume: n, value: s }; + } + })(), + AmCharts.makeChart('kt_amcharts_5', { + type: 'stock', + theme: 'light', + dataSets: [ + { + fieldMappings: [ + { fromField: 'open', toField: 'open' }, + { fromField: 'close', toField: 'close' }, + { fromField: 'high', toField: 'high' }, + { fromField: 'low', toField: 'low' }, + { fromField: 'volume', toField: 'volume' }, + { fromField: 'value', toField: 'value' }, + ], + color: '#7f8da9', + dataProvider: e, + title: 'West Stock', + categoryField: 'date', + }, + { + fieldMappings: [{ fromField: 'value', toField: 'value' }], + color: '#fac314', + dataProvider: e, + compared: !0, + title: 'East Stock', + categoryField: 'date', + }, + ], + panels: [ + { + title: 'Value', + showCategoryAxis: !1, + percentHeight: 70, + valueAxes: [{ id: 'v1', dashLength: 5 }], + categoryAxis: { dashLength: 5 }, + stockGraphs: [ + { + type: 'candlestick', + id: 'g1', + openField: 'open', + closeField: 'close', + highField: 'high', + lowField: 'low', + valueField: 'close', + lineColor: '#7f8da9', + fillColors: '#7f8da9', + negativeLineColor: '#db4c3c', + negativeFillColors: '#db4c3c', + fillAlphas: 1, + useDataSetColors: !1, + comparable: !0, + compareField: 'value', + showBalloon: !1, + proCandlesticks: !0, + }, + ], + stockLegend: { valueTextRegular: void 0, periodValueTextComparing: '[[percents.value.close]]%' }, + }, + { + title: 'Volume', + percentHeight: 30, + marginTop: 1, + showCategoryAxis: !0, + valueAxes: [{ dashLength: 5 }], + categoryAxis: { dashLength: 5 }, + stockGraphs: [{ valueField: 'volume', type: 'column', showBalloon: !1, fillAlphas: 1 }], + stockLegend: { + markerType: 'none', + markerSize: 0, + labelText: '', + periodValueTextRegular: '[[value.close]]', + }, + }, + ], + chartScrollbarSettings: { graph: 'g1', graphType: 'line', usePeriod: 'WW' }, + chartCursorSettings: { valueLineBalloonEnabled: !0, valueLineEnabled: !0 }, + periodSelector: { + position: 'bottom', + periods: [ + { period: 'DD', count: 10, label: '10 days' }, + { period: 'MM', selected: !0, count: 1, label: '1 month' }, + { period: 'YYYY', count: 1, label: '1 year' }, + { period: 'YTD', label: 'YTD' }, + { period: 'MAX', label: 'MAX' }, + ], + }, + export: { enabled: !0 }, + }); + })(); + }, +}; +jQuery(document).ready(function() { + KTamChartsStockChartsDemo.init(); +}); diff --git a/src/assets/app/custom/general/components/charts/flotcharts.js b/src/assets/app/custom/general/components/charts/flotcharts.js index d7ecc50..99a7717 100644 --- a/src/assets/app/custom/general/components/charts/flotcharts.js +++ b/src/assets/app/custom/general/components/charts/flotcharts.js @@ -1 +1,367 @@ -"use strict";var KTFlotchartsDemo=function(){var t=function(){function t(){return Math.floor(21*Math.random())+20}var e=[[1,t()],[2,t()],[3,2+t()],[4,3+t()],[5,5+t()],[6,10+t()],[7,15+t()],[8,20+t()],[9,25+t()],[10,30+t()],[11,35+t()],[12,25+t()],[13,15+t()],[14,20+t()],[15,45+t()],[16,50+t()],[17,65+t()],[18,70+t()],[19,85+t()],[20,80+t()],[21,75+t()],[22,80+t()],[23,75+t()],[24,70+t()],[25,65+t()],[26,75+t()],[27,80+t()],[28,85+t()],[29,90+t()],[30,95+t()]],o=[[1,t()-5],[2,t()-5],[3,t()-5],[4,6+t()],[5,5+t()],[6,20+t()],[7,25+t()],[8,36+t()],[9,26+t()],[10,38+t()],[11,39+t()],[12,50+t()],[13,51+t()],[14,12+t()],[15,13+t()],[16,14+t()],[17,15+t()],[18,15+t()],[19,16+t()],[20,17+t()],[21,18+t()],[22,19+t()],[23,20+t()],[24,21+t()],[25,14+t()],[26,24+t()],[27,25+t()],[28,26+t()],[29,27+t()],[30,31+t()]];$.plot($("#kt_flotcharts_2"),[{data:e,label:"Unique Visits",lines:{lineWidth:1},shadowSize:0},{data:o,label:"Page Views",lines:{lineWidth:1},shadowSize:0}],{series:{lines:{show:!0,lineWidth:2,fill:!0,fillColor:{colors:[{opacity:.05},{opacity:.01}]}},points:{show:!0,radius:3,lineWidth:1},shadowSize:2},grid:{hoverable:!0,clickable:!0,tickColor:"#eee",borderColor:"#eee",borderWidth:1},colors:["#d12610","#37b7f3","#52e136"],xaxis:{ticks:11,tickDecimals:0,tickColor:"#eee"},yaxis:{ticks:11,tickDecimals:0,tickColor:"#eee"}});var a=null;$("#chart_2").bind("plothover",function(t,e,o){if($("#x").text(e.x.toFixed(2)),$("#y").text(e.y.toFixed(2)),o){if(a!=o.dataIndex){a=o.dataIndex,$("#tooltip").remove();var i=o.datapoint[0].toFixed(2),r=o.datapoint[1].toFixed(2);!function(t,e,o){$('
'+o+"
").css({position:"absolute",display:"none",top:e+5,left:t+15,border:"1px solid #333",padding:"4px",color:"#fff","border-radius":"3px","background-color":"#333",opacity:.8}).appendTo("body").fadeIn(200)}(o.pageX,o.pageY,o.series.label+" of "+i+" = "+r)}}else $("#tooltip").remove(),a=null})};return{init:function(){!function(){for(var t=[],e=0;e<2*Math.PI;e+=.25)t.push([e,Math.sin(e)]);var o=[];for(e=0;e<2*Math.PI;e+=.25)o.push([e,Math.cos(e)]);var a=[];for(e=0;e<2*Math.PI;e+=.1)a.push([e,Math.tan(e)]);$.plot($("#kt_flotcharts_1"),[{label:"sin(x)",data:t,lines:{lineWidth:1},shadowSize:0},{label:"cos(x)",data:o,lines:{lineWidth:1},shadowSize:0},{label:"tan(x)",data:a,lines:{lineWidth:1},shadowSize:0}],{series:{lines:{show:!0},points:{show:!0,fill:!0,radius:3,lineWidth:1}},xaxis:{tickColor:"#eee",ticks:[0,[Math.PI/2,"π/2"],[Math.PI,"π"],[3*Math.PI/2,"3π/2"],[2*Math.PI,"2π"]]},yaxis:{tickColor:"#eee",ticks:10,min:-2,max:2},grid:{borderColor:"#eee",borderWidth:1}})}(),t(),function(){for(var t=[],e=[],o=0;o<14;o+=.1)t.push([o,Math.sin(o)]),e.push([o,Math.cos(o)]);var a=$.plot($("#kt_flotcharts_3"),[{data:t,label:"sin(x) = -0.00",lines:{lineWidth:1},shadowSize:0},{data:e,label:"cos(x) = -0.00",lines:{lineWidth:1},shadowSize:0}],{series:{lines:{show:!0}},crosshair:{mode:"x"},grid:{hoverable:!0,autoHighlight:!1,tickColor:"#eee",borderColor:"#eee",borderWidth:1},yaxis:{min:-1.2,max:1.2}}),i=$("#kt_flotcharts_3 .legendLabel");i.each(function(){$(this).css("width",$(this).width())});var r=null,l=null;function s(){r=null;var t=l,e=a.getAxes();if(!(t.xe.xaxis.max||t.ye.yaxis.max)){var o,s,n=a.getData();for(o=0;ot.x);++s);var d,c=h.data[s-1],f=h.data[s];d=null==c?f[1]:null==f?c[1]:c[1]+(f[1]-c[1])*(t.x-c[0])/(f[0]-c[0]),i.eq(o).text(h.label.replace(/=.*/,"= "+d.toFixed(2)))}}}$("#kt_flotcharts_3").bind("plothover",function(t,e,o){l=e,r||(r=setTimeout(s,50))})}(),function(){var t=[],e=250;function o(){for(t.length>0&&(t=t.slice(1));t.length0?t[t.length-1]:50)+10*Math.random()-5;o<0&&(o=0),o>100&&(o=100),t.push(o)}for(var a=[],i=0;i'+t+"
"+Math.round(e.percent)+"%
"},background:{opacity:.8}}}},legend:{show:!1}})}(),function(){var t=[],e=Math.floor(10*Math.random())+1;e=e<5?5:e;for(var o=0;o'+t+"
"+Math.round(e.percent)+"%
"},background:{opacity:.8}}}},legend:{show:!1}})}()}}}();jQuery(document).ready(function(){KTFlotchartsDemo.init()}); \ No newline at end of file +'use strict'; +var KTFlotchartsDemo = (function() { + var t = function() { + function t() { + return Math.floor(21 * Math.random()) + 20; + } + var e = [ + [1, t()], + [2, t()], + [3, 2 + t()], + [4, 3 + t()], + [5, 5 + t()], + [6, 10 + t()], + [7, 15 + t()], + [8, 20 + t()], + [9, 25 + t()], + [10, 30 + t()], + [11, 35 + t()], + [12, 25 + t()], + [13, 15 + t()], + [14, 20 + t()], + [15, 45 + t()], + [16, 50 + t()], + [17, 65 + t()], + [18, 70 + t()], + [19, 85 + t()], + [20, 80 + t()], + [21, 75 + t()], + [22, 80 + t()], + [23, 75 + t()], + [24, 70 + t()], + [25, 65 + t()], + [26, 75 + t()], + [27, 80 + t()], + [28, 85 + t()], + [29, 90 + t()], + [30, 95 + t()], + ], + o = [ + [1, t() - 5], + [2, t() - 5], + [3, t() - 5], + [4, 6 + t()], + [5, 5 + t()], + [6, 20 + t()], + [7, 25 + t()], + [8, 36 + t()], + [9, 26 + t()], + [10, 38 + t()], + [11, 39 + t()], + [12, 50 + t()], + [13, 51 + t()], + [14, 12 + t()], + [15, 13 + t()], + [16, 14 + t()], + [17, 15 + t()], + [18, 15 + t()], + [19, 16 + t()], + [20, 17 + t()], + [21, 18 + t()], + [22, 19 + t()], + [23, 20 + t()], + [24, 21 + t()], + [25, 14 + t()], + [26, 24 + t()], + [27, 25 + t()], + [28, 26 + t()], + [29, 27 + t()], + [30, 31 + t()], + ]; + $.plot( + $('#kt_flotcharts_2'), + [ + { data: e, label: 'Unique Visits', lines: { lineWidth: 1 }, shadowSize: 0 }, + { data: o, label: 'Page Views', lines: { lineWidth: 1 }, shadowSize: 0 }, + ], + { + series: { + lines: { show: !0, lineWidth: 2, fill: !0, fillColor: { colors: [{ opacity: 0.05 }, { opacity: 0.01 }] } }, + points: { show: !0, radius: 3, lineWidth: 1 }, + shadowSize: 2, + }, + grid: { hoverable: !0, clickable: !0, tickColor: '#eee', borderColor: '#eee', borderWidth: 1 }, + colors: ['#d12610', '#37b7f3', '#52e136'], + xaxis: { ticks: 11, tickDecimals: 0, tickColor: '#eee' }, + yaxis: { ticks: 11, tickDecimals: 0, tickColor: '#eee' }, + }, + ); + var a = null; + $('#chart_2').bind('plothover', function(t, e, o) { + if (($('#x').text(e.x.toFixed(2)), $('#y').text(e.y.toFixed(2)), o)) { + if (a != o.dataIndex) { + (a = o.dataIndex), $('#tooltip').remove(); + var i = o.datapoint[0].toFixed(2), + r = o.datapoint[1].toFixed(2); + !(function(t, e, o) { + $('
' + o + '
') + .css({ + position: 'absolute', + display: 'none', + top: e + 5, + left: t + 15, + border: '1px solid #333', + padding: '4px', + color: '#fff', + 'border-radius': '3px', + 'background-color': '#333', + opacity: 0.8, + }) + .appendTo('body') + .fadeIn(200); + })(o.pageX, o.pageY, o.series.label + ' of ' + i + ' = ' + r); + } + } else $('#tooltip').remove(), (a = null); + }); + }; + return { + init: function() { + !(function() { + for (var t = [], e = 0; e < 2 * Math.PI; e += 0.25) t.push([e, Math.sin(e)]); + var o = []; + for (e = 0; e < 2 * Math.PI; e += 0.25) o.push([e, Math.cos(e)]); + var a = []; + for (e = 0; e < 2 * Math.PI; e += 0.1) a.push([e, Math.tan(e)]); + $.plot( + $('#kt_flotcharts_1'), + [ + { label: 'sin(x)', data: t, lines: { lineWidth: 1 }, shadowSize: 0 }, + { label: 'cos(x)', data: o, lines: { lineWidth: 1 }, shadowSize: 0 }, + { label: 'tan(x)', data: a, lines: { lineWidth: 1 }, shadowSize: 0 }, + ], + { + series: { lines: { show: !0 }, points: { show: !0, fill: !0, radius: 3, lineWidth: 1 } }, + xaxis: { + tickColor: '#eee', + ticks: [0, [Math.PI / 2, 'π/2'], [Math.PI, 'π'], [(3 * Math.PI) / 2, '3π/2'], [2 * Math.PI, '2π']], + }, + yaxis: { tickColor: '#eee', ticks: 10, min: -2, max: 2 }, + grid: { borderColor: '#eee', borderWidth: 1 }, + }, + ); + })(), + t(), + (function() { + for (var t = [], e = [], o = 0; o < 14; o += 0.1) t.push([o, Math.sin(o)]), e.push([o, Math.cos(o)]); + var a = $.plot( + $('#kt_flotcharts_3'), + [ + { data: t, label: 'sin(x) = -0.00', lines: { lineWidth: 1 }, shadowSize: 0 }, + { data: e, label: 'cos(x) = -0.00', lines: { lineWidth: 1 }, shadowSize: 0 }, + ], + { + series: { lines: { show: !0 } }, + crosshair: { mode: 'x' }, + grid: { hoverable: !0, autoHighlight: !1, tickColor: '#eee', borderColor: '#eee', borderWidth: 1 }, + yaxis: { min: -1.2, max: 1.2 }, + }, + ), + i = $('#kt_flotcharts_3 .legendLabel'); + i.each(function() { + $(this).css('width', $(this).width()); + }); + var r = null, + l = null; + function s() { + r = null; + var t = l, + e = a.getAxes(); + if (!(t.x < e.xaxis.min || t.x > e.xaxis.max || t.y < e.yaxis.min || t.y > e.yaxis.max)) { + var o, + s, + n = a.getData(); + for (o = 0; o < n.length; ++o) { + var h = n[o]; + for (s = 0; s < h.data.length && !(h.data[s][0] > t.x); ++s); + var d, + c = h.data[s - 1], + f = h.data[s]; + (d = null == c ? f[1] : null == f ? c[1] : c[1] + ((f[1] - c[1]) * (t.x - c[0])) / (f[0] - c[0])), + i.eq(o).text(h.label.replace(/=.*/, '= ' + d.toFixed(2))); + } + } + } + $('#kt_flotcharts_3').bind('plothover', function(t, e, o) { + (l = e), r || (r = setTimeout(s, 50)); + }); + })(), + (function() { + var t = [], + e = 250; + function o() { + for (t.length > 0 && (t = t.slice(1)); t.length < e; ) { + var o = (t.length > 0 ? t[t.length - 1] : 50) + 10 * Math.random() - 5; + o < 0 && (o = 0), o > 100 && (o = 100), t.push(o); + } + for (var a = [], i = 0; i < t.length; ++i) a.push([i, t[i]]); + return a; + } + var a = 30, + i = $.plot($('#kt_flotcharts_4'), [o()], { + series: { shadowSize: 1 }, + lines: { show: !0, lineWidth: 0.5, fill: !0, fillColor: { colors: [{ opacity: 0.1 }, { opacity: 1 }] } }, + yaxis: { + min: 0, + max: 100, + tickColor: '#eee', + tickFormatter: function(t) { + return t + '%'; + }, + }, + xaxis: { show: !1 }, + colors: ['#6ef146'], + grid: { tickColor: '#eee', borderWidth: 0 }, + }); + !(function t() { + i.setData([o()]), i.draw(), setTimeout(t, a); + })(); + })(), + (function() { + for (var t = [], e = 0; e <= 10; e += 1) t.push([e, parseInt(30 * Math.random())]); + var o = []; + for (e = 0; e <= 10; e += 1) o.push([e, parseInt(30 * Math.random())]); + var a = []; + for (e = 0; e <= 10; e += 1) a.push([e, parseInt(30 * Math.random())]); + var i = 0, + r = !0, + l = !1, + s = !1; + function n() { + $.plot( + $('#kt_flotcharts_5'), + [ + { label: 'sales', data: t, lines: { lineWidth: 1 }, shadowSize: 0 }, + { label: 'tax', data: o, lines: { lineWidth: 1 }, shadowSize: 0 }, + { label: 'profit', data: a, lines: { lineWidth: 1 }, shadowSize: 0 }, + ], + { + series: { + stack: i, + lines: { show: l, fill: !0, steps: s, lineWidth: 0 }, + bars: { show: r, barWidth: 0.5, lineWidth: 0, shadowSize: 0, align: 'center' }, + }, + grid: { tickColor: '#eee', borderColor: '#eee', borderWidth: 1 }, + }, + ); + } + $('.stackControls input').click(function(t) { + t.preventDefault(), (i = 'With stacking' == $(this).val() || null), n(); + }), + $('.graphControls input').click(function(t) { + t.preventDefault(), + (r = + -1 != + $(this) + .val() + .indexOf('Bars')), + (l = + -1 != + $(this) + .val() + .indexOf('Lines')), + (s = + -1 != + $(this) + .val() + .indexOf('steps')), + n(); + }), + n(); + })(), + (function() { + var t = (function(t) { + for (var e = [], o = 100 + t, a = 200 + t, i = 1; i <= 20; i++) { + var r = Math.floor(Math.random() * (a - o + 1) + o); + e.push([i, r]), o++, a++; + } + return e; + })(0); + $.plot($('#kt_flotcharts_6'), [{ data: t, lines: { lineWidth: 1 }, shadowSize: 0 }], { + series: { bars: { show: !0 } }, + bars: { barWidth: 0.8, lineWidth: 0, shadowSize: 0, align: 'left' }, + grid: { tickColor: '#eee', borderColor: '#eee', borderWidth: 1 }, + }); + })(), + $.plot($('#kt_flotcharts_7'), [[[10, 10], [20, 20], [30, 30], [40, 40], [50, 50]]], { + series: { bars: { show: !0 } }, + bars: { horizontal: !0, barWidth: 6, lineWidth: 0, shadowSize: 0, align: 'left' }, + grid: { tickColor: '#eee', borderColor: '#eee', borderWidth: 1 }, + }), + (function() { + var t = [], + e = Math.floor(10 * Math.random()) + 1; + e = e < 5 ? 5 : e; + for (var o = 0; o < e; o++) t[o] = { label: 'Series' + (o + 1), data: Math.floor(100 * Math.random()) + 1 }; + $.plot($('#kt_flotcharts_8'), t, { series: { pie: { show: !0 } } }); + })(), + (function() { + var t = [], + e = Math.floor(10 * Math.random()) + 1; + e = e < 5 ? 5 : e; + for (var o = 0; o < e; o++) t[o] = { label: 'Series' + (o + 1), data: Math.floor(100 * Math.random()) + 1 }; + $.plot($('#kt_flotcharts_9'), t, { series: { pie: { show: !0 } }, legend: { show: !1 } }); + })(), + (function() { + var t = [], + e = Math.floor(10 * Math.random()) + 1; + e = e < 5 ? 5 : e; + for (var o = 0; o < e; o++) t[o] = { label: 'Series' + (o + 1), data: Math.floor(100 * Math.random()) + 1 }; + $.plot($('#kt_flotcharts_10'), t, { + series: { + pie: { + show: !0, + radius: 1, + label: { + show: !0, + radius: 1, + formatter: function(t, e) { + return ( + '
' + + t + + '
' + + Math.round(e.percent) + + '%
' + ); + }, + background: { opacity: 0.8 }, + }, + }, + }, + legend: { show: !1 }, + }); + })(), + (function() { + var t = [], + e = Math.floor(10 * Math.random()) + 1; + e = e < 5 ? 5 : e; + for (var o = 0; o < e; o++) t[o] = { label: 'Series' + (o + 1), data: Math.floor(100 * Math.random()) + 1 }; + $.plot($('#kt_flotcharts_11'), t, { + series: { + pie: { + show: !0, + radius: 1, + label: { + show: !0, + radius: 1, + formatter: function(t, e) { + return ( + '
' + + t + + '
' + + Math.round(e.percent) + + '%
' + ); + }, + background: { opacity: 0.8 }, + }, + }, + }, + legend: { show: !1 }, + }); + })(); + }, + }; +})(); +jQuery(document).ready(function() { + KTFlotchartsDemo.init(); +}); diff --git a/src/assets/app/custom/general/components/charts/google-charts.js b/src/assets/app/custom/general/components/charts/google-charts.js index c0e9f60..f8b9300 100644 --- a/src/assets/app/custom/general/components/charts/google-charts.js +++ b/src/assets/app/custom/general/components/charts/google-charts.js @@ -1 +1,76 @@ -"use strict";var KTGoogleChartsDemo={init:function(){google.load("visualization","1",{packages:["corechart","bar","line"]}),google.setOnLoadCallback(function(){KTGoogleChartsDemo.runDemos()})},runDemos:function(){var e;!function(){var e=new google.visualization.DataTable;e.addColumn("timeofday","Time of Day"),e.addColumn("number","Motivation Level"),e.addColumn("number","Energy Level"),e.addRows([[{v:[8,0,0],f:"8 am"},1,.25],[{v:[9,0,0],f:"9 am"},2,.5],[{v:[10,0,0],f:"10 am"},3,1],[{v:[11,0,0],f:"11 am"},4,2.25],[{v:[12,0,0],f:"12 pm"},5,2.25],[{v:[13,0,0],f:"1 pm"},6,3],[{v:[14,0,0],f:"2 pm"},7,4],[{v:[15,0,0],f:"3 pm"},8,5.25],[{v:[16,0,0],f:"4 pm"},9,7.5],[{v:[17,0,0],f:"5 pm"},10,10]]);var a={title:"Motivation and Energy Level Throughout the Day",focusTarget:"category",hAxis:{title:"Time of Day",format:"h:mm a",viewWindow:{min:[7,30,0],max:[17,30,0]}},vAxis:{title:"Rating (scale of 1-10)"}};new google.visualization.ColumnChart(document.getElementById("kt_gchart_1")).draw(e,a),new google.visualization.ColumnChart(document.getElementById("kt_gchart_2")).draw(e,a)}(),(e=new google.visualization.DataTable).addColumn("number","Day"),e.addColumn("number","Guardians of the Galaxy"),e.addColumn("number","The Avengers"),e.addColumn("number","Transformers: Age of Extinction"),e.addRows([[1,37.8,80.8,41.8],[2,30.9,69.5,32.4],[3,25.4,57,25.7],[4,11.7,18.8,10.5],[5,11.9,17.6,10.4],[6,8.8,13.6,7.7],[7,7.6,12.3,9.6],[8,12.3,29.2,10.6],[9,16.9,42.9,14.8],[10,12.8,30.9,11.6],[11,5.3,7.9,4.7],[12,6.6,8.4,5.2],[13,4.8,6.3,3.6],[14,4.2,6.2,3.4]]),new google.charts.Line(document.getElementById("kt_gchart_5")).draw(e,{chart:{title:"Box Office Earnings in First Two Weeks of Opening",subtitle:"in millions of dollars (USD)"}}),function(){var e=google.visualization.arrayToDataTable([["Task","Hours per Day"],["Work",11],["Eat",2],["Commute",2],["Watch TV",2],["Sleep",7]]),a={title:"My Daily Activities"};new google.visualization.PieChart(document.getElementById("kt_gchart_3")).draw(e,a),a={pieHole:.4},new google.visualization.PieChart(document.getElementById("kt_gchart_4")).draw(e,a)}()}};KTGoogleChartsDemo.init(); \ No newline at end of file +'use strict'; +var KTGoogleChartsDemo = { + init: function() { + google.load('visualization', '1', { packages: ['corechart', 'bar', 'line'] }), + google.setOnLoadCallback(function() { + KTGoogleChartsDemo.runDemos(); + }); + }, + runDemos: function() { + var e; + !(function() { + var e = new google.visualization.DataTable(); + e.addColumn('timeofday', 'Time of Day'), + e.addColumn('number', 'Motivation Level'), + e.addColumn('number', 'Energy Level'), + e.addRows([ + [{ v: [8, 0, 0], f: '8 am' }, 1, 0.25], + [{ v: [9, 0, 0], f: '9 am' }, 2, 0.5], + [{ v: [10, 0, 0], f: '10 am' }, 3, 1], + [{ v: [11, 0, 0], f: '11 am' }, 4, 2.25], + [{ v: [12, 0, 0], f: '12 pm' }, 5, 2.25], + [{ v: [13, 0, 0], f: '1 pm' }, 6, 3], + [{ v: [14, 0, 0], f: '2 pm' }, 7, 4], + [{ v: [15, 0, 0], f: '3 pm' }, 8, 5.25], + [{ v: [16, 0, 0], f: '4 pm' }, 9, 7.5], + [{ v: [17, 0, 0], f: '5 pm' }, 10, 10], + ]); + var a = { + title: 'Motivation and Energy Level Throughout the Day', + focusTarget: 'category', + hAxis: { title: 'Time of Day', format: 'h:mm a', viewWindow: { min: [7, 30, 0], max: [17, 30, 0] } }, + vAxis: { title: 'Rating (scale of 1-10)' }, + }; + new google.visualization.ColumnChart(document.getElementById('kt_gchart_1')).draw(e, a), + new google.visualization.ColumnChart(document.getElementById('kt_gchart_2')).draw(e, a); + })(), + (e = new google.visualization.DataTable()).addColumn('number', 'Day'), + e.addColumn('number', 'Guardians of the Galaxy'), + e.addColumn('number', 'The Avengers'), + e.addColumn('number', 'Transformers: Age of Extinction'), + e.addRows([ + [1, 37.8, 80.8, 41.8], + [2, 30.9, 69.5, 32.4], + [3, 25.4, 57, 25.7], + [4, 11.7, 18.8, 10.5], + [5, 11.9, 17.6, 10.4], + [6, 8.8, 13.6, 7.7], + [7, 7.6, 12.3, 9.6], + [8, 12.3, 29.2, 10.6], + [9, 16.9, 42.9, 14.8], + [10, 12.8, 30.9, 11.6], + [11, 5.3, 7.9, 4.7], + [12, 6.6, 8.4, 5.2], + [13, 4.8, 6.3, 3.6], + [14, 4.2, 6.2, 3.4], + ]), + new google.charts.Line(document.getElementById('kt_gchart_5')).draw(e, { + chart: { title: 'Box Office Earnings in First Two Weeks of Opening', subtitle: 'in millions of dollars (USD)' }, + }), + (function() { + var e = google.visualization.arrayToDataTable([ + ['Task', 'Hours per Day'], + ['Work', 11], + ['Eat', 2], + ['Commute', 2], + ['Watch TV', 2], + ['Sleep', 7], + ]), + a = { title: 'My Daily Activities' }; + new google.visualization.PieChart(document.getElementById('kt_gchart_3')).draw(e, a), + (a = { pieHole: 0.4 }), + new google.visualization.PieChart(document.getElementById('kt_gchart_4')).draw(e, a); + })(); + }, +}; +KTGoogleChartsDemo.init(); diff --git a/src/assets/app/custom/general/components/charts/morris-charts.js b/src/assets/app/custom/general/components/charts/morris-charts.js index 10ff164..c612540 100644 --- a/src/assets/app/custom/general/components/charts/morris-charts.js +++ b/src/assets/app/custom/general/components/charts/morris-charts.js @@ -1 +1,61 @@ -"use strict";var KTMorrisChartsDemo={init:function(){new Morris.Line({element:"kt_morris_1",data:[{y:"2006",a:100,b:90},{y:"2007",a:75,b:65},{y:"2008",a:50,b:40},{y:"2009",a:75,b:65},{y:"2010",a:50,b:40},{y:"2011",a:75,b:65},{y:"2012",a:100,b:90}],xkey:"y",ykeys:["a","b"],labels:["Values A","Values B"]}),new Morris.Area({element:"kt_morris_2",data:[{y:"2006",a:100,b:90},{y:"2007",a:75,b:65},{y:"2008",a:50,b:40},{y:"2009",a:75,b:65},{y:"2010",a:50,b:40},{y:"2011",a:75,b:65},{y:"2012",a:100,b:90}],xkey:"y",ykeys:["a","b"],labels:["Series A","Series B"]}),new Morris.Bar({element:"kt_morris_3",data:[{y:"2006",a:100,b:90},{y:"2007",a:75,b:65},{y:"2008",a:50,b:40},{y:"2009",a:75,b:65},{y:"2010",a:50,b:40},{y:"2011",a:75,b:65},{y:"2012",a:100,b:90}],xkey:"y",ykeys:["a","b"],labels:["Series A","Series B"]}),new Morris.Donut({element:"kt_morris_4",data:[{label:"Download Sales",value:12},{label:"In-Store Sales",value:30},{label:"Mail-Order Sales",value:20}]})}};jQuery(document).ready(function(){KTMorrisChartsDemo.init()}); \ No newline at end of file +'use strict'; +var KTMorrisChartsDemo = { + init: function() { + new Morris.Line({ + element: 'kt_morris_1', + data: [ + { y: '2006', a: 100, b: 90 }, + { y: '2007', a: 75, b: 65 }, + { y: '2008', a: 50, b: 40 }, + { y: '2009', a: 75, b: 65 }, + { y: '2010', a: 50, b: 40 }, + { y: '2011', a: 75, b: 65 }, + { y: '2012', a: 100, b: 90 }, + ], + xkey: 'y', + ykeys: ['a', 'b'], + labels: ['Values A', 'Values B'], + }), + new Morris.Area({ + element: 'kt_morris_2', + data: [ + { y: '2006', a: 100, b: 90 }, + { y: '2007', a: 75, b: 65 }, + { y: '2008', a: 50, b: 40 }, + { y: '2009', a: 75, b: 65 }, + { y: '2010', a: 50, b: 40 }, + { y: '2011', a: 75, b: 65 }, + { y: '2012', a: 100, b: 90 }, + ], + xkey: 'y', + ykeys: ['a', 'b'], + labels: ['Series A', 'Series B'], + }), + new Morris.Bar({ + element: 'kt_morris_3', + data: [ + { y: '2006', a: 100, b: 90 }, + { y: '2007', a: 75, b: 65 }, + { y: '2008', a: 50, b: 40 }, + { y: '2009', a: 75, b: 65 }, + { y: '2010', a: 50, b: 40 }, + { y: '2011', a: 75, b: 65 }, + { y: '2012', a: 100, b: 90 }, + ], + xkey: 'y', + ykeys: ['a', 'b'], + labels: ['Series A', 'Series B'], + }), + new Morris.Donut({ + element: 'kt_morris_4', + data: [ + { label: 'Download Sales', value: 12 }, + { label: 'In-Store Sales', value: 30 }, + { label: 'Mail-Order Sales', value: 20 }, + ], + }); + }, +}; +jQuery(document).ready(function() { + KTMorrisChartsDemo.init(); +}); diff --git a/src/assets/app/custom/general/components/extended/blockui.js b/src/assets/app/custom/general/components/extended/blockui.js index 3391424..b563c7c 100644 --- a/src/assets/app/custom/general/components/extended/blockui.js +++ b/src/assets/app/custom/general/components/extended/blockui.js @@ -1 +1,163 @@ -"use strict";var KTBlockUIDemo={init:function(){$("#kt_blockui_1_1").click(function(){KTApp.block("#kt_blockui_1_content",{}),setTimeout(function(){KTApp.unblock("#kt_blockui_1_content")},2e3)}),$("#kt_blockui_1_2").click(function(){KTApp.block("#kt_blockui_1_content",{overlayColor:"#000000",state:"primary"}),setTimeout(function(){KTApp.unblock("#kt_blockui_1_content")},2e3)}),$("#kt_blockui_1_3").click(function(){KTApp.block("#kt_blockui_1_content",{overlayColor:"#000000",type:"v2",state:"success",size:"lg"}),setTimeout(function(){KTApp.unblock("#kt_blockui_1_content")},2e3)}),$("#kt_blockui_1_4").click(function(){KTApp.block("#kt_blockui_1_content",{overlayColor:"#000000",type:"v2",state:"success",message:"Please wait..."}),setTimeout(function(){KTApp.unblock("#kt_blockui_1_content")},2e3)}),$("#kt_blockui_1_5").click(function(){KTApp.block("#kt_blockui_1_content",{overlayColor:"#000000",type:"v2",state:"primary",message:"Processing..."}),setTimeout(function(){KTApp.unblock("#kt_blockui_1_content")},2e3)}),$("#kt_blockui_2_1").click(function(){KTApp.block("#kt_blockui_2_portlet",{}),setTimeout(function(){KTApp.unblock("#kt_blockui_2_portlet")},2e3)}),$("#kt_blockui_2_2").click(function(){KTApp.block("#kt_blockui_2_portlet",{overlayColor:"#000000",state:"primary"}),setTimeout(function(){KTApp.unblock("#kt_blockui_2_portlet")},2e3)}),$("#kt_blockui_2_3").click(function(){KTApp.block("#kt_blockui_2_portlet",{overlayColor:"#000000",type:"v2",state:"success",size:"lg"}),setTimeout(function(){KTApp.unblock("#kt_blockui_2_portlet")},2e3)}),$("#kt_blockui_2_4").click(function(){KTApp.block("#kt_blockui_2_portlet",{overlayColor:"#000000",type:"v2",state:"success",message:"Please wait..."}),setTimeout(function(){KTApp.unblock("#kt_blockui_2_portlet")},2e3)}),$("#kt_blockui_2_5").click(function(){KTApp.block("#kt_blockui_2_portlet",{overlayColor:"#000000",type:"v2",state:"primary",message:"Processing..."}),setTimeout(function(){KTApp.unblock("#kt_blockui_2_portlet")},2e3)}),$("#kt_blockui_3_1").click(function(){KTApp.blockPage(),setTimeout(function(){KTApp.unblockPage()},2e3)}),$("#kt_blockui_3_2").click(function(){KTApp.blockPage({overlayColor:"#000000",state:"primary"}),setTimeout(function(){KTApp.unblockPage()},2e3)}),$("#kt_blockui_3_3").click(function(){KTApp.blockPage({overlayColor:"#000000",type:"v2",state:"success",size:"lg"}),setTimeout(function(){KTApp.unblockPage()},2e3)}),$("#kt_blockui_3_4").click(function(){KTApp.blockPage({overlayColor:"#000000",type:"v2",state:"success",message:"Please wait..."}),setTimeout(function(){KTApp.unblockPage()},2e3)}),$("#kt_blockui_3_5").click(function(){KTApp.blockPage({overlayColor:"#000000",type:"v2",state:"primary",message:"Processing..."}),setTimeout(function(){KTApp.unblockPage()},2e3)}),$("#kt_blockui_4_1").click(function(){KTApp.block("#kt_blockui_4_1_modal .modal-content",{}),setTimeout(function(){KTApp.unblock("#kt_blockui_4_1_modal .modal-content")},2e3)}),$("#kt_blockui_4_2").click(function(){KTApp.block("#kt_blockui_4_2_modal .modal-content",{overlayColor:"#000000",state:"primary"}),setTimeout(function(){KTApp.unblock("#kt_blockui_4_2_modal .modal-content")},2e3)}),$("#kt_blockui_4_3").click(function(){KTApp.block("#kt_blockui_4_3_modal .modal-content",{overlayColor:"#000000",type:"v2",state:"success",size:"lg"}),setTimeout(function(){KTApp.unblock("#kt_blockui_4_3_modal .modal-content")},2e3)}),$("#kt_blockui_4_4").click(function(){KTApp.block("#kt_blockui_4_4_modal .modal-content",{overlayColor:"#000000",type:"v2",state:"success",message:"Please wait..."}),setTimeout(function(){KTApp.unblock("#kt_blockui_4_4_modal .modal-content")},2e3)}),$("#kt_blockui_4_5").click(function(){KTApp.block("#kt_blockui_4_5_modal .modal-content",{overlayColor:"#000000",type:"v2",state:"primary",message:"Processing..."}),setTimeout(function(){KTApp.unblock("#kt_blockui_4_5_modal .modal-content")},2e3)})}};jQuery(document).ready(function(){KTBlockUIDemo.init()}); \ No newline at end of file +'use strict'; +var KTBlockUIDemo = { + init: function() { + $('#kt_blockui_1_1').click(function() { + KTApp.block('#kt_blockui_1_content', {}), + setTimeout(function() { + KTApp.unblock('#kt_blockui_1_content'); + }, 2e3); + }), + $('#kt_blockui_1_2').click(function() { + KTApp.block('#kt_blockui_1_content', { overlayColor: '#000000', state: 'primary' }), + setTimeout(function() { + KTApp.unblock('#kt_blockui_1_content'); + }, 2e3); + }), + $('#kt_blockui_1_3').click(function() { + KTApp.block('#kt_blockui_1_content', { overlayColor: '#000000', type: 'v2', state: 'success', size: 'lg' }), + setTimeout(function() { + KTApp.unblock('#kt_blockui_1_content'); + }, 2e3); + }), + $('#kt_blockui_1_4').click(function() { + KTApp.block('#kt_blockui_1_content', { + overlayColor: '#000000', + type: 'v2', + state: 'success', + message: 'Please wait...', + }), + setTimeout(function() { + KTApp.unblock('#kt_blockui_1_content'); + }, 2e3); + }), + $('#kt_blockui_1_5').click(function() { + KTApp.block('#kt_blockui_1_content', { + overlayColor: '#000000', + type: 'v2', + state: 'primary', + message: 'Processing...', + }), + setTimeout(function() { + KTApp.unblock('#kt_blockui_1_content'); + }, 2e3); + }), + $('#kt_blockui_2_1').click(function() { + KTApp.block('#kt_blockui_2_portlet', {}), + setTimeout(function() { + KTApp.unblock('#kt_blockui_2_portlet'); + }, 2e3); + }), + $('#kt_blockui_2_2').click(function() { + KTApp.block('#kt_blockui_2_portlet', { overlayColor: '#000000', state: 'primary' }), + setTimeout(function() { + KTApp.unblock('#kt_blockui_2_portlet'); + }, 2e3); + }), + $('#kt_blockui_2_3').click(function() { + KTApp.block('#kt_blockui_2_portlet', { overlayColor: '#000000', type: 'v2', state: 'success', size: 'lg' }), + setTimeout(function() { + KTApp.unblock('#kt_blockui_2_portlet'); + }, 2e3); + }), + $('#kt_blockui_2_4').click(function() { + KTApp.block('#kt_blockui_2_portlet', { + overlayColor: '#000000', + type: 'v2', + state: 'success', + message: 'Please wait...', + }), + setTimeout(function() { + KTApp.unblock('#kt_blockui_2_portlet'); + }, 2e3); + }), + $('#kt_blockui_2_5').click(function() { + KTApp.block('#kt_blockui_2_portlet', { + overlayColor: '#000000', + type: 'v2', + state: 'primary', + message: 'Processing...', + }), + setTimeout(function() { + KTApp.unblock('#kt_blockui_2_portlet'); + }, 2e3); + }), + $('#kt_blockui_3_1').click(function() { + KTApp.blockPage(), + setTimeout(function() { + KTApp.unblockPage(); + }, 2e3); + }), + $('#kt_blockui_3_2').click(function() { + KTApp.blockPage({ overlayColor: '#000000', state: 'primary' }), + setTimeout(function() { + KTApp.unblockPage(); + }, 2e3); + }), + $('#kt_blockui_3_3').click(function() { + KTApp.blockPage({ overlayColor: '#000000', type: 'v2', state: 'success', size: 'lg' }), + setTimeout(function() { + KTApp.unblockPage(); + }, 2e3); + }), + $('#kt_blockui_3_4').click(function() { + KTApp.blockPage({ overlayColor: '#000000', type: 'v2', state: 'success', message: 'Please wait...' }), + setTimeout(function() { + KTApp.unblockPage(); + }, 2e3); + }), + $('#kt_blockui_3_5').click(function() { + KTApp.blockPage({ overlayColor: '#000000', type: 'v2', state: 'primary', message: 'Processing...' }), + setTimeout(function() { + KTApp.unblockPage(); + }, 2e3); + }), + $('#kt_blockui_4_1').click(function() { + KTApp.block('#kt_blockui_4_1_modal .modal-content', {}), + setTimeout(function() { + KTApp.unblock('#kt_blockui_4_1_modal .modal-content'); + }, 2e3); + }), + $('#kt_blockui_4_2').click(function() { + KTApp.block('#kt_blockui_4_2_modal .modal-content', { overlayColor: '#000000', state: 'primary' }), + setTimeout(function() { + KTApp.unblock('#kt_blockui_4_2_modal .modal-content'); + }, 2e3); + }), + $('#kt_blockui_4_3').click(function() { + KTApp.block('#kt_blockui_4_3_modal .modal-content', { + overlayColor: '#000000', + type: 'v2', + state: 'success', + size: 'lg', + }), + setTimeout(function() { + KTApp.unblock('#kt_blockui_4_3_modal .modal-content'); + }, 2e3); + }), + $('#kt_blockui_4_4').click(function() { + KTApp.block('#kt_blockui_4_4_modal .modal-content', { + overlayColor: '#000000', + type: 'v2', + state: 'success', + message: 'Please wait...', + }), + setTimeout(function() { + KTApp.unblock('#kt_blockui_4_4_modal .modal-content'); + }, 2e3); + }), + $('#kt_blockui_4_5').click(function() { + KTApp.block('#kt_blockui_4_5_modal .modal-content', { + overlayColor: '#000000', + type: 'v2', + state: 'primary', + message: 'Processing...', + }), + setTimeout(function() { + KTApp.unblock('#kt_blockui_4_5_modal .modal-content'); + }, 2e3); + }); + }, +}; +jQuery(document).ready(function() { + KTBlockUIDemo.init(); +}); diff --git a/src/assets/app/custom/general/components/extended/bootstrap-notify.js b/src/assets/app/custom/general/components/extended/bootstrap-notify.js index 078a2fd..17df3c3 100644 --- a/src/assets/app/custom/general/components/extended/bootstrap-notify.js +++ b/src/assets/app/custom/general/components/extended/bootstrap-notify.js @@ -1 +1,53 @@ -"use strict";var KTBootstrapNotifyDemo={init:function(){$("[data-switch=true]").bootstrapSwitch(),$("#kt_notify_btn").click(function(){var t={message:"New order has been placed"};$("#kt_notify_title").prop("checked")&&(t.title="Notification Title"),""!=$("#kt_notify_icon").val()&&(t.icon="icon "+$("#kt_notify_icon").val()),$("#kt_notify_url").prop("checked")&&(t.url="www.keenthemes.com",t.target="_blank");var e=$.notify(t,{type:$("#kt_notify_state").val(),allow_dismiss:$("#kt_notify_dismiss").prop("checked"),newest_on_top:$("#kt_notify_top").prop("checked"),mouse_over:$("#kt_notify_pause").prop("checked"),showProgressbar:$("#kt_notify_progress").prop("checked"),spacing:$("#kt_notify_spacing").val(),timer:$("#kt_notify_timer").val(),placement:{from:$("#kt_notify_placement_from").val(),align:$("#kt_notify_placement_align").val()},offset:{x:$("#kt_notify_offset_x").val(),y:$("#kt_notify_offset_y").val()},delay:$("#kt_notify_delay").val(),z_index:$("#kt_notify_zindex").val(),animate:{enter:"animated "+$("#kt_notify_animate_enter").val(),exit:"animated "+$("#kt_notify_animate_exit").val()}});$("#kt_notify_progress").prop("checked")&&(setTimeout(function(){e.update("message","Saving Page Data."),e.update("type","primary"),e.update("progress",20)},1e3),setTimeout(function(){e.update("message","Saving User Data."),e.update("type","warning"),e.update("progress",40)},2e3),setTimeout(function(){e.update("message","Saving Profile Data."),e.update("type","danger"),e.update("progress",65)},3e3),setTimeout(function(){e.update("message","Checking for errors."),e.update("type","success"),e.update("progress",100)},4e3))})}};jQuery(document).ready(function(){KTBootstrapNotifyDemo.init()}); \ No newline at end of file +'use strict'; +var KTBootstrapNotifyDemo = { + init: function() { + $('[data-switch=true]').bootstrapSwitch(), + $('#kt_notify_btn').click(function() { + var t = { message: 'New order has been placed' }; + $('#kt_notify_title').prop('checked') && (t.title = 'Notification Title'), + '' != $('#kt_notify_icon').val() && (t.icon = 'icon ' + $('#kt_notify_icon').val()), + $('#kt_notify_url').prop('checked') && ((t.url = 'www.keenthemes.com'), (t.target = '_blank')); + var e = $.notify(t, { + type: $('#kt_notify_state').val(), + allow_dismiss: $('#kt_notify_dismiss').prop('checked'), + newest_on_top: $('#kt_notify_top').prop('checked'), + mouse_over: $('#kt_notify_pause').prop('checked'), + showProgressbar: $('#kt_notify_progress').prop('checked'), + spacing: $('#kt_notify_spacing').val(), + timer: $('#kt_notify_timer').val(), + placement: { from: $('#kt_notify_placement_from').val(), align: $('#kt_notify_placement_align').val() }, + offset: { x: $('#kt_notify_offset_x').val(), y: $('#kt_notify_offset_y').val() }, + delay: $('#kt_notify_delay').val(), + z_index: $('#kt_notify_zindex').val(), + animate: { + enter: 'animated ' + $('#kt_notify_animate_enter').val(), + exit: 'animated ' + $('#kt_notify_animate_exit').val(), + }, + }); + $('#kt_notify_progress').prop('checked') && + (setTimeout(function() { + e.update('message', 'Saving Page Data.'), + e.update('type', 'primary'), + e.update('progress', 20); + }, 1e3), + setTimeout(function() { + e.update('message', 'Saving User Data.'), + e.update('type', 'warning'), + e.update('progress', 40); + }, 2e3), + setTimeout(function() { + e.update('message', 'Saving Profile Data.'), + e.update('type', 'danger'), + e.update('progress', 65); + }, 3e3), + setTimeout(function() { + e.update('message', 'Checking for errors.'), + e.update('type', 'success'), + e.update('progress', 100); + }, 4e3)); + }); + }, +}; +jQuery(document).ready(function() { + KTBootstrapNotifyDemo.init(); +}); diff --git a/src/assets/app/custom/general/components/extended/perfect-scrollbar.js b/src/assets/app/custom/general/components/extended/perfect-scrollbar.js index d230bae..7c134a6 100644 --- a/src/assets/app/custom/general/components/extended/perfect-scrollbar.js +++ b/src/assets/app/custom/general/components/extended/perfect-scrollbar.js @@ -1 +1,5 @@ -"use strict";var KTScrollable={init:function(){}};jQuery(document).ready(function(){KTScrollable.init()}); \ No newline at end of file +'use strict'; +var KTScrollable = { init: function() {} }; +jQuery(document).ready(function() { + KTScrollable.init(); +}); diff --git a/src/assets/app/custom/general/components/extended/sweetalert2.js b/src/assets/app/custom/general/components/extended/sweetalert2.js index 489a6fb..fd2c841 100644 --- a/src/assets/app/custom/general/components/extended/sweetalert2.js +++ b/src/assets/app/custom/general/components/extended/sweetalert2.js @@ -1 +1,124 @@ -"use strict";var KTSweetAlert2Demo={init:function(){$("#kt_sweetalert_demo_1").click(function(e){swal.fire("Good job!")}),$("#kt_sweetalert_demo_2").click(function(e){swal.fire("Here's the title!","...and here's the text!")}),$("#kt_sweetalert_demo_3_1").click(function(e){swal.fire("Good job!","You clicked the button!","warning")}),$("#kt_sweetalert_demo_3_2").click(function(e){swal.fire("Good job!","You clicked the button!","error")}),$("#kt_sweetalert_demo_3_3").click(function(e){swal.fire("Good job!","You clicked the button!","success")}),$("#kt_sweetalert_demo_3_4").click(function(e){swal.fire("Good job!","You clicked the button!","info")}),$("#kt_sweetalert_demo_3_5").click(function(e){swal.fire("Good job!","You clicked the button!","question")}),$("#kt_sweetalert_demo_4").click(function(e){swal.fire({title:"Good job!",text:"You clicked the button!",type:"success",confirmButtonText:"Confirm me!",confirmButtonClass:"btn btn-focus--pill--air"})}),$("#kt_sweetalert_demo_5").click(function(e){swal.fire({title:"Good job!",text:"You clicked the button!",type:"success",confirmButtonText:"I am game!",confirmButtonClass:"btn btn-danger--pill--air--icon",showCancelButton:!0,cancelButtonText:"No, thanks",cancelButtonClass:"btn btn-secondary--pill--icon"})}),$("#kt_sweetalert_demo_6").click(function(e){swal.fire({position:"top-right",type:"success",title:"Your work has been saved",showConfirmButton:!1,timer:1500})}),$("#kt_sweetalert_demo_7").click(function(e){swal.fire({title:"jQuery HTML example",html:$("
").addClass("some-class").text("jQuery is everywhere."),animation:!1,customClass:"animated tada"})}),$("#kt_sweetalert_demo_8").click(function(e){swal.fire({title:"Are you sure?",text:"You won't be able to revert this!",type:"warning",showCancelButton:!0,confirmButtonText:"Yes, delete it!"}).then(function(e){e.value&&swal.fire("Deleted!","Your file has been deleted.","success")})}),$("#kt_sweetalert_demo_9").click(function(e){swal.fire({title:"Are you sure?",text:"You won't be able to revert this!",type:"warning",showCancelButton:!0,confirmButtonText:"Yes, delete it!",cancelButtonText:"No, cancel!",reverseButtons:!0}).then(function(e){e.value?swal.fire("Deleted!","Your file has been deleted.","success"):"cancel"===e.dismiss&&swal.fire("Cancelled","Your imaginary file is safe :)","error")})}),$("#kt_sweetalert_demo_10").click(function(e){swal.fire({title:"Sweet!",text:"Modal with a custom image.",imageUrl:"https://unsplash.it/400/200",imageWidth:400,imageHeight:200,imageAlt:"Custom image",animation:!1})}),$("#kt_sweetalert_demo_11").click(function(e){swal.fire({title:"Auto close alert!",text:"I will close in 5 seconds.",timer:5e3,onOpen:function(){swal.showLoading()}}).then(function(e){"timer"===e.dismiss&&console.log("I was closed by the timer")})})}};jQuery(document).ready(function(){KTSweetAlert2Demo.init()}); \ No newline at end of file +'use strict'; +var KTSweetAlert2Demo = { + init: function() { + $('#kt_sweetalert_demo_1').click(function(e) { + swal.fire('Good job!'); + }), + $('#kt_sweetalert_demo_2').click(function(e) { + swal.fire("Here's the title!", "...and here's the text!"); + }), + $('#kt_sweetalert_demo_3_1').click(function(e) { + swal.fire('Good job!', 'You clicked the button!', 'warning'); + }), + $('#kt_sweetalert_demo_3_2').click(function(e) { + swal.fire('Good job!', 'You clicked the button!', 'error'); + }), + $('#kt_sweetalert_demo_3_3').click(function(e) { + swal.fire('Good job!', 'You clicked the button!', 'success'); + }), + $('#kt_sweetalert_demo_3_4').click(function(e) { + swal.fire('Good job!', 'You clicked the button!', 'info'); + }), + $('#kt_sweetalert_demo_3_5').click(function(e) { + swal.fire('Good job!', 'You clicked the button!', 'question'); + }), + $('#kt_sweetalert_demo_4').click(function(e) { + swal.fire({ + title: 'Good job!', + text: 'You clicked the button!', + type: 'success', + confirmButtonText: 'Confirm me!', + confirmButtonClass: 'btn btn-focus--pill--air', + }); + }), + $('#kt_sweetalert_demo_5').click(function(e) { + swal.fire({ + title: 'Good job!', + text: 'You clicked the button!', + type: 'success', + confirmButtonText: "I am game!", + confirmButtonClass: 'btn btn-danger--pill--air--icon', + showCancelButton: !0, + cancelButtonText: "No, thanks", + cancelButtonClass: 'btn btn-secondary--pill--icon', + }); + }), + $('#kt_sweetalert_demo_6').click(function(e) { + swal.fire({ + position: 'top-right', + type: 'success', + title: 'Your work has been saved', + showConfirmButton: !1, + timer: 1500, + }); + }), + $('#kt_sweetalert_demo_7').click(function(e) { + swal.fire({ + title: 'jQuery HTML example', + html: $('
') + .addClass('some-class') + .text('jQuery is everywhere.'), + animation: !1, + customClass: 'animated tada', + }); + }), + $('#kt_sweetalert_demo_8').click(function(e) { + swal + .fire({ + title: 'Are you sure?', + text: "You won't be able to revert this!", + type: 'warning', + showCancelButton: !0, + confirmButtonText: 'Yes, delete it!', + }) + .then(function(e) { + e.value && swal.fire('Deleted!', 'Your file has been deleted.', 'success'); + }); + }), + $('#kt_sweetalert_demo_9').click(function(e) { + swal + .fire({ + title: 'Are you sure?', + text: "You won't be able to revert this!", + type: 'warning', + showCancelButton: !0, + confirmButtonText: 'Yes, delete it!', + cancelButtonText: 'No, cancel!', + reverseButtons: !0, + }) + .then(function(e) { + e.value + ? swal.fire('Deleted!', 'Your file has been deleted.', 'success') + : 'cancel' === e.dismiss && swal.fire('Cancelled', 'Your imaginary file is safe :)', 'error'); + }); + }), + $('#kt_sweetalert_demo_10').click(function(e) { + swal.fire({ + title: 'Sweet!', + text: 'Modal with a custom image.', + imageUrl: 'https://unsplash.it/400/200', + imageWidth: 400, + imageHeight: 200, + imageAlt: 'Custom image', + animation: !1, + }); + }), + $('#kt_sweetalert_demo_11').click(function(e) { + swal + .fire({ + title: 'Auto close alert!', + text: 'I will close in 5 seconds.', + timer: 5e3, + onOpen: function() { + swal.showLoading(); + }, + }) + .then(function(e) { + 'timer' === e.dismiss && console.log('I was closed by the timer'); + }); + }); + }, +}; +jQuery(document).ready(function() { + KTSweetAlert2Demo.init(); +}); diff --git a/src/assets/app/custom/general/components/extended/toastr.js b/src/assets/app/custom/general/components/extended/toastr.js index 40bc674..d56645f 100644 --- a/src/assets/app/custom/general/components/extended/toastr.js +++ b/src/assets/app/custom/general/components/extended/toastr.js @@ -1 +1,103 @@ -"use strict";var KTToastrDemo=function(){var t=function(){var t,o=-1,e=0;$("#showtoast").click(function(){var n,a=$("#toastTypeGroup input:radio:checked").val(),i=$("#message").val(),s=$("#title").val()||"",r=$("#showDuration"),l=$("#hideDuration"),c=$("#timeOut"),u=$("#extendedTimeOut"),p=$("#showEasing"),d=$("#hideEasing"),h=$("#showMethod"),v=$("#hideMethod"),g=e++,f=$("#addClear").prop("checked");toastr.options={closeButton:$("#closeButton").prop("checked"),debug:$("#debugInfo").prop("checked"),newestOnTop:$("#newestOnTop").prop("checked"),progressBar:$("#progressBar").prop("checked"),positionClass:$("#positionGroup input:radio:checked").val()||"toast-top-right",preventDuplicates:$("#preventDuplicates").prop("checked"),onclick:null},$("#addBehaviorOnToastClick").prop("checked")&&(toastr.options.onclick=function(){alert("You can perform some custom action after a toast goes away")}),r.val().length&&(toastr.options.showDuration=r.val()),l.val().length&&(toastr.options.hideDuration=l.val()),c.val().length&&(toastr.options.timeOut=f?0:c.val()),u.val().length&&(toastr.options.extendedTimeOut=f?0:u.val()),p.val().length&&(toastr.options.showEasing=p.val()),d.val().length&&(toastr.options.hideEasing=d.val()),h.val().length&&(toastr.options.showMethod=h.val()),v.val().length&&(toastr.options.hideMethod=v.val()),f&&(i=function(t){return t=t||"Clear itself?",t+='

'}(i),toastr.options.tapToDismiss=!1),i||(++o===(n=["New order has been placed!","Are you the six fingered man?","Inconceivable!","I do not think that means what you think it means.","Have fun storming the castle!"]).length&&(o=0),i=n[o]),$("#toastrOptions").text("toastr.options = "+JSON.stringify(toastr.options,null,2)+";\n\ntoastr."+a+'("'+i+(s?'", "'+s:"")+'");');var k=toastr[a](i,s);t=k,void 0!==k&&(k.find("#okBtn").length&&k.delegate("#okBtn","click",function(){alert("you clicked me. i was toast #"+g+". goodbye!"),k.remove()}),k.find("#surpriseBtn").length&&k.delegate("#surpriseBtn","click",function(){alert("Surprise! you clicked me. i was toast #"+g+". You could perform an action here.")}),k.find(".clear").length&&k.delegate(".clear","click",function(){toastr.clear(k,{force:!0})}))}),$("#clearlasttoast").click(function(){toastr.clear(t)}),$("#cleartoasts").click(function(){toastr.clear()})};return{init:function(){t()}}}();jQuery(document).ready(function(){KTToastrDemo.init()}); \ No newline at end of file +'use strict'; +var KTToastrDemo = (function() { + var t = function() { + var t, + o = -1, + e = 0; + $('#showtoast').click(function() { + var n, + a = $('#toastTypeGroup input:radio:checked').val(), + i = $('#message').val(), + s = $('#title').val() || '', + r = $('#showDuration'), + l = $('#hideDuration'), + c = $('#timeOut'), + u = $('#extendedTimeOut'), + p = $('#showEasing'), + d = $('#hideEasing'), + h = $('#showMethod'), + v = $('#hideMethod'), + g = e++, + f = $('#addClear').prop('checked'); + (toastr.options = { + closeButton: $('#closeButton').prop('checked'), + debug: $('#debugInfo').prop('checked'), + newestOnTop: $('#newestOnTop').prop('checked'), + progressBar: $('#progressBar').prop('checked'), + positionClass: $('#positionGroup input:radio:checked').val() || 'toast-top-right', + preventDuplicates: $('#preventDuplicates').prop('checked'), + onclick: null, + }), + $('#addBehaviorOnToastClick').prop('checked') && + (toastr.options.onclick = function() { + alert('You can perform some custom action after a toast goes away'); + }), + r.val().length && (toastr.options.showDuration = r.val()), + l.val().length && (toastr.options.hideDuration = l.val()), + c.val().length && (toastr.options.timeOut = f ? 0 : c.val()), + u.val().length && (toastr.options.extendedTimeOut = f ? 0 : u.val()), + p.val().length && (toastr.options.showEasing = p.val()), + d.val().length && (toastr.options.hideEasing = d.val()), + h.val().length && (toastr.options.showMethod = h.val()), + v.val().length && (toastr.options.hideMethod = v.val()), + f && + ((i = (function(t) { + return ( + (t = t || 'Clear itself?'), + (t += + '

') + ); + })(i)), + (toastr.options.tapToDismiss = !1)), + i || + (++o === + (n = [ + 'New order has been placed!', + 'Are you the six fingered man?', + 'Inconceivable!', + 'I do not think that means what you think it means.', + 'Have fun storming the castle!', + ]).length && (o = 0), + (i = n[o])), + $('#toastrOptions').text( + 'toastr.options = ' + + JSON.stringify(toastr.options, null, 2) + + ';\n\ntoastr.' + + a + + '("' + + i + + (s ? '", "' + s : '') + + '");', + ); + var k = toastr[a](i, s); + (t = k), + void 0 !== k && + (k.find('#okBtn').length && + k.delegate('#okBtn', 'click', function() { + alert('you clicked me. i was toast #' + g + '. goodbye!'), k.remove(); + }), + k.find('#surpriseBtn').length && + k.delegate('#surpriseBtn', 'click', function() { + alert('Surprise! you clicked me. i was toast #' + g + '. You could perform an action here.'); + }), + k.find('.clear').length && + k.delegate('.clear', 'click', function() { + toastr.clear(k, { force: !0 }); + })); + }), + $('#clearlasttoast').click(function() { + toastr.clear(t); + }), + $('#cleartoasts').click(function() { + toastr.clear(); + }); + }; + return { + init: function() { + t(); + }, + }; +})(); +jQuery(document).ready(function() { + KTToastrDemo.init(); +}); diff --git a/src/assets/app/custom/general/components/extended/treeview.js b/src/assets/app/custom/general/components/extended/treeview.js index bb0f54a..d4bdf29 100644 --- a/src/assets/app/custom/general/components/extended/treeview.js +++ b/src/assets/app/custom/general/components/extended/treeview.js @@ -1 +1,145 @@ -"use strict";var KTTreeview={init:function(){$("#kt_tree_1").jstree({core:{themes:{responsive:!1}},types:{default:{icon:"fa fa-folder"},file:{icon:"fa fa-file"}},plugins:["types"]}),$("#kt_tree_2").jstree({core:{themes:{responsive:!1}},types:{default:{icon:"fa fa-folder kt-font-warning"},file:{icon:"fa fa-file kt-font-warning"}},plugins:["types"]}),$("#kt_tree_2").on("select_node.jstree",function(e,t){var n=$("#"+t.selected).find("a");if("#"!=n.attr("href")&&"javascript:;"!=n.attr("href")&&""!=n.attr("href"))return"_blank"==n.attr("target")&&(n.attr("href").target="_blank"),document.location.href=n.attr("href"),!1}),$("#kt_tree_3").jstree({plugins:["wholerow","checkbox","types"],core:{themes:{responsive:!1},data:[{text:"Same but with checkboxes",children:[{text:"initially selected",state:{selected:!0}},{text:"custom icon",icon:"fa fa-warning kt-font-danger"},{text:"initially open",icon:"fa fa-folder kt-font-default",state:{opened:!0},children:["Another node"]},{text:"custom icon",icon:"fa fa-warning kt-font-waring"},{text:"disabled node",icon:"fa fa-check kt-font-success",state:{disabled:!0}}]},"And wholerow selection"]},types:{default:{icon:"fa fa-folder kt-font-warning"},file:{icon:"fa fa-file kt-font-warning"}}}),$("#kt_tree_4").jstree({core:{themes:{responsive:!1},check_callback:!0,data:[{text:"Parent Node",children:[{text:"Initially selected",state:{selected:!0}},{text:"Custom Icon",icon:"fa fa-warning kt-font-danger"},{text:"Initially open",icon:"fa fa-folder kt-font-success",state:{opened:!0},children:[{text:"Another node",icon:"fa fa-file kt-font-waring"}]},{text:"Another Custom Icon",icon:"fa fa-warning kt-font-waring"},{text:"Disabled Node",icon:"fa fa-check kt-font-success",state:{disabled:!0}},{text:"Sub Nodes",icon:"fa fa-folder kt-font-danger",children:[{text:"Item 1",icon:"fa fa-file kt-font-waring"},{text:"Item 2",icon:"fa fa-file kt-font-success"},{text:"Item 3",icon:"fa fa-file kt-font-default"},{text:"Item 4",icon:"fa fa-file kt-font-danger"},{text:"Item 5",icon:"fa fa-file kt-font-info"}]}]},"Another Node"]},types:{default:{icon:"fa fa-folder kt-font-brand"},file:{icon:"fa fa-file kt-font-brand"}},state:{key:"demo2"},plugins:["contextmenu","state","types"]}),$("#kt_tree_5").jstree({core:{themes:{responsive:!1},check_callback:!0,data:[{text:"Parent Node",children:[{text:"Initially selected",state:{selected:!0}},{text:"Custom Icon",icon:"fa fa-warning kt-font-danger"},{text:"Initially open",icon:"fa fa-folder kt-font-success",state:{opened:!0},children:[{text:"Another node",icon:"fa fa-file kt-font-waring"}]},{text:"Another Custom Icon",icon:"fa fa-warning kt-font-waring"},{text:"Disabled Node",icon:"fa fa-check kt-font-success",state:{disabled:!0}},{text:"Sub Nodes",icon:"fa fa-folder kt-font-danger",children:[{text:"Item 1",icon:"fa fa-file kt-font-waring"},{text:"Item 2",icon:"fa fa-file kt-font-success"},{text:"Item 3",icon:"fa fa-file kt-font-default"},{text:"Item 4",icon:"fa fa-file kt-font-danger"},{text:"Item 5",icon:"fa fa-file kt-font-info"}]}]},"Another Node"]},types:{default:{icon:"fa fa-folder kt-font-success"},file:{icon:"fa fa-file kt-font-success"}},state:{key:"demo2"},plugins:["dnd","state","types"]}),$("#kt_tree_6").jstree({core:{themes:{responsive:!1},check_callback:!0,data:{url:function(e){return"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/jstree/ajax_data.php"},data:function(e){return{parent:e.id}}}},types:{default:{icon:"fa fa-folder kt-font-brand"},file:{icon:"fa fa-file kt-font-brand"}},state:{key:"demo3"},plugins:["dnd","state","types"]})}};jQuery(document).ready(function(){KTTreeview.init()}); \ No newline at end of file +'use strict'; +var KTTreeview = { + init: function() { + $('#kt_tree_1').jstree({ + core: { themes: { responsive: !1 } }, + types: { default: { icon: 'fa fa-folder' }, file: { icon: 'fa fa-file' } }, + plugins: ['types'], + }), + $('#kt_tree_2').jstree({ + core: { themes: { responsive: !1 } }, + types: { default: { icon: 'fa fa-folder kt-font-warning' }, file: { icon: 'fa fa-file kt-font-warning' } }, + plugins: ['types'], + }), + $('#kt_tree_2').on('select_node.jstree', function(e, t) { + var n = $('#' + t.selected).find('a'); + if ('#' != n.attr('href') && 'javascript:;' != n.attr('href') && '' != n.attr('href')) + return ( + '_blank' == n.attr('target') && (n.attr('href').target = '_blank'), + (document.location.href = n.attr('href')), + !1 + ); + }), + $('#kt_tree_3').jstree({ + plugins: ['wholerow', 'checkbox', 'types'], + core: { + themes: { responsive: !1 }, + data: [ + { + text: 'Same but with checkboxes', + children: [ + { text: 'initially selected', state: { selected: !0 } }, + { text: 'custom icon', icon: 'fa fa-warning kt-font-danger' }, + { + text: 'initially open', + icon: 'fa fa-folder kt-font-default', + state: { opened: !0 }, + children: ['Another node'], + }, + { text: 'custom icon', icon: 'fa fa-warning kt-font-waring' }, + { text: 'disabled node', icon: 'fa fa-check kt-font-success', state: { disabled: !0 } }, + ], + }, + 'And wholerow selection', + ], + }, + types: { default: { icon: 'fa fa-folder kt-font-warning' }, file: { icon: 'fa fa-file kt-font-warning' } }, + }), + $('#kt_tree_4').jstree({ + core: { + themes: { responsive: !1 }, + check_callback: !0, + data: [ + { + text: 'Parent Node', + children: [ + { text: 'Initially selected', state: { selected: !0 } }, + { text: 'Custom Icon', icon: 'fa fa-warning kt-font-danger' }, + { + text: 'Initially open', + icon: 'fa fa-folder kt-font-success', + state: { opened: !0 }, + children: [{ text: 'Another node', icon: 'fa fa-file kt-font-waring' }], + }, + { text: 'Another Custom Icon', icon: 'fa fa-warning kt-font-waring' }, + { text: 'Disabled Node', icon: 'fa fa-check kt-font-success', state: { disabled: !0 } }, + { + text: 'Sub Nodes', + icon: 'fa fa-folder kt-font-danger', + children: [ + { text: 'Item 1', icon: 'fa fa-file kt-font-waring' }, + { text: 'Item 2', icon: 'fa fa-file kt-font-success' }, + { text: 'Item 3', icon: 'fa fa-file kt-font-default' }, + { text: 'Item 4', icon: 'fa fa-file kt-font-danger' }, + { text: 'Item 5', icon: 'fa fa-file kt-font-info' }, + ], + }, + ], + }, + 'Another Node', + ], + }, + types: { default: { icon: 'fa fa-folder kt-font-brand' }, file: { icon: 'fa fa-file kt-font-brand' } }, + state: { key: 'demo2' }, + plugins: ['contextmenu', 'state', 'types'], + }), + $('#kt_tree_5').jstree({ + core: { + themes: { responsive: !1 }, + check_callback: !0, + data: [ + { + text: 'Parent Node', + children: [ + { text: 'Initially selected', state: { selected: !0 } }, + { text: 'Custom Icon', icon: 'fa fa-warning kt-font-danger' }, + { + text: 'Initially open', + icon: 'fa fa-folder kt-font-success', + state: { opened: !0 }, + children: [{ text: 'Another node', icon: 'fa fa-file kt-font-waring' }], + }, + { text: 'Another Custom Icon', icon: 'fa fa-warning kt-font-waring' }, + { text: 'Disabled Node', icon: 'fa fa-check kt-font-success', state: { disabled: !0 } }, + { + text: 'Sub Nodes', + icon: 'fa fa-folder kt-font-danger', + children: [ + { text: 'Item 1', icon: 'fa fa-file kt-font-waring' }, + { text: 'Item 2', icon: 'fa fa-file kt-font-success' }, + { text: 'Item 3', icon: 'fa fa-file kt-font-default' }, + { text: 'Item 4', icon: 'fa fa-file kt-font-danger' }, + { text: 'Item 5', icon: 'fa fa-file kt-font-info' }, + ], + }, + ], + }, + 'Another Node', + ], + }, + types: { default: { icon: 'fa fa-folder kt-font-success' }, file: { icon: 'fa fa-file kt-font-success' } }, + state: { key: 'demo2' }, + plugins: ['dnd', 'state', 'types'], + }), + $('#kt_tree_6').jstree({ + core: { + themes: { responsive: !1 }, + check_callback: !0, + data: { + url: function(e) { + return 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/jstree/ajax_data.php'; + }, + data: function(e) { + return { parent: e.id }; + }, + }, + }, + types: { default: { icon: 'fa fa-folder kt-font-brand' }, file: { icon: 'fa fa-file kt-font-brand' } }, + state: { key: 'demo3' }, + plugins: ['dnd', 'state', 'types'], + }); + }, +}; +jQuery(document).ready(function() { + KTTreeview.init(); +}); diff --git a/src/assets/app/custom/general/components/maps/google-maps.js b/src/assets/app/custom/general/components/maps/google-maps.js index 30a7196..02de731 100644 --- a/src/assets/app/custom/general/components/maps/google-maps.js +++ b/src/assets/app/custom/general/components/maps/google-maps.js @@ -1 +1,132 @@ -"use strict";var KTGoogleMapsDemo={init:function(){var t;new GMaps({div:"#kt_gmap_1",lat:-12.043333,lng:-77.028333}),new GMaps({div:"#kt_gmap_2",zoom:16,lat:-12.043333,lng:-77.028333,click:function(t){alert("click")},dragend:function(t){alert("dragend")}}),(t=new GMaps({div:"#kt_gmap_3",lat:-51.38739,lng:-6.187181})).addMarker({lat:-51.38739,lng:-6.187181,title:"Lima",details:{database_id:42,author:"HPNeo"},click:function(t){console.log&&console.log(t),alert("You clicked in this marker")}}),t.addMarker({lat:-12.042,lng:-77.028333,title:"Marker with InfoWindow",infoWindow:{content:'HTML Content!'}}),t.setZoom(5),function(){var t=new GMaps({div:"#kt_gmap_4",lat:-12.043333,lng:-77.028333});GMaps.geolocate({success:function(e){t.setCenter(e.coords.latitude,e.coords.longitude)},error:function(t){alert("Geolocation failed: "+t.message)},not_supported:function(){alert("Your browser does not support geolocation")},always:function(){}})}(),new GMaps({div:"#kt_gmap_5",lat:-12.043333,lng:-77.028333,click:function(t){console.log(t)}}).drawPolyline({path:[[-12.044012922866312,-77.02470665341184],[-12.05449279282314,-77.03024273281858],[-12.055122327623378,-77.03039293652341],[-12.075917129727586,-77.02764635449216],[-12.07635776902266,-77.02792530422971],[-12.076819390363665,-77.02893381481931],[-12.088527520066453,-77.0241058385925],[-12.090814532191756,-77.02271108990476]],strokeColor:"#131540",strokeOpacity:.6,strokeWeight:6}),new GMaps({div:"#kt_gmap_6",lat:-12.043333,lng:-77.028333}).drawPolygon({paths:[[-12.040397656836609,-77.03373871559225],[-12.040248585302038,-77.03993927003302],[-12.050047116528843,-77.02448169303511],[-12.044804866577001,-77.02154422636042]],strokeColor:"#BBD8E9",strokeOpacity:1,strokeWeight:3,fillColor:"#BBD8E9",fillOpacity:.6}),function(){var t=new GMaps({div:"#kt_gmap_7",lat:-12.043333,lng:-77.028333});$("#kt_gmap_7_btn").click(function(e){e.preventDefault(),KTUtil.scrollTo("kt_gmap_7_btn",400),t.travelRoute({origin:[-12.044012922866312,-77.02470665341184],destination:[-12.090814532191756,-77.02271108990476],travelMode:"driving",step:function(e){$("#kt_gmap_7_routes").append("
  • "+e.instructions+"
  • "),$("#kt_gmap_7_routes li:eq("+e.step_number+")").delay(800*e.step_number).fadeIn(500,function(){t.setCenter(e.end_location.lat(),e.end_location.lng()),t.drawPolyline({path:e.path,strokeColor:"#131540",strokeOpacity:.6,strokeWeight:6})})}})})}(),function(){var t=new GMaps({div:"#kt_gmap_8",lat:-12.043333,lng:-77.028333}),e=function(){var e=$.trim($("#kt_gmap_8_address").val());GMaps.geocode({address:e,callback:function(e,o){if("OK"==o){var n=e[0].geometry.location;t.setCenter(n.lat(),n.lng()),t.addMarker({lat:n.lat(),lng:n.lng()}),KTUtil.scrollTo("kt_gmap_8")}}})};$("#kt_gmap_8_btn").click(function(t){t.preventDefault(),e()}),$("#kt_gmap_8_address").keypress(function(t){"13"==(t.keyCode?t.keyCode:t.which)&&(t.preventDefault(),e())})}()}};jQuery(document).ready(function(){KTGoogleMapsDemo.init()}); \ No newline at end of file +'use strict'; +var KTGoogleMapsDemo = { + init: function() { + var t; + new GMaps({ div: '#kt_gmap_1', lat: -12.043333, lng: -77.028333 }), + new GMaps({ + div: '#kt_gmap_2', + zoom: 16, + lat: -12.043333, + lng: -77.028333, + click: function(t) { + alert('click'); + }, + dragend: function(t) { + alert('dragend'); + }, + }), + (t = new GMaps({ div: '#kt_gmap_3', lat: -51.38739, lng: -6.187181 })).addMarker({ + lat: -51.38739, + lng: -6.187181, + title: 'Lima', + details: { database_id: 42, author: 'HPNeo' }, + click: function(t) { + console.log && console.log(t), alert('You clicked in this marker'); + }, + }), + t.addMarker({ + lat: -12.042, + lng: -77.028333, + title: 'Marker with InfoWindow', + infoWindow: { content: 'HTML Content!' }, + }), + t.setZoom(5), + (function() { + var t = new GMaps({ div: '#kt_gmap_4', lat: -12.043333, lng: -77.028333 }); + GMaps.geolocate({ + success: function(e) { + t.setCenter(e.coords.latitude, e.coords.longitude); + }, + error: function(t) { + alert('Geolocation failed: ' + t.message); + }, + not_supported: function() { + alert('Your browser does not support geolocation'); + }, + always: function() {}, + }); + })(), + new GMaps({ + div: '#kt_gmap_5', + lat: -12.043333, + lng: -77.028333, + click: function(t) { + console.log(t); + }, + }).drawPolyline({ + path: [ + [-12.044012922866312, -77.02470665341184], + [-12.05449279282314, -77.03024273281858], + [-12.055122327623378, -77.03039293652341], + [-12.075917129727586, -77.02764635449216], + [-12.07635776902266, -77.02792530422971], + [-12.076819390363665, -77.02893381481931], + [-12.088527520066453, -77.0241058385925], + [-12.090814532191756, -77.02271108990476], + ], + strokeColor: '#131540', + strokeOpacity: 0.6, + strokeWeight: 6, + }), + new GMaps({ div: '#kt_gmap_6', lat: -12.043333, lng: -77.028333 }).drawPolygon({ + paths: [ + [-12.040397656836609, -77.03373871559225], + [-12.040248585302038, -77.03993927003302], + [-12.050047116528843, -77.02448169303511], + [-12.044804866577001, -77.02154422636042], + ], + strokeColor: '#BBD8E9', + strokeOpacity: 1, + strokeWeight: 3, + fillColor: '#BBD8E9', + fillOpacity: 0.6, + }), + (function() { + var t = new GMaps({ div: '#kt_gmap_7', lat: -12.043333, lng: -77.028333 }); + $('#kt_gmap_7_btn').click(function(e) { + e.preventDefault(), + KTUtil.scrollTo('kt_gmap_7_btn', 400), + t.travelRoute({ + origin: [-12.044012922866312, -77.02470665341184], + destination: [-12.090814532191756, -77.02271108990476], + travelMode: 'driving', + step: function(e) { + $('#kt_gmap_7_routes').append('
  • ' + e.instructions + '
  • '), + $('#kt_gmap_7_routes li:eq(' + e.step_number + ')') + .delay(800 * e.step_number) + .fadeIn(500, function() { + t.setCenter(e.end_location.lat(), e.end_location.lng()), + t.drawPolyline({ path: e.path, strokeColor: '#131540', strokeOpacity: 0.6, strokeWeight: 6 }); + }); + }, + }); + }); + })(), + (function() { + var t = new GMaps({ div: '#kt_gmap_8', lat: -12.043333, lng: -77.028333 }), + e = function() { + var e = $.trim($('#kt_gmap_8_address').val()); + GMaps.geocode({ + address: e, + callback: function(e, o) { + if ('OK' == o) { + var n = e[0].geometry.location; + t.setCenter(n.lat(), n.lng()), + t.addMarker({ lat: n.lat(), lng: n.lng() }), + KTUtil.scrollTo('kt_gmap_8'); + } + }, + }); + }; + $('#kt_gmap_8_btn').click(function(t) { + t.preventDefault(), e(); + }), + $('#kt_gmap_8_address').keypress(function(t) { + '13' == (t.keyCode ? t.keyCode : t.which) && (t.preventDefault(), e()); + }); + })(); + }, +}; +jQuery(document).ready(function() { + KTGoogleMapsDemo.init(); +}); diff --git a/src/assets/app/custom/general/components/maps/jqvmap.js b/src/assets/app/custom/general/components/maps/jqvmap.js index be7eea2..156279f 100644 --- a/src/assets/app/custom/general/components/maps/jqvmap.js +++ b/src/assets/app/custom/general/components/maps/jqvmap.js @@ -1 +1,226 @@ -"use strict";var KTjQVMapDemo=function(){var e={af:"16.63",al:"11.58",dz:"158.97",ao:"85.81",ag:"1.1",ar:"351.02",am:"8.83",au:"1219.72",at:"366.26",az:"52.17",bs:"7.54",bh:"21.73",bd:"105.4",bb:"3.96",by:"52.89",be:"461.33",bz:"1.43",bj:"6.49",bt:"1.4",bo:"19.18",ba:"16.2",bw:"12.5",br:"2023.53",bn:"11.96",bg:"44.84",bf:"8.67",bi:"1.47",kh:"11.36",cm:"21.88",ca:"1563.66",cv:"1.57",cf:"2.11",td:"7.59",cl:"199.18",cn:"5745.13",co:"283.11",km:"0.56",cd:"12.6",cg:"11.88",cr:"35.02",ci:"22.38",hr:"59.92",cy:"22.75",cz:"195.23",dk:"304.56",dj:"1.14",dm:"0.38",do:"50.87",ec:"61.49",eg:"216.83",sv:"21.8",gq:"14.55",er:"2.25",ee:"19.22",et:"30.94",fj:"3.15",fi:"231.98",fr:"2555.44",ga:"12.56",gm:"1.04",ge:"11.23",de:"3305.9",gh:"18.06",gr:"305.01",gd:"0.65",gt:"40.77",gn:"4.34",gw:"0.83",gy:"2.2",ht:"6.5",hn:"15.34",hk:"226.49",hu:"132.28",is:"12.77",in:"1430.02",id:"695.06",ir:"337.9",iq:"84.14",ie:"204.14",il:"201.25",it:"2036.69",jm:"13.74",jp:"5390.9",jo:"27.13",kz:"129.76",ke:"32.42",ki:"0.15",kr:"986.26",undefined:"5.73",kw:"117.32",kg:"4.44",la:"6.34",lv:"23.39",lb:"39.15",ls:"1.8",lr:"0.98",ly:"77.91",lt:"35.73",lu:"52.43",mk:"9.58",mg:"8.33",mw:"5.04",my:"218.95",mv:"1.43",ml:"9.08",mt:"7.8",mr:"3.49",mu:"9.43",mx:"1004.04",md:"5.36",mn:"5.81",me:"3.88",ma:"91.7",mz:"10.21",mm:"35.65",na:"11.45",np:"15.11",nl:"770.31",nz:"138",ni:"6.38",ne:"5.6",ng:"206.66",no:"413.51",om:"53.78",pk:"174.79",pa:"27.2",pg:"8.81",py:"17.17",pe:"153.55",ph:"189.06",pl:"438.88",pt:"223.7",qa:"126.52",ro:"158.39",ru:"1476.91",rw:"5.69",ws:"0.55",st:"0.19",sa:"434.44",sn:"12.66",rs:"38.92",sc:"0.92",sl:"1.9",sg:"217.38",sk:"86.26",si:"46.44",sb:"0.67",za:"354.41",es:"1374.78",lk:"48.24",kn:"0.56",lc:"1",vc:"0.58",sd:"65.93",sr:"3.3",sz:"3.17",se:"444.59",ch:"522.44",sy:"59.63",tw:"426.98",tj:"5.58",tz:"22.43",th:"312.61",tl:"0.62",tg:"3.07",to:"0.3",tt:"21.2",tn:"43.86",tr:"729.05",tm:0,ug:"17.12",ua:"136.56",ae:"239.65",gb:"2258.57",us:"14624.18",uy:"40.71",uz:"37.72",vu:"0.72",ve:"285.21",vn:"101.99",ye:"30.02",zm:"15.69",zw:"5.57"},n=function(n){var t={map:"world_en",backgroundColor:null,color:"#ffffff",hoverOpacity:.7,selectedColor:"#666666",enableZoom:!0,showTooltip:!0,values:e,scaleColors:["#C8EEFF","#006491"],normalizeFunction:"polynomial",onRegionOver:function(e,n){"ca"==n&&e.preventDefault()},onRegionClick:function(e,n,t){var a='You clicked "'+t+'" which has the code: '+n.toUpperCase();alert(a)}};t.map=n+"_en";var a=jQuery("#kt_jqvmap_"+n);a.width(a.parent().width()),a.vectorMap(t)},t=function(){n("world"),n("usa"),n("europe"),n("russia"),n("germany")};return{init:function(){t(),KTUtil.addResizeHandler(function(){t()})}}}();jQuery(document).ready(function(){KTjQVMapDemo.init()}); \ No newline at end of file +'use strict'; +var KTjQVMapDemo = (function() { + var e = { + af: '16.63', + al: '11.58', + dz: '158.97', + ao: '85.81', + ag: '1.1', + ar: '351.02', + am: '8.83', + au: '1219.72', + at: '366.26', + az: '52.17', + bs: '7.54', + bh: '21.73', + bd: '105.4', + bb: '3.96', + by: '52.89', + be: '461.33', + bz: '1.43', + bj: '6.49', + bt: '1.4', + bo: '19.18', + ba: '16.2', + bw: '12.5', + br: '2023.53', + bn: '11.96', + bg: '44.84', + bf: '8.67', + bi: '1.47', + kh: '11.36', + cm: '21.88', + ca: '1563.66', + cv: '1.57', + cf: '2.11', + td: '7.59', + cl: '199.18', + cn: '5745.13', + co: '283.11', + km: '0.56', + cd: '12.6', + cg: '11.88', + cr: '35.02', + ci: '22.38', + hr: '59.92', + cy: '22.75', + cz: '195.23', + dk: '304.56', + dj: '1.14', + dm: '0.38', + do: '50.87', + ec: '61.49', + eg: '216.83', + sv: '21.8', + gq: '14.55', + er: '2.25', + ee: '19.22', + et: '30.94', + fj: '3.15', + fi: '231.98', + fr: '2555.44', + ga: '12.56', + gm: '1.04', + ge: '11.23', + de: '3305.9', + gh: '18.06', + gr: '305.01', + gd: '0.65', + gt: '40.77', + gn: '4.34', + gw: '0.83', + gy: '2.2', + ht: '6.5', + hn: '15.34', + hk: '226.49', + hu: '132.28', + is: '12.77', + in: '1430.02', + id: '695.06', + ir: '337.9', + iq: '84.14', + ie: '204.14', + il: '201.25', + it: '2036.69', + jm: '13.74', + jp: '5390.9', + jo: '27.13', + kz: '129.76', + ke: '32.42', + ki: '0.15', + kr: '986.26', + undefined: '5.73', + kw: '117.32', + kg: '4.44', + la: '6.34', + lv: '23.39', + lb: '39.15', + ls: '1.8', + lr: '0.98', + ly: '77.91', + lt: '35.73', + lu: '52.43', + mk: '9.58', + mg: '8.33', + mw: '5.04', + my: '218.95', + mv: '1.43', + ml: '9.08', + mt: '7.8', + mr: '3.49', + mu: '9.43', + mx: '1004.04', + md: '5.36', + mn: '5.81', + me: '3.88', + ma: '91.7', + mz: '10.21', + mm: '35.65', + na: '11.45', + np: '15.11', + nl: '770.31', + nz: '138', + ni: '6.38', + ne: '5.6', + ng: '206.66', + no: '413.51', + om: '53.78', + pk: '174.79', + pa: '27.2', + pg: '8.81', + py: '17.17', + pe: '153.55', + ph: '189.06', + pl: '438.88', + pt: '223.7', + qa: '126.52', + ro: '158.39', + ru: '1476.91', + rw: '5.69', + ws: '0.55', + st: '0.19', + sa: '434.44', + sn: '12.66', + rs: '38.92', + sc: '0.92', + sl: '1.9', + sg: '217.38', + sk: '86.26', + si: '46.44', + sb: '0.67', + za: '354.41', + es: '1374.78', + lk: '48.24', + kn: '0.56', + lc: '1', + vc: '0.58', + sd: '65.93', + sr: '3.3', + sz: '3.17', + se: '444.59', + ch: '522.44', + sy: '59.63', + tw: '426.98', + tj: '5.58', + tz: '22.43', + th: '312.61', + tl: '0.62', + tg: '3.07', + to: '0.3', + tt: '21.2', + tn: '43.86', + tr: '729.05', + tm: 0, + ug: '17.12', + ua: '136.56', + ae: '239.65', + gb: '2258.57', + us: '14624.18', + uy: '40.71', + uz: '37.72', + vu: '0.72', + ve: '285.21', + vn: '101.99', + ye: '30.02', + zm: '15.69', + zw: '5.57', + }, + n = function(n) { + var t = { + map: 'world_en', + backgroundColor: null, + color: '#ffffff', + hoverOpacity: 0.7, + selectedColor: '#666666', + enableZoom: !0, + showTooltip: !0, + values: e, + scaleColors: ['#C8EEFF', '#006491'], + normalizeFunction: 'polynomial', + onRegionOver: function(e, n) { + 'ca' == n && e.preventDefault(); + }, + onRegionClick: function(e, n, t) { + var a = 'You clicked "' + t + '" which has the code: ' + n.toUpperCase(); + alert(a); + }, + }; + t.map = n + '_en'; + var a = jQuery('#kt_jqvmap_' + n); + a.width(a.parent().width()), a.vectorMap(t); + }, + t = function() { + n('world'), n('usa'), n('europe'), n('russia'), n('germany'); + }; + return { + init: function() { + t(), + KTUtil.addResizeHandler(function() { + t(); + }); + }, + }; +})(); +jQuery(document).ready(function() { + KTjQVMapDemo.init(); +}); diff --git a/src/assets/app/custom/general/components/maps/jvectormap.js b/src/assets/app/custom/general/components/maps/jvectormap.js index 286ec84..aa038de 100644 --- a/src/assets/app/custom/general/components/maps/jvectormap.js +++ b/src/assets/app/custom/general/components/maps/jvectormap.js @@ -1 +1,5 @@ -"use strict";var KTjVectorMap={init:function(){}};jQuery(document).ready(function(){KTjVectorMap.init()}); \ No newline at end of file +'use strict'; +var KTjVectorMap = { init: function() {} }; +jQuery(document).ready(function() { + KTjVectorMap.init(); +}); diff --git a/src/assets/app/custom/general/components/portlets/draggable.js b/src/assets/app/custom/general/components/portlets/draggable.js index 8476e99..dce45a5 100644 --- a/src/assets/app/custom/general/components/portlets/draggable.js +++ b/src/assets/app/custom/general/components/portlets/draggable.js @@ -1 +1,27 @@ -"use strict";var KTPortletDraggable={init:function(){$("#kt_sortable_portlets").sortable({connectWith:".kt-portlet__head",items:".kt-portlet",opacity:.8,handle:".kt-portlet__head",coneHelperSize:!0,placeholder:"kt-portlet--sortable-placeholder",forcePlaceholderSize:!0,tolerance:"pointer",helper:"clone",tolerance:"pointer",forcePlaceholderSize:!0,helper:"clone",cancel:".kt-portlet--sortable-empty",revert:250,update:function(e,t){t.item.prev().hasClass("kt-portlet--sortable-empty")&&t.item.prev().before(t.item)}})}};jQuery(document).ready(function(){KTPortletDraggable.init()}); \ No newline at end of file +'use strict'; +var KTPortletDraggable = { + init: function() { + $('#kt_sortable_portlets').sortable({ + connectWith: '.kt-portlet__head', + items: '.kt-portlet', + opacity: 0.8, + handle: '.kt-portlet__head', + coneHelperSize: !0, + placeholder: 'kt-portlet--sortable-placeholder', + forcePlaceholderSize: !0, + tolerance: 'pointer', + helper: 'clone', + tolerance: 'pointer', + forcePlaceholderSize: !0, + helper: 'clone', + cancel: '.kt-portlet--sortable-empty', + revert: 250, + update: function(e, t) { + t.item.prev().hasClass('kt-portlet--sortable-empty') && t.item.prev().before(t.item); + }, + }); + }, +}; +jQuery(document).ready(function() { + KTPortletDraggable.init(); +}); diff --git a/src/assets/app/custom/general/components/portlets/tools.js b/src/assets/app/custom/general/components/portlets/tools.js index f90f86e..8093a9f 100644 --- a/src/assets/app/custom/general/components/portlets/tools.js +++ b/src/assets/app/custom/general/components/portlets/tools.js @@ -1 +1,295 @@ -"use strict";var KTPortletTools={init:function(){var e;toastr.options.showDuration=1e3,(e=new KTPortlet("kt_portlet_tools_1")).on("beforeCollapse",function(e){setTimeout(function(){toastr.info("Before collapse event fired!")},100)}),e.on("afterCollapse",function(e){setTimeout(function(){toastr.warning("Before collapse event fired!")},2e3)}),e.on("beforeExpand",function(e){setTimeout(function(){toastr.info("Before expand event fired!")},100)}),e.on("afterExpand",function(e){setTimeout(function(){toastr.warning("After expand event fired!")},2e3)}),e.on("beforeRemove",function(e){return toastr.info("Before remove event fired!"),confirm("Are you sure to remove this portlet ?")}),e.on("afterRemove",function(e){setTimeout(function(){toastr.warning("After remove event fired!")},2e3)}),e.on("reload",function(e){toastr.info("Leload event fired!"),KTApp.block(e.getSelf(),{overlayColor:"#ffffff",type:"loader",state:"success",opacity:.3,size:"lg"}),setTimeout(function(){KTApp.unblock(e.getSelf())},2e3)}),e.on("afterFullscreenOn",function(e){toastr.warning("After fullscreen on event fired!");var t=$(e.getBody()).find("> .kt-scroll");t&&(t.data("original-height",t.css("height")),t.css("height","100%"),KTUtil.scrollUpdate(t[0]))}),e.on("afterFullscreenOff",function(e){var t;toastr.warning("After fullscreen off event fired!"),(t=$(e.getBody()).find("> .kt-scroll"))&&((t=$(e.getBody()).find("> .kt-scroll")).css("height",t.data("original-height")),KTUtil.scrollUpdate(t[0]))}),function(){var e=new KTPortlet("kt_portlet_tools_2");e.on("beforeCollapse",function(e){setTimeout(function(){toastr.info("Before collapse event fired!")},100)}),e.on("afterCollapse",function(e){setTimeout(function(){toastr.warning("Before collapse event fired!")},2e3)}),e.on("beforeExpand",function(e){setTimeout(function(){toastr.info("Before expand event fired!")},100)}),e.on("afterExpand",function(e){setTimeout(function(){toastr.warning("After expand event fired!")},2e3)}),e.on("beforeRemove",function(e){return toastr.info("Before remove event fired!"),confirm("Are you sure to remove this portlet ?")}),e.on("afterRemove",function(e){setTimeout(function(){toastr.warning("After remove event fired!")},2e3)}),e.on("reload",function(e){toastr.info("Leload event fired!"),KTApp.block(e.getSelf(),{overlayColor:"#000000",type:"spinner",state:"brand",opacity:.05,size:"lg"}),setTimeout(function(){KTApp.unblock(e.getSelf())},2e3)})}(),function(){var e=new KTPortlet("kt_portlet_tools_3");e.on("beforeCollapse",function(e){setTimeout(function(){toastr.info("Before collapse event fired!")},100)}),e.on("afterCollapse",function(e){setTimeout(function(){toastr.warning("Before collapse event fired!")},2e3)}),e.on("beforeExpand",function(e){setTimeout(function(){toastr.info("Before expand event fired!")},100)}),e.on("afterExpand",function(e){setTimeout(function(){toastr.warning("After expand event fired!")},2e3)}),e.on("beforeRemove",function(e){return toastr.info("Before remove event fired!"),confirm("Are you sure to remove this portlet ?")}),e.on("afterRemove",function(e){setTimeout(function(){toastr.warning("After remove event fired!")},2e3)}),e.on("reload",function(e){toastr.info("Leload event fired!"),KTApp.block(e.getSelf(),{type:"loader",state:"success",message:"Please wait..."}),setTimeout(function(){KTApp.unblock(e.getSelf())},2e3)}),e.on("afterFullscreenOn",function(e){toastr.warning("After fullscreen on event fired!");var t=$(e.getBody()).find("> .kt-scroll");t&&(t.data("original-height",t.css("height")),t.css("height","100%"),KTUtil.scrollUpdate(t[0]))}),e.on("afterFullscreenOff",function(e){var t;toastr.warning("After fullscreen off event fired!"),(t=$(e.getBody()).find("> .kt-scroll"))&&((t=$(e.getBody()).find("> .kt-scroll")).css("height",t.data("original-height")),KTUtil.scrollUpdate(t[0]))})}(),function(){var e=new KTPortlet("kt_portlet_tools_4");e.on("beforeCollapse",function(e){setTimeout(function(){toastr.info("Before collapse event fired!")},100)}),e.on("afterCollapse",function(e){setTimeout(function(){toastr.warning("Before collapse event fired!")},2e3)}),e.on("beforeExpand",function(e){setTimeout(function(){toastr.info("Before expand event fired!")},100)}),e.on("afterExpand",function(e){setTimeout(function(){toastr.warning("After expand event fired!")},2e3)}),e.on("beforeRemove",function(e){return toastr.info("Before remove event fired!"),confirm("Are you sure to remove this portlet ?")}),e.on("afterRemove",function(e){setTimeout(function(){toastr.warning("After remove event fired!")},2e3)}),e.on("reload",function(e){toastr.info("Leload event fired!"),KTApp.block(e.getSelf(),{type:"loader",state:"brand",message:"Please wait..."}),setTimeout(function(){KTApp.unblock(e.getSelf())},2e3)}),e.on("afterFullscreenOn",function(e){toastr.warning("After fullscreen on event fired!");var t=$(e.getBody()).find("> .kt-scroll");t&&(t.data("original-height",t.css("height")),t.css("height","100%"),KTUtil.scrollUpdate(t[0]))}),e.on("afterFullscreenOff",function(e){var t;toastr.warning("After fullscreen off event fired!"),(t=$(e.getBody()).find("> .kt-scroll"))&&((t=$(e.getBody()).find("> .kt-scroll")).css("height",t.data("original-height")),KTUtil.scrollUpdate(t[0]))})}(),function(){var e=new KTPortlet("kt_portlet_tools_5");e.on("beforeCollapse",function(e){setTimeout(function(){toastr.info("Before collapse event fired!")},100)}),e.on("afterCollapse",function(e){setTimeout(function(){toastr.warning("Before collapse event fired!")},2e3)}),e.on("beforeExpand",function(e){setTimeout(function(){toastr.info("Before expand event fired!")},100)}),e.on("afterExpand",function(e){setTimeout(function(){toastr.warning("After expand event fired!")},2e3)}),e.on("beforeRemove",function(e){return toastr.info("Before remove event fired!"),confirm("Are you sure to remove this portlet ?")}),e.on("afterRemove",function(e){setTimeout(function(){toastr.warning("After remove event fired!")},2e3)}),e.on("reload",function(e){toastr.info("Leload event fired!"),KTApp.block(e.getSelf(),{type:"loader",state:"brand",message:"Please wait..."}),setTimeout(function(){KTApp.unblock(e.getSelf())},2e3)}),e.on("afterFullscreenOn",function(e){toastr.info("After fullscreen on event fired!")}),e.on("afterFullscreenOff",function(e){toastr.warning("After fullscreen off event fired!")})}(),function(){var e=new KTPortlet("kt_portlet_tools_6");e.on("beforeCollapse",function(e){setTimeout(function(){toastr.info("Before collapse event fired!")},100)}),e.on("afterCollapse",function(e){setTimeout(function(){toastr.warning("Before collapse event fired!")},2e3)}),e.on("beforeExpand",function(e){setTimeout(function(){toastr.info("Before expand event fired!")},100)}),e.on("afterExpand",function(e){setTimeout(function(){toastr.warning("After expand event fired!")},2e3)}),e.on("beforeRemove",function(e){return toastr.info("Before remove event fired!"),confirm("Are you sure to remove this portlet ?")}),e.on("afterRemove",function(e){setTimeout(function(){toastr.warning("After remove event fired!")},2e3)}),e.on("reload",function(e){toastr.info("Leload event fired!"),KTApp.block(e.getSelf(),{type:"loader",state:"brand",message:"Please wait..."}),setTimeout(function(){KTApp.unblock(e.getSelf())},2e3)}),e.on("afterFullscreenOn",function(e){toastr.info("After fullscreen on event fired!")}),e.on("afterFullscreenOff",function(e){toastr.warning("After fullscreen off event fired!")})}()}};jQuery(document).ready(function(){KTPortletTools.init()}); \ No newline at end of file +'use strict'; +var KTPortletTools = { + init: function() { + var e; + (toastr.options.showDuration = 1e3), + (e = new KTPortlet('kt_portlet_tools_1')).on('beforeCollapse', function(e) { + setTimeout(function() { + toastr.info('Before collapse event fired!'); + }, 100); + }), + e.on('afterCollapse', function(e) { + setTimeout(function() { + toastr.warning('Before collapse event fired!'); + }, 2e3); + }), + e.on('beforeExpand', function(e) { + setTimeout(function() { + toastr.info('Before expand event fired!'); + }, 100); + }), + e.on('afterExpand', function(e) { + setTimeout(function() { + toastr.warning('After expand event fired!'); + }, 2e3); + }), + e.on('beforeRemove', function(e) { + return toastr.info('Before remove event fired!'), confirm('Are you sure to remove this portlet ?'); + }), + e.on('afterRemove', function(e) { + setTimeout(function() { + toastr.warning('After remove event fired!'); + }, 2e3); + }), + e.on('reload', function(e) { + toastr.info('Leload event fired!'), + KTApp.block(e.getSelf(), { + overlayColor: '#ffffff', + type: 'loader', + state: 'success', + opacity: 0.3, + size: 'lg', + }), + setTimeout(function() { + KTApp.unblock(e.getSelf()); + }, 2e3); + }), + e.on('afterFullscreenOn', function(e) { + toastr.warning('After fullscreen on event fired!'); + var t = $(e.getBody()).find('> .kt-scroll'); + t && (t.data('original-height', t.css('height')), t.css('height', '100%'), KTUtil.scrollUpdate(t[0])); + }), + e.on('afterFullscreenOff', function(e) { + var t; + toastr.warning('After fullscreen off event fired!'), + (t = $(e.getBody()).find('> .kt-scroll')) && + ((t = $(e.getBody()).find('> .kt-scroll')).css('height', t.data('original-height')), + KTUtil.scrollUpdate(t[0])); + }), + (function() { + var e = new KTPortlet('kt_portlet_tools_2'); + e.on('beforeCollapse', function(e) { + setTimeout(function() { + toastr.info('Before collapse event fired!'); + }, 100); + }), + e.on('afterCollapse', function(e) { + setTimeout(function() { + toastr.warning('Before collapse event fired!'); + }, 2e3); + }), + e.on('beforeExpand', function(e) { + setTimeout(function() { + toastr.info('Before expand event fired!'); + }, 100); + }), + e.on('afterExpand', function(e) { + setTimeout(function() { + toastr.warning('After expand event fired!'); + }, 2e3); + }), + e.on('beforeRemove', function(e) { + return toastr.info('Before remove event fired!'), confirm('Are you sure to remove this portlet ?'); + }), + e.on('afterRemove', function(e) { + setTimeout(function() { + toastr.warning('After remove event fired!'); + }, 2e3); + }), + e.on('reload', function(e) { + toastr.info('Leload event fired!'), + KTApp.block(e.getSelf(), { + overlayColor: '#000000', + type: 'spinner', + state: 'brand', + opacity: 0.05, + size: 'lg', + }), + setTimeout(function() { + KTApp.unblock(e.getSelf()); + }, 2e3); + }); + })(), + (function() { + var e = new KTPortlet('kt_portlet_tools_3'); + e.on('beforeCollapse', function(e) { + setTimeout(function() { + toastr.info('Before collapse event fired!'); + }, 100); + }), + e.on('afterCollapse', function(e) { + setTimeout(function() { + toastr.warning('Before collapse event fired!'); + }, 2e3); + }), + e.on('beforeExpand', function(e) { + setTimeout(function() { + toastr.info('Before expand event fired!'); + }, 100); + }), + e.on('afterExpand', function(e) { + setTimeout(function() { + toastr.warning('After expand event fired!'); + }, 2e3); + }), + e.on('beforeRemove', function(e) { + return toastr.info('Before remove event fired!'), confirm('Are you sure to remove this portlet ?'); + }), + e.on('afterRemove', function(e) { + setTimeout(function() { + toastr.warning('After remove event fired!'); + }, 2e3); + }), + e.on('reload', function(e) { + toastr.info('Leload event fired!'), + KTApp.block(e.getSelf(), { type: 'loader', state: 'success', message: 'Please wait...' }), + setTimeout(function() { + KTApp.unblock(e.getSelf()); + }, 2e3); + }), + e.on('afterFullscreenOn', function(e) { + toastr.warning('After fullscreen on event fired!'); + var t = $(e.getBody()).find('> .kt-scroll'); + t && (t.data('original-height', t.css('height')), t.css('height', '100%'), KTUtil.scrollUpdate(t[0])); + }), + e.on('afterFullscreenOff', function(e) { + var t; + toastr.warning('After fullscreen off event fired!'), + (t = $(e.getBody()).find('> .kt-scroll')) && + ((t = $(e.getBody()).find('> .kt-scroll')).css('height', t.data('original-height')), + KTUtil.scrollUpdate(t[0])); + }); + })(), + (function() { + var e = new KTPortlet('kt_portlet_tools_4'); + e.on('beforeCollapse', function(e) { + setTimeout(function() { + toastr.info('Before collapse event fired!'); + }, 100); + }), + e.on('afterCollapse', function(e) { + setTimeout(function() { + toastr.warning('Before collapse event fired!'); + }, 2e3); + }), + e.on('beforeExpand', function(e) { + setTimeout(function() { + toastr.info('Before expand event fired!'); + }, 100); + }), + e.on('afterExpand', function(e) { + setTimeout(function() { + toastr.warning('After expand event fired!'); + }, 2e3); + }), + e.on('beforeRemove', function(e) { + return toastr.info('Before remove event fired!'), confirm('Are you sure to remove this portlet ?'); + }), + e.on('afterRemove', function(e) { + setTimeout(function() { + toastr.warning('After remove event fired!'); + }, 2e3); + }), + e.on('reload', function(e) { + toastr.info('Leload event fired!'), + KTApp.block(e.getSelf(), { type: 'loader', state: 'brand', message: 'Please wait...' }), + setTimeout(function() { + KTApp.unblock(e.getSelf()); + }, 2e3); + }), + e.on('afterFullscreenOn', function(e) { + toastr.warning('After fullscreen on event fired!'); + var t = $(e.getBody()).find('> .kt-scroll'); + t && (t.data('original-height', t.css('height')), t.css('height', '100%'), KTUtil.scrollUpdate(t[0])); + }), + e.on('afterFullscreenOff', function(e) { + var t; + toastr.warning('After fullscreen off event fired!'), + (t = $(e.getBody()).find('> .kt-scroll')) && + ((t = $(e.getBody()).find('> .kt-scroll')).css('height', t.data('original-height')), + KTUtil.scrollUpdate(t[0])); + }); + })(), + (function() { + var e = new KTPortlet('kt_portlet_tools_5'); + e.on('beforeCollapse', function(e) { + setTimeout(function() { + toastr.info('Before collapse event fired!'); + }, 100); + }), + e.on('afterCollapse', function(e) { + setTimeout(function() { + toastr.warning('Before collapse event fired!'); + }, 2e3); + }), + e.on('beforeExpand', function(e) { + setTimeout(function() { + toastr.info('Before expand event fired!'); + }, 100); + }), + e.on('afterExpand', function(e) { + setTimeout(function() { + toastr.warning('After expand event fired!'); + }, 2e3); + }), + e.on('beforeRemove', function(e) { + return toastr.info('Before remove event fired!'), confirm('Are you sure to remove this portlet ?'); + }), + e.on('afterRemove', function(e) { + setTimeout(function() { + toastr.warning('After remove event fired!'); + }, 2e3); + }), + e.on('reload', function(e) { + toastr.info('Leload event fired!'), + KTApp.block(e.getSelf(), { type: 'loader', state: 'brand', message: 'Please wait...' }), + setTimeout(function() { + KTApp.unblock(e.getSelf()); + }, 2e3); + }), + e.on('afterFullscreenOn', function(e) { + toastr.info('After fullscreen on event fired!'); + }), + e.on('afterFullscreenOff', function(e) { + toastr.warning('After fullscreen off event fired!'); + }); + })(), + (function() { + var e = new KTPortlet('kt_portlet_tools_6'); + e.on('beforeCollapse', function(e) { + setTimeout(function() { + toastr.info('Before collapse event fired!'); + }, 100); + }), + e.on('afterCollapse', function(e) { + setTimeout(function() { + toastr.warning('Before collapse event fired!'); + }, 2e3); + }), + e.on('beforeExpand', function(e) { + setTimeout(function() { + toastr.info('Before expand event fired!'); + }, 100); + }), + e.on('afterExpand', function(e) { + setTimeout(function() { + toastr.warning('After expand event fired!'); + }, 2e3); + }), + e.on('beforeRemove', function(e) { + return toastr.info('Before remove event fired!'), confirm('Are you sure to remove this portlet ?'); + }), + e.on('afterRemove', function(e) { + setTimeout(function() { + toastr.warning('After remove event fired!'); + }, 2e3); + }), + e.on('reload', function(e) { + toastr.info('Leload event fired!'), + KTApp.block(e.getSelf(), { type: 'loader', state: 'brand', message: 'Please wait...' }), + setTimeout(function() { + KTApp.unblock(e.getSelf()); + }, 2e3); + }), + e.on('afterFullscreenOn', function(e) { + toastr.info('After fullscreen on event fired!'); + }), + e.on('afterFullscreenOff', function(e) { + toastr.warning('After fullscreen off event fired!'); + }); + })(); + }, +}; +jQuery(document).ready(function() { + KTPortletTools.init(); +}); diff --git a/src/assets/app/custom/general/components/utils/idle-timer.js b/src/assets/app/custom/general/components/utils/idle-timer.js index 01985ae..46030b8 100644 --- a/src/assets/app/custom/general/components/utils/idle-timer.js +++ b/src/assets/app/custom/general/components/utils/idle-timer.js @@ -1 +1,203 @@ -"use strict";var KTIdleTimerDemo={init:function(){$(document).on("idle.idleTimer",function(t,e,l){$("#docStatus").val(function(t,e){return e+"Idle @ "+moment().format()+" \n"}).removeClass("alert-success").addClass("alert-warning").scrollTop($("#docStatus")[0].scrollHeight)}),$(document).on("active.idleTimer",function(t,e,l,s){$("#docStatus").val(function(t,e){return e+"Active ["+s.type+"] ["+s.target.nodeName+"] @ "+moment().format()+" \n"}).addClass("alert-success").removeClass("alert-warning").scrollTop($("#docStatus")[0].scrollHeight)}),$("#btPause").click(function(){return $(document).idleTimer("pause"),$("#docStatus").val(function(t,e){return e+"Paused @ "+moment().format()+" \n"}).scrollTop($("#docStatus")[0].scrollHeight),$(this).blur(),!1}),$("#btResume").click(function(){return $(document).idleTimer("resume"),$("#docStatus").val(function(t,e){return e+"Resumed @ "+moment().format()+" \n"}).scrollTop($("#docStatus")[0].scrollHeight),$(this).blur(),!1}),$("#btElapsed").click(function(){return $("#docStatus").val(function(t,e){return e+"Elapsed (since becoming active): "+$(document).idleTimer("getElapsedTime")+" \n"}).scrollTop($("#docStatus")[0].scrollHeight),$(this).blur(),!1}),$("#btDestroy").click(function(){return $(document).idleTimer("destroy"),$("#docStatus").val(function(t,e){return e+"Destroyed: @ "+moment().format()+" \n"}).removeClass("alert-success").removeClass("alert-warning").scrollTop($("#docStatus")[0].scrollHeight),$(this).blur(),!1}),$("#btInit").click(function(){return $(document).idleTimer({timeout:5e3}),$("#docStatus").val(function(t,e){return e+"Init: @ "+moment().format()+" \n"}).scrollTop($("#docStatus")[0].scrollHeight),$(document).idleTimer("isIdle")?$("#docStatus").removeClass("alert-success").addClass("alert-warning"):$("#docStatus").addClass("alert-success").removeClass("alert-warning"),$(this).blur(),!1}),$("#docStatus").val(""),$(document).idleTimer(5e3),$(document).idleTimer("isIdle")?$("#docStatus").val(function(t,e){return e+"Initial Idle State @ "+moment().format()+" \n"}).removeClass("alert-success").addClass("alert-warning").scrollTop($("#docStatus")[0].scrollHeight):$("#docStatus").val(function(t,e){return e+"Initial Active State @ "+moment().format()+" \n"}).addClass("alert-success").removeClass("alert-warning").scrollTop($("#docStatus")[0].scrollHeight),$("#docTimeout").text(5),$("#elStatus").on("idle.idleTimer",function(t,e,l){t.stopPropagation(),$("#elStatus").val(function(t,e){return e+"Idle @ "+moment().format()+" \n"}).removeClass("alert-success").addClass("alert-warning").scrollTop($("#elStatus")[0].scrollHeight)}),$("#elStatus").on("active.idleTimer",function(t){t.stopPropagation(),$("#elStatus").val(function(t,e){return e+"Active @ "+moment().format()+" \n"}).addClass("alert-success").removeClass("alert-warning").scrollTop($("#elStatus")[0].scrollHeight)}),$("#btReset").click(function(){return $("#elStatus").idleTimer("reset").val(function(t,e){return e+"Reset @ "+moment().format()+" \n"}).scrollTop($("#elStatus")[0].scrollHeight),$("#elStatus").idleTimer("isIdle")?$("#elStatus").removeClass("alert-success").addClass("alert-warning"):$("#elStatus").addClass("alert-success").removeClass("alert-warning"),$(this).blur(),!1}),$("#btRemaining").click(function(){return $("#elStatus").val(function(t,e){return e+"Remaining: "+$("#elStatus").idleTimer("getRemainingTime")+" \n"}).scrollTop($("#elStatus")[0].scrollHeight),$(this).blur(),!1}),$("#btLastActive").click(function(){return $("#elStatus").val(function(t,e){return e+"LastActive: "+$("#elStatus").idleTimer("getLastActiveTime")+" \n"}).scrollTop($("#elStatus")[0].scrollHeight),$(this).blur(),!1}),$("#btState").click(function(){return $("#elStatus").val(function(t,e){return e+"State: "+($("#elStatus").idleTimer("isIdle")?"idle":"active")+" \n"}).scrollTop($("#elStatus")[0].scrollHeight),$(this).blur(),!1}),$("#elStatus").val("").idleTimer(3e3),$("#elStatus").idleTimer("isIdle")?$("#elStatus").val(function(t,e){return e+"Initial Idle @ "+moment().format()+" \n"}).removeClass("alert-success").addClass("alert-warning").scrollTop($("#elStatus")[0].scrollHeight):$("#elStatus").val(function(t,e){return e+"Initial Active @ "+moment().format()+" \n"}).addClass("alert-success").removeClass("alert-warning").scrollTop($("#elStatus")[0].scrollHeight),$("#elTimeout").text(3)}};jQuery(document).ready(function(){KTIdleTimerDemo.init()}); \ No newline at end of file +'use strict'; +var KTIdleTimerDemo = { + init: function() { + $(document).on('idle.idleTimer', function(t, e, l) { + $('#docStatus') + .val(function(t, e) { + return e + 'Idle @ ' + moment().format() + ' \n'; + }) + .removeClass('alert-success') + .addClass('alert-warning') + .scrollTop($('#docStatus')[0].scrollHeight); + }), + $(document).on('active.idleTimer', function(t, e, l, s) { + $('#docStatus') + .val(function(t, e) { + return e + 'Active [' + s.type + '] [' + s.target.nodeName + '] @ ' + moment().format() + ' \n'; + }) + .addClass('alert-success') + .removeClass('alert-warning') + .scrollTop($('#docStatus')[0].scrollHeight); + }), + $('#btPause').click(function() { + return ( + $(document).idleTimer('pause'), + $('#docStatus') + .val(function(t, e) { + return e + 'Paused @ ' + moment().format() + ' \n'; + }) + .scrollTop($('#docStatus')[0].scrollHeight), + $(this).blur(), + !1 + ); + }), + $('#btResume').click(function() { + return ( + $(document).idleTimer('resume'), + $('#docStatus') + .val(function(t, e) { + return e + 'Resumed @ ' + moment().format() + ' \n'; + }) + .scrollTop($('#docStatus')[0].scrollHeight), + $(this).blur(), + !1 + ); + }), + $('#btElapsed').click(function() { + return ( + $('#docStatus') + .val(function(t, e) { + return e + 'Elapsed (since becoming active): ' + $(document).idleTimer('getElapsedTime') + ' \n'; + }) + .scrollTop($('#docStatus')[0].scrollHeight), + $(this).blur(), + !1 + ); + }), + $('#btDestroy').click(function() { + return ( + $(document).idleTimer('destroy'), + $('#docStatus') + .val(function(t, e) { + return e + 'Destroyed: @ ' + moment().format() + ' \n'; + }) + .removeClass('alert-success') + .removeClass('alert-warning') + .scrollTop($('#docStatus')[0].scrollHeight), + $(this).blur(), + !1 + ); + }), + $('#btInit').click(function() { + return ( + $(document).idleTimer({ timeout: 5e3 }), + $('#docStatus') + .val(function(t, e) { + return e + 'Init: @ ' + moment().format() + ' \n'; + }) + .scrollTop($('#docStatus')[0].scrollHeight), + $(document).idleTimer('isIdle') + ? $('#docStatus') + .removeClass('alert-success') + .addClass('alert-warning') + : $('#docStatus') + .addClass('alert-success') + .removeClass('alert-warning'), + $(this).blur(), + !1 + ); + }), + $('#docStatus').val(''), + $(document).idleTimer(5e3), + $(document).idleTimer('isIdle') + ? $('#docStatus') + .val(function(t, e) { + return e + 'Initial Idle State @ ' + moment().format() + ' \n'; + }) + .removeClass('alert-success') + .addClass('alert-warning') + .scrollTop($('#docStatus')[0].scrollHeight) + : $('#docStatus') + .val(function(t, e) { + return e + 'Initial Active State @ ' + moment().format() + ' \n'; + }) + .addClass('alert-success') + .removeClass('alert-warning') + .scrollTop($('#docStatus')[0].scrollHeight), + $('#docTimeout').text(5), + $('#elStatus').on('idle.idleTimer', function(t, e, l) { + t.stopPropagation(), + $('#elStatus') + .val(function(t, e) { + return e + 'Idle @ ' + moment().format() + ' \n'; + }) + .removeClass('alert-success') + .addClass('alert-warning') + .scrollTop($('#elStatus')[0].scrollHeight); + }), + $('#elStatus').on('active.idleTimer', function(t) { + t.stopPropagation(), + $('#elStatus') + .val(function(t, e) { + return e + 'Active @ ' + moment().format() + ' \n'; + }) + .addClass('alert-success') + .removeClass('alert-warning') + .scrollTop($('#elStatus')[0].scrollHeight); + }), + $('#btReset').click(function() { + return ( + $('#elStatus') + .idleTimer('reset') + .val(function(t, e) { + return e + 'Reset @ ' + moment().format() + ' \n'; + }) + .scrollTop($('#elStatus')[0].scrollHeight), + $('#elStatus').idleTimer('isIdle') + ? $('#elStatus') + .removeClass('alert-success') + .addClass('alert-warning') + : $('#elStatus') + .addClass('alert-success') + .removeClass('alert-warning'), + $(this).blur(), + !1 + ); + }), + $('#btRemaining').click(function() { + return ( + $('#elStatus') + .val(function(t, e) { + return e + 'Remaining: ' + $('#elStatus').idleTimer('getRemainingTime') + ' \n'; + }) + .scrollTop($('#elStatus')[0].scrollHeight), + $(this).blur(), + !1 + ); + }), + $('#btLastActive').click(function() { + return ( + $('#elStatus') + .val(function(t, e) { + return e + 'LastActive: ' + $('#elStatus').idleTimer('getLastActiveTime') + ' \n'; + }) + .scrollTop($('#elStatus')[0].scrollHeight), + $(this).blur(), + !1 + ); + }), + $('#btState').click(function() { + return ( + $('#elStatus') + .val(function(t, e) { + return e + 'State: ' + ($('#elStatus').idleTimer('isIdle') ? 'idle' : 'active') + ' \n'; + }) + .scrollTop($('#elStatus')[0].scrollHeight), + $(this).blur(), + !1 + ); + }), + $('#elStatus') + .val('') + .idleTimer(3e3), + $('#elStatus').idleTimer('isIdle') + ? $('#elStatus') + .val(function(t, e) { + return e + 'Initial Idle @ ' + moment().format() + ' \n'; + }) + .removeClass('alert-success') + .addClass('alert-warning') + .scrollTop($('#elStatus')[0].scrollHeight) + : $('#elStatus') + .val(function(t, e) { + return e + 'Initial Active @ ' + moment().format() + ' \n'; + }) + .addClass('alert-success') + .removeClass('alert-warning') + .scrollTop($('#elStatus')[0].scrollHeight), + $('#elTimeout').text(3); + }, +}; +jQuery(document).ready(function() { + KTIdleTimerDemo.init(); +}); diff --git a/src/assets/app/custom/general/components/utils/session-timeout.js b/src/assets/app/custom/general/components/utils/session-timeout.js index ecd3f5d..b8a1832 100644 --- a/src/assets/app/custom/general/components/utils/session-timeout.js +++ b/src/assets/app/custom/general/components/utils/session-timeout.js @@ -1 +1,21 @@ -"use strict";var KTSessionTimeoutDemo={init:function(){$.sessionTimeout({title:"Session Timeout Notification",message:"Your session is about to expire.",keepAliveUrl:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/session-timeout/keepalive.php",redirUrl:"?p=page_user_lock_1",logoutUrl:"?p=page_user_login_1",warnAfter:3e3,redirAfter:35e3,ignoreUserActivity:!0,countdownMessage:"Redirecting in {timer} seconds.",countdownBar:!0})}};jQuery(document).ready(function(){KTSessionTimeoutDemo.init()}); \ No newline at end of file +'use strict'; +var KTSessionTimeoutDemo = { + init: function() { + $.sessionTimeout({ + title: 'Session Timeout Notification', + message: 'Your session is about to expire.', + keepAliveUrl: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/session-timeout/keepalive.php', + redirUrl: '?p=page_user_lock_1', + logoutUrl: '?p=page_user_login_1', + warnAfter: 3e3, + redirAfter: 35e3, + ignoreUserActivity: !0, + countdownMessage: 'Redirecting in {timer} seconds.', + countdownBar: !0, + }); + }, +}; +jQuery(document).ready(function() { + KTSessionTimeoutDemo.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/advanced/column-rendering.js b/src/assets/app/custom/general/crud/datatables/advanced/column-rendering.js index 9e926f4..ad6a9f0 100644 --- a/src/assets/app/custom/general/crud/datatables/advanced/column-rendering.js +++ b/src/assets/app/custom/general/crud/datatables/advanced/column-rendering.js @@ -1 +1,90 @@ -"use strict";var KTDatatablesAdvancedColumnRendering={init:function(){$("#kt_table_1").DataTable({responsive:!0,paging:!0,columnDefs:[{targets:0,title:"Agent",render:function(a,t,e,n){var s=KTUtil.getRandomInt(1,14);return s>8?'\n
    \n
    \n photo\n
    \n
    \n '+e[2]+'\n \n
    \n
    ":'\n
    \n
    \n
    '+e[2].substring(0,1)+'
    \n
    \n
    \n '+e[2]+'\n \n
    \n
    "}},{targets:1,render:function(a,t,e,n){return''+a+""}},{targets:-1,title:"Actions",orderable:!1,render:function(a,t,e,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:4,render:function(a,t,e,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[a]?a:''+s[a].title+""}},{targets:5,render:function(a,t,e,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[a]?a:' '+s[a].title+""}}]})}};jQuery(document).ready(function(){KTDatatablesAdvancedColumnRendering.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesAdvancedColumnRendering = { + init: function() { + $('#kt_table_1').DataTable({ + responsive: !0, + paging: !0, + columnDefs: [ + { + targets: 0, + title: 'Agent', + render: function(a, t, e, n) { + var s = KTUtil.getRandomInt(1, 14); + return s > 8 + ? '\n
    \n
    \n photo\n
    \n
    \n ' + + e[2] + + '\n \n
    \n
    ' + : '\n
    \n
    \n
    ' + + e[2].substring(0, 1) + + '
    \n
    \n
    \n ' + + e[2] + + '\n \n
    \n
    '; + }, + }, + { + targets: 1, + render: function(a, t, e, n) { + return '' + a + ''; + }, + }, + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(a, t, e, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: 4, + render: function(a, t, e, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[a] + ? a + : '' + s[a].title + ''; + }, + }, + { + targets: 5, + render: function(a, t, e, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[a] + ? a + : ' ' + + s[a].title + + ''; + }, + }, + ], + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesAdvancedColumnRendering.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/advanced/column-visibility.js b/src/assets/app/custom/general/crud/datatables/advanced/column-visibility.js index 6d3d59b..00adfde 100644 --- a/src/assets/app/custom/general/crud/datatables/advanced/column-visibility.js +++ b/src/assets/app/custom/general/crud/datatables/advanced/column-visibility.js @@ -1 +1,58 @@ -"use strict";var KTDatatablesAdvancedColumnVisibility={init:function(){$("#kt_table_1").DataTable({responsive:!0,columnDefs:[{targets:[0,3],visible:!1},{targets:-1,title:"Actions",orderable:!1,render:function(t,a,e,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:8,render:function(t,a,e,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[t]?t:''+s[t].title+""}},{targets:9,render:function(t,a,e,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[t]?t:' '+s[t].title+""}}]})}};jQuery(document).ready(function(){KTDatatablesAdvancedColumnVisibility.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesAdvancedColumnVisibility = { + init: function() { + $('#kt_table_1').DataTable({ + responsive: !0, + columnDefs: [ + { targets: [0, 3], visible: !1 }, + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(t, a, e, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: 8, + render: function(t, a, e, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[t] + ? t + : '' + s[t].title + ''; + }, + }, + { + targets: 9, + render: function(t, a, e, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[t] + ? t + : ' ' + + s[t].title + + ''; + }, + }, + ], + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesAdvancedColumnVisibility.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/advanced/footer-callback.js b/src/assets/app/custom/general/crud/datatables/advanced/footer-callback.js index 82c954d..125fbee 100644 --- a/src/assets/app/custom/general/crud/datatables/advanced/footer-callback.js +++ b/src/assets/app/custom/general/crud/datatables/advanced/footer-callback.js @@ -1 +1,34 @@ -"use strict";var KTDatatablesAdvancedFooterCalllback={init:function(){$("#kt_table_1").DataTable({responsive:!0,pageLength:5,lengthMenu:[[2,5,10,15,-1],[2,5,10,15,"All"]],footerCallback:function(t,e,n,a,r){var o=this.api(),l=function(t){return"string"==typeof t?1*t.replace(/[\$,]/g,""):"number"==typeof t?t:0},u=o.column(6).data().reduce(function(t,e){return l(t)+l(e)},0),i=o.column(6,{page:"current"}).data().reduce(function(t,e){return l(t)+l(e)},0);$(o.column(6).footer()).html("$"+KTUtil.numberString(i.toFixed(2))+"
    ( $"+KTUtil.numberString(u.toFixed(2))+" total)")}})}};jQuery(document).ready(function(){KTDatatablesAdvancedFooterCalllback.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesAdvancedFooterCalllback = { + init: function() { + $('#kt_table_1').DataTable({ + responsive: !0, + pageLength: 5, + lengthMenu: [[2, 5, 10, 15, -1], [2, 5, 10, 15, 'All']], + footerCallback: function(t, e, n, a, r) { + var o = this.api(), + l = function(t) { + return 'string' == typeof t ? 1 * t.replace(/[\$,]/g, '') : 'number' == typeof t ? t : 0; + }, + u = o + .column(6) + .data() + .reduce(function(t, e) { + return l(t) + l(e); + }, 0), + i = o + .column(6, { page: 'current' }) + .data() + .reduce(function(t, e) { + return l(t) + l(e); + }, 0); + $(o.column(6).footer()).html( + '$' + KTUtil.numberString(i.toFixed(2)) + '
    ( $' + KTUtil.numberString(u.toFixed(2)) + ' total)', + ); + }, + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesAdvancedFooterCalllback.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/advanced/multiple-controls.js b/src/assets/app/custom/general/crud/datatables/advanced/multiple-controls.js index 8e21d79..125bbe4 100644 --- a/src/assets/app/custom/general/crud/datatables/advanced/multiple-controls.js +++ b/src/assets/app/custom/general/crud/datatables/advanced/multiple-controls.js @@ -1 +1,58 @@ -"use strict";var KTDatatablesAdvancedMultipleControls={init:function(){$("#kt_table_1").DataTable({dom:"<'row'<'col-sm-12 col-md-6'l><'col-sm-12 col-md-6'f>><'row'<'col-sm-12 col-md-6'i><'col-sm-12 col-md-6'p>><'row'<'col-sm-12'tr>><'row'<'col-sm-12 col-md-6'l><'col-sm-12 col-md-6'f>><'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(t,a,e,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:8,render:function(t,a,e,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[t]?t:''+s[t].title+""}},{targets:9,render:function(t,a,e,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[t]?t:' '+s[t].title+""}}]})}};jQuery(document).ready(function(){KTDatatablesAdvancedMultipleControls.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesAdvancedMultipleControls = { + init: function() { + $('#kt_table_1').DataTable({ + dom: + "<'row'<'col-sm-12 col-md-6'l><'col-sm-12 col-md-6'f>><'row'<'col-sm-12 col-md-6'i><'col-sm-12 col-md-6'p>><'row'<'col-sm-12'tr>><'row'<'col-sm-12 col-md-6'l><'col-sm-12 col-md-6'f>><'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>", + columnDefs: [ + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(t, a, e, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: 8, + render: function(t, a, e, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[t] + ? t + : '' + s[t].title + ''; + }, + }, + { + targets: 9, + render: function(t, a, e, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[t] + ? t + : ' ' + + s[t].title + + ''; + }, + }, + ], + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesAdvancedMultipleControls.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/advanced/row-callback.js b/src/assets/app/custom/general/crud/datatables/advanced/row-callback.js index 1e8d5cf..bae4b02 100644 --- a/src/assets/app/custom/general/crud/datatables/advanced/row-callback.js +++ b/src/assets/app/custom/general/crud/datatables/advanced/row-callback.js @@ -1 +1,26 @@ -"use strict";var KTDatatablesAdvancedColumnVisibility={init:function(){$("#kt_table_1").DataTable({responsive:!0,createdRow:function(t,e,a){var i=$("td",t).eq(6);1*e[6].replace(/[\$,]/g,"")>4e5&&1*e[6].replace(/[\$,]/g,"")<6e5&&i.addClass("highlight").css({"font-weight":"bold",color:"#716aca"}).attr("title","Over $400,000 and below $600,000"),1*e[6].replace(/[\$,]/g,"")>6e5&&i.addClass("highlight").css({"font-weight":"bold",color:"#f4516c"}).attr("title","Over $600,000"),i.html(KTUtil.numberString(e[6]))}})}};jQuery(document).ready(function(){KTDatatablesAdvancedColumnVisibility.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesAdvancedColumnVisibility = { + init: function() { + $('#kt_table_1').DataTable({ + responsive: !0, + createdRow: function(t, e, a) { + var i = $('td', t).eq(6); + 1 * e[6].replace(/[\$,]/g, '') > 4e5 && + 1 * e[6].replace(/[\$,]/g, '') < 6e5 && + i + .addClass('highlight') + .css({ 'font-weight': 'bold', color: '#716aca' }) + .attr('title', 'Over $400,000 and below $600,000'), + 1 * e[6].replace(/[\$,]/g, '') > 6e5 && + i + .addClass('highlight') + .css({ 'font-weight': 'bold', color: '#f4516c' }) + .attr('title', 'Over $600,000'), + i.html(KTUtil.numberString(e[6])); + }, + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesAdvancedColumnVisibility.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/advanced/row-grouping.js b/src/assets/app/custom/general/crud/datatables/advanced/row-grouping.js index e275989..d456e49 100644 --- a/src/assets/app/custom/general/crud/datatables/advanced/row-grouping.js +++ b/src/assets/app/custom/general/crud/datatables/advanced/row-grouping.js @@ -1 +1,74 @@ -"use strict";var KTDatatablesAdvancedRowGrouping={init:function(){$("#kt_table_1").DataTable({responsive:!0,pageLength:25,order:[[2,"asc"]],drawCallback:function(a){var t=this.api(),e=t.rows({page:"current"}).nodes(),n=null;t.column(2,{page:"current"}).data().each(function(a,t){n!==a&&($(e).eq(t).before(''+a+""),n=a)})},columnDefs:[{targets:[0,2],visible:!1},{targets:-1,title:"Actions",orderable:!1,render:function(a,t,e,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:8,render:function(a,t,e,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[a]?a:''+s[a].title+""}},{targets:9,render:function(a,t,e,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[a]?a:' '+s[a].title+""}}]})}};jQuery(document).ready(function(){KTDatatablesAdvancedRowGrouping.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesAdvancedRowGrouping = { + init: function() { + $('#kt_table_1').DataTable({ + responsive: !0, + pageLength: 25, + order: [[2, 'asc']], + drawCallback: function(a) { + var t = this.api(), + e = t.rows({ page: 'current' }).nodes(), + n = null; + t.column(2, { page: 'current' }) + .data() + .each(function(a, t) { + n !== a && + ($(e) + .eq(t) + .before('' + a + ''), + (n = a)); + }); + }, + columnDefs: [ + { targets: [0, 2], visible: !1 }, + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(a, t, e, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: 8, + render: function(a, t, e, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[a] + ? a + : '' + s[a].title + ''; + }, + }, + { + targets: 9, + render: function(a, t, e, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[a] + ? a + : ' ' + + s[a].title + + ''; + }, + }, + ], + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesAdvancedRowGrouping.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/basic/basic.js b/src/assets/app/custom/general/crud/datatables/basic/basic.js index 4dbe612..80e2a86 100644 --- a/src/assets/app/custom/general/crud/datatables/basic/basic.js +++ b/src/assets/app/custom/general/crud/datatables/basic/basic.js @@ -1 +1,98 @@ -"use strict";var KTDatatablesBasicBasic={init:function(){var e;(e=$("#kt_table_1")).DataTable({responsive:!0,dom:"<'row'<'col-sm-12'tr>>\n\t\t\t<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7 dataTables_pager'lp>>",lengthMenu:[5,10,25,50],pageLength:10,language:{lengthMenu:"Display _MENU_"},order:[[1,"desc"]],headerCallback:function(e,t,a,s,n){e.getElementsByTagName("th")[0].innerHTML='\n '},columnDefs:[{targets:0,width:"30px",className:"dt-right",orderable:!1,render:function(e,t,a,s){return'\n '}},{targets:-1,title:"Actions",orderable:!1,render:function(e,t,a,s){return'\n \n \n \n \n \n \n \n \n '}},{targets:8,render:function(e,t,a,s){var n={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===n[e]?e:''+n[e].title+""}},{targets:9,render:function(e,t,a,s){var n={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===n[e]?e:' '+n[e].title+""}}]}),e.on("change",".kt-group-checkable",function(){var e=$(this).closest("table").find("td:first-child .kt-checkable"),t=$(this).is(":checked");$(e).each(function(){t?($(this).prop("checked",!0),$(this).closest("tr").addClass("active")):($(this).prop("checked",!1),$(this).closest("tr").removeClass("active"))})}),e.on("change","tbody tr .kt-checkbox",function(){$(this).parents("tr").toggleClass("active")})}};jQuery(document).ready(function(){KTDatatablesBasicBasic.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesBasicBasic = { + init: function() { + var e; + (e = $('#kt_table_1')).DataTable({ + responsive: !0, + dom: "<'row'<'col-sm-12'tr>>\n\t\t\t<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7 dataTables_pager'lp>>", + lengthMenu: [5, 10, 25, 50], + pageLength: 10, + language: { lengthMenu: 'Display _MENU_' }, + order: [[1, 'desc']], + headerCallback: function(e, t, a, s, n) { + e.getElementsByTagName('th')[0].innerHTML = + '\n '; + }, + columnDefs: [ + { + targets: 0, + width: '30px', + className: 'dt-right', + orderable: !1, + render: function(e, t, a, s) { + return '\n '; + }, + }, + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(e, t, a, s) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: 8, + render: function(e, t, a, s) { + var n = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === n[e] + ? e + : '' + n[e].title + ''; + }, + }, + { + targets: 9, + render: function(e, t, a, s) { + var n = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === n[e] + ? e + : ' ' + + n[e].title + + ''; + }, + }, + ], + }), + e.on('change', '.kt-group-checkable', function() { + var e = $(this) + .closest('table') + .find('td:first-child .kt-checkable'), + t = $(this).is(':checked'); + $(e).each(function() { + t + ? ($(this).prop('checked', !0), + $(this) + .closest('tr') + .addClass('active')) + : ($(this).prop('checked', !1), + $(this) + .closest('tr') + .removeClass('active')); + }); + }), + e.on('change', 'tbody tr .kt-checkbox', function() { + $(this) + .parents('tr') + .toggleClass('active'); + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesBasicBasic.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/basic/headers.js b/src/assets/app/custom/general/crud/datatables/basic/headers.js index 027ce89..42efe1b 100644 --- a/src/assets/app/custom/general/crud/datatables/basic/headers.js +++ b/src/assets/app/custom/general/crud/datatables/basic/headers.js @@ -1 +1,57 @@ -"use strict";var KTDatatablesBasicHeaders={init:function(){$("#kt_table_1").DataTable({responsive:!0,columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(a,t,e,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:8,render:function(a,t,e,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[a]?a:''+s[a].title+""}},{targets:9,render:function(a,t,e,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[a]?a:' '+s[a].title+""}}]})}};jQuery(document).ready(function(){KTDatatablesBasicHeaders.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesBasicHeaders = { + init: function() { + $('#kt_table_1').DataTable({ + responsive: !0, + columnDefs: [ + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(a, t, e, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: 8, + render: function(a, t, e, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[a] + ? a + : '' + s[a].title + ''; + }, + }, + { + targets: 9, + render: function(a, t, e, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[a] + ? a + : ' ' + + s[a].title + + ''; + }, + }, + ], + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesBasicHeaders.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/basic/paginations.js b/src/assets/app/custom/general/crud/datatables/basic/paginations.js index 9779761..5ec2efd 100644 --- a/src/assets/app/custom/general/crud/datatables/basic/paginations.js +++ b/src/assets/app/custom/general/crud/datatables/basic/paginations.js @@ -1 +1,58 @@ -"use strict";var KTDatatablesBasicPaginations={init:function(){$("#kt_table_1").DataTable({responsive:!0,pagingType:"full_numbers",columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(a,t,e,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:8,render:function(a,t,e,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[a]?a:''+s[a].title+""}},{targets:9,render:function(a,t,e,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[a]?a:' '+s[a].title+""}}]})}};jQuery(document).ready(function(){KTDatatablesBasicPaginations.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesBasicPaginations = { + init: function() { + $('#kt_table_1').DataTable({ + responsive: !0, + pagingType: 'full_numbers', + columnDefs: [ + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(a, t, e, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: 8, + render: function(a, t, e, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[a] + ? a + : '' + s[a].title + ''; + }, + }, + { + targets: 9, + render: function(a, t, e, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[a] + ? a + : ' ' + + s[a].title + + ''; + }, + }, + ], + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesBasicPaginations.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/basic/scrollable.js b/src/assets/app/custom/general/crud/datatables/basic/scrollable.js index 7b2bbc6..614690e 100644 --- a/src/assets/app/custom/general/crud/datatables/basic/scrollable.js +++ b/src/assets/app/custom/general/crud/datatables/basic/scrollable.js @@ -1 +1,105 @@ -"use strict";var KTDatatablesBasicScrollable={init:function(){$("#kt_table_1").DataTable({scrollY:"50vh",scrollX:!0,scrollCollapse:!0,columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(a,t,e,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:8,render:function(a,t,e,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[a]?a:''+s[a].title+""}},{targets:9,render:function(a,t,e,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[a]?a:' '+s[a].title+""}}]}),$("#kt_table_2").DataTable({scrollY:"50vh",scrollX:!0,scrollCollapse:!0,createdRow:function(a,t,e){var n={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}},s=''+n[t[18]].title+"";a.getElementsByTagName("td")[18].innerHTML=s,s=' '+n[t[19]].title+"",a.getElementsByTagName("td")[19].innerHTML=s},columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(a,t,e,n){return'\n \n \n \n \n \n \n \n \n '}}]})}};jQuery(document).ready(function(){KTDatatablesBasicScrollable.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesBasicScrollable = { + init: function() { + $('#kt_table_1').DataTable({ + scrollY: '50vh', + scrollX: !0, + scrollCollapse: !0, + columnDefs: [ + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(a, t, e, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: 8, + render: function(a, t, e, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[a] + ? a + : '' + s[a].title + ''; + }, + }, + { + targets: 9, + render: function(a, t, e, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[a] + ? a + : ' ' + + s[a].title + + ''; + }, + }, + ], + }), + $('#kt_table_2').DataTable({ + scrollY: '50vh', + scrollX: !0, + scrollCollapse: !0, + createdRow: function(a, t, e) { + var n = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }, + s = + '' + + n[t[18]].title + + ''; + (a.getElementsByTagName('td')[18].innerHTML = s), + (s = + ' ' + + n[t[19]].title + + ''), + (a.getElementsByTagName('td')[19].innerHTML = s); + }, + columnDefs: [ + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(a, t, e, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + ], + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesBasicScrollable.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/data-sources/ajax-client-side.js b/src/assets/app/custom/general/crud/datatables/data-sources/ajax-client-side.js index 14a4b6d..c7af0ab 100644 --- a/src/assets/app/custom/general/crud/datatables/data-sources/ajax-client-side.js +++ b/src/assets/app/custom/general/crud/datatables/data-sources/ajax-client-side.js @@ -1 +1,72 @@ -"use strict";var KTDatatablesDataSourceAjaxClient={init:function(){$("#kt_table_1").DataTable({responsive:!0,ajax:{url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php",type:"POST",data:{pagination:{perpage:50}}},columns:[{data:"OrderID"},{data:"Country"},{data:"ShipCity"},{data:"CompanyName"},{data:"ShipDate"},{data:"Status"},{data:"Type"},{data:"Actions",responsivePriority:-1}],columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(a,t,e,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:-3,render:function(a,t,e,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[a]?a:''+s[a].title+""}},{targets:-2,render:function(a,t,e,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[a]?a:' '+s[a].title+""}}]})}};jQuery(document).ready(function(){KTDatatablesDataSourceAjaxClient.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesDataSourceAjaxClient = { + init: function() { + $('#kt_table_1').DataTable({ + responsive: !0, + ajax: { + url: 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php', + type: 'POST', + data: { pagination: { perpage: 50 } }, + }, + columns: [ + { data: 'OrderID' }, + { data: 'Country' }, + { data: 'ShipCity' }, + { data: 'CompanyName' }, + { data: 'ShipDate' }, + { data: 'Status' }, + { data: 'Type' }, + { data: 'Actions', responsivePriority: -1 }, + ], + columnDefs: [ + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(a, t, e, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: -3, + render: function(a, t, e, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[a] + ? a + : '' + s[a].title + ''; + }, + }, + { + targets: -2, + render: function(a, t, e, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[a] + ? a + : ' ' + + s[a].title + + ''; + }, + }, + ], + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesDataSourceAjaxClient.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/data-sources/ajax-server-side.js b/src/assets/app/custom/general/crud/datatables/data-sources/ajax-server-side.js index ffe1cb3..d864f72 100644 --- a/src/assets/app/custom/general/crud/datatables/data-sources/ajax-server-side.js +++ b/src/assets/app/custom/general/crud/datatables/data-sources/ajax-server-side.js @@ -1 +1,71 @@ -"use strict";var KTDatatablesDataSourceAjaxServer={init:function(){$("#kt_table_1").DataTable({responsive:!0,searchDelay:500,processing:!0,serverSide:!0,ajax:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/server.php",columns:[{data:"OrderID"},{data:"Country"},{data:"ShipCity"},{data:"CompanyName"},{data:"ShipDate"},{data:"Status"},{data:"Type"},{data:"Actions",responsivePriority:-1}],columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(a,t,e,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:-3,render:function(a,t,e,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[a]?a:''+s[a].title+""}},{targets:-2,render:function(a,t,e,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[a]?a:' '+s[a].title+""}}]})}};jQuery(document).ready(function(){KTDatatablesDataSourceAjaxServer.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesDataSourceAjaxServer = { + init: function() { + $('#kt_table_1').DataTable({ + responsive: !0, + searchDelay: 500, + processing: !0, + serverSide: !0, + ajax: 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/server.php', + columns: [ + { data: 'OrderID' }, + { data: 'Country' }, + { data: 'ShipCity' }, + { data: 'CompanyName' }, + { data: 'ShipDate' }, + { data: 'Status' }, + { data: 'Type' }, + { data: 'Actions', responsivePriority: -1 }, + ], + columnDefs: [ + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(a, t, e, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: -3, + render: function(a, t, e, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[a] + ? a + : '' + s[a].title + ''; + }, + }, + { + targets: -2, + render: function(a, t, e, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[a] + ? a + : ' ' + + s[a].title + + ''; + }, + }, + ], + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesDataSourceAjaxServer.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/data-sources/html.js b/src/assets/app/custom/general/crud/datatables/data-sources/html.js index 79f01b8..7c626dd 100644 --- a/src/assets/app/custom/general/crud/datatables/data-sources/html.js +++ b/src/assets/app/custom/general/crud/datatables/data-sources/html.js @@ -1 +1,57 @@ -"use strict";var KTDatatablesDataSourceHtml={init:function(){$("#kt_table_1").DataTable({responsive:!0,columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(t,a,e,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:8,render:function(t,a,e,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[t]?t:''+s[t].title+""}},{targets:9,render:function(t,a,e,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[t]?t:' '+s[t].title+""}}]})}};jQuery(document).ready(function(){KTDatatablesDataSourceHtml.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesDataSourceHtml = { + init: function() { + $('#kt_table_1').DataTable({ + responsive: !0, + columnDefs: [ + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(t, a, e, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: 8, + render: function(t, a, e, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[t] + ? t + : '' + s[t].title + ''; + }, + }, + { + targets: 9, + render: function(t, a, e, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[t] + ? t + : ' ' + + s[t].title + + ''; + }, + }, + ], + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesDataSourceHtml.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/data-sources/javascript.js b/src/assets/app/custom/general/crud/datatables/data-sources/javascript.js index 75b8c12..d5a6300 100644 --- a/src/assets/app/custom/general/crud/datatables/data-sources/javascript.js +++ b/src/assets/app/custom/general/crud/datatables/data-sources/javascript.js @@ -1 +1,27 @@ -"use strict";var KTDatatablesDataSourceHtml=function(){var e=JSON.parse('[[1,"54473-251","GT","San Pedro Ayampuc","Sanford-Halvorson","897 Magdeline Park","sgormally0@dot.gov","Shandra Gormally","Eichmann, Upton and Homenick","GTQ","sit amet cursus id turpis integer aliquet massa id lobortis convallis","Computers","house.gov","14.78667","-90.45111","5/21/2016","America/Guatemala",1,2],[2,"41250-308","ID","Langensari","Denesik-Langosh","9 Brickson Park Junction","eivanonko1@over-blog.com","Estele Ivanonko","Lowe, Batz and Purdy","IDR","lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet","Baby","arizona.edu","-6.4222","105.9425","4/19/2016","Asia/Jakarta",1,3],[3,"0615-7571","HR","Slatina","Kunze, Schneider and Cronin","35712 Sundown Parkway","sbettley2@gmpg.org","Stephine Bettley","Bernier, Weimann and Wuckert","HRK","cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus","Toys","rakuten.co.jp","45.70333","17.70278","4/7/2016","Europe/Zagreb",6,3],[4,"49349-551","RU","Novo-Peredelkino","Jacobi-Ankunding","481 Sage Park","dmartijn3@printfriendly.com","Damara Martijn","Tromp-Hegmann","RUB","cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus etiam","Baby","t-online.de","55.64528","37.33583","2/15/2016","Europe/Moscow",4,2],[5,"59779-750","ID","Bombu","Johns-Kunze","59 Marcy Hill","hpelzer4@friendfeed.com","Helsa Pelzer","Walker LLC","IDR","non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit","Toys","xrea.com","-8.6909","120.5162","1/30/2017","Asia/Makassar",4,3],[6,"63777-145","CN","Kaiyuan","Kris, Keeling and Weimann","122 Evergreen Street","sheugel5@mysql.com","Sigismundo Heugel","D\'Amore-Johnston","CNY","tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in","Tools","gravatar.com","42.53306","124.04028","10/22/2016","Asia/Harbin",3,3],[7,"57520-0136","GR","Tríkala","Effertz Inc","328 8th Avenue","cewell6@reverbnation.com","Clarinda Ewell","Jakubowski and Sons","EUR","magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien","Music","msu.edu","40.59814","22.55733","9/3/2016","Europe/Athens",4,1],[8,"0093-5200","SE","Köping","West-Ullrich","48 Sommers Junction","adevenny7@webnode.com","Ariel Devenny","Goldner, Bartoletti and Towne","SEK","mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus","Jewelery","flavors.me","59.514","15.9926","2/10/2016","Europe/Stockholm",2,3],[9,"14783-319","ID","Ujung","Stiedemann-Kemmer","10625 Dixon Road","bplewright8@mashable.com","Buck Plewright","Boyer and Sons","IDR","habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum","Music","odnoklassniki.ru","-8.2137","114.3818","11/11/2016","Asia/Makassar",2,3],[10,"59011-454","CO","Salento","Daniel-Feest","48004 Mariners Cove Circle","gliddon9@wordpress.org","Gilberta Liddon","Nienow-Dickens","COP","dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit","Electronics","deliciousdays.com","4.6375","-75.57028","12/15/2016","America/Bogota",6,2],[11,"0268-1530","ID","Sarkanjut","Mraz-Parisian","9630 Scoville Road","oheusticea@buzzfeed.com","Odetta Heustice","Gorczany-Mohr","IDR","interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus","Electronics","pagesperso-orange.fr","-7.10896","107.94173","7/28/2016","Asia/Jakarta",5,3],[12,"53057-012","CN","Baiguo","Reinger, Roberts and Medhurst","29238 Waywood Road","blillistoneb@ftc.gov","Brittne Lillistone","Schimmel, Bauch and Ortiz","CNY","ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat","Toys","typepad.com","29.8841","110.45615","9/23/2016","Asia/Chongqing",5,3],[13,"58232-9814","PL","Wołczyn","Stanton-Davis","63 Dwight Junction","oharlinc@whitehouse.gov","Oralia Harlin","Hagenes, Dicki and Rowe","PLN","felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed","Jewelery","usnews.com","51.01845","18.04994","1/15/2017","Europe/Warsaw",2,2],[14,"41163-369","CA","Lanigan","Abbott, Lockman and Roberts","02 Florence Trail","ffultond@omniture.com","Flinn Fulton","Jaskolski, O\'Kon and Crona","CAD","congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed","Clothing","biblegateway.com","51.85006","-105.03443","9/17/2016","America/Regina",2,3],[15,"63824-302","GR","Patitírion","Klein-Tillman","0 Londonderry Crossing","jitzkovskye@un.org","Jessey Itzkovsky","Blanda Inc","EUR","eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium","Grocery","opensource.org","39.14657","23.86494","2/13/2016","Europe/Athens",5,2],[16,"55670-109","RU","Ozëry","Buckridge, Klein and Williamson","00 Fremont Point","ddiggf@epa.gov","Deidre Digg","Miller, Morissette and Klocko","RUB","montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque","Grocery","google.ca","54.85998","38.55062","5/23/2016","Europe/Moscow",6,1],[17,"29500-9090","CN","Dingshu","Yundt Inc","538 Saint Paul Plaza","haldcorneg@salon.com","Hilliary Aldcorne","MacGyver-Goyette","CNY","vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec","Games","spotify.com","31.2573","119.84881","11/25/2016","Asia/Shanghai",1,2],[18,"49349-872","UA","Manevychi","Kris, Bahringer and Kerluke","2873 Pearson Trail","kramalheteh@163.com","Kare Ramalhete","Doyle, Lowe and Greenholt","UAH","magnis dis parturient montes nascetur ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida","Games","utexas.edu","51.29405","25.53436","9/19/2016","Europe/Uzhgorod",6,3],[19,"41163-368","JP","Fukushima-shi","Kemmer-Padberg","9748 Graedel Point","dcadigani@pagesperso-orange.fr","Devan Cadigan","Botsford, Larkin and Brekke","JPY","at dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam","Beauty","feedburner.com","37.75","140.46778","12/6/2016","Asia/Tokyo",2,1],[20,"49999-844","AM","Malishka","Aufderhar Group","25198 Lotheville Alley","opettusj@ehow.com","Ole Pettus","Schultz and Sons","AMD","phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor id","Games","usda.gov","39.73758","45.39004","6/24/2016","Asia/Baku",2,3],[21,"37000-106","CN","Jincheng","Paucek, Towne and Lind","573 Hovde Way","hhickeringillk@discuz.net","Harwell Hickeringill","Kreiger Inc","CNY","elementum nullam varius nulla facilisi cras non velit nec nisi","Garden","google.it","25.50147","102.40058","1/5/2017","Asia/Chongqing",6,3],[22,"42023-169","JM","New Kingston","Halvorson-Greenfelder","055 Maryland Point","cwaszczykl@stumbleupon.com","Claire Waszczyk","Halvorson and Sons","JMD","duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh","Music","ustream.tv","18.00747","-76.78319","9/14/2016","America/Jamaica",5,3],[23,"57520-0581","BR","Formosa do Rio Preto","Heaney LLC","1 Fordem Junction","hcominettim@phoca.cz","Hettie Cominetti","Nikolaus LLC","BRL","integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in","Home","irs.gov","-11.04833","-45.19306","6/4/2016","America/Bahia",1,1],[24,"57520-0625","CN","Tushi","Hayes, Considine and Kohler","502 Kennedy Junction","despinon@msn.com","Doroteya Espino","Macejkovic, Schaden and Terry","CNY","posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor","Health","live.com","28.91746","108.86704","2/12/2016","Asia/Chongqing",2,1],[25,"37000-616","SE","Hallstahammar","Bartoletti and Sons","4756 Tony Terrace","kgeorgesono@ucsd.edu","Klement Georgeson","Ernser Group","SEK","rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut","Automotive","ezinearticles.com","59.6139","16.2285","12/28/2016","Europe/Stockholm",5,2],[26,"35356-933","RU","Koshki","Adams-Kohler","16912 Forest Run Circle","rbengerp@comsenz.com","Ricoriki Benger","Dickinson, Adams and Thiel","RUB","nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin","Garden","chicagotribune.com","54.20914","50.46767","11/27/2016","Europe/Moscow",1,3],[27,"36987-2295","FI","Piippola","Bayer Inc","5479 Oakridge Parkway","rgawthropeq@imdb.com","Raeann Gawthrope","Greenholt-Rosenbaum","EUR","justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas","Computers","google.com.hk","64.16667","25.96667","4/1/2016","Europe/Helsinki",4,3],[28,"36987-1170","VN","Thanh Chương","Murray-Wiegand","5604 Harper Lane","eweekleyr@narod.ru","Enrichetta Weekley","Stark, Weimann and Hickle","VND","elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper","Outdoors","yahoo.co.jp","18.77877","105.33356","6/1/2016","Asia/Ho_Chi_Minh",5,2],[29,"65597-101","JP","Takasaki","Doyle-McDermott","71 Victoria Alley","predfernes@ox.ac.uk","Phoebe Redferne","Paucek, Kutch and Pfannerstill","JPY","nibh in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus","Clothing","newyorker.com","36.33333","139.01667","8/23/2016","Asia/Tokyo",4,1],[30,"49035-350","PE","Charat","Gislason Inc","67308 Dixon Street","mdabernottt@buzzfeed.com","Milka Dabernott","Weimann-Schoen","PEN","nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat","Games","list-manage.com","-7.83333","-78.45","7/11/2016","America/Lima",6,3],[31,"49839-200","CN","Haoxue","Thompson Group","78 Pond Circle","gcolatonu@freewebs.com","Gale Colaton","Krajcik, Koch and Bayer","CNY","porttitor id consequat in consequat ut nulla sed accumsan felis ut","Home","devhub.com","30.04761","112.46759","1/13/2017","Asia/Chongqing",3,3],[32,"62699-1114","UY","Santa Catalina","Koch Inc","43 Hintze Street","sstronachv@npr.org","Sula Stronach","Boyle and Sons","UYU","dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum","Clothing","homestead.com","-33.75","-57.48333","7/22/2016","America/Montevideo",4,1],[33,"45802-257","FR","Toulouse","McLaughlin LLC","997 Redwing Place","jmcilennaw@accuweather.com","Jena McIlenna","Blanda Group","EUR","morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit","Baby","msu.edu","43.6043","1.4437","12/4/2016","Europe/Paris",6,2],[34,"52125-212","CU","Niquero","Cole Group","2 Sugar Hill","mosannex@sakura.ne.jp","Myrtia Osanne","Price-Goyette","CUP","tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus","Clothing","netlog.com","20.04478","-77.5851","8/8/2016","America/Havana",3,1],[35,"16590-745","PE","Tacna","Bernier Inc","9883 Nancy Alley","sjobey@phoca.cz","Sammie Jobe","Tromp LLC","PEN","non sodales sed tincidunt eu felis fusce posuere felis sed lacus","Shoes","arstechnica.com","-18.01465","-70.25362","11/21/2016","America/Lima",2,2],[36,"60505-0132","PH","Capissayan Sur","Volkman-Hickle","76 Linden Terrace","gpoliz@weibo.com","Gaby Poli","Metz, Herman and Leannon","PHP","nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a","Music","squarespace.com","18.0509","121.8177","8/8/2016","Asia/Manila",1,3],[37,"68428-071","KW","Janūb as Surrah","Kuhlman, Berge and Jacobi","68942 Crowley Lane","gmoir10@va.gov","Garrard Moir","Bosco and Sons","KWD","lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus","Grocery","aol.com","29.26917","47.97806","3/27/2016","Asia/Kuwait",6,2],[38,"61543-7772","CN","Quanling","Considine-Russel","0 Duke Court","upoag11@livejournal.com","Ulrick Poag","Murazik and Sons","CNY","erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis donec semper","Home","netscape.com","28.37799","116.07202","11/23/2016","Asia/Shanghai",2,2],[39,"63941-449","RS","Doroslovo","Langworth Inc","0 Bashford Point","odanskine12@whitehouse.gov","Osgood Danskine","Rau, Abshire and Waelchi","RSD","orci pede venenatis non sodales sed tincidunt eu felis fusce posuere","Tools","cornell.edu","45.60699","19.18868","8/13/2016","Europe/Belgrade",4,3],[40,"34954-014","BR","São José","Zieme, Witting and Haley","763 Dunning Road","cianson13@google.com.hk","Chloris Ianson","Krajcik, Balistreri and Hammes","BRL","sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh in","Music","ucsd.edu","-28.21171","-49.1632","6/11/2016","America/Sao_Paulo",2,1],[41,"21695-709","RU","Spirovo","Bode and Sons","126 Meadow Vale Terrace","ctomasik14@nps.gov","Claire Tomasik","Orn Group","RUB","eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante","Baby","over-blog.com","57.41905","34.97658","4/18/2016","Europe/Moscow",1,2],[42,"0054-3566","CZ","Hostouň","Pfeffer Inc","08 Crowley Center","pknewstubb15@jugem.jp","Paton Knewstubb","Kiehn, Goyette and Oberbrunner","CZK","condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas","Home","bloglines.com","49.55971","12.77147","1/14/2017","Europe/Berlin",3,2],[43,"61787-499","PL","Siewierz","Anderson, Gottlieb and Grimes","743 Clove Circle","hhartshorne16@angelfire.com","Hedvig Hartshorne","Kihn-Nitzsche","PLN","nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed","Beauty","blogspot.com","50.46657","19.23028","7/3/2016","Europe/Warsaw",6,3],[44,"0944-2963","PL","Kaniów","Herman, Tromp and Hansen","1403 Hansons Terrace","dsisland17@census.gov","Deva Sisland","Bogan Inc","PLN","nulla suspendisse potenti cras in purus eu magna vulputate luctus cum","Shoes","ocn.ne.jp","50.98577","20.66391","1/2/2017","Europe/Warsaw",4,1],[45,"10356-831","MN","Erdenet","Heidenreich-Simonis","85 Columbus Trail","cboneham18@barnesandnoble.com","Christophorus Boneham","Wuckert Inc","MNT","pharetra magna ac consequat metus sapien ut nunc vestibulum ante","Automotive","cafepress.com","48.94877","99.53665","11/5/2016","Asia/Ulaanbaatar",4,2],[46,"51630-003","CN","Zhongshi","Harvey, Halvorson and Howe","0 Pine View Avenue","tbone19@yahoo.co.jp","Teresa Bone","Macejkovic-Ryan","CNY","vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra","Books","hubpages.com","25.38746","115.41678","5/23/2016","Asia/Chongqing",2,2],[47,"53942-243","AR","Anguil","Mante, Huels and Considine","87 Corscot Street","hcoupe1a@dagondesign.com","Harmon Coupe","Hand, Hoppe and Eichmann","ARS","sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam","Electronics","posterous.com","-36.52567","-64.01025","3/14/2016","America/Argentina/Salta",1,3],[48,"67544-889","RU","Losevo","Cruickshank, Botsford and Johns","94653 Granby Court","bvalentino1b@fda.gov","Bobbe Valentino","Weimann-Beier","RUB","non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam","Sports","aboutads.info","50.67667","40.045","1/1/2017","Europe/Moscow",3,2],[49,"21130-352","ID","Dinjo","Trantow, Halvorson and Jacobs","076 Johnson Park","rtissington1c@desdev.cn","Rollins Tissington","West-Douglas","IDR","nisl nunc nisl duis bibendum felis sed interdum venenatis turpis","Music","blogger.com","-9.5942","119.0138","7/13/2016","Asia/Makassar",4,3],[50,"42291-625","GR","Agía Triáda","Collins, Hamill and Schneider","74661 Myrtle Junction","vwoolford1d@cmu.edu","Vasilis Woolford","Koelpin, Dietrich and Wilkinson","EUR","sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus","Books","netscape.com","40.50003","22.87351","11/5/2016","Europe/Athens",1,2],[51,"68327-006","GE","Bolnisi","Farrell and Sons","38 Melrose Way","gmcrorie1e@techcrunch.com","Galina McRorie","Yundt, Johns and Kuphal","GEL","nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in","Jewelery","samsung.com","41.44794","44.53838","6/24/2016","Asia/Tbilisi",1,3],[52,"55154-6125","ID","Menanga","Jerde-Carroll","3 Forster Lane","fharpin1f@merriam-webster.com","Fran Harpin","Gleason Inc","IDR","aliquam non mauris morbi non lectus aliquam sit amet diam","Books","desdev.cn","-8.436","123.0868","2/22/2016","Asia/Makassar",2,1],[53,"52125-217","PT","Monte Novo","Cremin Group","46 Homewood Junction","lrose1g@google.com.hk","Lorelle Rose","Franecki-Littel","EUR","odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est","Computers","e-recht24.de","38.15","-8.8167","5/25/2016","Europe/Lisbon",1,2],[54,"50346-003","CN","Lincuo","Gerhold and Sons","450 Mallard Court","dshugg1h@japanpost.jp","Dori Shugg","Weimann, Kohler and Rosenbaum","CNY","velit donec diam neque vestibulum eget vulputate ut ultrices vel","Electronics","mtv.com","23.66062","117.25946","11/28/2016","Asia/Shanghai",4,2],[55,"65954-014","ID","Nusajaya","Kutch Group","66 Hagan Alley","llaughnan1i@wsj.com","Laird Laughnan","Botsford Inc","IDR","rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut","Baby","npr.org","-8.4817","118.3064","3/12/2016","Asia/Makassar",4,3],[56,"49738-116","HR","Bistrinci","Marks-Treutel","37 Randy Park","sslidders1j@lycos.com","Suzanna Slidders","Macejkovic, Miller and Cartwright","HRK","quam nec dui luctus rutrum nulla tellus in sagittis dui vel","Garden","tripod.com","45.69167","18.39861","12/29/2016","Europe/Zagreb",2,3],[57,"59667-0069","FR","Paris 12","Mayer-Ernser","81 Killdeer Road","lgravatt1k@nps.gov","Lewes Gravatt","Brown, Ryan and Quitzon","EUR","arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea","Beauty","redcross.org","48.8412","2.3876","7/12/2016","Europe/Paris",5,1],[58,"63739-547","VN","Trảng Bom","McLaughlin LLC","00 Barnett Place","mkroin1l@webeden.co.uk","Marina Kroin","Robel and Sons","VND","luctus rutrum nulla tellus in sagittis dui vel nisl duis","Automotive","ustream.tv","10.95358","107.00589","4/3/2016","Asia/Ho_Chi_Minh",3,2],[59,"54569-0909","CN","Lizi","Lowe-Sauer","4 Park Meadow Trail","bcannam1m@scientificamerican.com","Bobby Cannam","Sipes-Stiedemann","CNY","lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas","Toys","technorati.com","29.81127","107.92447","8/5/2016","Asia/Chongqing",5,1],[60,"54868-5657","AL","Patos Fshat","Kris and Sons","51 Talisman Alley","bheymann1n@ihg.com","Bunny Heymann","Abernathy, Luettgen and Becker","ALL","vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper","Grocery","guardian.co.uk","40.64278","19.65083","3/25/2016","Europe/Tirane",3,3],[61,"49288-0467","CN","Kouqian","Morar-Lynch","77 Tomscot Alley","bbriance1o@furl.net","Barbara Briance","Zulauf-Kihn","CNY","odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede","Books","icio.us","43.63914","126.45784","6/11/2016","Asia/Harbin",2,1],[62,"14783-455","PL","Niemodlin","Spinka, Hackett and Leannon","45 Orin Plaza","vgapp1p@pinterest.com","Vikky Gapp","Williamson, Champlin and Zieme","PLN","cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes","Games","wisc.edu","50.642","17.61932","9/30/2016","Europe/Warsaw",2,3],[63,"58232-0029","CN","Zhoukou","Wyman, Swift and Homenick","111 Banding Street","jann1q@drupal.org","Jo ann Henzer","Wolff, Halvorson and Ebert","CNY","metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci","Health","mozilla.com","27.69684","118.91938","7/23/2016","Asia/Shanghai",5,1],[64,"54868-5397","CN","Baima","Schaefer Group","26078 Goodland Circle","eironmonger1r@weather.com","Ernest Ironmonger","Boyle, Schowalter and Jast","CNY","nisl aenean lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum","Baby","google.de","31.58261","119.17219","3/6/2016","Asia/Shanghai",3,2],[65,"69069-101","US","Stamford","Runte-Champlin","7 Portage Court","kjacop1s@prlog.org","Karylin Jacop","Kuphal Group","USD","at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis","Industrial","upenn.edu","41.0888","-73.5435","5/1/2016","America/New_York",5,3],[66,"30142-022","ID","Tebanah","Hudson-Fay","75 Mendota Parkway","cmoncrefe1t@craigslist.org","Cherise Moncrefe","Block Group","IDR","orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor","Outdoors","is.gd","-6.9213","113.2043","7/8/2016","Asia/Jakarta",5,2],[67,"16729-115","ID","Tracal","Beier and Sons","93758 Gale Street","celfes1u@usa.gov","Clarie Elfes","Heidenreich Group","IDR","tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet","Grocery","usatoday.com","-6.9824","112.3381","6/27/2016","Asia/Jakarta",3,2],[68,"51147-5010","RU","Volzhsk","Beatty Group","11023 Barnett Park","ibehnecken1v@linkedin.com","Isadore Behnecken","Gottlieb-Douglas","RUB","lobortis ligula sit amet eleifend pede libero quis orci nullam","Shoes","weather.com","55.86638","48.3594","7/8/2016","Europe/Moscow",2,2],[69,"57520-0435","CU","Venezuela","Mante-Kunze","7137 Sutteridge Place","gclemmey1w@hud.gov","Gerty Clemmey","Schulist, Blanda and Donnelly","CUP","donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac","Automotive","ocn.ne.jp","21.73528","-78.79639","4/24/2016","America/Havana",1,2],[70,"41250-990","ID","Kepel","Rogahn and Sons","350 Continental Alley","jogle1x@dot.gov","Jay Ogle","Botsford LLC","IDR","nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient","Music","angelfire.com","-8.1157","112.4289","4/28/2016","Asia/Jakarta",3,3],[71,"52125-726","MA","Riah","Friesen, O\'Connell and Volkman","72001 3rd Point","bdutnell1y@stumbleupon.com","Beverie Dutnell","Lowe, Pacocha and Grimes","MAD","ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec","Kids","chronoengine.com","33.15122","-7.37504","6/9/2016","Africa/Casablanca",3,2],[72,"68645-478","GB","Milton","Kohler-Wolff","674 Texas Plaza","cduddin1z@blogtalkradio.com","Carin Duddin","Feil, Wolf and Nicolas","GBP","sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis","Beauty","storify.com","53.1805","-0.9766","2/19/2016","Europe/London",4,2],[73,"53942-503","TH","Khok Sung","Denesik-Dach","3 Eastwood Hill","uluety20@parallels.com","Ulrika Luety","Halvorson-Koch","THB","dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum","Kids","virginia.edu","13.83824","102.62254","8/29/2016","Asia/Bangkok",4,2],[74,"10742-8123","CN","Yilkiqi","Little Group","2039 Katie Circle","hblazic21@tripod.com","Hugh Blazic","Kunze Inc","CNY","tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat","Jewelery","biglobe.ne.jp","37.96111","77.24917","11/12/2016","Asia/Kashgar",4,2],[75,"11523-7313","MX","Vicente Guerrero","Larson Inc","14 Fieldstone Alley","apinke22@apple.com","Antonie Pinke","Gislason, Hessel and Heaney","MXN","lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem","Tools","slideshare.net","19.058","-97.818","7/4/2016","America/Mexico_City",3,3],[76,"0406-9959","YE","Ash Sharyah","Huel-Bednar","880 Florence Hill","cdust23@is.gd","Corbie Dust","Cummerata LLC","YER","purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur","Electronics","booking.com","14.35659","45.02244","8/15/2016","Asia/Aden",4,1],[77,"63824-479","CO","La Argentina","Okuneva Inc","9346 Jana Alley","sde24@bigcartel.com","Sidonnie De Avenell","Raynor-Feil","COP","quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere","Tools","goo.ne.jp","2.19611","-75.98","2/13/2016","America/Bogota",6,1],[78,"53329-410","CN","Jieshipu","Cummings Inc","276 Continental Drive","ykneaphsey25@csmonitor.com","Yorker Kneaphsey","Bergstrom, Oberbrunner and Jenkins","CNY","nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend","Automotive","utexas.edu","35.61073","105.53784","8/5/2016","Asia/Chongqing",6,2],[79,"0498-2420","JP","Watari","Murazik, Herman and Klein","5 Harbort Place","blockier26@bigcartel.com","Brenn Lockier","Fahey-Schiller","JPY","neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum","Kids","narod.ru","38.035","140.85111","5/31/2016","Asia/Tokyo",5,1],[80,"69106-070","UZ","Navoiy","Torphy-Kunde","80628 Mcguire Hill","wjery27@dot.gov","Walliw Jery","Will, Fahey and Bernier","UZS","cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus","Sports","facebook.com","40.08444","65.37917","10/15/2016","Asia/Samarkand",2,2],[81,"49852-006","SI","Ravne","Hettinger-Klocko","636 Village Green Circle","qderell28@cnn.com","Quintus Derell","Moen-Greenfelder","EUR","sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar","Tools","typepad.com","46.41413","15.06087","5/28/2016","Europe/Ljubljana",1,1],[82,"67253-232","PH","Cabadiangan","Beier LLC","01753 Wayridge Point","alyburn29@latimes.com","Annamaria Lyburn","Terry-Weber","PHP","ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices","Electronics","scientificamerican.com","9.7534","122.4739","11/11/2016","Asia/Manila",6,3],[83,"54868-6333","RU","Nakhabino","Krajcik Inc","77 Atwood Place","dvarnam2a@ft.com","Dall Varnam","Metz-Hoeger","RUB","varius ut blandit non interdum in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices","Music","marriott.com","55.84854","37.17788","6/9/2016","Europe/Moscow",3,2],[84,"0496-0883","VE","El Cafetal","Durgan LLC","722 Orin Trail","kbirkby2b@sciencedaily.com","Kort Birkby","Brekke-Crooks","VEF","massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet","Grocery","github.io","10.46941","-66.83063","5/4/2016","America/Caracas",1,1],[85,"59011-410","CN","Shaxi","Leuschke Inc","0 Scott Parkway","bbaildon2c@apache.org","Booth Baildon","Schumm-Turner","CNY","euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis","Garden","squidoo.com","24.61694","113.67068","2/27/2016","Asia/Chongqing",5,1],[86,"10578-002","CN","Xinpu","Crist-Mayert","6 Lakewood Gardens Plaza","ahaslewood2d@simplemachines.org","Amber Haslewood","Hammes Group","CNY","nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus","Sports","google.ca","30.98227","113.98035","11/12/2016","Asia/Chongqing",2,3],[87,"0591-5454","PH","Busay","Cummerata Inc","52409 Bultman Point","dkorejs2e@census.gov","Domeniga Korejs","Green-Bashirian","PHP","nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh in quis justo","Automotive","amazon.com","10.5378","122.886","4/2/2016","Asia/Manila",2,1],[88,"24385-998","FI","Juupajoki","Aufderhar, Borer and Berge","06 Everett Hill","bvitall2f@qq.com","Belva Vitall","Kassulke, Kub and Parker","EUR","vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus","Movies","yahoo.com","61.79901","24.36939","7/28/2016","Europe/Helsinki",6,3],[89,"42507-484","IR","Kīsh","Purdy, Prosacco and Stamm","07 Morningstar Drive","nbreede2g@delicious.com","Netti Breede","Conroy-Schmitt","IRR","morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id","Music","networkadvertising.org","26.55778","54.01944","3/21/2016","Asia/Tehran",1,1],[90,"0904-6010","BA","Bužim","Howell Inc","57 Anhalt Center","rezzy2h@senate.gov","Rosella Ezzy","Heller-Turcotte","BAM","vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet","Tools","dyndns.org","45.05361","16.03254","6/11/2016","Europe/Sarajevo",3,3],[91,"65044-5285","CR","San Francisco","Orn LLC","979 Quincy Place","lnairy2i@wikia.com","Lyn Nairy","Hermann, Heathcote and Blick","CRC","phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat ut nulla","Industrial","goo.ne.jp","9.99299","-84.12934","10/23/2016","America/Costa_Rica",3,3],[92,"33261-045","TZ","Dongobesh","Haag Inc","5 Rigney Center","avanyakin2j@edublogs.org","Abba Vanyakin","Buckridge, O\'Kon and Cassin","TZS","ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse","Automotive","weather.com","-4.06667","35.38333","3/8/2016","Africa/Dar_es_Salaam",6,3],[93,"42507-300","CL","Puerto Montt","Rogahn-McClure","9 Scoville Place","edobrovolny2k@ycombinator.com","Estella Dobrovolny","Labadie, Hilll and Ryan","CLP","fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet","Jewelery","vk.com","-41.46574","-72.94289","4/15/2016","America/Santiago",1,2],[94,"58118-2013","PL","Gąsocin","Kris LLC","0 Park Meadow Hill","mhryniewicz2l@dot.gov","Maurizia Hryniewicz","Koss LLC","PLN","vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam","Movies","edublogs.org","52.73754","20.7118","11/16/2016","Europe/Warsaw",4,1],[95,"55504-0500","ID","Besah","Dibbert-Batz","53 Jackson Pass","rdowrey2m@foxnews.com","Robena Dowrey","Stehr, Effertz and Goldner","IDR","diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo aliquam quis turpis","Jewelery","e-recht24.de","-7.1358","111.6394","6/29/2016","Asia/Jakarta",1,1],[96,"52316-190","TH","Yala","McCullough Group","35 Cordelia Alley","aovett2n@java.com","Agatha Ovett","Schultz, Dooley and Metz","THB","congue eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui","Books","mashable.com","6.53995","101.28128","10/4/2016","Asia/Bangkok",4,3],[97,"49288-0451","ID","Karangduren Dua","Heller Group","2169 Dixon Center","pkillner2o@fastcompany.com","Padraic Killner","Cruickshank and Sons","IDR","semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus","Jewelery","cisco.com","-8.2717","113.4939","8/22/2016","Asia/Jakarta",6,1],[98,"63824-478","KI","Tabwakea Village","Crona LLC","109 Bobwhite Park","jgonsalvo2p@bizjournals.com","Jacquelyn Gonsalvo","Ondricka, Bergnaum and Pfannerstill","AUD","tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc","Toys","networkadvertising.org","2.01643","-157.48773","6/11/2016","Pacific/Honolulu",2,2],[99,"0641-6045","FR","Étampes","Roberts-Wilderman","2950 North Circle","mfeld2q@mayoclinic.com","Mathilda Feld","Satterfield-Keebler","EUR","porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis donec","Grocery","printfriendly.com","48.4333","2.15","7/12/2016","Europe/Paris",2,2],[100,"50436-0124","PL","Drobin","Batz-McLaughlin","66031 Comanche Center","bheaseman2r@theglobeandmail.com","Brita Heaseman","Feeney-Kutch","PLN","id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero","Beauty","netlog.com","52.73775","19.98928","11/22/2016","Europe/Warsaw",2,1]]');return{init:function(){$("#kt_table_1").DataTable({responsive:!0,data:e,columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(e,a,i,n){return'\n \n \n \n \n \n \n \n \n '}}]})}}}();jQuery(document).ready(function(){KTDatatablesDataSourceHtml.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesDataSourceHtml = (function() { + var e = JSON.parse( + '[[1,"54473-251","GT","San Pedro Ayampuc","Sanford-Halvorson","897 Magdeline Park","sgormally0@dot.gov","Shandra Gormally","Eichmann, Upton and Homenick","GTQ","sit amet cursus id turpis integer aliquet massa id lobortis convallis","Computers","house.gov","14.78667","-90.45111","5/21/2016","America/Guatemala",1,2],[2,"41250-308","ID","Langensari","Denesik-Langosh","9 Brickson Park Junction","eivanonko1@over-blog.com","Estele Ivanonko","Lowe, Batz and Purdy","IDR","lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet","Baby","arizona.edu","-6.4222","105.9425","4/19/2016","Asia/Jakarta",1,3],[3,"0615-7571","HR","Slatina","Kunze, Schneider and Cronin","35712 Sundown Parkway","sbettley2@gmpg.org","Stephine Bettley","Bernier, Weimann and Wuckert","HRK","cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus","Toys","rakuten.co.jp","45.70333","17.70278","4/7/2016","Europe/Zagreb",6,3],[4,"49349-551","RU","Novo-Peredelkino","Jacobi-Ankunding","481 Sage Park","dmartijn3@printfriendly.com","Damara Martijn","Tromp-Hegmann","RUB","cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus etiam","Baby","t-online.de","55.64528","37.33583","2/15/2016","Europe/Moscow",4,2],[5,"59779-750","ID","Bombu","Johns-Kunze","59 Marcy Hill","hpelzer4@friendfeed.com","Helsa Pelzer","Walker LLC","IDR","non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit","Toys","xrea.com","-8.6909","120.5162","1/30/2017","Asia/Makassar",4,3],[6,"63777-145","CN","Kaiyuan","Kris, Keeling and Weimann","122 Evergreen Street","sheugel5@mysql.com","Sigismundo Heugel","D\'Amore-Johnston","CNY","tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in","Tools","gravatar.com","42.53306","124.04028","10/22/2016","Asia/Harbin",3,3],[7,"57520-0136","GR","Tríkala","Effertz Inc","328 8th Avenue","cewell6@reverbnation.com","Clarinda Ewell","Jakubowski and Sons","EUR","magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien","Music","msu.edu","40.59814","22.55733","9/3/2016","Europe/Athens",4,1],[8,"0093-5200","SE","Köping","West-Ullrich","48 Sommers Junction","adevenny7@webnode.com","Ariel Devenny","Goldner, Bartoletti and Towne","SEK","mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus","Jewelery","flavors.me","59.514","15.9926","2/10/2016","Europe/Stockholm",2,3],[9,"14783-319","ID","Ujung","Stiedemann-Kemmer","10625 Dixon Road","bplewright8@mashable.com","Buck Plewright","Boyer and Sons","IDR","habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum","Music","odnoklassniki.ru","-8.2137","114.3818","11/11/2016","Asia/Makassar",2,3],[10,"59011-454","CO","Salento","Daniel-Feest","48004 Mariners Cove Circle","gliddon9@wordpress.org","Gilberta Liddon","Nienow-Dickens","COP","dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit","Electronics","deliciousdays.com","4.6375","-75.57028","12/15/2016","America/Bogota",6,2],[11,"0268-1530","ID","Sarkanjut","Mraz-Parisian","9630 Scoville Road","oheusticea@buzzfeed.com","Odetta Heustice","Gorczany-Mohr","IDR","interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus","Electronics","pagesperso-orange.fr","-7.10896","107.94173","7/28/2016","Asia/Jakarta",5,3],[12,"53057-012","CN","Baiguo","Reinger, Roberts and Medhurst","29238 Waywood Road","blillistoneb@ftc.gov","Brittne Lillistone","Schimmel, Bauch and Ortiz","CNY","ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat","Toys","typepad.com","29.8841","110.45615","9/23/2016","Asia/Chongqing",5,3],[13,"58232-9814","PL","Wołczyn","Stanton-Davis","63 Dwight Junction","oharlinc@whitehouse.gov","Oralia Harlin","Hagenes, Dicki and Rowe","PLN","felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed","Jewelery","usnews.com","51.01845","18.04994","1/15/2017","Europe/Warsaw",2,2],[14,"41163-369","CA","Lanigan","Abbott, Lockman and Roberts","02 Florence Trail","ffultond@omniture.com","Flinn Fulton","Jaskolski, O\'Kon and Crona","CAD","congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed","Clothing","biblegateway.com","51.85006","-105.03443","9/17/2016","America/Regina",2,3],[15,"63824-302","GR","Patitírion","Klein-Tillman","0 Londonderry Crossing","jitzkovskye@un.org","Jessey Itzkovsky","Blanda Inc","EUR","eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium","Grocery","opensource.org","39.14657","23.86494","2/13/2016","Europe/Athens",5,2],[16,"55670-109","RU","Ozëry","Buckridge, Klein and Williamson","00 Fremont Point","ddiggf@epa.gov","Deidre Digg","Miller, Morissette and Klocko","RUB","montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque","Grocery","google.ca","54.85998","38.55062","5/23/2016","Europe/Moscow",6,1],[17,"29500-9090","CN","Dingshu","Yundt Inc","538 Saint Paul Plaza","haldcorneg@salon.com","Hilliary Aldcorne","MacGyver-Goyette","CNY","vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec","Games","spotify.com","31.2573","119.84881","11/25/2016","Asia/Shanghai",1,2],[18,"49349-872","UA","Manevychi","Kris, Bahringer and Kerluke","2873 Pearson Trail","kramalheteh@163.com","Kare Ramalhete","Doyle, Lowe and Greenholt","UAH","magnis dis parturient montes nascetur ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida","Games","utexas.edu","51.29405","25.53436","9/19/2016","Europe/Uzhgorod",6,3],[19,"41163-368","JP","Fukushima-shi","Kemmer-Padberg","9748 Graedel Point","dcadigani@pagesperso-orange.fr","Devan Cadigan","Botsford, Larkin and Brekke","JPY","at dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam","Beauty","feedburner.com","37.75","140.46778","12/6/2016","Asia/Tokyo",2,1],[20,"49999-844","AM","Malishka","Aufderhar Group","25198 Lotheville Alley","opettusj@ehow.com","Ole Pettus","Schultz and Sons","AMD","phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor id","Games","usda.gov","39.73758","45.39004","6/24/2016","Asia/Baku",2,3],[21,"37000-106","CN","Jincheng","Paucek, Towne and Lind","573 Hovde Way","hhickeringillk@discuz.net","Harwell Hickeringill","Kreiger Inc","CNY","elementum nullam varius nulla facilisi cras non velit nec nisi","Garden","google.it","25.50147","102.40058","1/5/2017","Asia/Chongqing",6,3],[22,"42023-169","JM","New Kingston","Halvorson-Greenfelder","055 Maryland Point","cwaszczykl@stumbleupon.com","Claire Waszczyk","Halvorson and Sons","JMD","duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh","Music","ustream.tv","18.00747","-76.78319","9/14/2016","America/Jamaica",5,3],[23,"57520-0581","BR","Formosa do Rio Preto","Heaney LLC","1 Fordem Junction","hcominettim@phoca.cz","Hettie Cominetti","Nikolaus LLC","BRL","integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in","Home","irs.gov","-11.04833","-45.19306","6/4/2016","America/Bahia",1,1],[24,"57520-0625","CN","Tushi","Hayes, Considine and Kohler","502 Kennedy Junction","despinon@msn.com","Doroteya Espino","Macejkovic, Schaden and Terry","CNY","posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor","Health","live.com","28.91746","108.86704","2/12/2016","Asia/Chongqing",2,1],[25,"37000-616","SE","Hallstahammar","Bartoletti and Sons","4756 Tony Terrace","kgeorgesono@ucsd.edu","Klement Georgeson","Ernser Group","SEK","rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut","Automotive","ezinearticles.com","59.6139","16.2285","12/28/2016","Europe/Stockholm",5,2],[26,"35356-933","RU","Koshki","Adams-Kohler","16912 Forest Run Circle","rbengerp@comsenz.com","Ricoriki Benger","Dickinson, Adams and Thiel","RUB","nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin","Garden","chicagotribune.com","54.20914","50.46767","11/27/2016","Europe/Moscow",1,3],[27,"36987-2295","FI","Piippola","Bayer Inc","5479 Oakridge Parkway","rgawthropeq@imdb.com","Raeann Gawthrope","Greenholt-Rosenbaum","EUR","justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas","Computers","google.com.hk","64.16667","25.96667","4/1/2016","Europe/Helsinki",4,3],[28,"36987-1170","VN","Thanh Chương","Murray-Wiegand","5604 Harper Lane","eweekleyr@narod.ru","Enrichetta Weekley","Stark, Weimann and Hickle","VND","elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper","Outdoors","yahoo.co.jp","18.77877","105.33356","6/1/2016","Asia/Ho_Chi_Minh",5,2],[29,"65597-101","JP","Takasaki","Doyle-McDermott","71 Victoria Alley","predfernes@ox.ac.uk","Phoebe Redferne","Paucek, Kutch and Pfannerstill","JPY","nibh in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus","Clothing","newyorker.com","36.33333","139.01667","8/23/2016","Asia/Tokyo",4,1],[30,"49035-350","PE","Charat","Gislason Inc","67308 Dixon Street","mdabernottt@buzzfeed.com","Milka Dabernott","Weimann-Schoen","PEN","nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat","Games","list-manage.com","-7.83333","-78.45","7/11/2016","America/Lima",6,3],[31,"49839-200","CN","Haoxue","Thompson Group","78 Pond Circle","gcolatonu@freewebs.com","Gale Colaton","Krajcik, Koch and Bayer","CNY","porttitor id consequat in consequat ut nulla sed accumsan felis ut","Home","devhub.com","30.04761","112.46759","1/13/2017","Asia/Chongqing",3,3],[32,"62699-1114","UY","Santa Catalina","Koch Inc","43 Hintze Street","sstronachv@npr.org","Sula Stronach","Boyle and Sons","UYU","dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum","Clothing","homestead.com","-33.75","-57.48333","7/22/2016","America/Montevideo",4,1],[33,"45802-257","FR","Toulouse","McLaughlin LLC","997 Redwing Place","jmcilennaw@accuweather.com","Jena McIlenna","Blanda Group","EUR","morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit","Baby","msu.edu","43.6043","1.4437","12/4/2016","Europe/Paris",6,2],[34,"52125-212","CU","Niquero","Cole Group","2 Sugar Hill","mosannex@sakura.ne.jp","Myrtia Osanne","Price-Goyette","CUP","tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus","Clothing","netlog.com","20.04478","-77.5851","8/8/2016","America/Havana",3,1],[35,"16590-745","PE","Tacna","Bernier Inc","9883 Nancy Alley","sjobey@phoca.cz","Sammie Jobe","Tromp LLC","PEN","non sodales sed tincidunt eu felis fusce posuere felis sed lacus","Shoes","arstechnica.com","-18.01465","-70.25362","11/21/2016","America/Lima",2,2],[36,"60505-0132","PH","Capissayan Sur","Volkman-Hickle","76 Linden Terrace","gpoliz@weibo.com","Gaby Poli","Metz, Herman and Leannon","PHP","nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a","Music","squarespace.com","18.0509","121.8177","8/8/2016","Asia/Manila",1,3],[37,"68428-071","KW","Janūb as Surrah","Kuhlman, Berge and Jacobi","68942 Crowley Lane","gmoir10@va.gov","Garrard Moir","Bosco and Sons","KWD","lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus","Grocery","aol.com","29.26917","47.97806","3/27/2016","Asia/Kuwait",6,2],[38,"61543-7772","CN","Quanling","Considine-Russel","0 Duke Court","upoag11@livejournal.com","Ulrick Poag","Murazik and Sons","CNY","erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis donec semper","Home","netscape.com","28.37799","116.07202","11/23/2016","Asia/Shanghai",2,2],[39,"63941-449","RS","Doroslovo","Langworth Inc","0 Bashford Point","odanskine12@whitehouse.gov","Osgood Danskine","Rau, Abshire and Waelchi","RSD","orci pede venenatis non sodales sed tincidunt eu felis fusce posuere","Tools","cornell.edu","45.60699","19.18868","8/13/2016","Europe/Belgrade",4,3],[40,"34954-014","BR","São José","Zieme, Witting and Haley","763 Dunning Road","cianson13@google.com.hk","Chloris Ianson","Krajcik, Balistreri and Hammes","BRL","sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh in","Music","ucsd.edu","-28.21171","-49.1632","6/11/2016","America/Sao_Paulo",2,1],[41,"21695-709","RU","Spirovo","Bode and Sons","126 Meadow Vale Terrace","ctomasik14@nps.gov","Claire Tomasik","Orn Group","RUB","eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante","Baby","over-blog.com","57.41905","34.97658","4/18/2016","Europe/Moscow",1,2],[42,"0054-3566","CZ","Hostouň","Pfeffer Inc","08 Crowley Center","pknewstubb15@jugem.jp","Paton Knewstubb","Kiehn, Goyette and Oberbrunner","CZK","condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas","Home","bloglines.com","49.55971","12.77147","1/14/2017","Europe/Berlin",3,2],[43,"61787-499","PL","Siewierz","Anderson, Gottlieb and Grimes","743 Clove Circle","hhartshorne16@angelfire.com","Hedvig Hartshorne","Kihn-Nitzsche","PLN","nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed","Beauty","blogspot.com","50.46657","19.23028","7/3/2016","Europe/Warsaw",6,3],[44,"0944-2963","PL","Kaniów","Herman, Tromp and Hansen","1403 Hansons Terrace","dsisland17@census.gov","Deva Sisland","Bogan Inc","PLN","nulla suspendisse potenti cras in purus eu magna vulputate luctus cum","Shoes","ocn.ne.jp","50.98577","20.66391","1/2/2017","Europe/Warsaw",4,1],[45,"10356-831","MN","Erdenet","Heidenreich-Simonis","85 Columbus Trail","cboneham18@barnesandnoble.com","Christophorus Boneham","Wuckert Inc","MNT","pharetra magna ac consequat metus sapien ut nunc vestibulum ante","Automotive","cafepress.com","48.94877","99.53665","11/5/2016","Asia/Ulaanbaatar",4,2],[46,"51630-003","CN","Zhongshi","Harvey, Halvorson and Howe","0 Pine View Avenue","tbone19@yahoo.co.jp","Teresa Bone","Macejkovic-Ryan","CNY","vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra","Books","hubpages.com","25.38746","115.41678","5/23/2016","Asia/Chongqing",2,2],[47,"53942-243","AR","Anguil","Mante, Huels and Considine","87 Corscot Street","hcoupe1a@dagondesign.com","Harmon Coupe","Hand, Hoppe and Eichmann","ARS","sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam","Electronics","posterous.com","-36.52567","-64.01025","3/14/2016","America/Argentina/Salta",1,3],[48,"67544-889","RU","Losevo","Cruickshank, Botsford and Johns","94653 Granby Court","bvalentino1b@fda.gov","Bobbe Valentino","Weimann-Beier","RUB","non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam","Sports","aboutads.info","50.67667","40.045","1/1/2017","Europe/Moscow",3,2],[49,"21130-352","ID","Dinjo","Trantow, Halvorson and Jacobs","076 Johnson Park","rtissington1c@desdev.cn","Rollins Tissington","West-Douglas","IDR","nisl nunc nisl duis bibendum felis sed interdum venenatis turpis","Music","blogger.com","-9.5942","119.0138","7/13/2016","Asia/Makassar",4,3],[50,"42291-625","GR","Agía Triáda","Collins, Hamill and Schneider","74661 Myrtle Junction","vwoolford1d@cmu.edu","Vasilis Woolford","Koelpin, Dietrich and Wilkinson","EUR","sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus","Books","netscape.com","40.50003","22.87351","11/5/2016","Europe/Athens",1,2],[51,"68327-006","GE","Bolnisi","Farrell and Sons","38 Melrose Way","gmcrorie1e@techcrunch.com","Galina McRorie","Yundt, Johns and Kuphal","GEL","nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in","Jewelery","samsung.com","41.44794","44.53838","6/24/2016","Asia/Tbilisi",1,3],[52,"55154-6125","ID","Menanga","Jerde-Carroll","3 Forster Lane","fharpin1f@merriam-webster.com","Fran Harpin","Gleason Inc","IDR","aliquam non mauris morbi non lectus aliquam sit amet diam","Books","desdev.cn","-8.436","123.0868","2/22/2016","Asia/Makassar",2,1],[53,"52125-217","PT","Monte Novo","Cremin Group","46 Homewood Junction","lrose1g@google.com.hk","Lorelle Rose","Franecki-Littel","EUR","odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est","Computers","e-recht24.de","38.15","-8.8167","5/25/2016","Europe/Lisbon",1,2],[54,"50346-003","CN","Lincuo","Gerhold and Sons","450 Mallard Court","dshugg1h@japanpost.jp","Dori Shugg","Weimann, Kohler and Rosenbaum","CNY","velit donec diam neque vestibulum eget vulputate ut ultrices vel","Electronics","mtv.com","23.66062","117.25946","11/28/2016","Asia/Shanghai",4,2],[55,"65954-014","ID","Nusajaya","Kutch Group","66 Hagan Alley","llaughnan1i@wsj.com","Laird Laughnan","Botsford Inc","IDR","rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut","Baby","npr.org","-8.4817","118.3064","3/12/2016","Asia/Makassar",4,3],[56,"49738-116","HR","Bistrinci","Marks-Treutel","37 Randy Park","sslidders1j@lycos.com","Suzanna Slidders","Macejkovic, Miller and Cartwright","HRK","quam nec dui luctus rutrum nulla tellus in sagittis dui vel","Garden","tripod.com","45.69167","18.39861","12/29/2016","Europe/Zagreb",2,3],[57,"59667-0069","FR","Paris 12","Mayer-Ernser","81 Killdeer Road","lgravatt1k@nps.gov","Lewes Gravatt","Brown, Ryan and Quitzon","EUR","arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea","Beauty","redcross.org","48.8412","2.3876","7/12/2016","Europe/Paris",5,1],[58,"63739-547","VN","Trảng Bom","McLaughlin LLC","00 Barnett Place","mkroin1l@webeden.co.uk","Marina Kroin","Robel and Sons","VND","luctus rutrum nulla tellus in sagittis dui vel nisl duis","Automotive","ustream.tv","10.95358","107.00589","4/3/2016","Asia/Ho_Chi_Minh",3,2],[59,"54569-0909","CN","Lizi","Lowe-Sauer","4 Park Meadow Trail","bcannam1m@scientificamerican.com","Bobby Cannam","Sipes-Stiedemann","CNY","lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas","Toys","technorati.com","29.81127","107.92447","8/5/2016","Asia/Chongqing",5,1],[60,"54868-5657","AL","Patos Fshat","Kris and Sons","51 Talisman Alley","bheymann1n@ihg.com","Bunny Heymann","Abernathy, Luettgen and Becker","ALL","vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper","Grocery","guardian.co.uk","40.64278","19.65083","3/25/2016","Europe/Tirane",3,3],[61,"49288-0467","CN","Kouqian","Morar-Lynch","77 Tomscot Alley","bbriance1o@furl.net","Barbara Briance","Zulauf-Kihn","CNY","odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede","Books","icio.us","43.63914","126.45784","6/11/2016","Asia/Harbin",2,1],[62,"14783-455","PL","Niemodlin","Spinka, Hackett and Leannon","45 Orin Plaza","vgapp1p@pinterest.com","Vikky Gapp","Williamson, Champlin and Zieme","PLN","cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes","Games","wisc.edu","50.642","17.61932","9/30/2016","Europe/Warsaw",2,3],[63,"58232-0029","CN","Zhoukou","Wyman, Swift and Homenick","111 Banding Street","jann1q@drupal.org","Jo ann Henzer","Wolff, Halvorson and Ebert","CNY","metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci","Health","mozilla.com","27.69684","118.91938","7/23/2016","Asia/Shanghai",5,1],[64,"54868-5397","CN","Baima","Schaefer Group","26078 Goodland Circle","eironmonger1r@weather.com","Ernest Ironmonger","Boyle, Schowalter and Jast","CNY","nisl aenean lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum","Baby","google.de","31.58261","119.17219","3/6/2016","Asia/Shanghai",3,2],[65,"69069-101","US","Stamford","Runte-Champlin","7 Portage Court","kjacop1s@prlog.org","Karylin Jacop","Kuphal Group","USD","at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis","Industrial","upenn.edu","41.0888","-73.5435","5/1/2016","America/New_York",5,3],[66,"30142-022","ID","Tebanah","Hudson-Fay","75 Mendota Parkway","cmoncrefe1t@craigslist.org","Cherise Moncrefe","Block Group","IDR","orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor","Outdoors","is.gd","-6.9213","113.2043","7/8/2016","Asia/Jakarta",5,2],[67,"16729-115","ID","Tracal","Beier and Sons","93758 Gale Street","celfes1u@usa.gov","Clarie Elfes","Heidenreich Group","IDR","tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet","Grocery","usatoday.com","-6.9824","112.3381","6/27/2016","Asia/Jakarta",3,2],[68,"51147-5010","RU","Volzhsk","Beatty Group","11023 Barnett Park","ibehnecken1v@linkedin.com","Isadore Behnecken","Gottlieb-Douglas","RUB","lobortis ligula sit amet eleifend pede libero quis orci nullam","Shoes","weather.com","55.86638","48.3594","7/8/2016","Europe/Moscow",2,2],[69,"57520-0435","CU","Venezuela","Mante-Kunze","7137 Sutteridge Place","gclemmey1w@hud.gov","Gerty Clemmey","Schulist, Blanda and Donnelly","CUP","donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac","Automotive","ocn.ne.jp","21.73528","-78.79639","4/24/2016","America/Havana",1,2],[70,"41250-990","ID","Kepel","Rogahn and Sons","350 Continental Alley","jogle1x@dot.gov","Jay Ogle","Botsford LLC","IDR","nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient","Music","angelfire.com","-8.1157","112.4289","4/28/2016","Asia/Jakarta",3,3],[71,"52125-726","MA","Riah","Friesen, O\'Connell and Volkman","72001 3rd Point","bdutnell1y@stumbleupon.com","Beverie Dutnell","Lowe, Pacocha and Grimes","MAD","ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec","Kids","chronoengine.com","33.15122","-7.37504","6/9/2016","Africa/Casablanca",3,2],[72,"68645-478","GB","Milton","Kohler-Wolff","674 Texas Plaza","cduddin1z@blogtalkradio.com","Carin Duddin","Feil, Wolf and Nicolas","GBP","sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis","Beauty","storify.com","53.1805","-0.9766","2/19/2016","Europe/London",4,2],[73,"53942-503","TH","Khok Sung","Denesik-Dach","3 Eastwood Hill","uluety20@parallels.com","Ulrika Luety","Halvorson-Koch","THB","dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum","Kids","virginia.edu","13.83824","102.62254","8/29/2016","Asia/Bangkok",4,2],[74,"10742-8123","CN","Yilkiqi","Little Group","2039 Katie Circle","hblazic21@tripod.com","Hugh Blazic","Kunze Inc","CNY","tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat","Jewelery","biglobe.ne.jp","37.96111","77.24917","11/12/2016","Asia/Kashgar",4,2],[75,"11523-7313","MX","Vicente Guerrero","Larson Inc","14 Fieldstone Alley","apinke22@apple.com","Antonie Pinke","Gislason, Hessel and Heaney","MXN","lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem","Tools","slideshare.net","19.058","-97.818","7/4/2016","America/Mexico_City",3,3],[76,"0406-9959","YE","Ash Sharyah","Huel-Bednar","880 Florence Hill","cdust23@is.gd","Corbie Dust","Cummerata LLC","YER","purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur","Electronics","booking.com","14.35659","45.02244","8/15/2016","Asia/Aden",4,1],[77,"63824-479","CO","La Argentina","Okuneva Inc","9346 Jana Alley","sde24@bigcartel.com","Sidonnie De Avenell","Raynor-Feil","COP","quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere","Tools","goo.ne.jp","2.19611","-75.98","2/13/2016","America/Bogota",6,1],[78,"53329-410","CN","Jieshipu","Cummings Inc","276 Continental Drive","ykneaphsey25@csmonitor.com","Yorker Kneaphsey","Bergstrom, Oberbrunner and Jenkins","CNY","nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend","Automotive","utexas.edu","35.61073","105.53784","8/5/2016","Asia/Chongqing",6,2],[79,"0498-2420","JP","Watari","Murazik, Herman and Klein","5 Harbort Place","blockier26@bigcartel.com","Brenn Lockier","Fahey-Schiller","JPY","neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum","Kids","narod.ru","38.035","140.85111","5/31/2016","Asia/Tokyo",5,1],[80,"69106-070","UZ","Navoiy","Torphy-Kunde","80628 Mcguire Hill","wjery27@dot.gov","Walliw Jery","Will, Fahey and Bernier","UZS","cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus","Sports","facebook.com","40.08444","65.37917","10/15/2016","Asia/Samarkand",2,2],[81,"49852-006","SI","Ravne","Hettinger-Klocko","636 Village Green Circle","qderell28@cnn.com","Quintus Derell","Moen-Greenfelder","EUR","sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar","Tools","typepad.com","46.41413","15.06087","5/28/2016","Europe/Ljubljana",1,1],[82,"67253-232","PH","Cabadiangan","Beier LLC","01753 Wayridge Point","alyburn29@latimes.com","Annamaria Lyburn","Terry-Weber","PHP","ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices","Electronics","scientificamerican.com","9.7534","122.4739","11/11/2016","Asia/Manila",6,3],[83,"54868-6333","RU","Nakhabino","Krajcik Inc","77 Atwood Place","dvarnam2a@ft.com","Dall Varnam","Metz-Hoeger","RUB","varius ut blandit non interdum in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices","Music","marriott.com","55.84854","37.17788","6/9/2016","Europe/Moscow",3,2],[84,"0496-0883","VE","El Cafetal","Durgan LLC","722 Orin Trail","kbirkby2b@sciencedaily.com","Kort Birkby","Brekke-Crooks","VEF","massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet","Grocery","github.io","10.46941","-66.83063","5/4/2016","America/Caracas",1,1],[85,"59011-410","CN","Shaxi","Leuschke Inc","0 Scott Parkway","bbaildon2c@apache.org","Booth Baildon","Schumm-Turner","CNY","euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis","Garden","squidoo.com","24.61694","113.67068","2/27/2016","Asia/Chongqing",5,1],[86,"10578-002","CN","Xinpu","Crist-Mayert","6 Lakewood Gardens Plaza","ahaslewood2d@simplemachines.org","Amber Haslewood","Hammes Group","CNY","nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus","Sports","google.ca","30.98227","113.98035","11/12/2016","Asia/Chongqing",2,3],[87,"0591-5454","PH","Busay","Cummerata Inc","52409 Bultman Point","dkorejs2e@census.gov","Domeniga Korejs","Green-Bashirian","PHP","nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh in quis justo","Automotive","amazon.com","10.5378","122.886","4/2/2016","Asia/Manila",2,1],[88,"24385-998","FI","Juupajoki","Aufderhar, Borer and Berge","06 Everett Hill","bvitall2f@qq.com","Belva Vitall","Kassulke, Kub and Parker","EUR","vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus","Movies","yahoo.com","61.79901","24.36939","7/28/2016","Europe/Helsinki",6,3],[89,"42507-484","IR","Kīsh","Purdy, Prosacco and Stamm","07 Morningstar Drive","nbreede2g@delicious.com","Netti Breede","Conroy-Schmitt","IRR","morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id","Music","networkadvertising.org","26.55778","54.01944","3/21/2016","Asia/Tehran",1,1],[90,"0904-6010","BA","Bužim","Howell Inc","57 Anhalt Center","rezzy2h@senate.gov","Rosella Ezzy","Heller-Turcotte","BAM","vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet","Tools","dyndns.org","45.05361","16.03254","6/11/2016","Europe/Sarajevo",3,3],[91,"65044-5285","CR","San Francisco","Orn LLC","979 Quincy Place","lnairy2i@wikia.com","Lyn Nairy","Hermann, Heathcote and Blick","CRC","phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat ut nulla","Industrial","goo.ne.jp","9.99299","-84.12934","10/23/2016","America/Costa_Rica",3,3],[92,"33261-045","TZ","Dongobesh","Haag Inc","5 Rigney Center","avanyakin2j@edublogs.org","Abba Vanyakin","Buckridge, O\'Kon and Cassin","TZS","ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse","Automotive","weather.com","-4.06667","35.38333","3/8/2016","Africa/Dar_es_Salaam",6,3],[93,"42507-300","CL","Puerto Montt","Rogahn-McClure","9 Scoville Place","edobrovolny2k@ycombinator.com","Estella Dobrovolny","Labadie, Hilll and Ryan","CLP","fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet","Jewelery","vk.com","-41.46574","-72.94289","4/15/2016","America/Santiago",1,2],[94,"58118-2013","PL","Gąsocin","Kris LLC","0 Park Meadow Hill","mhryniewicz2l@dot.gov","Maurizia Hryniewicz","Koss LLC","PLN","vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam","Movies","edublogs.org","52.73754","20.7118","11/16/2016","Europe/Warsaw",4,1],[95,"55504-0500","ID","Besah","Dibbert-Batz","53 Jackson Pass","rdowrey2m@foxnews.com","Robena Dowrey","Stehr, Effertz and Goldner","IDR","diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo aliquam quis turpis","Jewelery","e-recht24.de","-7.1358","111.6394","6/29/2016","Asia/Jakarta",1,1],[96,"52316-190","TH","Yala","McCullough Group","35 Cordelia Alley","aovett2n@java.com","Agatha Ovett","Schultz, Dooley and Metz","THB","congue eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui","Books","mashable.com","6.53995","101.28128","10/4/2016","Asia/Bangkok",4,3],[97,"49288-0451","ID","Karangduren Dua","Heller Group","2169 Dixon Center","pkillner2o@fastcompany.com","Padraic Killner","Cruickshank and Sons","IDR","semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus","Jewelery","cisco.com","-8.2717","113.4939","8/22/2016","Asia/Jakarta",6,1],[98,"63824-478","KI","Tabwakea Village","Crona LLC","109 Bobwhite Park","jgonsalvo2p@bizjournals.com","Jacquelyn Gonsalvo","Ondricka, Bergnaum and Pfannerstill","AUD","tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc","Toys","networkadvertising.org","2.01643","-157.48773","6/11/2016","Pacific/Honolulu",2,2],[99,"0641-6045","FR","Étampes","Roberts-Wilderman","2950 North Circle","mfeld2q@mayoclinic.com","Mathilda Feld","Satterfield-Keebler","EUR","porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis donec","Grocery","printfriendly.com","48.4333","2.15","7/12/2016","Europe/Paris",2,2],[100,"50436-0124","PL","Drobin","Batz-McLaughlin","66031 Comanche Center","bheaseman2r@theglobeandmail.com","Brita Heaseman","Feeney-Kutch","PLN","id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero","Beauty","netlog.com","52.73775","19.98928","11/22/2016","Europe/Warsaw",2,1]]', + ); + return { + init: function() { + $('#kt_table_1').DataTable({ + responsive: !0, + data: e, + columnDefs: [ + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(e, a, i, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + ], + }); + }, + }; +})(); +jQuery(document).ready(function() { + KTDatatablesDataSourceHtml.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/extensions/buttons.js b/src/assets/app/custom/general/crud/datatables/extensions/buttons.js index cc64caa..c75e9da 100644 --- a/src/assets/app/custom/general/crud/datatables/extensions/buttons.js +++ b/src/assets/app/custom/general/crud/datatables/extensions/buttons.js @@ -1 +1,139 @@ -"use strict";var KTDatatablesExtensionButtons={init:function(){var t;$("#kt_table_1").DataTable({responsive:!0,dom:"<'row'<'col-sm-6 text-left'f><'col-sm-6 text-right'B>>\n\t\t\t<'row'<'col-sm-12'tr>>\n\t\t\t<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7 dataTables_pager'lp>>",buttons:["print","copyHtml5","excelHtml5","csvHtml5","pdfHtml5"],columnDefs:[{targets:6,render:function(t,e,a,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[t]?t:''+s[t].title+""}},{targets:7,render:function(t,e,a,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[t]?t:' '+s[t].title+""}}]}),t=$("#kt_table_2").DataTable({responsive:!0,buttons:["print","copyHtml5","excelHtml5","csvHtml5","pdfHtml5"],processing:!0,serverSide:!0,ajax:{url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/server.php",type:"POST",data:{columnsDef:["OrderID","Country","ShipCity","ShipAddress","CompanyAgent","CompanyName","Status","Type"]}},columns:[{data:"OrderID"},{data:"Country"},{data:"ShipCity"},{data:"ShipAddress"},{data:"CompanyAgent"},{data:"CompanyName"},{data:"Status"},{data:"Type"}],columnDefs:[{targets:6,render:function(t,e,a,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[t]?t:''+s[t].title+""}},{targets:7,render:function(t,e,a,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[t]?t:' '+s[t].title+""}}]}),$("#export_print").on("click",function(e){e.preventDefault(),t.button(0).trigger()}),$("#export_copy").on("click",function(e){e.preventDefault(),t.button(1).trigger()}),$("#export_excel").on("click",function(e){e.preventDefault(),t.button(2).trigger()}),$("#export_csv").on("click",function(e){e.preventDefault(),t.button(3).trigger()}),$("#export_pdf").on("click",function(e){e.preventDefault(),t.button(4).trigger()})}};jQuery(document).ready(function(){KTDatatablesExtensionButtons.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesExtensionButtons = { + init: function() { + var t; + $('#kt_table_1').DataTable({ + responsive: !0, + dom: + "<'row'<'col-sm-6 text-left'f><'col-sm-6 text-right'B>>\n\t\t\t<'row'<'col-sm-12'tr>>\n\t\t\t<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7 dataTables_pager'lp>>", + buttons: ['print', 'copyHtml5', 'excelHtml5', 'csvHtml5', 'pdfHtml5'], + columnDefs: [ + { + targets: 6, + render: function(t, e, a, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[t] + ? t + : '' + s[t].title + ''; + }, + }, + { + targets: 7, + render: function(t, e, a, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[t] + ? t + : ' ' + + s[t].title + + ''; + }, + }, + ], + }), + (t = $('#kt_table_2').DataTable({ + responsive: !0, + buttons: ['print', 'copyHtml5', 'excelHtml5', 'csvHtml5', 'pdfHtml5'], + processing: !0, + serverSide: !0, + ajax: { + url: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/server.php', + type: 'POST', + data: { + columnsDef: [ + 'OrderID', + 'Country', + 'ShipCity', + 'ShipAddress', + 'CompanyAgent', + 'CompanyName', + 'Status', + 'Type', + ], + }, + }, + columns: [ + { data: 'OrderID' }, + { data: 'Country' }, + { data: 'ShipCity' }, + { data: 'ShipAddress' }, + { data: 'CompanyAgent' }, + { data: 'CompanyName' }, + { data: 'Status' }, + { data: 'Type' }, + ], + columnDefs: [ + { + targets: 6, + render: function(t, e, a, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[t] + ? t + : '' + s[t].title + ''; + }, + }, + { + targets: 7, + render: function(t, e, a, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[t] + ? t + : ' ' + + s[t].title + + ''; + }, + }, + ], + })), + $('#export_print').on('click', function(e) { + e.preventDefault(), t.button(0).trigger(); + }), + $('#export_copy').on('click', function(e) { + e.preventDefault(), t.button(1).trigger(); + }), + $('#export_excel').on('click', function(e) { + e.preventDefault(), t.button(2).trigger(); + }), + $('#export_csv').on('click', function(e) { + e.preventDefault(), t.button(3).trigger(); + }), + $('#export_pdf').on('click', function(e) { + e.preventDefault(), t.button(4).trigger(); + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesExtensionButtons.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/extensions/colreorder.js b/src/assets/app/custom/general/crud/datatables/extensions/colreorder.js index 0db59fb..5d167c8 100644 --- a/src/assets/app/custom/general/crud/datatables/extensions/colreorder.js +++ b/src/assets/app/custom/general/crud/datatables/extensions/colreorder.js @@ -1 +1,58 @@ -"use strict";var KTDatatablesExtensionsColreorder={init:function(){$("#kt_table_1").DataTable({responsive:!0,colReorder:!0,columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(t,a,e,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:8,render:function(t,a,e,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[t]?t:''+s[t].title+""}},{targets:9,render:function(t,a,e,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[t]?t:' '+s[t].title+""}}]})}};jQuery(document).ready(function(){KTDatatablesExtensionsColreorder.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesExtensionsColreorder = { + init: function() { + $('#kt_table_1').DataTable({ + responsive: !0, + colReorder: !0, + columnDefs: [ + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(t, a, e, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: 8, + render: function(t, a, e, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[t] + ? t + : '' + s[t].title + ''; + }, + }, + { + targets: 9, + render: function(t, a, e, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[t] + ? t + : ' ' + + s[t].title + + ''; + }, + }, + ], + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesExtensionsColreorder.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/extensions/fixedcolumns.js b/src/assets/app/custom/general/crud/datatables/extensions/fixedcolumns.js index f29ba59..812b349 100644 --- a/src/assets/app/custom/general/crud/datatables/extensions/fixedcolumns.js +++ b/src/assets/app/custom/general/crud/datatables/extensions/fixedcolumns.js @@ -1 +1,62 @@ -"use strict";var KTDatatablesExtensionsFixedcolumns={init:function(){$("#kt_table_1").DataTable({responsive:!0,paging:!1,scrollY:"500px",scrollX:!0,scrollCollapse:!0,fixedColumns:{leftColumns:2,rightColumns:3},columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(t,a,e,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:18,render:function(t,a,e,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[t]?t:''+s[t].title+""}},{targets:19,render:function(t,a,e,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[t]?t:' '+s[t].title+""}}]})}};jQuery(document).ready(function(){KTDatatablesExtensionsFixedcolumns.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesExtensionsFixedcolumns = { + init: function() { + $('#kt_table_1').DataTable({ + responsive: !0, + paging: !1, + scrollY: '500px', + scrollX: !0, + scrollCollapse: !0, + fixedColumns: { leftColumns: 2, rightColumns: 3 }, + columnDefs: [ + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(t, a, e, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: 18, + render: function(t, a, e, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[t] + ? t + : '' + s[t].title + ''; + }, + }, + { + targets: 19, + render: function(t, a, e, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[t] + ? t + : ' ' + + s[t].title + + ''; + }, + }, + ], + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesExtensionsFixedcolumns.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/extensions/fixedheader.js b/src/assets/app/custom/general/crud/datatables/extensions/fixedheader.js index 47687f2..f26abe9 100644 --- a/src/assets/app/custom/general/crud/datatables/extensions/fixedheader.js +++ b/src/assets/app/custom/general/crud/datatables/extensions/fixedheader.js @@ -1 +1,59 @@ -"use strict";var KTDatatablesExtensionsFixedheader={init:function(){$("#kt_table_1").DataTable({responsive:!0,fixedHeader:{header:!0,headerOffset:$("#kt_header").height()},paging:!1,columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(e,a,t,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:8,render:function(e,a,t,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[e]?e:''+s[e].title+""}},{targets:9,render:function(e,a,t,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[e]?e:' '+s[e].title+""}}]})}};jQuery(document).ready(function(){KTDatatablesExtensionsFixedheader.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesExtensionsFixedheader = { + init: function() { + $('#kt_table_1').DataTable({ + responsive: !0, + fixedHeader: { header: !0, headerOffset: $('#kt_header').height() }, + paging: !1, + columnDefs: [ + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(e, a, t, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: 8, + render: function(e, a, t, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[e] + ? e + : '' + s[e].title + ''; + }, + }, + { + targets: 9, + render: function(e, a, t, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[e] + ? e + : ' ' + + s[e].title + + ''; + }, + }, + ], + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesExtensionsFixedheader.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/extensions/keytable.js b/src/assets/app/custom/general/crud/datatables/extensions/keytable.js index a25af2d..7c871a5 100644 --- a/src/assets/app/custom/general/crud/datatables/extensions/keytable.js +++ b/src/assets/app/custom/general/crud/datatables/extensions/keytable.js @@ -1 +1,58 @@ -"use strict";var KTDatatablesExtensionsKeytable={init:function(){$("#kt_table_1").DataTable({responsive:!0,keys:!0,columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(t,a,e,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:8,render:function(t,a,e,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[t]?t:''+s[t].title+""}},{targets:9,render:function(t,a,e,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[t]?t:' '+s[t].title+""}}]})}};jQuery(document).ready(function(){KTDatatablesExtensionsKeytable.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesExtensionsKeytable = { + init: function() { + $('#kt_table_1').DataTable({ + responsive: !0, + keys: !0, + columnDefs: [ + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(t, a, e, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: 8, + render: function(t, a, e, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[t] + ? t + : '' + s[t].title + ''; + }, + }, + { + targets: 9, + render: function(t, a, e, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[t] + ? t + : ' ' + + s[t].title + + ''; + }, + }, + ], + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesExtensionsKeytable.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/extensions/responsive.js b/src/assets/app/custom/general/crud/datatables/extensions/responsive.js index d8d2855..60a8d61 100644 --- a/src/assets/app/custom/general/crud/datatables/extensions/responsive.js +++ b/src/assets/app/custom/general/crud/datatables/extensions/responsive.js @@ -1 +1,57 @@ -"use strict";var KTDatatablesExtensionsResponsive={init:function(){$("#kt_table_1").DataTable({responsive:!0,columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(t,a,e,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:16,render:function(t,a,e,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[t]?t:''+s[t].title+""}},{targets:17,render:function(t,a,e,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[t]?t:' '+s[t].title+""}}]})}};jQuery(document).ready(function(){KTDatatablesExtensionsResponsive.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesExtensionsResponsive = { + init: function() { + $('#kt_table_1').DataTable({ + responsive: !0, + columnDefs: [ + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(t, a, e, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: 16, + render: function(t, a, e, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[t] + ? t + : '' + s[t].title + ''; + }, + }, + { + targets: 17, + render: function(t, a, e, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[t] + ? t + : ' ' + + s[t].title + + ''; + }, + }, + ], + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesExtensionsResponsive.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/extensions/rowgroup.js b/src/assets/app/custom/general/crud/datatables/extensions/rowgroup.js index 1bbf551..d275d67 100644 --- a/src/assets/app/custom/general/crud/datatables/extensions/rowgroup.js +++ b/src/assets/app/custom/general/crud/datatables/extensions/rowgroup.js @@ -1 +1,59 @@ -"use strict";var KTDatatablesExtensionsRowgroup={init:function(){$("#kt_table_1").DataTable({responsive:!0,order:[[2,"asc"]],rowGroup:{dataSrc:2},columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(t,a,e,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:8,render:function(t,a,e,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[t]?t:''+s[t].title+""}},{targets:9,render:function(t,a,e,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[t]?t:' '+s[t].title+""}}]})}};jQuery(document).ready(function(){KTDatatablesExtensionsRowgroup.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesExtensionsRowgroup = { + init: function() { + $('#kt_table_1').DataTable({ + responsive: !0, + order: [[2, 'asc']], + rowGroup: { dataSrc: 2 }, + columnDefs: [ + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(t, a, e, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: 8, + render: function(t, a, e, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[t] + ? t + : '' + s[t].title + ''; + }, + }, + { + targets: 9, + render: function(t, a, e, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[t] + ? t + : ' ' + + s[t].title + + ''; + }, + }, + ], + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesExtensionsRowgroup.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/extensions/rowreorder.js b/src/assets/app/custom/general/crud/datatables/extensions/rowreorder.js index 2323b31..41b9182 100644 --- a/src/assets/app/custom/general/crud/datatables/extensions/rowreorder.js +++ b/src/assets/app/custom/general/crud/datatables/extensions/rowreorder.js @@ -1 +1,58 @@ -"use strict";var KTDatatablesExtensionsRowreorder={init:function(){$("#kt_table_1").DataTable({responsive:!0,rowReorder:{selector:"tr"},columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(t,e,a,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:8,render:function(t,e,a,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[t]?t:''+s[t].title+""}},{targets:9,render:function(t,e,a,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[t]?t:' '+s[t].title+""}}]})}};jQuery(document).ready(function(){KTDatatablesExtensionsRowreorder.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesExtensionsRowreorder = { + init: function() { + $('#kt_table_1').DataTable({ + responsive: !0, + rowReorder: { selector: 'tr' }, + columnDefs: [ + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(t, e, a, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: 8, + render: function(t, e, a, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[t] + ? t + : '' + s[t].title + ''; + }, + }, + { + targets: 9, + render: function(t, e, a, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[t] + ? t + : ' ' + + s[t].title + + ''; + }, + }, + ], + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesExtensionsRowreorder.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/extensions/scroller.js b/src/assets/app/custom/general/crud/datatables/extensions/scroller.js index a24f20f..86994c1 100644 --- a/src/assets/app/custom/general/crud/datatables/extensions/scroller.js +++ b/src/assets/app/custom/general/crud/datatables/extensions/scroller.js @@ -1 +1,74 @@ -"use strict";var KTDatatablesExtensionsScroller={init:function(){$("#kt_table_1").DataTable({responsive:!0,ajax:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/server.php",deferRender:!0,scrollY:"500px",scrollCollapse:!0,scroller:!0,columns:[{data:"RecordID",visible:!1},{data:"OrderID"},{data:"ShipCity"},{data:"ShipAddress"},{data:"CompanyAgent"},{data:"CompanyName"},{data:"ShipDate"},{data:"Status"},{data:"Type"},{data:"Actions",responsivePriority:-1}],columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(a,t,e,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:-3,render:function(a,t,e,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[a]?a:''+s[a].title+""}},{targets:-2,render:function(a,t,e,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[a]?a:' '+s[a].title+""}}]})}};jQuery(document).ready(function(){KTDatatablesExtensionsScroller.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesExtensionsScroller = { + init: function() { + $('#kt_table_1').DataTable({ + responsive: !0, + ajax: 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/server.php', + deferRender: !0, + scrollY: '500px', + scrollCollapse: !0, + scroller: !0, + columns: [ + { data: 'RecordID', visible: !1 }, + { data: 'OrderID' }, + { data: 'ShipCity' }, + { data: 'ShipAddress' }, + { data: 'CompanyAgent' }, + { data: 'CompanyName' }, + { data: 'ShipDate' }, + { data: 'Status' }, + { data: 'Type' }, + { data: 'Actions', responsivePriority: -1 }, + ], + columnDefs: [ + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(a, t, e, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: -3, + render: function(a, t, e, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[a] + ? a + : '' + s[a].title + ''; + }, + }, + { + targets: -2, + render: function(a, t, e, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[a] + ? a + : ' ' + + s[a].title + + ''; + }, + }, + ], + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesExtensionsScroller.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/extensions/select.js b/src/assets/app/custom/general/crud/datatables/extensions/select.js index 3320e87..07b7e3d 100644 --- a/src/assets/app/custom/general/crud/datatables/extensions/select.js +++ b/src/assets/app/custom/general/crud/datatables/extensions/select.js @@ -1 +1,130 @@ -"use strict";var KTDatatablesExtensionsKeytable={init:function(){var e;$("#kt_table_1").DataTable({responsive:!0,select:!0,columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(e,t,a,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:8,render:function(e,t,a,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[e]?e:''+s[e].title+""}},{targets:9,render:function(e,t,a,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[e]?e:' '+s[e].title+""}}]}),(e=$("#kt_table_2").DataTable({responsive:!0,select:{style:"multi",selector:"td:first-child .kt-checkable"},headerCallback:function(e,t,a,n,s){e.getElementsByTagName("th")[0].innerHTML='\n '},columnDefs:[{targets:0,orderable:!1,render:function(e,t,a,n){return'\n '}},{targets:-1,title:"Actions",orderable:!1,render:function(e,t,a,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:8,render:function(e,t,a,n){var s={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===s[e]?e:''+s[e].title+""}},{targets:9,render:function(e,t,a,n){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[e]?e:' '+s[e].title+""}}]})).on("change",".kt-group-checkable",function(){var t=$(this).closest("table").find("td:first-child .kt-checkable"),a=$(this).is(":checked");$(t).each(function(){a?($(this).prop("checked",!0),e.rows($(this).closest("tr")).select()):($(this).prop("checked",!1),e.rows($(this).closest("tr")).deselect())})})}};jQuery(document).ready(function(){KTDatatablesExtensionsKeytable.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesExtensionsKeytable = { + init: function() { + var e; + $('#kt_table_1').DataTable({ + responsive: !0, + select: !0, + columnDefs: [ + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(e, t, a, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: 8, + render: function(e, t, a, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[e] + ? e + : '' + s[e].title + ''; + }, + }, + { + targets: 9, + render: function(e, t, a, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[e] + ? e + : ' ' + + s[e].title + + ''; + }, + }, + ], + }), + (e = $('#kt_table_2').DataTable({ + responsive: !0, + select: { style: 'multi', selector: 'td:first-child .kt-checkable' }, + headerCallback: function(e, t, a, n, s) { + e.getElementsByTagName('th')[0].innerHTML = + '\n '; + }, + columnDefs: [ + { + targets: 0, + orderable: !1, + render: function(e, t, a, n) { + return '\n '; + }, + }, + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(e, t, a, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: 8, + render: function(e, t, a, n) { + var s = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === s[e] + ? e + : '' + s[e].title + ''; + }, + }, + { + targets: 9, + render: function(e, t, a, n) { + var s = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === s[e] + ? e + : ' ' + + s[e].title + + ''; + }, + }, + ], + })).on('change', '.kt-group-checkable', function() { + var t = $(this) + .closest('table') + .find('td:first-child .kt-checkable'), + a = $(this).is(':checked'); + $(t).each(function() { + a + ? ($(this).prop('checked', !0), e.rows($(this).closest('tr')).select()) + : ($(this).prop('checked', !1), e.rows($(this).closest('tr')).deselect()); + }); + }); + }, +}; +jQuery(document).ready(function() { + KTDatatablesExtensionsKeytable.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/search-options/advanced-search.js b/src/assets/app/custom/general/crud/datatables/search-options/advanced-search.js index b0821c6..92531b7 100644 --- a/src/assets/app/custom/general/crud/datatables/search-options/advanced-search.js +++ b/src/assets/app/custom/general/crud/datatables/search-options/advanced-search.js @@ -1 +1,173 @@ -"use strict";var KTDatatablesSearchOptionsAdvancedSearch=function(){$.fn.dataTable.Api.register("column().title()",function(){return $(this.header()).text().trim()});return{init:function(){var t;t=$("#kt_table_1").DataTable({responsive:!0,dom:"<'row'<'col-sm-12'tr>>\n\t\t\t<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7 dataTables_pager'lp>>",lengthMenu:[5,10,25,50],pageLength:10,language:{lengthMenu:"Display _MENU_"},searchDelay:500,processing:!0,serverSide:!0,ajax:{url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/server.php",type:"POST",data:{columnsDef:["RecordID","OrderID","Country","ShipCity","CompanyAgent","ShipDate","Status","Type","Actions"]}},columns:[{data:"RecordID"},{data:"OrderID"},{data:"Country"},{data:"ShipCity"},{data:"CompanyAgent"},{data:"ShipDate"},{data:"Status"},{data:"Type"},{data:"Actions",responsivePriority:-1}],initComplete:function(){this.api().columns().every(function(){switch(this.title()){case"Country":this.data().unique().sort().each(function(t,a){$('.kt-input[data-col-index="2"]').append('")});break;case"Status":var t={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};this.data().unique().sort().each(function(a,e){$('.kt-input[data-col-index="6"]').append('")});break;case"Type":t={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}},this.data().unique().sort().each(function(a,e){$('.kt-input[data-col-index="7"]').append('")})}})},columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(t,a,e,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:6,render:function(t,a,e,n){var i={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===i[t]?t:''+i[t].title+""}},{targets:7,render:function(t,a,e,n){var i={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===i[t]?t:' '+i[t].title+""}}]}),$("#kt_search").on("click",function(a){a.preventDefault();var e={};$(".kt-input").each(function(){var t=$(this).data("col-index");e[t]?e[t]+="|"+$(this).val():e[t]=$(this).val()}),$.each(e,function(a,e){t.column(a).search(e||"",!1,!1)}),t.table().draw()}),$("#kt_reset").on("click",function(a){a.preventDefault(),$(".kt-input").each(function(){$(this).val(""),t.column($(this).data("col-index")).search("",!1,!1)}),t.table().draw()}),$("#kt_datepicker").datepicker({todayHighlight:!0,templates:{leftArrow:'',rightArrow:''}})}}}();jQuery(document).ready(function(){KTDatatablesSearchOptionsAdvancedSearch.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesSearchOptionsAdvancedSearch = (function() { + $.fn.dataTable.Api.register('column().title()', function() { + return $(this.header()) + .text() + .trim(); + }); + return { + init: function() { + var t; + (t = $('#kt_table_1').DataTable({ + responsive: !0, + dom: "<'row'<'col-sm-12'tr>>\n\t\t\t<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7 dataTables_pager'lp>>", + lengthMenu: [5, 10, 25, 50], + pageLength: 10, + language: { lengthMenu: 'Display _MENU_' }, + searchDelay: 500, + processing: !0, + serverSide: !0, + ajax: { + url: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/server.php', + type: 'POST', + data: { + columnsDef: [ + 'RecordID', + 'OrderID', + 'Country', + 'ShipCity', + 'CompanyAgent', + 'ShipDate', + 'Status', + 'Type', + 'Actions', + ], + }, + }, + columns: [ + { data: 'RecordID' }, + { data: 'OrderID' }, + { data: 'Country' }, + { data: 'ShipCity' }, + { data: 'CompanyAgent' }, + { data: 'ShipDate' }, + { data: 'Status' }, + { data: 'Type' }, + { data: 'Actions', responsivePriority: -1 }, + ], + initComplete: function() { + this.api() + .columns() + .every(function() { + switch (this.title()) { + case 'Country': + this.data() + .unique() + .sort() + .each(function(t, a) { + $('.kt-input[data-col-index="2"]').append(''); + }); + break; + case 'Status': + var t = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + this.data() + .unique() + .sort() + .each(function(a, e) { + $('.kt-input[data-col-index="6"]').append( + '', + ); + }); + break; + case 'Type': + (t = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }), + this.data() + .unique() + .sort() + .each(function(a, e) { + $('.kt-input[data-col-index="7"]').append( + '', + ); + }); + } + }); + }, + columnDefs: [ + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(t, a, e, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { + targets: 6, + render: function(t, a, e, n) { + var i = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === i[t] + ? t + : '' + i[t].title + ''; + }, + }, + { + targets: 7, + render: function(t, a, e, n) { + var i = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === i[t] + ? t + : ' ' + + i[t].title + + ''; + }, + }, + ], + })), + $('#kt_search').on('click', function(a) { + a.preventDefault(); + var e = {}; + $('.kt-input').each(function() { + var t = $(this).data('col-index'); + e[t] ? (e[t] += '|' + $(this).val()) : (e[t] = $(this).val()); + }), + $.each(e, function(a, e) { + t.column(a).search(e || '', !1, !1); + }), + t.table().draw(); + }), + $('#kt_reset').on('click', function(a) { + a.preventDefault(), + $('.kt-input').each(function() { + $(this).val(''), t.column($(this).data('col-index')).search('', !1, !1); + }), + t.table().draw(); + }), + $('#kt_datepicker').datepicker({ + todayHighlight: !0, + templates: { leftArrow: '', rightArrow: '' }, + }); + }, + }; +})(); +jQuery(document).ready(function() { + KTDatatablesSearchOptionsAdvancedSearch.init(); +}); diff --git a/src/assets/app/custom/general/crud/datatables/search-options/column-search.js b/src/assets/app/custom/general/crud/datatables/search-options/column-search.js index ea93732..8de62b7 100644 --- a/src/assets/app/custom/general/crud/datatables/search-options/column-search.js +++ b/src/assets/app/custom/general/crud/datatables/search-options/column-search.js @@ -1 +1,236 @@ -"use strict";var KTDatatablesSearchOptionsColumnSearch=function(){$.fn.dataTable.Api.register("column().title()",function(){return $(this.header()).text().trim()});return{init:function(){var t;t=$("#kt_table_1").DataTable({responsive:!0,dom:"<'row'<'col-sm-12'tr>>\n\t\t\t<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7 dataTables_pager'lp>>",lengthMenu:[5,10,25,50],pageLength:10,language:{lengthMenu:"Display _MENU_"},searchDelay:500,processing:!0,serverSide:!0,ajax:{url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/server.php",type:"POST",data:{columnsDef:["RecordID","OrderID","Country","ShipCity","CompanyAgent","ShipDate","Status","Type","Actions"]}},columns:[{data:"RecordID"},{data:"OrderID"},{data:"Country"},{data:"ShipCity"},{data:"CompanyAgent"},{data:"ShipDate"},{data:"Status"},{data:"Type"},{data:"Actions",responsivePriority:-1}],initComplete:function(){var e=this,a=$('').appendTo($(t.table().header()));this.api().columns().every(function(){var e;switch(this.title()){case"Record ID":case"Order ID":case"Ship City":case"Company Agent":e=$('');break;case"Country":e=$(''),this.data().unique().sort().each(function(t,a){$(e).append('")});break;case"Status":var n={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};e=$(''),this.data().unique().sort().each(function(t,a){$(e).append('")});break;case"Type":n={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}},e=$(''),this.data().unique().sort().each(function(t,a){$(e).append('")});break;case"Ship Date":e=$('\n\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t
    ');break;case"Actions":var i=$(''),s=$('');$("").append(i).append(s).appendTo(a),$(i).on("click",function(e){e.preventDefault();var n={};$(a).find(".kt-input").each(function(){var t=$(this).data("col-index");n[t]?n[t]+="|"+$(this).val():n[t]=$(this).val()}),$.each(n,function(e,a){t.column(e).search(a||"",!1,!1)}),t.table().draw()}),$(s).on("click",function(e){e.preventDefault(),$(a).find(".kt-input").each(function(e){$(this).val(""),t.column($(this).data("col-index")).search("",!1,!1)}),t.table().draw()})}"Actions"!==this.title()&&$(e).appendTo($("").appendTo(a))});var n=function(){e.api().columns().every(function(){this.responsiveHidden()?$(a).find("th").eq(this.index()).show():$(a).find("th").eq(this.index()).hide()})};n(),window.onresize=n,$("#kt_datepicker_1,#kt_datepicker_2").datepicker()},columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(t,e,a,n){return'\n \n \n \n \n \n \n \n \n '}},{targets:5,width:"150px"},{targets:6,render:function(t,e,a,n){var i={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return void 0===i[t]?t:''+i[t].title+""}},{targets:7,render:function(t,e,a,n){var i={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===i[t]?t:' '+i[t].title+""}}]})}}}();jQuery(document).ready(function(){KTDatatablesSearchOptionsColumnSearch.init()}); \ No newline at end of file +'use strict'; +var KTDatatablesSearchOptionsColumnSearch = (function() { + $.fn.dataTable.Api.register('column().title()', function() { + return $(this.header()) + .text() + .trim(); + }); + return { + init: function() { + var t; + t = $('#kt_table_1').DataTable({ + responsive: !0, + dom: "<'row'<'col-sm-12'tr>>\n\t\t\t<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7 dataTables_pager'lp>>", + lengthMenu: [5, 10, 25, 50], + pageLength: 10, + language: { lengthMenu: 'Display _MENU_' }, + searchDelay: 500, + processing: !0, + serverSide: !0, + ajax: { + url: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/server.php', + type: 'POST', + data: { + columnsDef: [ + 'RecordID', + 'OrderID', + 'Country', + 'ShipCity', + 'CompanyAgent', + 'ShipDate', + 'Status', + 'Type', + 'Actions', + ], + }, + }, + columns: [ + { data: 'RecordID' }, + { data: 'OrderID' }, + { data: 'Country' }, + { data: 'ShipCity' }, + { data: 'CompanyAgent' }, + { data: 'ShipDate' }, + { data: 'Status' }, + { data: 'Type' }, + { data: 'Actions', responsivePriority: -1 }, + ], + initComplete: function() { + var e = this, + a = $('').appendTo($(t.table().header())); + this.api() + .columns() + .every(function() { + var e; + switch (this.title()) { + case 'Record ID': + case 'Order ID': + case 'Ship City': + case 'Company Agent': + e = $( + '', + ); + break; + case 'Country': + (e = $( + '', + )), + this.data() + .unique() + .sort() + .each(function(t, a) { + $(e).append(''); + }); + break; + case 'Status': + var n = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + (e = $( + '', + )), + this.data() + .unique() + .sort() + .each(function(t, a) { + $(e).append(''); + }); + break; + case 'Type': + (n = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }), + (e = $( + '', + )), + this.data() + .unique() + .sort() + .each(function(t, a) { + $(e).append(''); + }); + break; + case 'Ship Date': + e = $( + '\n\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t
    ', + ); + break; + case 'Actions': + var i = $( + '', + ), + s = $( + '', + ); + $('') + .append(i) + .append(s) + .appendTo(a), + $(i).on('click', function(e) { + e.preventDefault(); + var n = {}; + $(a) + .find('.kt-input') + .each(function() { + var t = $(this).data('col-index'); + n[t] ? (n[t] += '|' + $(this).val()) : (n[t] = $(this).val()); + }), + $.each(n, function(e, a) { + t.column(e).search(a || '', !1, !1); + }), + t.table().draw(); + }), + $(s).on('click', function(e) { + e.preventDefault(), + $(a) + .find('.kt-input') + .each(function(e) { + $(this).val(''), t.column($(this).data('col-index')).search('', !1, !1); + }), + t.table().draw(); + }); + } + 'Actions' !== this.title() && $(e).appendTo($('').appendTo(a)); + }); + var n = function() { + e.api() + .columns() + .every(function() { + this.responsiveHidden() + ? $(a) + .find('th') + .eq(this.index()) + .show() + : $(a) + .find('th') + .eq(this.index()) + .hide(); + }); + }; + n(), (window.onresize = n), $('#kt_datepicker_1,#kt_datepicker_2').datepicker(); + }, + columnDefs: [ + { + targets: -1, + title: 'Actions', + orderable: !1, + render: function(t, e, a, n) { + return '\n \n \n \n \n \n \n \n \n '; + }, + }, + { targets: 5, width: '150px' }, + { + targets: 6, + render: function(t, e, a, n) { + var i = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return void 0 === i[t] + ? t + : '' + i[t].title + ''; + }, + }, + { + targets: 7, + render: function(t, e, a, n) { + var i = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return void 0 === i[t] + ? t + : ' ' + + i[t].title + + ''; + }, + }, + ], + }); + }, + }; +})(); +jQuery(document).ready(function() { + KTDatatablesSearchOptionsColumnSearch.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/validation/form-controls.js b/src/assets/app/custom/general/crud/forms/validation/form-controls.js index 760ee4c..1b9d274 100644 --- a/src/assets/app/custom/general/crud/forms/validation/form-controls.js +++ b/src/assets/app/custom/general/crud/forms/validation/form-controls.js @@ -1 +1,67 @@ -var KTFormControls={init:function(){$("#kt_form_1").validate({rules:{email:{required:!0,email:!0,minlength:10},url:{required:!0},digits:{required:!0,digits:!0},creditcard:{required:!0,creditcard:!0},phone:{required:!0,phoneUS:!0},option:{required:!0},options:{required:!0,minlength:2,maxlength:4},memo:{required:!0,minlength:10,maxlength:100},checkbox:{required:!0},checkboxes:{required:!0,minlength:1,maxlength:2},radio:{required:!0}},invalidHandler:function(e,r){$("#kt_form_1_msg").removeClass("kt--hide").show(),KTUtil.scrollTop()},submitHandler:function(e){}}),$("#kt_form_2").validate({rules:{billing_card_name:{required:!0},billing_card_number:{required:!0,creditcard:!0},billing_card_exp_month:{required:!0},billing_card_exp_year:{required:!0},billing_card_cvv:{required:!0,minlength:2,maxlength:3},billing_address_1:{required:!0},billing_address_2:{},billing_city:{required:!0},billing_state:{required:!0},billing_zip:{required:!0,number:!0},billing_delivery:{required:!0}},invalidHandler:function(e,r){swal.fire({title:"",text:"There are some errors in your submission. Please correct them.",type:"error",confirmButtonClass:"btn btn-secondary",onClose:function(e){console.log("on close event fired!")}}),e.preventDefault()},submitHandler:function(e){return swal.fire({title:"",text:"Form validation passed. All good!",type:"success",confirmButtonClass:"btn btn-secondary"}),!1}})}};jQuery(document).ready(function(){KTFormControls.init()}); \ No newline at end of file +var KTFormControls = { + init: function() { + $('#kt_form_1').validate({ + rules: { + email: { required: !0, email: !0, minlength: 10 }, + url: { required: !0 }, + digits: { required: !0, digits: !0 }, + creditcard: { required: !0, creditcard: !0 }, + phone: { required: !0, phoneUS: !0 }, + option: { required: !0 }, + options: { required: !0, minlength: 2, maxlength: 4 }, + memo: { required: !0, minlength: 10, maxlength: 100 }, + checkbox: { required: !0 }, + checkboxes: { required: !0, minlength: 1, maxlength: 2 }, + radio: { required: !0 }, + }, + invalidHandler: function(e, r) { + $('#kt_form_1_msg') + .removeClass('kt--hide') + .show(), + KTUtil.scrollTop(); + }, + submitHandler: function(e) {}, + }), + $('#kt_form_2').validate({ + rules: { + billing_card_name: { required: !0 }, + billing_card_number: { required: !0, creditcard: !0 }, + billing_card_exp_month: { required: !0 }, + billing_card_exp_year: { required: !0 }, + billing_card_cvv: { required: !0, minlength: 2, maxlength: 3 }, + billing_address_1: { required: !0 }, + billing_address_2: {}, + billing_city: { required: !0 }, + billing_state: { required: !0 }, + billing_zip: { required: !0, number: !0 }, + billing_delivery: { required: !0 }, + }, + invalidHandler: function(e, r) { + swal.fire({ + title: '', + text: 'There are some errors in your submission. Please correct them.', + type: 'error', + confirmButtonClass: 'btn btn-secondary', + onClose: function(e) { + console.log('on close event fired!'); + }, + }), + e.preventDefault(); + }, + submitHandler: function(e) { + return ( + swal.fire({ + title: '', + text: 'Form validation passed. All good!', + type: 'success', + confirmButtonClass: 'btn btn-secondary', + }), + !1 + ); + }, + }); + }, +}; +jQuery(document).ready(function() { + KTFormControls.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/validation/form-widgets.js b/src/assets/app/custom/general/crud/forms/validation/form-widgets.js index a1ee7fb..9253e46 100644 --- a/src/assets/app/custom/general/crud/forms/validation/form-widgets.js +++ b/src/assets/app/custom/general/crud/forms/validation/form-widgets.js @@ -1 +1,75 @@ -var KTFormWidgets=function(){var e;return{init:function(){!function(){$("#kt_datepicker").datepicker({todayHighlight:!0,templates:{leftArrow:'',rightArrow:''}}),$("#kt_datetimepicker").datetimepicker({pickerPosition:"bottom-left",todayHighlight:!0,autoclose:!0,format:"yyyy.mm.dd hh:ii"}),$("#kt_datetimepicker").change(function(){e.element($(this))}),$("#kt_timepicker").timepicker({minuteStep:1,showSeconds:!0,showMeridian:!0}),$("#kt_daterangepicker").daterangepicker({buttonClasses:" btn",applyClass:"btn-primary",cancelClass:"btn-secondary"},function(t,i,a){var r=$("#kt_daterangepicker").find(".form-control");r.val(t.format("YYYY/MM/DD")+" / "+i.format("YYYY/MM/DD")),e.element(r)}),$("[data-switch=true]").bootstrapSwitch(),$("[data-switch=true]").on("switchChange.bootstrapSwitch",function(){e.element($(this))}),$("#kt_bootstrap_select").selectpicker(),$("#kt_bootstrap_select").on("changed.bs.select",function(){e.element($(this))}),$("#kt_select2").select2({placeholder:"Select a state"}),$("#kt_select2").on("select2:change",function(){e.element($(this))});var t=new Bloodhound({datumTokenizer:Bloodhound.tokenizers.whitespace,queryTokenizer:Bloodhound.tokenizers.whitespace,prefetch:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/typeahead/countries.json"});$("#kt_typeahead").typeahead(null,{name:"countries",source:t}),$("#kt_typeahead").bind("typeahead:select",function(t,i){e.element($("#kt_typeahead"))})}(),e=$("#kt_form_1").validate({rules:{date:{required:!0,date:!0},daterange:{required:!0},datetime:{required:!0},time:{required:!0},select:{required:!0,minlength:2,maxlength:4},select2:{required:!0},typeahead:{required:!0},switch:{required:!0},markdown:{required:!0}},invalidHandler:function(e,t){$("#kt_form_1_msg").removeClass("kt--hide").show(),KTUtil.scrollTo("m_form_1_msg",-200)},submitHandler:function(e){}})}}}();jQuery(document).ready(function(){KTFormWidgets.init()}); \ No newline at end of file +var KTFormWidgets = (function() { + var e; + return { + init: function() { + !(function() { + $('#kt_datepicker').datepicker({ + todayHighlight: !0, + templates: { leftArrow: '', rightArrow: '' }, + }), + $('#kt_datetimepicker').datetimepicker({ + pickerPosition: 'bottom-left', + todayHighlight: !0, + autoclose: !0, + format: 'yyyy.mm.dd hh:ii', + }), + $('#kt_datetimepicker').change(function() { + e.element($(this)); + }), + $('#kt_timepicker').timepicker({ minuteStep: 1, showSeconds: !0, showMeridian: !0 }), + $('#kt_daterangepicker').daterangepicker( + { buttonClasses: ' btn', applyClass: 'btn-primary', cancelClass: 'btn-secondary' }, + function(t, i, a) { + var r = $('#kt_daterangepicker').find('.form-control'); + r.val(t.format('YYYY/MM/DD') + ' / ' + i.format('YYYY/MM/DD')), e.element(r); + }, + ), + $('[data-switch=true]').bootstrapSwitch(), + $('[data-switch=true]').on('switchChange.bootstrapSwitch', function() { + e.element($(this)); + }), + $('#kt_bootstrap_select').selectpicker(), + $('#kt_bootstrap_select').on('changed.bs.select', function() { + e.element($(this)); + }), + $('#kt_select2').select2({ placeholder: 'Select a state' }), + $('#kt_select2').on('select2:change', function() { + e.element($(this)); + }); + var t = new Bloodhound({ + datumTokenizer: Bloodhound.tokenizers.whitespace, + queryTokenizer: Bloodhound.tokenizers.whitespace, + prefetch: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/typeahead/countries.json', + }); + $('#kt_typeahead').typeahead(null, { name: 'countries', source: t }), + $('#kt_typeahead').bind('typeahead:select', function(t, i) { + e.element($('#kt_typeahead')); + }); + })(), + (e = $('#kt_form_1').validate({ + rules: { + date: { required: !0, date: !0 }, + daterange: { required: !0 }, + datetime: { required: !0 }, + time: { required: !0 }, + select: { required: !0, minlength: 2, maxlength: 4 }, + select2: { required: !0 }, + typeahead: { required: !0 }, + switch: { required: !0 }, + markdown: { required: !0 }, + }, + invalidHandler: function(e, t) { + $('#kt_form_1_msg') + .removeClass('kt--hide') + .show(), + KTUtil.scrollTo('m_form_1_msg', -200); + }, + submitHandler: function(e) {}, + })); + }, + }; +})(); +jQuery(document).ready(function() { + KTFormWidgets.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/widgets/autosize.js b/src/assets/app/custom/general/crud/forms/widgets/autosize.js index d6c7172..1a4fea1 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/autosize.js +++ b/src/assets/app/custom/general/crud/forms/widgets/autosize.js @@ -1 +1,9 @@ -var KTAutosize={init:function(){var t,i;t=$("#kt_autosize_1"),i=$("#kt_autosize_2"),autosize(t),autosize(i),autosize.update(i)}};jQuery(document).ready(function(){KTAutosize.init()}); \ No newline at end of file +var KTAutosize = { + init: function() { + var t, i; + (t = $('#kt_autosize_1')), (i = $('#kt_autosize_2')), autosize(t), autosize(i), autosize.update(i); + }, +}; +jQuery(document).ready(function() { + KTAutosize.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/widgets/bootstrap-datepicker.js b/src/assets/app/custom/general/crud/forms/widgets/bootstrap-datepicker.js index 48d2ba5..93021dd 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/bootstrap-datepicker.js +++ b/src/assets/app/custom/general/crud/forms/widgets/bootstrap-datepicker.js @@ -1 +1,77 @@ -var KTBootstrapDatepicker=function(){var t;t=KTUtil.isRTL()?{leftArrow:'',rightArrow:''}:{leftArrow:'',rightArrow:''};return{init:function(){$("#kt_datepicker_1, #kt_datepicker_1_validate").datepicker({rtl:KTUtil.isRTL(),todayHighlight:!0,orientation:"bottom left",templates:t}),$("#kt_datepicker_1_modal").datepicker({rtl:KTUtil.isRTL(),todayHighlight:!0,orientation:"bottom left",templates:t}),$("#kt_datepicker_2, #kt_datepicker_2_validate").datepicker({rtl:KTUtil.isRTL(),todayHighlight:!0,orientation:"bottom left",templates:t}),$("#kt_datepicker_2_modal").datepicker({rtl:KTUtil.isRTL(),todayHighlight:!0,orientation:"bottom left",templates:t}),$("#kt_datepicker_3, #kt_datepicker_3_validate").datepicker({rtl:KTUtil.isRTL(),todayBtn:"linked",clearBtn:!0,todayHighlight:!0,templates:t}),$("#kt_datepicker_3_modal").datepicker({rtl:KTUtil.isRTL(),todayBtn:"linked",clearBtn:!0,todayHighlight:!0,templates:t}),$("#kt_datepicker_4_1").datepicker({rtl:KTUtil.isRTL(),orientation:"top left",todayHighlight:!0,templates:t}),$("#kt_datepicker_4_2").datepicker({rtl:KTUtil.isRTL(),orientation:"top right",todayHighlight:!0,templates:t}),$("#kt_datepicker_4_3").datepicker({rtl:KTUtil.isRTL(),orientation:"bottom left",todayHighlight:!0,templates:t}),$("#kt_datepicker_4_4").datepicker({rtl:KTUtil.isRTL(),orientation:"bottom right",todayHighlight:!0,templates:t}),$("#kt_datepicker_5").datepicker({rtl:KTUtil.isRTL(),todayHighlight:!0,templates:t}),$("#kt_datepicker_6").datepicker({rtl:KTUtil.isRTL(),todayHighlight:!0,templates:t})}}}();jQuery(document).ready(function(){KTBootstrapDatepicker.init()}); \ No newline at end of file +var KTBootstrapDatepicker = (function() { + var t; + t = KTUtil.isRTL() + ? { leftArrow: '', rightArrow: '' } + : { leftArrow: '', rightArrow: '' }; + return { + init: function() { + $('#kt_datepicker_1, #kt_datepicker_1_validate').datepicker({ + rtl: KTUtil.isRTL(), + todayHighlight: !0, + orientation: 'bottom left', + templates: t, + }), + $('#kt_datepicker_1_modal').datepicker({ + rtl: KTUtil.isRTL(), + todayHighlight: !0, + orientation: 'bottom left', + templates: t, + }), + $('#kt_datepicker_2, #kt_datepicker_2_validate').datepicker({ + rtl: KTUtil.isRTL(), + todayHighlight: !0, + orientation: 'bottom left', + templates: t, + }), + $('#kt_datepicker_2_modal').datepicker({ + rtl: KTUtil.isRTL(), + todayHighlight: !0, + orientation: 'bottom left', + templates: t, + }), + $('#kt_datepicker_3, #kt_datepicker_3_validate').datepicker({ + rtl: KTUtil.isRTL(), + todayBtn: 'linked', + clearBtn: !0, + todayHighlight: !0, + templates: t, + }), + $('#kt_datepicker_3_modal').datepicker({ + rtl: KTUtil.isRTL(), + todayBtn: 'linked', + clearBtn: !0, + todayHighlight: !0, + templates: t, + }), + $('#kt_datepicker_4_1').datepicker({ + rtl: KTUtil.isRTL(), + orientation: 'top left', + todayHighlight: !0, + templates: t, + }), + $('#kt_datepicker_4_2').datepicker({ + rtl: KTUtil.isRTL(), + orientation: 'top right', + todayHighlight: !0, + templates: t, + }), + $('#kt_datepicker_4_3').datepicker({ + rtl: KTUtil.isRTL(), + orientation: 'bottom left', + todayHighlight: !0, + templates: t, + }), + $('#kt_datepicker_4_4').datepicker({ + rtl: KTUtil.isRTL(), + orientation: 'bottom right', + todayHighlight: !0, + templates: t, + }), + $('#kt_datepicker_5').datepicker({ rtl: KTUtil.isRTL(), todayHighlight: !0, templates: t }), + $('#kt_datepicker_6').datepicker({ rtl: KTUtil.isRTL(), todayHighlight: !0, templates: t }); + }, + }; +})(); +jQuery(document).ready(function() { + KTBootstrapDatepicker.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/widgets/bootstrap-daterangepicker.js b/src/assets/app/custom/general/crud/forms/widgets/bootstrap-daterangepicker.js index a2f406f..941cf8e 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/bootstrap-daterangepicker.js +++ b/src/assets/app/custom/general/crud/forms/widgets/bootstrap-daterangepicker.js @@ -1 +1,119 @@ -var KTBootstrapDaterangepicker={init:function(){!function(){$("#kt_daterangepicker_1, #kt_daterangepicker_1_modal").daterangepicker({buttonClasses:" btn",applyClass:"btn-primary",cancelClass:"btn-secondary"}),$("#kt_daterangepicker_2").daterangepicker({buttonClasses:" btn",applyClass:"btn-primary",cancelClass:"btn-secondary"},function(a,t,e){$("#kt_daterangepicker_2 .form-control").val(a.format("YYYY-MM-DD")+" / "+t.format("YYYY-MM-DD"))}),$("#kt_daterangepicker_2_modal").daterangepicker({buttonClasses:" btn",applyClass:"btn-primary",cancelClass:"btn-secondary"},function(a,t,e){$("#kt_daterangepicker_2 .form-control").val(a.format("YYYY-MM-DD")+" / "+t.format("YYYY-MM-DD"))}),$("#kt_daterangepicker_3").daterangepicker({buttonClasses:" btn",applyClass:"btn-primary",cancelClass:"btn-secondary"},function(a,t,e){$("#kt_daterangepicker_3 .form-control").val(a.format("YYYY-MM-DD")+" / "+t.format("YYYY-MM-DD"))}),$("#kt_daterangepicker_3_modal").daterangepicker({buttonClasses:" btn",applyClass:"btn-primary",cancelClass:"btn-secondary"},function(a,t,e){$("#kt_daterangepicker_3 .form-control").val(a.format("YYYY-MM-DD")+" / "+t.format("YYYY-MM-DD"))}),$("#kt_daterangepicker_4").daterangepicker({buttonClasses:" btn",applyClass:"btn-primary",cancelClass:"btn-secondary",timePicker:!0,timePickerIncrement:30,locale:{format:"MM/DD/YYYY h:mm A"}},function(a,t,e){$("#kt_daterangepicker_4 .form-control").val(a.format("MM/DD/YYYY h:mm A")+" / "+t.format("MM/DD/YYYY h:mm A"))}),$("#kt_daterangepicker_5").daterangepicker({buttonClasses:" btn",applyClass:"btn-primary",cancelClass:"btn-secondary",singleDatePicker:!0,showDropdowns:!0,locale:{format:"MM/DD/YYYY"}},function(a,t,e){$("#kt_daterangepicker_5 .form-control").val(a.format("MM/DD/YYYY")+" / "+t.format("MM/DD/YYYY"))});var a=moment().subtract(29,"days"),t=moment();$("#kt_daterangepicker_6").daterangepicker({buttonClasses:" btn",applyClass:"btn-primary",cancelClass:"btn-secondary",startDate:a,endDate:t,ranges:{Today:[moment(),moment()],Yesterday:[moment().subtract(1,"days"),moment().subtract(1,"days")],"Last 7 Days":[moment().subtract(6,"days"),moment()],"Last 30 Days":[moment().subtract(29,"days"),moment()],"This Month":[moment().startOf("month"),moment().endOf("month")],"Last Month":[moment().subtract(1,"month").startOf("month"),moment().subtract(1,"month").endOf("month")]}},function(a,t,e){$("#kt_daterangepicker_6 .form-control").val(a.format("MM/DD/YYYY")+" / "+t.format("MM/DD/YYYY"))})}(),$("#kt_daterangepicker_1_validate").daterangepicker({buttonClasses:" btn",applyClass:"btn-primary",cancelClass:"btn-secondary"},function(a,t,e){$("#kt_daterangepicker_1_validate .form-control").val(a.format("YYYY-MM-DD")+" / "+t.format("YYYY-MM-DD"))}),$("#kt_daterangepicker_2_validate").daterangepicker({buttonClasses:" btn",applyClass:"btn-primary",cancelClass:"btn-secondary"},function(a,t,e){$("#kt_daterangepicker_3_validate .form-control").val(a.format("YYYY-MM-DD")+" / "+t.format("YYYY-MM-DD"))}),$("#kt_daterangepicker_3_validate").daterangepicker({buttonClasses:" btn",applyClass:"btn-primary",cancelClass:"btn-secondary"},function(a,t,e){$("#kt_daterangepicker_3_validate .form-control").val(a.format("YYYY-MM-DD")+" / "+t.format("YYYY-MM-DD"))})}};jQuery(document).ready(function(){KTBootstrapDaterangepicker.init()}); \ No newline at end of file +var KTBootstrapDaterangepicker = { + init: function() { + !(function() { + $('#kt_daterangepicker_1, #kt_daterangepicker_1_modal').daterangepicker({ + buttonClasses: ' btn', + applyClass: 'btn-primary', + cancelClass: 'btn-secondary', + }), + $('#kt_daterangepicker_2').daterangepicker( + { buttonClasses: ' btn', applyClass: 'btn-primary', cancelClass: 'btn-secondary' }, + function(a, t, e) { + $('#kt_daterangepicker_2 .form-control').val(a.format('YYYY-MM-DD') + ' / ' + t.format('YYYY-MM-DD')); + }, + ), + $('#kt_daterangepicker_2_modal').daterangepicker( + { buttonClasses: ' btn', applyClass: 'btn-primary', cancelClass: 'btn-secondary' }, + function(a, t, e) { + $('#kt_daterangepicker_2 .form-control').val(a.format('YYYY-MM-DD') + ' / ' + t.format('YYYY-MM-DD')); + }, + ), + $('#kt_daterangepicker_3').daterangepicker( + { buttonClasses: ' btn', applyClass: 'btn-primary', cancelClass: 'btn-secondary' }, + function(a, t, e) { + $('#kt_daterangepicker_3 .form-control').val(a.format('YYYY-MM-DD') + ' / ' + t.format('YYYY-MM-DD')); + }, + ), + $('#kt_daterangepicker_3_modal').daterangepicker( + { buttonClasses: ' btn', applyClass: 'btn-primary', cancelClass: 'btn-secondary' }, + function(a, t, e) { + $('#kt_daterangepicker_3 .form-control').val(a.format('YYYY-MM-DD') + ' / ' + t.format('YYYY-MM-DD')); + }, + ), + $('#kt_daterangepicker_4').daterangepicker( + { + buttonClasses: ' btn', + applyClass: 'btn-primary', + cancelClass: 'btn-secondary', + timePicker: !0, + timePickerIncrement: 30, + locale: { format: 'MM/DD/YYYY h:mm A' }, + }, + function(a, t, e) { + $('#kt_daterangepicker_4 .form-control').val( + a.format('MM/DD/YYYY h:mm A') + ' / ' + t.format('MM/DD/YYYY h:mm A'), + ); + }, + ), + $('#kt_daterangepicker_5').daterangepicker( + { + buttonClasses: ' btn', + applyClass: 'btn-primary', + cancelClass: 'btn-secondary', + singleDatePicker: !0, + showDropdowns: !0, + locale: { format: 'MM/DD/YYYY' }, + }, + function(a, t, e) { + $('#kt_daterangepicker_5 .form-control').val(a.format('MM/DD/YYYY') + ' / ' + t.format('MM/DD/YYYY')); + }, + ); + var a = moment().subtract(29, 'days'), + t = moment(); + $('#kt_daterangepicker_6').daterangepicker( + { + buttonClasses: ' btn', + applyClass: 'btn-primary', + cancelClass: 'btn-secondary', + startDate: a, + endDate: t, + ranges: { + Today: [moment(), moment()], + Yesterday: [moment().subtract(1, 'days'), moment().subtract(1, 'days')], + 'Last 7 Days': [moment().subtract(6, 'days'), moment()], + 'Last 30 Days': [moment().subtract(29, 'days'), moment()], + 'This Month': [moment().startOf('month'), moment().endOf('month')], + 'Last Month': [ + moment() + .subtract(1, 'month') + .startOf('month'), + moment() + .subtract(1, 'month') + .endOf('month'), + ], + }, + }, + function(a, t, e) { + $('#kt_daterangepicker_6 .form-control').val(a.format('MM/DD/YYYY') + ' / ' + t.format('MM/DD/YYYY')); + }, + ); + })(), + $('#kt_daterangepicker_1_validate').daterangepicker( + { buttonClasses: ' btn', applyClass: 'btn-primary', cancelClass: 'btn-secondary' }, + function(a, t, e) { + $('#kt_daterangepicker_1_validate .form-control').val( + a.format('YYYY-MM-DD') + ' / ' + t.format('YYYY-MM-DD'), + ); + }, + ), + $('#kt_daterangepicker_2_validate').daterangepicker( + { buttonClasses: ' btn', applyClass: 'btn-primary', cancelClass: 'btn-secondary' }, + function(a, t, e) { + $('#kt_daterangepicker_3_validate .form-control').val( + a.format('YYYY-MM-DD') + ' / ' + t.format('YYYY-MM-DD'), + ); + }, + ), + $('#kt_daterangepicker_3_validate').daterangepicker( + { buttonClasses: ' btn', applyClass: 'btn-primary', cancelClass: 'btn-secondary' }, + function(a, t, e) { + $('#kt_daterangepicker_3_validate .form-control').val( + a.format('YYYY-MM-DD') + ' / ' + t.format('YYYY-MM-DD'), + ); + }, + ); + }, +}; +jQuery(document).ready(function() { + KTBootstrapDaterangepicker.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/widgets/bootstrap-datetimepicker.js b/src/assets/app/custom/general/crud/forms/widgets/bootstrap-datetimepicker.js index 1b295c2..d3b3f53 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/bootstrap-datetimepicker.js +++ b/src/assets/app/custom/general/crud/forms/widgets/bootstrap-datetimepicker.js @@ -1 +1,88 @@ -var KTBootstrapDatetimepicker={init:function(){$("#kt_datetimepicker_1").datetimepicker({todayHighlight:!0,autoclose:!0,format:"yyyy.mm.dd hh:ii"}),$("#kt_datetimepicker_1_modal").datetimepicker({todayHighlight:!0,autoclose:!0,format:"yyyy.mm.dd hh:ii"}),$("#kt_datetimepicker_2, #kt_datetimepicker_1_validate, #kt_datetimepicker_2_validate, #kt_datetimepicker_3_validate").datetimepicker({todayHighlight:!0,autoclose:!0,pickerPosition:"bottom-left",format:"yyyy/mm/dd hh:ii"}),$("#kt_datetimepicker_2_modal").datetimepicker({todayHighlight:!0,autoclose:!0,pickerPosition:"bottom-left",format:"yyyy/mm/dd hh:ii"}),$("#kt_datetimepicker_3").datetimepicker({todayHighlight:!0,autoclose:!0,pickerPosition:"bottom-left",todayBtn:!0,format:"yyyy/mm/dd hh:ii"}),$("#kt_datetimepicker_3_modal").datetimepicker({todayHighlight:!0,autoclose:!0,pickerPosition:"bottom-left",todayBtn:!0,format:"yyyy/mm/dd hh:ii"}),$("#kt_datetimepicker_4_1").datetimepicker({todayHighlight:!0,autoclose:!0,pickerPosition:"bottom-left",format:"yyyy.mm.dd hh:ii"}),$("#kt_datetimepicker_4_2").datetimepicker({todayHighlight:!0,autoclose:!0,pickerPosition:"bottom-right",format:"yyyy/mm/dd hh:ii"}),$("#kt_datetimepicker_4_3").datetimepicker({todayHighlight:!0,autoclose:!0,pickerPosition:"top-left",format:"yyyy-mm-dd hh:ii"}),$("#kt_datetimepicker_4_4").datetimepicker({todayHighlight:!0,autoclose:!0,pickerPosition:"top-right",format:"yyyy-mm-dd hh:ii"}),$("#kt_datetimepicker_5").datetimepicker({format:"dd MM yyyy - HH:ii P",showMeridian:!0,todayHighlight:!0,autoclose:!0,pickerPosition:"bottom-left"}),$("#kt_datetimepicker_6").datetimepicker({format:"yyyy/mm/dd",todayHighlight:!0,autoclose:!0,startView:2,minView:2,forceParse:0,pickerPosition:"bottom-left"}),$("#kt_datetimepicker_7").datetimepicker({format:"hh:ii",showMeridian:!0,todayHighlight:!0,autoclose:!0,startView:1,minView:0,maxView:1,forceParse:0,pickerPosition:"bottom-left"})}};jQuery(document).ready(function(){KTBootstrapDatetimepicker.init()}); \ No newline at end of file +var KTBootstrapDatetimepicker = { + init: function() { + $('#kt_datetimepicker_1').datetimepicker({ todayHighlight: !0, autoclose: !0, format: 'yyyy.mm.dd hh:ii' }), + $('#kt_datetimepicker_1_modal').datetimepicker({ todayHighlight: !0, autoclose: !0, format: 'yyyy.mm.dd hh:ii' }), + $( + '#kt_datetimepicker_2, #kt_datetimepicker_1_validate, #kt_datetimepicker_2_validate, #kt_datetimepicker_3_validate', + ).datetimepicker({ + todayHighlight: !0, + autoclose: !0, + pickerPosition: 'bottom-left', + format: 'yyyy/mm/dd hh:ii', + }), + $('#kt_datetimepicker_2_modal').datetimepicker({ + todayHighlight: !0, + autoclose: !0, + pickerPosition: 'bottom-left', + format: 'yyyy/mm/dd hh:ii', + }), + $('#kt_datetimepicker_3').datetimepicker({ + todayHighlight: !0, + autoclose: !0, + pickerPosition: 'bottom-left', + todayBtn: !0, + format: 'yyyy/mm/dd hh:ii', + }), + $('#kt_datetimepicker_3_modal').datetimepicker({ + todayHighlight: !0, + autoclose: !0, + pickerPosition: 'bottom-left', + todayBtn: !0, + format: 'yyyy/mm/dd hh:ii', + }), + $('#kt_datetimepicker_4_1').datetimepicker({ + todayHighlight: !0, + autoclose: !0, + pickerPosition: 'bottom-left', + format: 'yyyy.mm.dd hh:ii', + }), + $('#kt_datetimepicker_4_2').datetimepicker({ + todayHighlight: !0, + autoclose: !0, + pickerPosition: 'bottom-right', + format: 'yyyy/mm/dd hh:ii', + }), + $('#kt_datetimepicker_4_3').datetimepicker({ + todayHighlight: !0, + autoclose: !0, + pickerPosition: 'top-left', + format: 'yyyy-mm-dd hh:ii', + }), + $('#kt_datetimepicker_4_4').datetimepicker({ + todayHighlight: !0, + autoclose: !0, + pickerPosition: 'top-right', + format: 'yyyy-mm-dd hh:ii', + }), + $('#kt_datetimepicker_5').datetimepicker({ + format: 'dd MM yyyy - HH:ii P', + showMeridian: !0, + todayHighlight: !0, + autoclose: !0, + pickerPosition: 'bottom-left', + }), + $('#kt_datetimepicker_6').datetimepicker({ + format: 'yyyy/mm/dd', + todayHighlight: !0, + autoclose: !0, + startView: 2, + minView: 2, + forceParse: 0, + pickerPosition: 'bottom-left', + }), + $('#kt_datetimepicker_7').datetimepicker({ + format: 'hh:ii', + showMeridian: !0, + todayHighlight: !0, + autoclose: !0, + startView: 1, + minView: 0, + maxView: 1, + forceParse: 0, + pickerPosition: 'bottom-left', + }); + }, +}; +jQuery(document).ready(function() { + KTBootstrapDatetimepicker.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/widgets/bootstrap-markdown.js b/src/assets/app/custom/general/crud/forms/widgets/bootstrap-markdown.js index ae9c3bb..6bec565 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/bootstrap-markdown.js +++ b/src/assets/app/custom/general/crud/forms/widgets/bootstrap-markdown.js @@ -1 +1,5 @@ -"use strict";var KTBootstrapMarkdown={init:function(){}};jQuery(document).ready(function(){KTBootstrapMarkdown.init()}); \ No newline at end of file +'use strict'; +var KTBootstrapMarkdown = { init: function() {} }; +jQuery(document).ready(function() { + KTBootstrapMarkdown.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/widgets/bootstrap-maxlength.js b/src/assets/app/custom/general/crud/forms/widgets/bootstrap-maxlength.js index b975cee..c946de1 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/bootstrap-maxlength.js +++ b/src/assets/app/custom/general/crud/forms/widgets/bootstrap-maxlength.js @@ -1 +1,91 @@ -var KTBootstrapMaxlength={init:function(){$("#kt_maxlength_1").maxlength({warningClass:"kt-badge kt-badge--warning kt-badge--rounded kt-badge--inline",limitReachedClass:"kt-badge kt-badge--success kt-badge--rounded kt-badge--inline"}),$("#kt_maxlength_2").maxlength({threshold:5,warningClass:"kt-badge kt-badge--danger kt-badge--rounded kt-badge--inline",limitReachedClass:"kt-badge kt-badge--success kt-badge--rounded kt-badge--inline"}),$("#kt_maxlength_3").maxlength({alwaysShow:!0,threshold:5,warningClass:"kt-badge kt-badge--primary kt-badge--rounded kt-badge--inline",limitReachedClass:"kt-badge kt-badge--brand kt-badge--rounded kt-badge--inline"}),$("#kt_maxlength_4").maxlength({threshold:3,warningClass:"kt-badge kt-badge--danger kt-badge--rounded kt-badge--inline",limitReachedClass:"kt-badge kt-badge--success kt-badge--rounded kt-badge--inline",separator:" of ",preText:"You have ",postText:" chars remaining.",validate:!0}),$("#kt_maxlength_5").maxlength({threshold:5,warningClass:"kt-badge kt-badge--primary kt-badge--rounded kt-badge--inline",limitReachedClass:"kt-badge kt-badge--brand kt-badge--rounded kt-badge--inline"}),$("#kt_maxlength_6_1").maxlength({alwaysShow:!0,threshold:5,placement:"top-left",warningClass:"kt-badge kt-badge--brand kt-badge--rounded kt-badge--inline",limitReachedClass:"kt-badge kt-badge--brand kt-badge--rounded kt-badge--inline"}),$("#kt_maxlength_6_2").maxlength({alwaysShow:!0,threshold:5,placement:"top-right",warningClass:"kt-badge kt-badge--success kt-badge--rounded kt-badge--inline",limitReachedClass:"kt-badge kt-badge--brand kt-badge--rounded kt-badge--inline"}),$("#kt_maxlength_6_3").maxlength({alwaysShow:!0,threshold:5,placement:"bottom-left",warningClass:"kt-badge kt-badge--warning kt-badge--rounded kt-badge--inline",limitReachedClass:"kt-badge kt-badge--brand kt-badge--rounded kt-badge--inline"}),$("#kt_maxlength_6_4").maxlength({alwaysShow:!0,threshold:5,placement:"bottom-right",warningClass:"kt-badge kt-badge--danger kt-badge--rounded kt-badge--inline",limitReachedClass:"kt-badge kt-badge--brand kt-badge--rounded kt-badge--inline"}),$("#kt_maxlength_1_modal").maxlength({warningClass:"kt-badge kt-badge--warning kt-badge--rounded kt-badge--inline",limitReachedClass:"kt-badge kt-badge--success kt-badge--rounded kt-badge--inline",appendToParent:!0}),$("#kt_maxlength_2_modal").maxlength({threshold:5,warningClass:"kt-badge kt-badge--danger kt-badge--rounded kt-badge--inline",limitReachedClass:"kt-badge kt-badge--success kt-badge--rounded kt-badge--inline",appendToParent:!0}),$("#kt_maxlength_5_modal").maxlength({threshold:5,warningClass:"kt-badge kt-badge--primary kt-badge--rounded kt-badge--inline",limitReachedClass:"kt-badge kt-badge--brand kt-badge--rounded kt-badge--inline",appendToParent:!0}),$("#kt_maxlength_4_modal").maxlength({threshold:3,warningClass:"kt-badge kt-badge--danger kt-badge--rounded kt-badge--inline",limitReachedClass:"kt-badge kt-badge--success kt-badge--rounded kt-badge--inline",appendToParent:!0,separator:" of ",preText:"You have ",postText:" chars remaining.",validate:!0})}};jQuery(document).ready(function(){KTBootstrapMaxlength.init()}); \ No newline at end of file +var KTBootstrapMaxlength = { + init: function() { + $('#kt_maxlength_1').maxlength({ + warningClass: 'kt-badge kt-badge--warning kt-badge--rounded kt-badge--inline', + limitReachedClass: 'kt-badge kt-badge--success kt-badge--rounded kt-badge--inline', + }), + $('#kt_maxlength_2').maxlength({ + threshold: 5, + warningClass: 'kt-badge kt-badge--danger kt-badge--rounded kt-badge--inline', + limitReachedClass: 'kt-badge kt-badge--success kt-badge--rounded kt-badge--inline', + }), + $('#kt_maxlength_3').maxlength({ + alwaysShow: !0, + threshold: 5, + warningClass: 'kt-badge kt-badge--primary kt-badge--rounded kt-badge--inline', + limitReachedClass: 'kt-badge kt-badge--brand kt-badge--rounded kt-badge--inline', + }), + $('#kt_maxlength_4').maxlength({ + threshold: 3, + warningClass: 'kt-badge kt-badge--danger kt-badge--rounded kt-badge--inline', + limitReachedClass: 'kt-badge kt-badge--success kt-badge--rounded kt-badge--inline', + separator: ' of ', + preText: 'You have ', + postText: ' chars remaining.', + validate: !0, + }), + $('#kt_maxlength_5').maxlength({ + threshold: 5, + warningClass: 'kt-badge kt-badge--primary kt-badge--rounded kt-badge--inline', + limitReachedClass: 'kt-badge kt-badge--brand kt-badge--rounded kt-badge--inline', + }), + $('#kt_maxlength_6_1').maxlength({ + alwaysShow: !0, + threshold: 5, + placement: 'top-left', + warningClass: 'kt-badge kt-badge--brand kt-badge--rounded kt-badge--inline', + limitReachedClass: 'kt-badge kt-badge--brand kt-badge--rounded kt-badge--inline', + }), + $('#kt_maxlength_6_2').maxlength({ + alwaysShow: !0, + threshold: 5, + placement: 'top-right', + warningClass: 'kt-badge kt-badge--success kt-badge--rounded kt-badge--inline', + limitReachedClass: 'kt-badge kt-badge--brand kt-badge--rounded kt-badge--inline', + }), + $('#kt_maxlength_6_3').maxlength({ + alwaysShow: !0, + threshold: 5, + placement: 'bottom-left', + warningClass: 'kt-badge kt-badge--warning kt-badge--rounded kt-badge--inline', + limitReachedClass: 'kt-badge kt-badge--brand kt-badge--rounded kt-badge--inline', + }), + $('#kt_maxlength_6_4').maxlength({ + alwaysShow: !0, + threshold: 5, + placement: 'bottom-right', + warningClass: 'kt-badge kt-badge--danger kt-badge--rounded kt-badge--inline', + limitReachedClass: 'kt-badge kt-badge--brand kt-badge--rounded kt-badge--inline', + }), + $('#kt_maxlength_1_modal').maxlength({ + warningClass: 'kt-badge kt-badge--warning kt-badge--rounded kt-badge--inline', + limitReachedClass: 'kt-badge kt-badge--success kt-badge--rounded kt-badge--inline', + appendToParent: !0, + }), + $('#kt_maxlength_2_modal').maxlength({ + threshold: 5, + warningClass: 'kt-badge kt-badge--danger kt-badge--rounded kt-badge--inline', + limitReachedClass: 'kt-badge kt-badge--success kt-badge--rounded kt-badge--inline', + appendToParent: !0, + }), + $('#kt_maxlength_5_modal').maxlength({ + threshold: 5, + warningClass: 'kt-badge kt-badge--primary kt-badge--rounded kt-badge--inline', + limitReachedClass: 'kt-badge kt-badge--brand kt-badge--rounded kt-badge--inline', + appendToParent: !0, + }), + $('#kt_maxlength_4_modal').maxlength({ + threshold: 3, + warningClass: 'kt-badge kt-badge--danger kt-badge--rounded kt-badge--inline', + limitReachedClass: 'kt-badge kt-badge--success kt-badge--rounded kt-badge--inline', + appendToParent: !0, + separator: ' of ', + preText: 'You have ', + postText: ' chars remaining.', + validate: !0, + }); + }, +}; +jQuery(document).ready(function() { + KTBootstrapMaxlength.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/widgets/bootstrap-multipleselectsplitter.js b/src/assets/app/custom/general/crud/forms/widgets/bootstrap-multipleselectsplitter.js index 4ed5d85..b5e64d8 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/bootstrap-multipleselectsplitter.js +++ b/src/assets/app/custom/general/crud/forms/widgets/bootstrap-multipleselectsplitter.js @@ -1 +1,8 @@ -var KTBootstrapMultipleSelectsplitter={init:function(){$("#kt_multipleselectsplitter_1, #kt_multipleselectsplitter_2").multiselectsplitter()}};jQuery(document).ready(function(){KTBootstrapMultipleSelectsplitter.init()}); \ No newline at end of file +var KTBootstrapMultipleSelectsplitter = { + init: function() { + $('#kt_multipleselectsplitter_1, #kt_multipleselectsplitter_2').multiselectsplitter(); + }, +}; +jQuery(document).ready(function() { + KTBootstrapMultipleSelectsplitter.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/widgets/bootstrap-select.js b/src/assets/app/custom/general/crud/forms/widgets/bootstrap-select.js index 895b779..0d924dc 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/bootstrap-select.js +++ b/src/assets/app/custom/general/crud/forms/widgets/bootstrap-select.js @@ -1 +1,8 @@ -var KTBootstrapSelect={init:function(){$(".kt-selectpicker").selectpicker()}};jQuery(document).ready(function(){KTBootstrapSelect.init()}); \ No newline at end of file +var KTBootstrapSelect = { + init: function() { + $('.kt-selectpicker').selectpicker(); + }, +}; +jQuery(document).ready(function() { + KTBootstrapSelect.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/widgets/bootstrap-switch.js b/src/assets/app/custom/general/crud/forms/widgets/bootstrap-switch.js index 29c568b..32362dc 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/bootstrap-switch.js +++ b/src/assets/app/custom/general/crud/forms/widgets/bootstrap-switch.js @@ -1 +1,8 @@ -var KTBootstrapSwitch={init:function(){$("[data-switch=true]").bootstrapSwitch()}};jQuery(document).ready(function(){KTBootstrapSwitch.init()}); \ No newline at end of file +var KTBootstrapSwitch = { + init: function() { + $('[data-switch=true]').bootstrapSwitch(); + }, +}; +jQuery(document).ready(function() { + KTBootstrapSwitch.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/widgets/bootstrap-timepicker.js b/src/assets/app/custom/general/crud/forms/widgets/bootstrap-timepicker.js index 0b859fe..3c55b4b 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/bootstrap-timepicker.js +++ b/src/assets/app/custom/general/crud/forms/widgets/bootstrap-timepicker.js @@ -1 +1,33 @@ -var KTBootstrapTimepicker={init:function(){$("#kt_timepicker_1, #kt_timepicker_1_modal").timepicker(),$("#kt_timepicker_2, #kt_timepicker_2_modal").timepicker({minuteStep:1,defaultTime:"",showSeconds:!0,showMeridian:!1,snapToStep:!0}),$("#kt_timepicker_3, #kt_timepicker_3_modal").timepicker({defaultTime:"11:45:20 AM",minuteStep:1,showSeconds:!0,showMeridian:!0}),$("#kt_timepicker_4, #kt_timepicker_4_modal").timepicker({defaultTime:"10:30:20 AM",minuteStep:1,showSeconds:!0,showMeridian:!0}),$("#kt_timepicker_1_validate, #kt_timepicker_2_validate, #kt_timepicker_3_validate").timepicker({minuteStep:1,showSeconds:!0,showMeridian:!1,snapToStep:!0})}};jQuery(document).ready(function(){KTBootstrapTimepicker.init()}); \ No newline at end of file +var KTBootstrapTimepicker = { + init: function() { + $('#kt_timepicker_1, #kt_timepicker_1_modal').timepicker(), + $('#kt_timepicker_2, #kt_timepicker_2_modal').timepicker({ + minuteStep: 1, + defaultTime: '', + showSeconds: !0, + showMeridian: !1, + snapToStep: !0, + }), + $('#kt_timepicker_3, #kt_timepicker_3_modal').timepicker({ + defaultTime: '11:45:20 AM', + minuteStep: 1, + showSeconds: !0, + showMeridian: !0, + }), + $('#kt_timepicker_4, #kt_timepicker_4_modal').timepicker({ + defaultTime: '10:30:20 AM', + minuteStep: 1, + showSeconds: !0, + showMeridian: !0, + }), + $('#kt_timepicker_1_validate, #kt_timepicker_2_validate, #kt_timepicker_3_validate').timepicker({ + minuteStep: 1, + showSeconds: !0, + showMeridian: !1, + snapToStep: !0, + }); + }, +}; +jQuery(document).ready(function() { + KTBootstrapTimepicker.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/widgets/bootstrap-touchspin.js b/src/assets/app/custom/general/crud/forms/widgets/bootstrap-touchspin.js index a7de431..1169c73 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/bootstrap-touchspin.js +++ b/src/assets/app/custom/general/crud/forms/widgets/bootstrap-touchspin.js @@ -1 +1,76 @@ -"use strict";var KTKBootstrapTouchspin={init:function(){$("#kt_touchspin_1, #kt_touchspin_2_1").TouchSpin({buttondown_class:"btn btn-secondary",buttonup_class:"btn btn-secondary",min:0,max:100,step:.1,decimals:2,boostat:5,maxboostedstep:10}),$("#kt_touchspin_2, #kt_touchspin_2_2").TouchSpin({buttondown_class:"btn btn-secondary",buttonup_class:"btn btn-secondary",min:-1e9,max:1e9,stepinterval:50,maxboostedstep:1e7,prefix:"$"}),$("#kt_touchspin_3, #kt_touchspin_2_3").TouchSpin({buttondown_class:"btn btn-secondary",buttonup_class:"btn btn-secondary",min:-1e9,max:1e9,stepinterval:50,maxboostedstep:1e7,postfix:"$"}),$("#kt_touchspin_4, #kt_touchspin_2_4").TouchSpin({buttondown_class:"btn btn-secondary",buttonup_class:"btn btn-secondary",verticalbuttons:!0,verticalup:'',verticaldown:''}),$("#kt_touchspin_5, #kt_touchspin_2_5").TouchSpin({buttondown_class:"btn btn-secondary",buttonup_class:"btn btn-secondary",verticalbuttons:!0,verticalup:'',verticaldown:''}),$("#kt_touchspin_1_validate").TouchSpin({buttondown_class:"btn btn-secondary",buttonup_class:"btn btn-secondary",min:-1e9,max:1e9,stepinterval:50,maxboostedstep:1e7,prefix:"$"}),$("#kt_touchspin_2_validate").TouchSpin({buttondown_class:"btn btn-secondary",buttonup_class:"btn btn-secondary",min:0,max:100,step:.1,decimals:2,boostat:5,maxboostedstep:10}),$("#kt_touchspin_3_validate").TouchSpin({buttondown_class:"btn btn-secondary",buttonup_class:"btn btn-secondary",verticalbuttons:!0,verticalupclass:"la la-plus",verticaldownclass:"la la-minus"})}};jQuery(document).ready(function(){KTKBootstrapTouchspin.init()}); \ No newline at end of file +'use strict'; +var KTKBootstrapTouchspin = { + init: function() { + $('#kt_touchspin_1, #kt_touchspin_2_1').TouchSpin({ + buttondown_class: 'btn btn-secondary', + buttonup_class: 'btn btn-secondary', + min: 0, + max: 100, + step: 0.1, + decimals: 2, + boostat: 5, + maxboostedstep: 10, + }), + $('#kt_touchspin_2, #kt_touchspin_2_2').TouchSpin({ + buttondown_class: 'btn btn-secondary', + buttonup_class: 'btn btn-secondary', + min: -1e9, + max: 1e9, + stepinterval: 50, + maxboostedstep: 1e7, + prefix: '$', + }), + $('#kt_touchspin_3, #kt_touchspin_2_3').TouchSpin({ + buttondown_class: 'btn btn-secondary', + buttonup_class: 'btn btn-secondary', + min: -1e9, + max: 1e9, + stepinterval: 50, + maxboostedstep: 1e7, + postfix: '$', + }), + $('#kt_touchspin_4, #kt_touchspin_2_4').TouchSpin({ + buttondown_class: 'btn btn-secondary', + buttonup_class: 'btn btn-secondary', + verticalbuttons: !0, + verticalup: '', + verticaldown: '', + }), + $('#kt_touchspin_5, #kt_touchspin_2_5').TouchSpin({ + buttondown_class: 'btn btn-secondary', + buttonup_class: 'btn btn-secondary', + verticalbuttons: !0, + verticalup: '', + verticaldown: '', + }), + $('#kt_touchspin_1_validate').TouchSpin({ + buttondown_class: 'btn btn-secondary', + buttonup_class: 'btn btn-secondary', + min: -1e9, + max: 1e9, + stepinterval: 50, + maxboostedstep: 1e7, + prefix: '$', + }), + $('#kt_touchspin_2_validate').TouchSpin({ + buttondown_class: 'btn btn-secondary', + buttonup_class: 'btn btn-secondary', + min: 0, + max: 100, + step: 0.1, + decimals: 2, + boostat: 5, + maxboostedstep: 10, + }), + $('#kt_touchspin_3_validate').TouchSpin({ + buttondown_class: 'btn btn-secondary', + buttonup_class: 'btn btn-secondary', + verticalbuttons: !0, + verticalupclass: 'la la-plus', + verticaldownclass: 'la la-minus', + }); + }, +}; +jQuery(document).ready(function() { + KTKBootstrapTouchspin.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/widgets/clipboard.js b/src/assets/app/custom/general/crud/forms/widgets/clipboard.js index 307f2ce..464c7aa 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/clipboard.js +++ b/src/assets/app/custom/general/crud/forms/widgets/clipboard.js @@ -1 +1,11 @@ -"use strict";var KTClipboardDemo={init:function(){new ClipboardJS("[data-clipboard=true]").on("success",function(e){e.clearSelection(),alert("Copied!")})}};jQuery(document).ready(function(){KTClipboardDemo.init()}); \ No newline at end of file +'use strict'; +var KTClipboardDemo = { + init: function() { + new ClipboardJS('[data-clipboard=true]').on('success', function(e) { + e.clearSelection(), alert('Copied!'); + }); + }, +}; +jQuery(document).ready(function() { + KTClipboardDemo.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/widgets/dropzone.js b/src/assets/app/custom/general/crud/forms/widgets/dropzone.js index 87b7b11..3675d20 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/dropzone.js +++ b/src/assets/app/custom/general/crud/forms/widgets/dropzone.js @@ -1 +1,34 @@ -"use strict";var KTDropzoneDemo={init:function(){Dropzone.options.kDropzoneOne={paramName:"file",maxFiles:1,maxFilesize:5,addRemoveLinks:!0,accept:function(e,o){"justinbieber.jpg"==e.name?o("Naha, you don't."):o()}},Dropzone.options.kDropzoneTwo={paramName:"file",maxFiles:10,maxFilesize:10,addRemoveLinks:!0,accept:function(e,o){"justinbieber.jpg"==e.name?o("Naha, you don't."):o()}},Dropzone.options.kDropzoneThree={paramName:"file",maxFiles:10,maxFilesize:10,addRemoveLinks:!0,acceptedFiles:"image/*,application/pdf,.psd",accept:function(e,o){"justinbieber.jpg"==e.name?o("Naha, you don't."):o()}}}};KTDropzoneDemo.init(); \ No newline at end of file +'use strict'; +var KTDropzoneDemo = { + init: function() { + (Dropzone.options.kDropzoneOne = { + paramName: 'file', + maxFiles: 1, + maxFilesize: 5, + addRemoveLinks: !0, + accept: function(e, o) { + 'justinbieber.jpg' == e.name ? o("Naha, you don't.") : o(); + }, + }), + (Dropzone.options.kDropzoneTwo = { + paramName: 'file', + maxFiles: 10, + maxFilesize: 10, + addRemoveLinks: !0, + accept: function(e, o) { + 'justinbieber.jpg' == e.name ? o("Naha, you don't.") : o(); + }, + }), + (Dropzone.options.kDropzoneThree = { + paramName: 'file', + maxFiles: 10, + maxFilesize: 10, + addRemoveLinks: !0, + acceptedFiles: 'image/*,application/pdf,.psd', + accept: function(e, o) { + 'justinbieber.jpg' == e.name ? o("Naha, you don't.") : o(); + }, + }); + }, +}; +KTDropzoneDemo.init(); diff --git a/src/assets/app/custom/general/crud/forms/widgets/form-repeater.js b/src/assets/app/custom/general/crud/forms/widgets/form-repeater.js index a432cbf..0554399 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/form-repeater.js +++ b/src/assets/app/custom/general/crud/forms/widgets/form-repeater.js @@ -1 +1,67 @@ -var KTFormRepeater={init:function(){$("#kt_repeater_1").repeater({initEmpty:!1,defaultValues:{"text-input":"foo"},show:function(){$(this).slideDown()},hide:function(e){$(this).slideUp(e)}}),$("#kt_repeater_2").repeater({initEmpty:!1,defaultValues:{"text-input":"foo"},show:function(){$(this).slideDown()},hide:function(e){confirm("Are you sure you want to delete this element?")&&$(this).slideUp(e)}}),$("#kt_repeater_3").repeater({initEmpty:!1,defaultValues:{"text-input":"foo"},show:function(){$(this).slideDown()},hide:function(e){confirm("Are you sure you want to delete this element?")&&$(this).slideUp(e)}}),$("#kt_repeater_4").repeater({initEmpty:!1,defaultValues:{"text-input":"foo"},show:function(){$(this).slideDown()},hide:function(e){$(this).slideUp(e)}}),$("#kt_repeater_5").repeater({initEmpty:!1,defaultValues:{"text-input":"foo"},show:function(){$(this).slideDown()},hide:function(e){$(this).slideUp(e)}}),$("#kt_repeater_6").repeater({initEmpty:!1,defaultValues:{"text-input":"foo"},show:function(){$(this).slideDown()},hide:function(e){$(this).slideUp(e)}})}};jQuery(document).ready(function(){KTFormRepeater.init()}); \ No newline at end of file +var KTFormRepeater = { + init: function() { + $('#kt_repeater_1').repeater({ + initEmpty: !1, + defaultValues: { 'text-input': 'foo' }, + show: function() { + $(this).slideDown(); + }, + hide: function(e) { + $(this).slideUp(e); + }, + }), + $('#kt_repeater_2').repeater({ + initEmpty: !1, + defaultValues: { 'text-input': 'foo' }, + show: function() { + $(this).slideDown(); + }, + hide: function(e) { + confirm('Are you sure you want to delete this element?') && $(this).slideUp(e); + }, + }), + $('#kt_repeater_3').repeater({ + initEmpty: !1, + defaultValues: { 'text-input': 'foo' }, + show: function() { + $(this).slideDown(); + }, + hide: function(e) { + confirm('Are you sure you want to delete this element?') && $(this).slideUp(e); + }, + }), + $('#kt_repeater_4').repeater({ + initEmpty: !1, + defaultValues: { 'text-input': 'foo' }, + show: function() { + $(this).slideDown(); + }, + hide: function(e) { + $(this).slideUp(e); + }, + }), + $('#kt_repeater_5').repeater({ + initEmpty: !1, + defaultValues: { 'text-input': 'foo' }, + show: function() { + $(this).slideDown(); + }, + hide: function(e) { + $(this).slideUp(e); + }, + }), + $('#kt_repeater_6').repeater({ + initEmpty: !1, + defaultValues: { 'text-input': 'foo' }, + show: function() { + $(this).slideDown(); + }, + hide: function(e) { + $(this).slideUp(e); + }, + }); + }, +}; +jQuery(document).ready(function() { + KTFormRepeater.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/widgets/google-recaptcha.js b/src/assets/app/custom/general/crud/forms/widgets/google-recaptcha.js index aa14647..7f5cd65 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/google-recaptcha.js +++ b/src/assets/app/custom/general/crud/forms/widgets/google-recaptcha.js @@ -1 +1,4 @@ -var KTBootstrapTouchspin={init:function(){}};jQuery(document).ready(function(){KTBootstrapTouchspin.init()}); \ No newline at end of file +var KTBootstrapTouchspin = { init: function() {} }; +jQuery(document).ready(function() { + KTBootstrapTouchspin.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/widgets/input-mask.js b/src/assets/app/custom/general/crud/forms/widgets/input-mask.js index 05032cc..980edf5 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/input-mask.js +++ b/src/assets/app/custom/general/crud/forms/widgets/input-mask.js @@ -1 +1,23 @@ -var KTInputmask={init:function(){$("#kt_inputmask_1").inputmask("99/99/9999",{placeholder:"mm/dd/yyyy",autoUnmask:!0}),$("#kt_inputmask_2").inputmask("99/99/9999",{placeholder:"mm/dd/yyyy"}),$("#kt_inputmask_3").inputmask("mask",{mask:"(999) 999-9999"}),$("#kt_inputmask_4").inputmask({mask:"99-9999999",placeholder:""}),$("#kt_inputmask_5").inputmask({mask:"9",repeat:10,greedy:!1}),$("#kt_inputmask_6").inputmask("decimal",{rightAlignNumerics:!1}),$("#kt_inputmask_7").inputmask("€ 999.999.999,99",{numericInput:!0}),$("#kt_inputmask_8").inputmask({mask:"999.999.999.999"}),$("#kt_inputmask_9").inputmask({mask:"*{1,20}[.*{1,20}][.*{1,20}][.*{1,20}]@*{1,20}[.*{2,6}][.*{1,2}]",greedy:!1,onBeforePaste:function(t,a){return(t=t.toLowerCase()).replace("mailto:","")},definitions:{"*":{validator:"[0-9A-Za-z!#$%&'*+/=?^_`{|}~-]",cardinality:1,casing:"lower"}}})}};jQuery(document).ready(function(){KTInputmask.init()}); \ No newline at end of file +var KTInputmask = { + init: function() { + $('#kt_inputmask_1').inputmask('99/99/9999', { placeholder: 'mm/dd/yyyy', autoUnmask: !0 }), + $('#kt_inputmask_2').inputmask('99/99/9999', { placeholder: 'mm/dd/yyyy' }), + $('#kt_inputmask_3').inputmask('mask', { mask: '(999) 999-9999' }), + $('#kt_inputmask_4').inputmask({ mask: '99-9999999', placeholder: '' }), + $('#kt_inputmask_5').inputmask({ mask: '9', repeat: 10, greedy: !1 }), + $('#kt_inputmask_6').inputmask('decimal', { rightAlignNumerics: !1 }), + $('#kt_inputmask_7').inputmask('€ 999.999.999,99', { numericInput: !0 }), + $('#kt_inputmask_8').inputmask({ mask: '999.999.999.999' }), + $('#kt_inputmask_9').inputmask({ + mask: '*{1,20}[.*{1,20}][.*{1,20}][.*{1,20}]@*{1,20}[.*{2,6}][.*{1,2}]', + greedy: !1, + onBeforePaste: function(t, a) { + return (t = t.toLowerCase()).replace('mailto:', ''); + }, + definitions: { '*': { validator: "[0-9A-Za-z!#$%&'*+/=?^_`{|}~-]", cardinality: 1, casing: 'lower' } }, + }); + }, +}; +jQuery(document).ready(function() { + KTInputmask.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/widgets/ion-range-slider.js b/src/assets/app/custom/general/crud/forms/widgets/ion-range-slider.js index 466a96f..f4056c6 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/ion-range-slider.js +++ b/src/assets/app/custom/general/crud/forms/widgets/ion-range-slider.js @@ -1 +1,31 @@ -var KTIONRangeSlider={init:function(){$("#kt_slider_1").ionRangeSlider(),$("#kt_slider_2").ionRangeSlider({min:100,max:1e3,from:550}),$("#kt_slider_3").ionRangeSlider({type:"double",grid:!0,min:0,max:1e3,from:200,to:800,prefix:"$"}),$("#kt_slider_4").ionRangeSlider({type:"double",grid:!0,min:-1e3,max:1e3,from:-500,to:500}),$("#kt_slider_5").ionRangeSlider({type:"double",grid:!0,min:-12.8,max:12.8,from:-3.2,to:3.2,step:.1}),$("#kt_slider_6").ionRangeSlider({type:"single",grid:!0,min:-90,max:90,from:0,postfix:"°"}),$("#kt_slider_7").ionRangeSlider({type:"double",min:100,max:200,from:145,to:155,prefix:"Weight: ",postfix:" million pounds",decorate_both:!0})}};jQuery(document).ready(function(){KTIONRangeSlider.init()}); \ No newline at end of file +var KTIONRangeSlider = { + init: function() { + $('#kt_slider_1').ionRangeSlider(), + $('#kt_slider_2').ionRangeSlider({ min: 100, max: 1e3, from: 550 }), + $('#kt_slider_3').ionRangeSlider({ type: 'double', grid: !0, min: 0, max: 1e3, from: 200, to: 800, prefix: '$' }), + $('#kt_slider_4').ionRangeSlider({ type: 'double', grid: !0, min: -1e3, max: 1e3, from: -500, to: 500 }), + $('#kt_slider_5').ionRangeSlider({ + type: 'double', + grid: !0, + min: -12.8, + max: 12.8, + from: -3.2, + to: 3.2, + step: 0.1, + }), + $('#kt_slider_6').ionRangeSlider({ type: 'single', grid: !0, min: -90, max: 90, from: 0, postfix: '°' }), + $('#kt_slider_7').ionRangeSlider({ + type: 'double', + min: 100, + max: 200, + from: 145, + to: 155, + prefix: 'Weight: ', + postfix: ' million pounds', + decorate_both: !0, + }); + }, +}; +jQuery(document).ready(function() { + KTIONRangeSlider.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/widgets/nouislider.js b/src/assets/app/custom/general/crud/forms/widgets/nouislider.js index d3d185d..5b562d1 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/nouislider.js +++ b/src/assets/app/custom/general/crud/forms/widgets/nouislider.js @@ -1 +1,141 @@ -var KTnoUiSliderDemos={init:function(){!function(){var e=document.getElementById("kt_nouislider_1");noUiSlider.create(e,{start:[0],step:2,range:{min:[0],max:[10]},format:wNumb({decimals:0})});var n=document.getElementById("kt_nouislider_1_input");e.noUiSlider.on("update",function(e,t){n.value=e[t]}),n.addEventListener("change",function(){e.noUiSlider.set(this.value)})}(),function(){var e=document.getElementById("kt_nouislider_2");noUiSlider.create(e,{start:[2e4],connect:[!0,!1],step:1e3,range:{min:[2e4],max:[8e4]},format:wNumb({decimals:3,thousand:".",postfix:" (US $)"})});var n=document.getElementById("kt_nouislider_2_input");e.noUiSlider.on("update",function(e,t){n.value=e[t]}),n.addEventListener("change",function(){e.noUiSlider.set(this.value)})}(),function(){var e=document.getElementById("kt_nouislider_3");noUiSlider.create(e,{start:[20,80],connect:!0,direction:"rtl",tooltips:[!0,wNumb({decimals:1})],range:{min:[0],"10%":[10,10],"50%":[80,50],"80%":150,max:200}});var n=document.getElementById("kt_nouislider_3_input"),t=[document.getElementById("kt_nouislider_3.1_input"),n];e.noUiSlider.on("update",function(e,n){t[n].value=e[n]})}(),function(){for(var e=document.getElementById("kt_nouislider_input_select"),n=-20;n<=40;n++){var t=document.createElement("option");t.text=n,t.value=n,e.appendChild(t)}var i=document.getElementById("kt_nouislider_4");noUiSlider.create(i,{start:[10,30],connect:!0,range:{min:-20,max:40}});var o=document.getElementById("kt_nouislider_input_number");i.noUiSlider.on("update",function(n,t){var i=n[t];t?o.value=i:e.value=Math.round(i)}),e.addEventListener("change",function(){i.noUiSlider.set([this.value,null])}),o.addEventListener("change",function(){i.noUiSlider.set([null,this.value])})}(),function(){var e=document.getElementById("kt_nouislider_5");noUiSlider.create(e,{start:20,range:{min:0,max:100},pips:{mode:"values",values:[20,80],density:4}});var n=document.getElementById("kt_nouislider_5_input");e.noUiSlider.on("update",function(e,t){n.value=e[t]}),n.addEventListener("change",function(){e.noUiSlider.set(this.value)}),e.noUiSlider.on("change",function(n,t){n[t]<20?e.noUiSlider.set(20):n[t]>80&&e.noUiSlider.set(80)})}(),function(){var e=document.getElementById("kt_nouislider_6");noUiSlider.create(e,{start:40,orientation:"vertical",range:{min:0,max:100}});var n=document.getElementById("kt_nouislider_6_input");e.noUiSlider.on("update",function(e,t){n.value=e[t]}),n.addEventListener("change",function(){e.noUiSlider.set(this.value)})}(),function(){var e=document.getElementById("kt_nouislider_modal1");noUiSlider.create(e,{start:[0],step:2,range:{min:[0],max:[10]},format:wNumb({decimals:0})});var n=document.getElementById("kt_nouislider_modal1_input");e.noUiSlider.on("update",function(e,t){n.value=e[t]}),n.addEventListener("change",function(){e.noUiSlider.set(this.value)})}(),function(){var e=document.getElementById("kt_nouislider_modal2");noUiSlider.create(e,{start:[2e4],connect:[!0,!1],step:1e3,range:{min:[2e4],max:[8e4]},format:wNumb({decimals:3,thousand:".",postfix:" (US $)"})});var n=document.getElementById("kt_nouislider_modal2_input");e.noUiSlider.on("update",function(e,t){n.value=e[t]}),n.addEventListener("change",function(){e.noUiSlider.set(this.value)})}(),function(){var e=document.getElementById("kt_nouislider_modal3");noUiSlider.create(e,{start:[20,80],connect:!0,direction:"rtl",tooltips:[!0,wNumb({decimals:1})],range:{min:[0],"10%":[10,10],"50%":[80,50],"80%":150,max:200}});var n=document.getElementById("kt_nouislider_modal1.1_input"),t=[document.getElementById("kt_nouislider_modal1.2_input"),n];e.noUiSlider.on("update",function(e,n){t[n].value=e[n]})}()}};jQuery(document).ready(function(){KTnoUiSliderDemos.init()}); \ No newline at end of file +var KTnoUiSliderDemos = { + init: function() { + !(function() { + var e = document.getElementById('kt_nouislider_1'); + noUiSlider.create(e, { start: [0], step: 2, range: { min: [0], max: [10] }, format: wNumb({ decimals: 0 }) }); + var n = document.getElementById('kt_nouislider_1_input'); + e.noUiSlider.on('update', function(e, t) { + n.value = e[t]; + }), + n.addEventListener('change', function() { + e.noUiSlider.set(this.value); + }); + })(), + (function() { + var e = document.getElementById('kt_nouislider_2'); + noUiSlider.create(e, { + start: [2e4], + connect: [!0, !1], + step: 1e3, + range: { min: [2e4], max: [8e4] }, + format: wNumb({ decimals: 3, thousand: '.', postfix: ' (US $)' }), + }); + var n = document.getElementById('kt_nouislider_2_input'); + e.noUiSlider.on('update', function(e, t) { + n.value = e[t]; + }), + n.addEventListener('change', function() { + e.noUiSlider.set(this.value); + }); + })(), + (function() { + var e = document.getElementById('kt_nouislider_3'); + noUiSlider.create(e, { + start: [20, 80], + connect: !0, + direction: 'rtl', + tooltips: [!0, wNumb({ decimals: 1 })], + range: { min: [0], '10%': [10, 10], '50%': [80, 50], '80%': 150, max: 200 }, + }); + var n = document.getElementById('kt_nouislider_3_input'), + t = [document.getElementById('kt_nouislider_3.1_input'), n]; + e.noUiSlider.on('update', function(e, n) { + t[n].value = e[n]; + }); + })(), + (function() { + for (var e = document.getElementById('kt_nouislider_input_select'), n = -20; n <= 40; n++) { + var t = document.createElement('option'); + (t.text = n), (t.value = n), e.appendChild(t); + } + var i = document.getElementById('kt_nouislider_4'); + noUiSlider.create(i, { start: [10, 30], connect: !0, range: { min: -20, max: 40 } }); + var o = document.getElementById('kt_nouislider_input_number'); + i.noUiSlider.on('update', function(n, t) { + var i = n[t]; + t ? (o.value = i) : (e.value = Math.round(i)); + }), + e.addEventListener('change', function() { + i.noUiSlider.set([this.value, null]); + }), + o.addEventListener('change', function() { + i.noUiSlider.set([null, this.value]); + }); + })(), + (function() { + var e = document.getElementById('kt_nouislider_5'); + noUiSlider.create(e, { + start: 20, + range: { min: 0, max: 100 }, + pips: { mode: 'values', values: [20, 80], density: 4 }, + }); + var n = document.getElementById('kt_nouislider_5_input'); + e.noUiSlider.on('update', function(e, t) { + n.value = e[t]; + }), + n.addEventListener('change', function() { + e.noUiSlider.set(this.value); + }), + e.noUiSlider.on('change', function(n, t) { + n[t] < 20 ? e.noUiSlider.set(20) : n[t] > 80 && e.noUiSlider.set(80); + }); + })(), + (function() { + var e = document.getElementById('kt_nouislider_6'); + noUiSlider.create(e, { start: 40, orientation: 'vertical', range: { min: 0, max: 100 } }); + var n = document.getElementById('kt_nouislider_6_input'); + e.noUiSlider.on('update', function(e, t) { + n.value = e[t]; + }), + n.addEventListener('change', function() { + e.noUiSlider.set(this.value); + }); + })(), + (function() { + var e = document.getElementById('kt_nouislider_modal1'); + noUiSlider.create(e, { start: [0], step: 2, range: { min: [0], max: [10] }, format: wNumb({ decimals: 0 }) }); + var n = document.getElementById('kt_nouislider_modal1_input'); + e.noUiSlider.on('update', function(e, t) { + n.value = e[t]; + }), + n.addEventListener('change', function() { + e.noUiSlider.set(this.value); + }); + })(), + (function() { + var e = document.getElementById('kt_nouislider_modal2'); + noUiSlider.create(e, { + start: [2e4], + connect: [!0, !1], + step: 1e3, + range: { min: [2e4], max: [8e4] }, + format: wNumb({ decimals: 3, thousand: '.', postfix: ' (US $)' }), + }); + var n = document.getElementById('kt_nouislider_modal2_input'); + e.noUiSlider.on('update', function(e, t) { + n.value = e[t]; + }), + n.addEventListener('change', function() { + e.noUiSlider.set(this.value); + }); + })(), + (function() { + var e = document.getElementById('kt_nouislider_modal3'); + noUiSlider.create(e, { + start: [20, 80], + connect: !0, + direction: 'rtl', + tooltips: [!0, wNumb({ decimals: 1 })], + range: { min: [0], '10%': [10, 10], '50%': [80, 50], '80%': 150, max: 200 }, + }); + var n = document.getElementById('kt_nouislider_modal1.1_input'), + t = [document.getElementById('kt_nouislider_modal1.2_input'), n]; + e.noUiSlider.on('update', function(e, n) { + t[n].value = e[n]; + }); + })(); + }, +}; +jQuery(document).ready(function() { + KTnoUiSliderDemos.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/widgets/select2.js b/src/assets/app/custom/general/crud/forms/widgets/select2.js index 0b5e9e9..8bac3c6 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/select2.js +++ b/src/assets/app/custom/general/crud/forms/widgets/select2.js @@ -1 +1,77 @@ -var KTSelect2={init:function(){$("#kt_select2_1, #kt_select2_1_validate").select2({placeholder:"Select a state"}),$("#kt_select2_2, #kt_select2_2_validate").select2({placeholder:"Select a state"}),$("#kt_select2_3, #kt_select2_3_validate").select2({placeholder:"Select a state"}),$("#kt_select2_4").select2({placeholder:"Select a state",allowClear:!0}),$("#kt_select2_5").select2({placeholder:"Select a value",data:[{id:0,text:"Enhancement"},{id:1,text:"Bug"},{id:2,text:"Duplicate"},{id:3,text:"Invalid"},{id:4,text:"Wontfix"}]}),$("#kt_select2_6").select2({placeholder:"Search for git repositories",allowClear:!0,ajax:{url:"https://api.github.com/search/repositories",dataType:"json",delay:250,data:function(e){return{q:e.term,page:e.page}},processResults:function(e,t){return t.page=t.page||1,{results:e.items,pagination:{more:30*t.page";return e.description&&(t+="
    "+e.description+"
    "),t+="
    "+e.forks_count+" Forks
    "+e.stargazers_count+" Stars
    "+e.watchers_count+" Watchers
    "},templateSelection:function(e){return e.full_name||e.text}}),$("#kt_select2_12_1, #kt_select2_12_2, #kt_select2_12_3, #kt_select2_12_4").select2({placeholder:"Select an option"}),$("#kt_select2_7").select2({placeholder:"Select an option"}),$("#kt_select2_8").select2({placeholder:"Select an option"}),$("#kt_select2_9").select2({placeholder:"Select an option",maximumSelectionLength:2}),$("#kt_select2_10").select2({placeholder:"Select an option",minimumResultsForSearch:1/0}),$("#kt_select2_11").select2({placeholder:"Add a tag",tags:!0}),$(".kt-select2-general").select2({placeholder:"Select an option"}),$("#kt_select2_modal").on("shown.bs.modal",function(){$("#kt_select2_1_modal").select2({placeholder:"Select a state"}),$("#kt_select2_2_modal").select2({placeholder:"Select a state"}),$("#kt_select2_3_modal").select2({placeholder:"Select a state"}),$("#kt_select2_4_modal").select2({placeholder:"Select a state",allowClear:!0})})}};jQuery(document).ready(function(){KTSelect2.init()}); \ No newline at end of file +var KTSelect2 = { + init: function() { + $('#kt_select2_1, #kt_select2_1_validate').select2({ placeholder: 'Select a state' }), + $('#kt_select2_2, #kt_select2_2_validate').select2({ placeholder: 'Select a state' }), + $('#kt_select2_3, #kt_select2_3_validate').select2({ placeholder: 'Select a state' }), + $('#kt_select2_4').select2({ placeholder: 'Select a state', allowClear: !0 }), + $('#kt_select2_5').select2({ + placeholder: 'Select a value', + data: [ + { id: 0, text: 'Enhancement' }, + { id: 1, text: 'Bug' }, + { id: 2, text: 'Duplicate' }, + { id: 3, text: 'Invalid' }, + { id: 4, text: 'Wontfix' }, + ], + }), + $('#kt_select2_6').select2({ + placeholder: 'Search for git repositories', + allowClear: !0, + ajax: { + url: 'https://api.github.com/search/repositories', + dataType: 'json', + delay: 250, + data: function(e) { + return { q: e.term, page: e.page }; + }, + processResults: function(e, t) { + return (t.page = t.page || 1), { results: e.items, pagination: { more: 30 * t.page < e.total_count } }; + }, + cache: !0, + }, + escapeMarkup: function(e) { + return e; + }, + minimumInputLength: 1, + templateResult: function(e) { + if (e.loading) return e.text; + var t = + "
    " + + e.full_name + + '
    '; + return ( + e.description && (t += "
    " + e.description + '
    '), + (t += + "
    " + + e.forks_count + + " Forks
    " + + e.stargazers_count + + " Stars
    " + + e.watchers_count + + ' Watchers
    ') + ); + }, + templateSelection: function(e) { + return e.full_name || e.text; + }, + }), + $('#kt_select2_12_1, #kt_select2_12_2, #kt_select2_12_3, #kt_select2_12_4').select2({ + placeholder: 'Select an option', + }), + $('#kt_select2_7').select2({ placeholder: 'Select an option' }), + $('#kt_select2_8').select2({ placeholder: 'Select an option' }), + $('#kt_select2_9').select2({ placeholder: 'Select an option', maximumSelectionLength: 2 }), + $('#kt_select2_10').select2({ placeholder: 'Select an option', minimumResultsForSearch: 1 / 0 }), + $('#kt_select2_11').select2({ placeholder: 'Add a tag', tags: !0 }), + $('.kt-select2-general').select2({ placeholder: 'Select an option' }), + $('#kt_select2_modal').on('shown.bs.modal', function() { + $('#kt_select2_1_modal').select2({ placeholder: 'Select a state' }), + $('#kt_select2_2_modal').select2({ placeholder: 'Select a state' }), + $('#kt_select2_3_modal').select2({ placeholder: 'Select a state' }), + $('#kt_select2_4_modal').select2({ placeholder: 'Select a state', allowClear: !0 }); + }); + }, +}; +jQuery(document).ready(function() { + KTSelect2.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/widgets/summernote.js b/src/assets/app/custom/general/crud/forms/widgets/summernote.js index a56bee0..6495da2 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/summernote.js +++ b/src/assets/app/custom/general/crud/forms/widgets/summernote.js @@ -1 +1,9 @@ -"use strict";var KTSummernoteDemo={init:function(){$(".summernote").summernote({height:150})}};jQuery(document).ready(function(){KTSummernoteDemo.init()}); \ No newline at end of file +'use strict'; +var KTSummernoteDemo = { + init: function() { + $('.summernote').summernote({ height: 150 }); + }, +}; +jQuery(document).ready(function() { + KTSummernoteDemo.init(); +}); diff --git a/src/assets/app/custom/general/crud/forms/widgets/typeahead.js b/src/assets/app/custom/general/crud/forms/widgets/typeahead.js index d041a6e..a781662 100644 --- a/src/assets/app/custom/general/crud/forms/widgets/typeahead.js +++ b/src/assets/app/custom/general/crud/forms/widgets/typeahead.js @@ -1 +1,143 @@ -var KTTypeahead=function(){var e=["Alabama","Alaska","Arizona","Arkansas","California","Colorado","Connecticut","Delaware","Florida","Georgia","Hawaii","Idaho","Illinois","Indiana","Iowa","Kansas","Kentucky","Louisiana","Maine","Maryland","Massachusetts","Michigan","Minnesota","Mississippi","Missouri","Montana","Nebraska","Nevada","New Hampshire","New Jersey","New Mexico","New York","North Carolina","North Dakota","Ohio","Oklahoma","Oregon","Pennsylvania","Rhode Island","South Carolina","South Dakota","Tennessee","Texas","Utah","Vermont","Virginia","Washington","West Virginia","Wisconsin","Wyoming"];return{init:function(){var a,n,t,o,i,s;$("#kt_typeahead_1, #kt_typeahead_1_modal, #kt_typeahead_1_validate, #kt_typeahead_2_validate, #kt_typeahead_3_validate").typeahead({hint:!0,highlight:!0,minLength:1},{name:"states",source:(a=e,function(e,n){var t;t=[],substrRegex=new RegExp(e,"i"),$.each(a,function(e,a){substrRegex.test(a)&&t.push(a)}),n(t)})}),n=new Bloodhound({datumTokenizer:Bloodhound.tokenizers.whitespace,queryTokenizer:Bloodhound.tokenizers.whitespace,local:e}),$("#kt_typeahead_2, #kt_typeahead_2_modal").typeahead({hint:!0,highlight:!0,minLength:1},{name:"states",source:n}),t=new Bloodhound({datumTokenizer:Bloodhound.tokenizers.whitespace,queryTokenizer:Bloodhound.tokenizers.whitespace,prefetch:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/typeahead/countries.json"}),$("#kt_typeahead_3, #kt_typeahead_3_modal").typeahead(null,{name:"countries",source:t}),o=new Bloodhound({datumTokenizer:Bloodhound.tokenizers.obj.whitespace("value"),queryTokenizer:Bloodhound.tokenizers.whitespace,prefetch:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/typeahead/movies.json"}),$("#kt_typeahead_4").typeahead(null,{name:"best-pictures",display:"value",source:o,templates:{empty:['
    ',"unable to find any Best Picture winners that match the current query","
    "].join("\n"),suggestion:Handlebars.compile("
    {{value}} – {{year}}
    ")}}),i=new Bloodhound({datumTokenizer:Bloodhound.tokenizers.obj.whitespace("team"),queryTokenizer:Bloodhound.tokenizers.whitespace,prefetch:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/typeahead/nba.json"}),s=new Bloodhound({datumTokenizer:Bloodhound.tokenizers.obj.whitespace("team"),queryTokenizer:Bloodhound.tokenizers.whitespace,prefetch:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/typeahead/nhl.json"}),$("#kt_typeahead_5").typeahead({highlight:!0},{name:"nba-teams",display:"team",source:i,templates:{header:'

    NBA Teams

    '}},{name:"nhl-teams",display:"team",source:s,templates:{header:'

    NHL Teams

    '}})}}}();jQuery(document).ready(function(){KTTypeahead.init()}); \ No newline at end of file +var KTTypeahead = (function() { + var e = [ + 'Alabama', + 'Alaska', + 'Arizona', + 'Arkansas', + 'California', + 'Colorado', + 'Connecticut', + 'Delaware', + 'Florida', + 'Georgia', + 'Hawaii', + 'Idaho', + 'Illinois', + 'Indiana', + 'Iowa', + 'Kansas', + 'Kentucky', + 'Louisiana', + 'Maine', + 'Maryland', + 'Massachusetts', + 'Michigan', + 'Minnesota', + 'Mississippi', + 'Missouri', + 'Montana', + 'Nebraska', + 'Nevada', + 'New Hampshire', + 'New Jersey', + 'New Mexico', + 'New York', + 'North Carolina', + 'North Dakota', + 'Ohio', + 'Oklahoma', + 'Oregon', + 'Pennsylvania', + 'Rhode Island', + 'South Carolina', + 'South Dakota', + 'Tennessee', + 'Texas', + 'Utah', + 'Vermont', + 'Virginia', + 'Washington', + 'West Virginia', + 'Wisconsin', + 'Wyoming', + ]; + return { + init: function() { + var a, n, t, o, i, s; + $( + '#kt_typeahead_1, #kt_typeahead_1_modal, #kt_typeahead_1_validate, #kt_typeahead_2_validate, #kt_typeahead_3_validate', + ).typeahead( + { hint: !0, highlight: !0, minLength: 1 }, + { + name: 'states', + source: ((a = e), + function(e, n) { + var t; + (t = []), + (substrRegex = new RegExp(e, 'i')), + $.each(a, function(e, a) { + substrRegex.test(a) && t.push(a); + }), + n(t); + }), + }, + ), + (n = new Bloodhound({ + datumTokenizer: Bloodhound.tokenizers.whitespace, + queryTokenizer: Bloodhound.tokenizers.whitespace, + local: e, + })), + $('#kt_typeahead_2, #kt_typeahead_2_modal').typeahead( + { hint: !0, highlight: !0, minLength: 1 }, + { name: 'states', source: n }, + ), + (t = new Bloodhound({ + datumTokenizer: Bloodhound.tokenizers.whitespace, + queryTokenizer: Bloodhound.tokenizers.whitespace, + prefetch: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/typeahead/countries.json', + })), + $('#kt_typeahead_3, #kt_typeahead_3_modal').typeahead(null, { name: 'countries', source: t }), + (o = new Bloodhound({ + datumTokenizer: Bloodhound.tokenizers.obj.whitespace('value'), + queryTokenizer: Bloodhound.tokenizers.whitespace, + prefetch: 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/typeahead/movies.json', + })), + $('#kt_typeahead_4').typeahead(null, { + name: 'best-pictures', + display: 'value', + source: o, + templates: { + empty: [ + '
    ', + 'unable to find any Best Picture winners that match the current query', + '
    ', + ].join('\n'), + suggestion: Handlebars.compile('
    {{value}} – {{year}}
    '), + }, + }), + (i = new Bloodhound({ + datumTokenizer: Bloodhound.tokenizers.obj.whitespace('team'), + queryTokenizer: Bloodhound.tokenizers.whitespace, + prefetch: 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/typeahead/nba.json', + })), + (s = new Bloodhound({ + datumTokenizer: Bloodhound.tokenizers.obj.whitespace('team'), + queryTokenizer: Bloodhound.tokenizers.whitespace, + prefetch: 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/typeahead/nhl.json', + })), + $('#kt_typeahead_5').typeahead( + { highlight: !0 }, + { + name: 'nba-teams', + display: 'team', + source: i, + templates: { + header: '

    NBA Teams

    ', + }, + }, + { + name: 'nhl-teams', + display: 'team', + source: s, + templates: { + header: '

    NHL Teams

    ', + }, + }, + ); + }, + }; +})(); +jQuery(document).ready(function() { + KTTypeahead.init(); +}); diff --git a/src/assets/app/custom/general/crud/metronic-datatable/advanced/column-rendering.js b/src/assets/app/custom/general/crud/metronic-datatable/advanced/column-rendering.js index 785a9aa..d59a1a3 100644 --- a/src/assets/app/custom/general/crud/metronic-datatable/advanced/column-rendering.js +++ b/src/assets/app/custom/general/crud/metronic-datatable/advanced/column-rendering.js @@ -1 +1,145 @@ -"use strict";var KTDatatableColumnRenderingDemo={init:function(){var t;t=$(".kt-datatable").KTDatatable({data:{type:"remote",source:{read:{url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php"}},pageSize:10,serverPaging:!0,serverFiltering:!0,serverSorting:!0},layout:{scroll:!1,footer:!1},sortable:!0,pagination:!0,search:{input:$("#generalSearch"),delay:400},columns:[{field:"RecordID",title:"#",sortable:"asc",width:30,type:"number",selector:!1,textAlign:"center"},{field:"OrderID",title:"Order ID",template:function(t){var a=KTUtil.getRandomInt(1,14);return a>8?'
    \t\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t\tphoto\t\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t\t'+t.CompanyAgent+'\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t
    ":'
    \t\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t\t
    '+t.CompanyAgent.substring(0,1)+'
    \t\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t\t'+t.CompanyAgent+'\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t
    "}},{field:"Country",title:"Country",template:function(t){return t.Country+" "+t.ShipCountry}},{field:"ShipDate",title:"Ship Date",type:"date",format:"MM/DD/YYYY"},{field:"CompanyName",title:"Company Name"},{field:"Status",title:"Status",template:function(t){var a={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+a[t.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(t){var a={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return' '+a[t.Type].title+""}},{field:"Actions",title:"Actions",sortable:!1,width:110,overflow:"visible",autoHide:!1,template:function(){return'\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'}}]}),$("#kt_form_status").on("change",function(){t.search($(this).val().toLowerCase(),"Status")}),$("#kt_form_type").on("change",function(){t.search($(this).val().toLowerCase(),"Type")}),$("#kt_form_status,#kt_form_type").selectpicker()}};jQuery(document).ready(function(){KTDatatableColumnRenderingDemo.init()}); \ No newline at end of file +'use strict'; +var KTDatatableColumnRenderingDemo = { + init: function() { + var t; + (t = $('.kt-datatable').KTDatatable({ + data: { + type: 'remote', + source: { + read: { + url: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php', + }, + }, + pageSize: 10, + serverPaging: !0, + serverFiltering: !0, + serverSorting: !0, + }, + layout: { scroll: !1, footer: !1 }, + sortable: !0, + pagination: !0, + search: { input: $('#generalSearch'), delay: 400 }, + columns: [ + { + field: 'RecordID', + title: '#', + sortable: 'asc', + width: 30, + type: 'number', + selector: !1, + textAlign: 'center', + }, + { + field: 'OrderID', + title: 'Order ID', + template: function(t) { + var a = KTUtil.getRandomInt(1, 14); + return a > 8 + ? '
    \t\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t\tphoto\t\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t\t' + + t.CompanyAgent + + '\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t
    ' + : '
    \t\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t\t
    ' + + t.CompanyAgent.substring(0, 1) + + '
    \t\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t\t' + + t.CompanyAgent + + '\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t
    '; + }, + }, + { + field: 'Country', + title: 'Country', + template: function(t) { + return t.Country + ' ' + t.ShipCountry; + }, + }, + { field: 'ShipDate', title: 'Ship Date', type: 'date', format: 'MM/DD/YYYY' }, + { field: 'CompanyName', title: 'Company Name' }, + { + field: 'Status', + title: 'Status', + template: function(t) { + var a = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return ( + '' + + a[t.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Type', + autoHide: !1, + template: function(t) { + var a = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return ( + ' ' + + a[t.Type].title + + '' + ); + }, + }, + { + field: 'Actions', + title: 'Actions', + sortable: !1, + width: 110, + overflow: 'visible', + autoHide: !1, + template: function() { + return '\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'; + }, + }, + ], + })), + $('#kt_form_status').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Status', + ); + }), + $('#kt_form_type').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Type', + ); + }), + $('#kt_form_status,#kt_form_type').selectpicker(); + }, +}; +jQuery(document).ready(function() { + KTDatatableColumnRenderingDemo.init(); +}); diff --git a/src/assets/app/custom/general/crud/metronic-datatable/advanced/column-width.js b/src/assets/app/custom/general/crud/metronic-datatable/advanced/column-width.js index 55a7c2d..7a3dd79 100644 --- a/src/assets/app/custom/general/crud/metronic-datatable/advanced/column-width.js +++ b/src/assets/app/custom/general/crud/metronic-datatable/advanced/column-width.js @@ -1 +1,120 @@ -"use strict";var KTDatatableColumnWidthDemo={init:function(){var t;t=$(".kt-datatable").KTDatatable({data:{type:"remote",source:{read:{url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php"}},pageSize:10,serverPaging:!0,serverFiltering:!1,serverSorting:!0},layout:{scroll:!0,height:null,footer:!1},sortable:!0,pagination:!0,search:{input:$("#generalSearch")},columns:[{field:"RecordID",title:"#",sortable:"asc",width:30,type:"number",selector:!1,textAlign:"center"},{field:"OrderID",title:"Order ID"},{field:"Country",title:"Country",template:function(t,e,a){return t.Country+" "+t.ShipCountry}},{field:"CompanyEmail",width:150,title:"Email"},{field:"ShipDate",title:"Ship Date",type:"date",format:"MM/DD/YYYY"},{field:"Status",title:"Status",template:function(t){var e={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+e[t.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(t){var e={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return' '+e[t.Type].title+""}},{field:"Actions",title:"Actions",sortable:!1,width:110,overflow:"visible",autoHide:!1,template:function(){return'\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'}}]}),$("#kt_form_status").on("change",function(){t.search($(this).val().toLowerCase(),"Status")}),$("#kt_form_type").on("change",function(){t.search($(this).val().toLowerCase(),"Type")}),$("#kt_form_status,#kt_form_type").selectpicker()}};jQuery(document).ready(function(){KTDatatableColumnWidthDemo.init()}); \ No newline at end of file +'use strict'; +var KTDatatableColumnWidthDemo = { + init: function() { + var t; + (t = $('.kt-datatable').KTDatatable({ + data: { + type: 'remote', + source: { + read: { + url: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php', + }, + }, + pageSize: 10, + serverPaging: !0, + serverFiltering: !1, + serverSorting: !0, + }, + layout: { scroll: !0, height: null, footer: !1 }, + sortable: !0, + pagination: !0, + search: { input: $('#generalSearch') }, + columns: [ + { + field: 'RecordID', + title: '#', + sortable: 'asc', + width: 30, + type: 'number', + selector: !1, + textAlign: 'center', + }, + { field: 'OrderID', title: 'Order ID' }, + { + field: 'Country', + title: 'Country', + template: function(t, e, a) { + return t.Country + ' ' + t.ShipCountry; + }, + }, + { field: 'CompanyEmail', width: 150, title: 'Email' }, + { field: 'ShipDate', title: 'Ship Date', type: 'date', format: 'MM/DD/YYYY' }, + { + field: 'Status', + title: 'Status', + template: function(t) { + var e = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return ( + '' + + e[t.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Type', + autoHide: !1, + template: function(t) { + var e = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return ( + ' ' + + e[t.Type].title + + '' + ); + }, + }, + { + field: 'Actions', + title: 'Actions', + sortable: !1, + width: 110, + overflow: 'visible', + autoHide: !1, + template: function() { + return '\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'; + }, + }, + ], + })), + $('#kt_form_status').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Status', + ); + }), + $('#kt_form_type').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Type', + ); + }), + $('#kt_form_status,#kt_form_type').selectpicker(); + }, +}; +jQuery(document).ready(function() { + KTDatatableColumnWidthDemo.init(); +}); diff --git a/src/assets/app/custom/general/crud/metronic-datatable/advanced/modal.js b/src/assets/app/custom/general/crud/metronic-datatable/advanced/modal.js index 60535de..f0790b2 100644 --- a/src/assets/app/custom/general/crud/metronic-datatable/advanced/modal.js +++ b/src/assets/app/custom/general/crud/metronic-datatable/advanced/modal.js @@ -1 +1,494 @@ -"use strict";var KTDatatableModal=function(){var e=function(e){var a=$("#modal_sub_datatable_ajax_source"),t=a.KTDatatable({data:{type:"remote",source:{read:{url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/orders.php",params:{query:{generalSearch:"",CustomerID:e}}}},pageSize:10,serverPaging:!0,serverFiltering:!1,serverSorting:!0},layout:{theme:"default",scroll:!0,height:350,footer:!1},search:{input:a.find("#generalSearch")},sortable:!0,columns:[{field:"RecordID",title:"#",sortable:!1,width:30},{field:"OrderID",title:"Order ID",template:function(e){return""+e.OrderID+" - "+e.ShipCountry+""}},{field:"ShipCountry",title:"Country",width:100},{field:"ShipAddress",title:"Ship Address"},{field:"ShipName",title:"Ship Name",autoHide:!1},{field:"TotalPayment",title:"Payment",type:"number"},{field:"Status",title:"Status",template:function(e){var a={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--success"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+a[e.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(e){var a={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"accent"}};return' '+a[e.Type].title+""}}]}),s=t.closest(".modal");s.find("#kt_form_status").on("change",function(){t.search($(this).val().toLowerCase(),"Status")}),s.find("#kt_form_type").on("change",function(){t.search($(this).val().toLowerCase(),"Type")}),s.find("#kt_form_status,#kt_form_type").selectpicker(),t.hide(),s.on("shown.bs.modal",function(){var e=$(this).find(".modal-content");t.spinnerCallback(!0,e),t.on("kt-datatable--on-layout-updated",function(){t.show(),t.spinnerCallback(!1,e),t.redraw()})}).on("hidden.bs.modal",function(){a.KTDatatable("destroy")})};return{init:function(){var a,t,s;!function(){var e=$("#kt_modal_KTDatatable_remote"),a=$("#modal_datatable_ajax_source").KTDatatable({data:{type:"remote",source:{read:{url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php"}},pageSize:10,serverPaging:!0,serverFiltering:!0,serverSorting:!0},layout:{scroll:!0,height:400,footer:!1},sortable:!0,pagination:!0,search:{input:e.find("#generalSearch"),delay:400},columns:[{field:"RecordID",title:"#",sortable:"asc",width:30,type:"number",selector:!1,textAlign:"center"},{field:"OrderID",title:"Profile Picture",template:function(e,a){for(var t=4+a;t>12;)t-=3;var s="100_"+t+".jpg",i=KTUtil.getRandomInt(0,5),n=["Developer","Designer","CEO","Manager","Architect","Sales"];return t>5?'
    \t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\tphoto\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t'+e.CompanyAgent+'\t\t\t\t\t\t\t\t'+n[i]+"\t\t\t\t\t\t\t
    \t\t\t\t\t\t
    ":'
    \t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t
    '+e.CompanyAgent.substring(0,1)+'
    \t\t\t\t\t\t\t
    \t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t'+e.CompanyAgent+'\t\t\t\t\t\t\t\t'+n[i]+"\t\t\t\t\t\t\t
    \t\t\t\t\t\t
    "}},{field:"CompanyAgent",title:"Name"},{field:"ShipDate",title:"Ship Date",type:"date",format:"MM/DD/YYYY"},{field:"ShipCountry",title:"Ship Country"},{field:"Status",title:"Status",template:function(e){var a={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--success"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+a[e.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(e){var a={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return' '+a[e.Type].title+""}},{field:"Actions",title:"Actions",sortable:!1,width:110,overflow:"visible",autoHide:!1,template:function(){return'\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'}}]});e.find("#kt_form_status").on("change",function(){a.search($(this).val().toLowerCase(),"status")}),e.find("#kt_form_type").on("change",function(){a.search($(this).val().toLowerCase(),"type")}),e.find("#kt_form_status,#kt_form_type").selectpicker(),a.hide();var t=!1;e.on("shown.bs.modal",function(){if(!t){var e=$(this).find(".modal-content");a.spinnerCallback(!0,e),a.reload(),a.on("kt-datatable--on-layout-updated",function(){a.show(),a.spinnerCallback(!1,e),a.redraw()}),t=!0}})}(),function(){var e=JSON.parse('[{"id":1,"employee_id":"463978155-5","first_name":"Carroll","last_name":"Maharry","email":"cmaharry0@topsy.com","phone":"420-935-0970","gender":"Male","department":"Legal","address":"72460 Bunting Trail","hire_date":"3/18/2018","website":"https://gmpg.org","notes":"euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","status":6,"type":2,"salary":"$339.37"}, {"id":2,"employee_id":"590410601-7","first_name":"Jae","last_name":"Frammingham","email":"jframmingham1@ucoz.com","phone":"377-986-0708","gender":"Male","department":"Human Resources","address":"976 Eagle Crest Junction","hire_date":"10/22/2017","website":"https://telegraph.co.uk","notes":"consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia","status":5,"type":2,"salary":"$1568.00"}, {"id":3,"employee_id":"562079447-4","first_name":"Natalie","last_name":"Stuchberry","email":"nstuchberry2@jimdo.com","phone":"718-320-9991","gender":"Female","department":"Legal","address":"9971 Rigney Pass","hire_date":"6/1/2018","website":"http://nbcnews.com","notes":"tempus sit amet sem fusce consequat nulla nisl nunc nisl duis","status":1,"type":1,"salary":"$2014.50"}, {"id":4,"employee_id":"078485871-3","first_name":"Abran","last_name":"Ivett","email":"aivett3@pinterest.com","phone":"784-922-2482","gender":"Male","department":"Accounting","address":"9 Mesta Court","hire_date":"2/6/2018","website":"http://wikipedia.org","notes":"vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra","status":2,"type":1,"salary":"$1205.64"}, {"id":5,"employee_id":"048140516-X","first_name":"Viola","last_name":"Ends","email":"vends4@squarespace.com","phone":"613-457-5253","gender":"Female","department":"Research and Development","address":"2 Paget Court","hire_date":"3/16/2018","website":"https://dot.gov","notes":"id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit","status":2,"type":2,"salary":"$1376.93"}, {"id":6,"employee_id":"115191539-4","first_name":"Marabel","last_name":"Foystone","email":"mfoystone5@example.com","phone":"731-391-3134","gender":"Female","department":"Support","address":"2498 Tennyson Way","hire_date":"5/10/2018","website":"http://booking.com","notes":"nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis","status":1,"type":1,"salary":"$1498.25"}, {"id":7,"employee_id":"053408526-1","first_name":"Maiga","last_name":"Frogley","email":"mfrogley6@flavors.me","phone":"559-339-1188","gender":"Female","department":"Legal","address":"6 Sage Circle","hire_date":"10/24/2017","website":"http://ustream.tv","notes":"in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur","status":4,"type":1,"salary":"$2420.50"}, {"id":8,"employee_id":"996172199-3","first_name":"Leia","last_name":"Rapelli","email":"lrapelli7@amazonaws.com","phone":"882-958-3554","gender":"Female","department":"Training","address":"5 Bellgrove Park","hire_date":"3/11/2018","website":"https://va.gov","notes":"ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus","status":5,"type":3,"salary":"$479.73"}, {"id":9,"employee_id":"290771439-2","first_name":"Lilias","last_name":"Stollsteiner","email":"lstollsteiner8@opensource.org","phone":"725-615-6480","gender":"Female","department":"Product Management","address":"5 Shoshone Park","hire_date":"4/26/2018","website":"http://163.com","notes":"blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem","status":6,"type":3,"salary":"$815.69"}, {"id":10,"employee_id":"475138305-1","first_name":"Chrissie","last_name":"Trenouth","email":"ctrenouth9@addtoany.com","phone":"653-550-6039","gender":"Male","department":"Product Management","address":"6753 Fulton Drive","hire_date":"4/5/2018","website":"https://nifty.com","notes":"erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in","status":5,"type":2,"salary":"$1011.26"}, {"id":11,"employee_id":"909173505-8","first_name":"Tisha","last_name":"Timewell","email":"ttimewella@photobucket.com","phone":"372-765-5253","gender":"Female","department":"Legal","address":"5142 7th Terrace","hire_date":"3/21/2018","website":"https://360.cn","notes":"dolor morbi vel lectus in quam fringilla rhoncus mauris enim","status":4,"type":1,"salary":"$1169.55"}, {"id":12,"employee_id":"930860193-7","first_name":"Abie","last_name":"Adamec","email":"aadamecb@ask.com","phone":"728-535-2654","gender":"Male","department":"Marketing","address":"7 Prentice Point","hire_date":"6/28/2018","website":"https://epa.gov","notes":"mauris vulputate elementum nullam varius nulla facilisi cras non velit nec nisi","status":4,"type":1,"salary":"$256.18"}, {"id":13,"employee_id":"302125353-9","first_name":"Saidee","last_name":"Christol","email":"schristolc@reverbnation.com","phone":"575-573-3469","gender":"Female","department":"Sales","address":"753 Moose Road","hire_date":"1/9/2018","website":"https://soup.io","notes":"erat fermentum justo nec condimentum neque sapien placerat ante nulla","status":1,"type":1,"salary":"$1888.02"}, {"id":14,"employee_id":"264870457-4","first_name":"Merna","last_name":"Studman","email":"mstudmand@bloomberg.com","phone":"301-593-9922","gender":"Female","department":"Sales","address":"32617 Merchant Park","hire_date":"12/14/2017","website":"https://dyndns.org","notes":"risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis","status":2,"type":1,"salary":"$525.89"}, {"id":15,"employee_id":"458961353-0","first_name":"Carey","last_name":"De Paepe","email":"cdepaepee@vistaprint.com","phone":"437-166-5682","gender":"Male","department":"Business Development","address":"57299 Hintze Terrace","hire_date":"3/5/2018","website":"https://ed.gov","notes":"etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut","status":4,"type":3,"salary":"$380.12"}, {"id":16,"employee_id":"668397107-2","first_name":"Elana","last_name":"Fontel","email":"efontelf@ox.ac.uk","phone":"295-591-0290","gender":"Female","department":"Legal","address":"6 Lyons Alley","hire_date":"2/23/2018","website":"http://amazon.co.uk","notes":"in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis","status":1,"type":2,"salary":"$557.74"}, {"id":17,"employee_id":"633477701-7","first_name":"Martyn","last_name":"Palethorpe","email":"mpalethorpeg@hhs.gov","phone":"602-830-1929","gender":"Male","department":"Human Resources","address":"82 Johnson Trail","hire_date":"6/11/2018","website":"http://domainmarket.com","notes":"metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque","status":4,"type":3,"salary":"$692.98"}, {"id":18,"employee_id":"649247266-7","first_name":"Banky","last_name":"Scrafton","email":"bscraftonh@rakuten.co.jp","phone":"582-430-5651","gender":"Male","department":"Business Development","address":"9931 Charing Cross Road","hire_date":"10/8/2017","website":"http://com.com","notes":"morbi odio odio elementum eu interdum eu tincidunt in leo","status":3,"type":2,"salary":"$2251.69"}, {"id":19,"employee_id":"353134888-4","first_name":"Carl","last_name":"Cartlidge","email":"ccartlidgei@topsy.com","phone":"788-594-5978","gender":"Male","department":"Support","address":"01023 Loftsgordon Court","hire_date":"6/10/2018","website":"https://w3.org","notes":"montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis","status":5,"type":2,"salary":"$1098.95"}, {"id":20,"employee_id":"217229894-8","first_name":"Cecil","last_name":"Dovidaitis","email":"cdovidaitisj@friendfeed.com","phone":"871-276-5383","gender":"Male","department":"Accounting","address":"47936 Park Meadow Place","hire_date":"10/19/2017","website":"http://archive.org","notes":"interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien","status":5,"type":1,"salary":"$2023.29"}, {"id":21,"employee_id":"502127380-9","first_name":"Charlene","last_name":"Pulsford","email":"cpulsfordk@google.es","phone":"334-897-8875","gender":"Female","department":"Support","address":"0622 Ronald Regan Junction","hire_date":"5/1/2018","website":"http://forbes.com","notes":"ipsum dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit","status":5,"type":1,"salary":"$2125.68"}, {"id":22,"employee_id":"954387630-4","first_name":"Agnes","last_name":"Eslinger","email":"aeslingerl@ucsd.edu","phone":"127-200-2804","gender":"Female","department":"Engineering","address":"1372 John Wall Terrace","hire_date":"1/6/2018","website":"http://pagesperso-orange.fr","notes":"diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus","status":1,"type":3,"salary":"$429.41"}, {"id":23,"employee_id":"332655163-0","first_name":"Felic","last_name":"Mathiasen","email":"fmathiasenm@pagesperso-orange.fr","phone":"563-844-1190","gender":"Male","department":"Business Development","address":"9416 Little Fleur Pass","hire_date":"10/21/2017","website":"http://feedburner.com","notes":"fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam","status":1,"type":3,"salary":"$1501.00"}, {"id":24,"employee_id":"281704570-X","first_name":"Stephani","last_name":"Rowell","email":"srowelln@ucla.edu","phone":"159-771-9442","gender":"Female","department":"Training","address":"10 Aberg Circle","hire_date":"2/13/2018","website":"http://nydailynews.com","notes":"vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin","status":2,"type":2,"salary":"$637.61"}, {"id":25,"employee_id":"757531800-3","first_name":"Jackson","last_name":"Kettlestring","email":"jkettlestringo@prnewswire.com","phone":"411-365-5414","gender":"Male","department":"Marketing","address":"0 Dorton Plaza","hire_date":"12/15/2017","website":"http://fda.gov","notes":"purus phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat","status":5,"type":3,"salary":"$1777.79"}, {"id":26,"employee_id":"687935758-X","first_name":"Marius","last_name":"Bembrick","email":"mbembrickp@jigsy.com","phone":"386-209-3865","gender":"Male","department":"Research and Development","address":"6 Nancy Plaza","hire_date":"9/4/2017","website":"https://apple.com","notes":"orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat","status":1,"type":1,"salary":"$508.32"}, {"id":27,"employee_id":"676433511-7","first_name":"Darnell","last_name":"Edes","email":"dedesq@surveymonkey.com","phone":"500-702-1594","gender":"Male","department":"Support","address":"373 Maryland Drive","hire_date":"12/10/2017","website":"http://walmart.com","notes":"euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc","status":6,"type":3,"salary":"$2139.18"}, {"id":28,"employee_id":"336040872-1","first_name":"Margaux","last_name":"O\'Feeny","email":"mofeenyr@amazon.co.jp","phone":"114-808-0574","gender":"Female","department":"Support","address":"59849 Packers Point","hire_date":"9/21/2017","website":"http://tmall.com","notes":"at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem","status":1,"type":3,"salary":"$909.79"}, {"id":29,"employee_id":"736038403-6","first_name":"Ly","last_name":"Blaszkiewicz","email":"lblaszkiewiczs@live.com","phone":"193-583-6061","gender":"Male","department":"Research and Development","address":"8 Prentice Place","hire_date":"6/18/2018","website":"https://prweb.com","notes":"purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in","status":5,"type":1,"salary":"$1789.96"}, {"id":30,"employee_id":"599372101-4","first_name":"Dayle","last_name":"Rablin","email":"drablint@jugem.jp","phone":"639-124-8424","gender":"Female","department":"Services","address":"35 Kenwood Point","hire_date":"6/30/2018","website":"https://csmonitor.com","notes":"vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante","status":3,"type":1,"salary":"$1594.26"}, {"id":31,"employee_id":"306503794-7","first_name":"Jaquenette","last_name":"Laurence","email":"jlaurenceu@topsy.com","phone":"809-291-9012","gender":"Female","department":"Product Management","address":"1 Holy Cross Circle","hire_date":"5/15/2018","website":"http://cornell.edu","notes":"turpis a pede posuere nonummy integer non velit donec diam neque vestibulum","status":3,"type":1,"salary":"$541.85"}, {"id":32,"employee_id":"708872496-0","first_name":"Bryn","last_name":"Gaukrodge","email":"bgaukrodgev@1688.com","phone":"197-490-4415","gender":"Male","department":"Product Management","address":"88036 Springs Center","hire_date":"3/12/2018","website":"https://bing.com","notes":"lectus pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque","status":3,"type":3,"salary":"$1433.56"}, {"id":33,"employee_id":"820772036-0","first_name":"Quintina","last_name":"Tromans","email":"qtromansw@t.co","phone":"150-592-4259","gender":"Female","department":"Business Development","address":"503 Grim Junction","hire_date":"1/30/2018","website":"https://dagondesign.com","notes":"nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti","status":4,"type":2,"salary":"$1763.79"}, {"id":34,"employee_id":"306191423-4","first_name":"North","last_name":"Linforth","email":"nlinforthx@devhub.com","phone":"311-987-2066","gender":"Male","department":"Human Resources","address":"46 Spenser Drive","hire_date":"6/16/2018","website":"https://delicious.com","notes":"mi sit amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec","status":6,"type":3,"salary":"$1598.27"}, {"id":35,"employee_id":"896478886-9","first_name":"Abbie","last_name":"Clampe","email":"aclampey@ameblo.jp","phone":"829-922-0897","gender":"Female","department":"Services","address":"0 Alpine Pass","hire_date":"10/31/2017","website":"http://nationalgeographic.com","notes":"sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est","status":3,"type":2,"salary":"$918.46"}, {"id":36,"employee_id":"345166971-4","first_name":"Ivonne","last_name":"Benstead","email":"ibensteadz@ftc.gov","phone":"239-904-6612","gender":"Female","department":"Human Resources","address":"32 Utah Avenue","hire_date":"3/27/2018","website":"http://sitemeter.com","notes":"curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend","status":6,"type":3,"salary":"$939.94"}, {"id":37,"employee_id":"271776454-2","first_name":"Brennen","last_name":"Duplain","email":"bduplain10@paginegialle.it","phone":"847-233-6429","gender":"Male","department":"Support","address":"64832 Sutherland Avenue","hire_date":"10/25/2017","website":"http://goo.gl","notes":"donec posuere metus vitae ipsum aliquam non mauris morbi non","status":1,"type":2,"salary":"$2153.00"}, {"id":38,"employee_id":"159362791-2","first_name":"Floris","last_name":"Rowntree","email":"frowntree11@goodreads.com","phone":"145-701-7289","gender":"Female","department":"Human Resources","address":"1 Prairieview Terrace","hire_date":"1/22/2018","website":"https://wordpress.com","notes":"sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat","status":1,"type":2,"salary":"$1469.21"}, {"id":39,"employee_id":"591823535-3","first_name":"Arlette","last_name":"Neumann","email":"aneumann12@google.it","phone":"626-427-8715","gender":"Female","department":"Legal","address":"5 Comanche Terrace","hire_date":"9/15/2017","website":"https://drupal.org","notes":"cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum","status":3,"type":1,"salary":"$2285.73"}, {"id":40,"employee_id":"760095255-6","first_name":"Jasper","last_name":"Blennerhassett","email":"jblennerhassett13@ovh.net","phone":"493-589-6952","gender":"Male","department":"Services","address":"48770 Hansons Center","hire_date":"6/3/2018","website":"http://imdb.com","notes":"integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna","status":3,"type":3,"salary":"$1261.12"}, {"id":41,"employee_id":"293876593-2","first_name":"Daniela","last_name":"Cauley","email":"dcauley14@si.edu","phone":"913-991-1546","gender":"Female","department":"Training","address":"327 Waubesa Pass","hire_date":"2/13/2018","website":"https://techcrunch.com","notes":"accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a","status":5,"type":3,"salary":"$1354.71"}, {"id":42,"employee_id":"754195998-7","first_name":"Allsun","last_name":"Cosin","email":"acosin15@seattletimes.com","phone":"890-332-0597","gender":"Female","department":"Business Development","address":"19242 Forest Dale Avenue","hire_date":"10/8/2017","website":"http://yellowbook.com","notes":"eu mi nulla ac enim in tempor turpis nec euismod scelerisque quam turpis","status":1,"type":1,"salary":"$463.81"}, {"id":43,"employee_id":"874856299-8","first_name":"Shalne","last_name":"Abramow","email":"sabramow16@1688.com","phone":"859-996-2703","gender":"Female","department":"Support","address":"678 Cardinal Trail","hire_date":"10/22/2017","website":"http://meetup.com","notes":"mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis","status":3,"type":3,"salary":"$2143.95"}, {"id":44,"employee_id":"274796603-8","first_name":"Britt","last_name":"Brameld","email":"bbrameld17@wiley.com","phone":"844-159-2313","gender":"Female","department":"Business Development","address":"01741 Truax Way","hire_date":"7/12/2018","website":"https://digg.com","notes":"a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id","status":2,"type":1,"salary":"$2400.44"}, {"id":45,"employee_id":"383491864-4","first_name":"Tammy","last_name":"Cordrey","email":"tcordrey18@photobucket.com","phone":"609-503-1223","gender":"Male","department":"Training","address":"3 Leroy Junction","hire_date":"8/6/2017","website":"https://aol.com","notes":"sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus","status":5,"type":2,"salary":"$1838.70"}, {"id":46,"employee_id":"981710394-3","first_name":"Vanya","last_name":"Stygall","email":"vstygall19@comsenz.com","phone":"347-830-1157","gender":"Female","department":"Sales","address":"49 Twin Pines Alley","hire_date":"2/23/2018","website":"https://istockphoto.com","notes":"quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus","status":4,"type":1,"salary":"$1612.69"}, {"id":47,"employee_id":"859972565-3","first_name":"Ilene","last_name":"Longden","email":"ilongden1a@seesaa.net","phone":"367-599-8104","gender":"Female","department":"Research and Development","address":"3317 Chinook Drive","hire_date":"4/16/2018","website":"http://time.com","notes":"condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo","status":3,"type":3,"salary":"$377.64"}, {"id":48,"employee_id":"969985171-6","first_name":"Chrysler","last_name":"Havick","email":"chavick1b@reference.com","phone":"878-108-5011","gender":"Female","department":"Accounting","address":"0 Buena Vista Crossing","hire_date":"11/18/2017","website":"https://weather.com","notes":"odio cras mi pede malesuada in imperdiet et commodo vulputate justo in","status":1,"type":3,"salary":"$778.85"}, {"id":49,"employee_id":"216013804-5","first_name":"Fifine","last_name":"Haggus","email":"fhaggus1c@oaic.gov.au","phone":"633-912-8346","gender":"Female","department":"Research and Development","address":"520 Tomscot Avenue","hire_date":"6/18/2018","website":"https://mozilla.org","notes":"vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in","status":5,"type":1,"salary":"$635.37"}, {"id":50,"employee_id":"966655811-4","first_name":"Ali","last_name":"Chue","email":"achue1d@vkontakte.ru","phone":"605-172-0203","gender":"Male","department":"Business Development","address":"0 Lyons Pass","hire_date":"8/2/2017","website":"http://springer.com","notes":"volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet erat","status":4,"type":2,"salary":"$2110.01"}, {"id":51,"employee_id":"861821671-2","first_name":"Celene","last_name":"Ledes","email":"cledes1e@opera.com","phone":"271-211-2956","gender":"Female","department":"Services","address":"9 Manley Terrace","hire_date":"4/27/2018","website":"http://4shared.com","notes":"libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum","status":3,"type":2,"salary":"$996.88"}, {"id":52,"employee_id":"416647881-8","first_name":"Luciano","last_name":"Lighterness","email":"llighterness1f@bizjournals.com","phone":"808-427-6621","gender":"Male","department":"Sales","address":"1 Bluejay Plaza","hire_date":"1/30/2018","website":"http://hud.gov","notes":"sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi","status":4,"type":2,"salary":"$2194.47"}, {"id":53,"employee_id":"716498565-0","first_name":"Oren","last_name":"Rixon","email":"orixon1g@paypal.com","phone":"640-688-8978","gender":"Male","department":"Research and Development","address":"03588 Randy Circle","hire_date":"12/16/2017","website":"http://tripod.com","notes":"sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis","status":4,"type":1,"salary":"$1590.74"}, {"id":54,"employee_id":"846826707-4","first_name":"Pearce","last_name":"Stark","email":"pstark1h@vk.com","phone":"724-173-2759","gender":"Male","department":"Marketing","address":"9134 Del Mar Alley","hire_date":"6/6/2018","website":"http://wp.com","notes":"fermentum donec ut mauris eget massa tempor convallis nulla neque libero convallis eget","status":1,"type":3,"salary":"$369.47"}, {"id":55,"employee_id":"817466406-8","first_name":"Paco","last_name":"Halden","email":"phalden1i@cbsnews.com","phone":"142-137-8107","gender":"Male","department":"Training","address":"9 Pennsylvania Place","hire_date":"3/31/2018","website":"http://gov.uk","notes":"ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla","status":6,"type":3,"salary":"$644.30"}, {"id":56,"employee_id":"486286979-3","first_name":"Merissa","last_name":"Tindle","email":"mtindle1j@sina.com.cn","phone":"645-520-7142","gender":"Female","department":"Sales","address":"672 Onsgard Way","hire_date":"4/4/2018","website":"http://oracle.com","notes":"id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras","status":5,"type":2,"salary":"$1821.01"}, {"id":57,"employee_id":"165434032-4","first_name":"Montague","last_name":"Coventon","email":"mcoventon1k@sbwire.com","phone":"933-259-7571","gender":"Male","department":"Training","address":"8 Lakeland Court","hire_date":"8/14/2017","website":"https://geocities.com","notes":"ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac","status":5,"type":3,"salary":"$1533.95"}, {"id":58,"employee_id":"154965026-2","first_name":"Kristel","last_name":"La Croce","email":"klacroce1l@noaa.gov","phone":"405-768-8955","gender":"Female","department":"Services","address":"630 Marcy Drive","hire_date":"10/17/2017","website":"http://ucsd.edu","notes":"vivamus in felis eu sapien cursus vestibulum proin eu mi nulla","status":6,"type":1,"salary":"$572.43"}, {"id":59,"employee_id":"531973169-8","first_name":"Felecia","last_name":"Aishford","email":"faishford1m@surveymonkey.com","phone":"308-335-5646","gender":"Female","department":"Marketing","address":"4169 Spenser Lane","hire_date":"1/14/2018","website":"https://accuweather.com","notes":"vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula","status":2,"type":2,"salary":"$535.61"}, {"id":60,"employee_id":"398015522-6","first_name":"Gabbey","last_name":"Faunch","email":"gfaunch1n@lulu.com","phone":"312-420-7864","gender":"Female","department":"Marketing","address":"66 Del Sol Crossing","hire_date":"10/12/2017","website":"https://tinypic.com","notes":"vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec","status":5,"type":3,"salary":"$454.67"}, {"id":61,"employee_id":"811193945-0","first_name":"Kiah","last_name":"MacGragh","email":"kmacgragh1o@nih.gov","phone":"585-387-4897","gender":"Female","department":"Accounting","address":"0082 8th Street","hire_date":"10/21/2017","website":"http://unblog.fr","notes":"turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a","status":3,"type":1,"salary":"$1998.31"}, {"id":62,"employee_id":"768660578-7","first_name":"Mireielle","last_name":"Danilishin","email":"mdanilishin1p@go.com","phone":"772-806-1933","gender":"Female","department":"Support","address":"9475 Transport Pass","hire_date":"8/12/2017","website":"https://i2i.jp","notes":"elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit","status":1,"type":3,"salary":"$332.09"}, {"id":63,"employee_id":"087657628-5","first_name":"Kaitlin","last_name":"Slowley","email":"kslowley1q@etsy.com","phone":"857-196-0908","gender":"Female","department":"Product Management","address":"136 Harbort Way","hire_date":"6/28/2018","website":"https://umn.edu","notes":"eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum","status":6,"type":2,"salary":"$2008.41"}, {"id":64,"employee_id":"247247211-0","first_name":"Ellissa","last_name":"Bench","email":"ebench1r@issuu.com","phone":"770-716-1929","gender":"Female","department":"Support","address":"07536 Atwood Street","hire_date":"1/17/2018","website":"https://goo.gl","notes":"egestas metus aenean fermentum donec ut mauris eget massa tempor convallis nulla","status":3,"type":1,"salary":"$662.94"}, {"id":65,"employee_id":"229767685-9","first_name":"Renato","last_name":"Loftie","email":"rloftie1s@photobucket.com","phone":"806-232-0956","gender":"Male","department":"Legal","address":"49603 Hanover Drive","hire_date":"9/4/2017","website":"https://apache.org","notes":"nunc proin at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel","status":5,"type":1,"salary":"$315.88"}, {"id":66,"employee_id":"303250444-9","first_name":"Eamon","last_name":"Chater","email":"echater1t@github.io","phone":"843-377-6351","gender":"Male","department":"Support","address":"1 Gina Lane","hire_date":"6/27/2018","website":"https://bravesites.com","notes":"id luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat","status":6,"type":2,"salary":"$575.88"}, {"id":67,"employee_id":"118110309-6","first_name":"Jeramey","last_name":"Guye","email":"jguye1u@bloglines.com","phone":"966-388-3378","gender":"Male","department":"Research and Development","address":"7141 Forest Dale Plaza","hire_date":"5/13/2018","website":"http://blogspot.com","notes":"habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur","status":4,"type":1,"salary":"$883.94"}, {"id":68,"employee_id":"604717575-9","first_name":"Ermentrude","last_name":"Caygill","email":"ecaygill1v@posterous.com","phone":"325-412-1846","gender":"Female","department":"Research and Development","address":"8 Vahlen Road","hire_date":"8/23/2017","website":"http://pinterest.com","notes":"vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci","status":4,"type":2,"salary":"$1261.05"}, {"id":69,"employee_id":"354395696-5","first_name":"Tyler","last_name":"Bearward","email":"tbearward1w@stanford.edu","phone":"264-480-4084","gender":"Male","department":"Engineering","address":"0 Oakridge Pass","hire_date":"9/23/2017","website":"http://toplist.cz","notes":"tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra","status":2,"type":2,"salary":"$1916.86"}, {"id":70,"employee_id":"448117293-2","first_name":"Cordelia","last_name":"Dod","email":"cdod1x@google.nl","phone":"904-991-9112","gender":"Female","department":"Services","address":"1 Oak Trail","hire_date":"5/19/2018","website":"http://nifty.com","notes":"at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget orci","status":2,"type":1,"salary":"$728.99"}, {"id":71,"employee_id":"078622063-5","first_name":"Jud","last_name":"Hugonnet","email":"jhugonnet1y@bravesites.com","phone":"793-605-5368","gender":"Male","department":"Human Resources","address":"2 Blue Bill Park Crossing","hire_date":"3/5/2018","website":"http://theatlantic.com","notes":"rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus","status":4,"type":3,"salary":"$1122.09"}, {"id":72,"employee_id":"177821412-6","first_name":"Bliss","last_name":"Wormell","email":"bwormell1z@google.es","phone":"923-926-7137","gender":"Female","department":"Services","address":"97487 Vernon Way","hire_date":"2/9/2018","website":"https://slashdot.org","notes":"turpis a pede posuere nonummy integer non velit donec diam neque vestibulum","status":6,"type":3,"salary":"$1325.37"}, {"id":73,"employee_id":"167412899-1","first_name":"Pennie","last_name":"Miles","email":"pmiles20@wikipedia.org","phone":"402-175-4814","gender":"Female","department":"Accounting","address":"25 Calypso Street","hire_date":"8/25/2017","website":"https://networkadvertising.org","notes":"orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet","status":3,"type":1,"salary":"$1857.52"}, {"id":74,"employee_id":"766232726-4","first_name":"Alethea","last_name":"Kubis","email":"akubis21@nytimes.com","phone":"195-533-0554","gender":"Female","department":"Research and Development","address":"7 Badeau Junction","hire_date":"12/20/2017","website":"https://columbia.edu","notes":"congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu","status":2,"type":1,"salary":"$1731.13"}, {"id":75,"employee_id":"148106817-2","first_name":"Niven","last_name":"Leckey","email":"nleckey22@rediff.com","phone":"419-694-8836","gender":"Male","department":"Research and Development","address":"41429 Texas Pass","hire_date":"8/22/2017","website":"https://chron.com","notes":"maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat","status":2,"type":3,"salary":"$835.59"}, {"id":76,"employee_id":"218188716-0","first_name":"Gav","last_name":"Denkin","email":"gdenkin23@phoca.cz","phone":"109-349-2084","gender":"Male","department":"Product Management","address":"866 Vermont Parkway","hire_date":"12/27/2017","website":"https://nytimes.com","notes":"eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris","status":1,"type":1,"salary":"$2271.20"}, {"id":77,"employee_id":"949856193-1","first_name":"Haroun","last_name":"McDermott","email":"hmcdermott24@gnu.org","phone":"650-332-8136","gender":"Male","department":"Legal","address":"18 Farragut Junction","hire_date":"1/12/2018","website":"https://techcrunch.com","notes":"orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet","status":3,"type":1,"salary":"$555.57"}, {"id":78,"employee_id":"816956055-1","first_name":"Enrico","last_name":"Marzelli","email":"emarzelli25@elegantthemes.com","phone":"931-285-9268","gender":"Male","department":"Services","address":"8 Stephen Center","hire_date":"7/16/2018","website":"https://cyberchimps.com","notes":"dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc","status":2,"type":2,"salary":"$820.63"}, {"id":79,"employee_id":"135814107-X","first_name":"Shermy","last_name":"Tersay","email":"stersay26@scientificamerican.com","phone":"459-559-9053","gender":"Male","department":"Engineering","address":"280 Muir Trail","hire_date":"8/31/2017","website":"https://facebook.com","notes":"sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus","status":3,"type":1,"salary":"$314.22"}, {"id":80,"employee_id":"214238400-5","first_name":"Kimberley","last_name":"Slorach","email":"kslorach27@ovh.net","phone":"408-346-4135","gender":"Female","department":"Legal","address":"33408 Dryden Center","hire_date":"4/18/2018","website":"https://live.com","notes":"congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus","status":2,"type":3,"salary":"$1960.21"}, {"id":81,"employee_id":"364281767-X","first_name":"Shirlee","last_name":"Heugel","email":"sheugel28@jiathis.com","phone":"823-228-8386","gender":"Female","department":"Research and Development","address":"4825 Autumn Leaf Junction","hire_date":"7/26/2017","website":"http://goodreads.com","notes":"est lacinia nisi venenatis tristique fusce congue diam id ornare","status":6,"type":1,"salary":"$1122.94"}, {"id":82,"employee_id":"197212989-9","first_name":"Lazar","last_name":"Fryatt","email":"lfryatt29@smugmug.com","phone":"529-726-0197","gender":"Male","department":"Business Development","address":"7434 Stephen Park","hire_date":"5/5/2018","website":"http://businessinsider.com","notes":"risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante","status":2,"type":2,"salary":"$1950.44"}, {"id":83,"employee_id":"184011545-9","first_name":"Ainslie","last_name":"Dobbings","email":"adobbings2a@newsvine.com","phone":"543-769-3230","gender":"Female","department":"Accounting","address":"9670 Parkside Way","hire_date":"5/18/2018","website":"https://seattletimes.com","notes":"facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla","status":5,"type":3,"salary":"$1025.26"}, {"id":84,"employee_id":"550071613-1","first_name":"Nola","last_name":"Dolder","email":"ndolder2b@nationalgeographic.com","phone":"660-563-6589","gender":"Female","department":"Sales","address":"41 Harper Trail","hire_date":"11/7/2017","website":"http://intel.com","notes":"donec quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat","status":4,"type":3,"salary":"$658.49"}, {"id":85,"employee_id":"549482172-2","first_name":"Stacy","last_name":"Flanaghan","email":"sflanaghan2c@prlog.org","phone":"803-731-1786","gender":"Female","department":"Sales","address":"9884 Carberry Terrace","hire_date":"3/30/2018","website":"https://dropbox.com","notes":"sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum","status":2,"type":3,"salary":"$2020.80"}, {"id":86,"employee_id":"367901888-6","first_name":"Uri","last_name":"Langdridge","email":"ulangdridge2d@sciencedaily.com","phone":"514-481-8237","gender":"Male","department":"Research and Development","address":"1873 Sunnyside Circle","hire_date":"3/25/2018","website":"https://hubpages.com","notes":"vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan","status":6,"type":3,"salary":"$369.40"}, {"id":87,"employee_id":"131679327-3","first_name":"Magdalena","last_name":"Rivelin","email":"mrivelin2e@123-reg.co.uk","phone":"475-989-2264","gender":"Female","department":"Engineering","address":"11 Pleasure Terrace","hire_date":"7/26/2017","website":"https://photobucket.com","notes":"justo eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse","status":1,"type":3,"salary":"$802.14"}, {"id":88,"employee_id":"962685709-9","first_name":"Seana","last_name":"Lackeye","email":"slackeye2f@w3.org","phone":"870-403-9921","gender":"Female","department":"Engineering","address":"1688 Northland Lane","hire_date":"7/8/2018","website":"https://topsy.com","notes":"turpis a pede posuere nonummy integer non velit donec diam neque vestibulum","status":3,"type":3,"salary":"$639.17"}, {"id":89,"employee_id":"031798299-0","first_name":"Marshal","last_name":"Kelf","email":"mkelf2g@vkontakte.ru","phone":"680-707-7861","gender":"Male","department":"Accounting","address":"87835 Kropf Circle","hire_date":"1/21/2018","website":"https://mit.edu","notes":"nulla quisque arcu libero rutrum ac lobortis vel dapibus at","status":1,"type":1,"salary":"$1644.11"}, {"id":90,"employee_id":"666187814-2","first_name":"Olag","last_name":"Suffield","email":"osuffield2h@topsy.com","phone":"920-122-4995","gender":"Male","department":"Human Resources","address":"00792 Buhler Place","hire_date":"5/5/2018","website":"https://hubpages.com","notes":"sed tincidunt eu felis fusce posuere felis sed lacus morbi","status":3,"type":1,"salary":"$1405.49"}, {"id":91,"employee_id":"972507663-X","first_name":"Andy","last_name":"Elgram","email":"aelgram2i@utexas.edu","phone":"198-157-8848","gender":"Female","department":"Support","address":"42 Garrison Point","hire_date":"10/1/2017","website":"http://mapy.cz","notes":"nam dui proin leo odio porttitor id consequat in consequat ut nulla sed accumsan felis","status":5,"type":2,"salary":"$684.75"}, {"id":92,"employee_id":"950510229-1","first_name":"Lennard","last_name":"Amberson","email":"lamberson2j@artisteer.com","phone":"611-164-2821","gender":"Male","department":"Engineering","address":"5985 Merry Drive","hire_date":"10/7/2017","website":"http://mysql.com","notes":"donec posuere metus vitae ipsum aliquam non mauris morbi non","status":2,"type":1,"salary":"$1537.93"}, {"id":93,"employee_id":"391601599-0","first_name":"Lucina","last_name":"Sinclaire","email":"lsinclaire2k@sitemeter.com","phone":"900-419-3471","gender":"Female","department":"Research and Development","address":"1 Mallard Court","hire_date":"12/19/2017","website":"http://woothemes.com","notes":"curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non","status":4,"type":2,"salary":"$1682.97"}, {"id":94,"employee_id":"780789784-8","first_name":"Zilvia","last_name":"Hessing","email":"zhessing2l@ca.gov","phone":"786-487-2292","gender":"Female","department":"Training","address":"8 Hanover Trail","hire_date":"4/11/2018","website":"http://hhs.gov","notes":"in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam","status":2,"type":1,"salary":"$1264.21"}, {"id":95,"employee_id":"154091500-X","first_name":"Randie","last_name":"Duplan","email":"rduplan2m@ox.ac.uk","phone":"254-881-3750","gender":"Female","department":"Human Resources","address":"7 Gerald Alley","hire_date":"1/27/2018","website":"https://slideshare.net","notes":"ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a","status":4,"type":3,"salary":"$1338.17"}, {"id":96,"employee_id":"269765014-8","first_name":"Rose","last_name":"Luter","email":"rluter2n@marketplace.net","phone":"960-532-6752","gender":"Female","department":"Research and Development","address":"99 Tony Drive","hire_date":"8/19/2017","website":"https://marriott.com","notes":"sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi","status":1,"type":1,"salary":"$1901.64"}, {"id":97,"employee_id":"985484449-8","first_name":"Carmencita","last_name":"Burdis","email":"cburdis2o@comcast.net","phone":"636-450-6253","gender":"Female","department":"Product Management","address":"976 Fieldstone Terrace","hire_date":"3/2/2018","website":"https://google.ru","notes":"amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus","status":3,"type":3,"salary":"$1799.42"}, {"id":98,"employee_id":"803354276-4","first_name":"Martguerita","last_name":"Buckerfield","email":"mbuckerfield2p@businessinsider.com","phone":"994-400-4021","gender":"Female","department":"Research and Development","address":"92 Ridge Oak Terrace","hire_date":"6/13/2018","website":"http://wordpress.org","notes":"sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum","status":1,"type":1,"salary":"$677.13"}, {"id":99,"employee_id":"326728049-4","first_name":"Lorene","last_name":"Biffen","email":"lbiffen2q@bbb.org","phone":"638-745-7652","gender":"Female","department":"Support","address":"46 Alpine Road","hire_date":"3/29/2018","website":"http://ucoz.ru","notes":"integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus","status":2,"type":3,"salary":"$899.25"}, {"id":100,"employee_id":"607725913-6","first_name":"Magdaia","last_name":"Nickels","email":"mnickels2r@edublogs.org","phone":"546-128-7946","gender":"Female","department":"Services","address":"0 Schiller Pass","hire_date":"3/27/2018","website":"http://networksolutions.com","notes":"scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis","status":6,"type":3,"salary":"$1578.12"}, {"id":101,"employee_id":"972393712-3","first_name":"Deloria","last_name":"Bamfield","email":"dbamfield2s@nbcnews.com","phone":"470-379-7670","gender":"Female","department":"Accounting","address":"8 Sundown Way","hire_date":"12/20/2017","website":"https://multiply.com","notes":"diam in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu","status":1,"type":2,"salary":"$1657.96"}, {"id":102,"employee_id":"885692265-7","first_name":"Aime","last_name":"Wiggins","email":"awiggins2t@de.vu","phone":"517-672-9432","gender":"Female","department":"Legal","address":"687 Oak Trail","hire_date":"8/12/2017","website":"http://alibaba.com","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae","status":5,"type":3,"salary":"$595.54"}, {"id":103,"employee_id":"261177042-5","first_name":"Luz","last_name":"Leuren","email":"lleuren2u@php.net","phone":"944-752-0631","gender":"Female","department":"Sales","address":"870 Holmberg Terrace","hire_date":"1/2/2018","website":"https://un.org","notes":"fermentum donec ut mauris eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque","status":1,"type":1,"salary":"$1431.61"}, {"id":104,"employee_id":"705056567-9","first_name":"Herminia","last_name":"Vint","email":"hvint2v@addthis.com","phone":"215-746-1315","gender":"Female","department":"Product Management","address":"2 Jay Point","hire_date":"8/21/2017","website":"http://macromedia.com","notes":"faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam","status":5,"type":1,"salary":"$925.04"}, {"id":105,"employee_id":"499919735-9","first_name":"Julita","last_name":"Durie","email":"jdurie2w@guardian.co.uk","phone":"476-162-6690","gender":"Female","department":"Engineering","address":"63 Arapahoe Street","hire_date":"5/19/2018","website":"http://istockphoto.com","notes":"sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus","status":5,"type":3,"salary":"$983.78"}, {"id":106,"employee_id":"513095556-0","first_name":"Saleem","last_name":"Montel","email":"smontel2x@people.com.cn","phone":"228-261-6358","gender":"Male","department":"Training","address":"86472 Commercial Hill","hire_date":"3/4/2018","website":"https://hp.com","notes":"neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio","status":2,"type":2,"salary":"$280.05"}, {"id":107,"employee_id":"510722692-2","first_name":"Jecho","last_name":"Grayshon","email":"jgrayshon2y@loc.gov","phone":"698-125-3058","gender":"Male","department":"Engineering","address":"4 Norway Maple Pass","hire_date":"5/23/2018","website":"https://wordpress.com","notes":"quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi","status":2,"type":1,"salary":"$765.18"}, {"id":108,"employee_id":"950399045-9","first_name":"Joaquin","last_name":"Drakeford","email":"jdrakeford2z@census.gov","phone":"394-664-8952","gender":"Male","department":"Sales","address":"2885 Banding Street","hire_date":"9/16/2017","website":"https://indiatimes.com","notes":"integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem","status":4,"type":1,"salary":"$1887.22"}, {"id":109,"employee_id":"128592509-2","first_name":"Alvina","last_name":"Robiou","email":"arobiou30@meetup.com","phone":"276-927-2841","gender":"Female","department":"Services","address":"3709 Sunfield Alley","hire_date":"7/30/2017","website":"https://state.tx.us","notes":"non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra","status":5,"type":3,"salary":"$2197.02"}, {"id":110,"employee_id":"641762765-9","first_name":"Kimberly","last_name":"Blewmen","email":"kblewmen31@xrea.com","phone":"993-555-5822","gender":"Female","department":"Support","address":"841 Spenser Trail","hire_date":"3/11/2018","website":"http://economist.com","notes":"et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere","status":4,"type":3,"salary":"$1403.80"}, {"id":111,"employee_id":"743230811-X","first_name":"Germain","last_name":"Liddell","email":"gliddell32@usda.gov","phone":"210-527-0995","gender":"Male","department":"Business Development","address":"273 Gale Hill","hire_date":"3/12/2018","website":"https://netscape.com","notes":"ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis","status":4,"type":2,"salary":"$1841.60"}, {"id":112,"employee_id":"280357534-5","first_name":"Wittie","last_name":"Crothers","email":"wcrothers33@bbc.co.uk","phone":"595-268-1541","gender":"Male","department":"Accounting","address":"0615 8th Hill","hire_date":"8/29/2017","website":"https://issuu.com","notes":"quam a odio in hac habitasse platea dictumst maecenas ut massa","status":6,"type":3,"salary":"$2349.82"}, {"id":113,"employee_id":"297744337-1","first_name":"Ruth","last_name":"Moxon","email":"rmoxon34@blog.com","phone":"311-809-6177","gender":"Female","department":"Support","address":"71749 Esker Crossing","hire_date":"9/8/2017","website":"https://tiny.cc","notes":"nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta","status":1,"type":1,"salary":"$2469.12"}, {"id":114,"employee_id":"627965147-9","first_name":"Shaw","last_name":"Jeafferson","email":"sjeafferson35@dedecms.com","phone":"402-419-6081","gender":"Male","department":"Training","address":"28 Kropf Lane","hire_date":"9/16/2017","website":"https://amazon.co.jp","notes":"urna ut tellus nulla ut erat id mauris vulputate elementum nullam","status":2,"type":1,"salary":"$725.96"}, {"id":115,"employee_id":"200221976-1","first_name":"Stern","last_name":"Newbery","email":"snewbery36@berkeley.edu","phone":"592-100-2732","gender":"Male","department":"Product Management","address":"64762 Luster Street","hire_date":"3/7/2018","website":"http://simplemachines.org","notes":"ipsum dolor sit amet consectetuer adipiscing elit proin risus praesent lectus","status":1,"type":2,"salary":"$2391.21"}, {"id":116,"employee_id":"683010400-9","first_name":"Jeffry","last_name":"Chessil","email":"jchessil37@sogou.com","phone":"350-222-1842","gender":"Male","department":"Human Resources","address":"499 Nelson Lane","hire_date":"8/24/2017","website":"https://marketwatch.com","notes":"sapien placerat ante nulla justo aliquam quis turpis eget elit","status":5,"type":2,"salary":"$1186.46"}, {"id":117,"employee_id":"492536862-1","first_name":"Darla","last_name":"Letson","email":"dletson38@squarespace.com","phone":"576-354-3003","gender":"Female","department":"Product Management","address":"5237 Division Plaza","hire_date":"10/2/2017","website":"http://networkadvertising.org","notes":"suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris","status":1,"type":2,"salary":"$771.69"}, {"id":118,"employee_id":"471683625-8","first_name":"Gavra","last_name":"Backhurst","email":"gbackhurst39@tripadvisor.com","phone":"196-599-4507","gender":"Female","department":"Research and Development","address":"07263 Buhler Crossing","hire_date":"6/23/2018","website":"http://altervista.org","notes":"aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse","status":4,"type":3,"salary":"$263.67"}, {"id":119,"employee_id":"348201330-6","first_name":"Adam","last_name":"Bavridge","email":"abavridge3a@typepad.com","phone":"867-811-3866","gender":"Male","department":"Legal","address":"00 Katie Crossing","hire_date":"7/24/2017","website":"http://friendfeed.com","notes":"maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras","status":2,"type":1,"salary":"$958.84"}, {"id":120,"employee_id":"738568347-9","first_name":"Hillard","last_name":"Khomich","email":"hkhomich3b@mtv.com","phone":"567-127-1119","gender":"Male","department":"Legal","address":"188 Steensland Point","hire_date":"4/23/2018","website":"http://bloomberg.com","notes":"et commodo vulputate justo in blandit ultrices enim lorem ipsum","status":4,"type":3,"salary":"$314.28"}, {"id":121,"employee_id":"025483363-2","first_name":"Fiona","last_name":"Bingell","email":"fbingell3c@360.cn","phone":"331-537-3139","gender":"Female","department":"Legal","address":"96 Talisman Park","hire_date":"5/20/2018","website":"http://canalblog.com","notes":"augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id","status":5,"type":3,"salary":"$2374.45"}, {"id":122,"employee_id":"960974875-9","first_name":"Sigmund","last_name":"Crampsy","email":"scrampsy3d@opera.com","phone":"152-487-2700","gender":"Male","department":"Human Resources","address":"7 Sutherland Street","hire_date":"12/9/2017","website":"https://washingtonpost.com","notes":"montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis","status":5,"type":2,"salary":"$332.45"}, {"id":123,"employee_id":"926752427-5","first_name":"Rasla","last_name":"Middell","email":"rmiddell3e@columbia.edu","phone":"868-976-3698","gender":"Female","department":"Services","address":"2 Gina Hill","hire_date":"11/23/2017","website":"http://timesonline.co.uk","notes":"pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut","status":2,"type":2,"salary":"$1018.57"}, {"id":124,"employee_id":"806699807-4","first_name":"Iorgo","last_name":"Rigmond","email":"irigmond3f@google.it","phone":"746-546-5211","gender":"Male","department":"Accounting","address":"842 Pearson Pass","hire_date":"9/7/2017","website":"http://digg.com","notes":"luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend","status":3,"type":1,"salary":"$2010.96"}, {"id":125,"employee_id":"155788341-6","first_name":"Tessa","last_name":"Rohan","email":"trohan3g@cbslocal.com","phone":"630-293-4519","gender":"Female","department":"Product Management","address":"1 Reinke Crossing","hire_date":"12/10/2017","website":"http://google.com","notes":"vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl","status":3,"type":3,"salary":"$1384.49"}, {"id":126,"employee_id":"682416426-7","first_name":"Solly","last_name":"Kellet","email":"skellet3h@google.fr","phone":"377-570-8318","gender":"Male","department":"Support","address":"468 Marquette Pass","hire_date":"11/24/2017","website":"https://china.com.cn","notes":"nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum","status":5,"type":1,"salary":"$956.94"}, {"id":127,"employee_id":"612351588-8","first_name":"Jarret","last_name":"O\'Halloran","email":"johalloran3i@indiatimes.com","phone":"154-312-7232","gender":"Male","department":"Support","address":"199 Orin Road","hire_date":"10/20/2017","website":"http://nytimes.com","notes":"elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium","status":5,"type":2,"salary":"$2463.22"}, {"id":128,"employee_id":"655867342-8","first_name":"Annnora","last_name":"Soles","email":"asoles3j@cafepress.com","phone":"158-251-8502","gender":"Female","department":"Human Resources","address":"59 Fordem Lane","hire_date":"12/15/2017","website":"http://loc.gov","notes":"odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet","status":5,"type":2,"salary":"$859.89"}, {"id":129,"employee_id":"373591806-9","first_name":"Flory","last_name":"Dabinett","email":"fdabinett3k@cmu.edu","phone":"809-718-7259","gender":"Female","department":"Human Resources","address":"5711 Maywood Parkway","hire_date":"10/28/2017","website":"http://apple.com","notes":"diam in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere","status":6,"type":3,"salary":"$2060.00"}, {"id":130,"employee_id":"959199127-4","first_name":"Brigham","last_name":"Winch","email":"bwinch3l@prweb.com","phone":"942-871-6319","gender":"Male","department":"Sales","address":"641 Kings Trail","hire_date":"3/17/2018","website":"http://topsy.com","notes":"non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis","status":4,"type":1,"salary":"$1022.05"}, {"id":131,"employee_id":"961903930-0","first_name":"Siusan","last_name":"Megahey","email":"smegahey3m@myspace.com","phone":"357-588-1304","gender":"Female","department":"Human Resources","address":"5 Ludington Road","hire_date":"6/22/2018","website":"http://shareasale.com","notes":"tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis","status":2,"type":3,"salary":"$1406.53"}, {"id":132,"employee_id":"900687666-6","first_name":"Ax","last_name":"Kores","email":"akores3n@tripadvisor.com","phone":"439-825-2783","gender":"Male","department":"Business Development","address":"63271 Pierstorff Crossing","hire_date":"5/14/2018","website":"http://hibu.com","notes":"tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum","status":2,"type":2,"salary":"$1135.64"}, {"id":133,"employee_id":"466975330-4","first_name":"Sander","last_name":"Chinnick","email":"schinnick3o@cbslocal.com","phone":"374-645-5030","gender":"Male","department":"Accounting","address":"37 Darwin Circle","hire_date":"2/7/2018","website":"http://histats.com","notes":"mi nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis","status":1,"type":3,"salary":"$381.91"}, {"id":134,"employee_id":"408416234-5","first_name":"Keir","last_name":"Coulling","email":"kcoulling3p@usa.gov","phone":"118-443-0247","gender":"Male","department":"Legal","address":"4376 Kings Center","hire_date":"10/3/2017","website":"http://omniture.com","notes":"lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id","status":5,"type":2,"salary":"$2378.33"}, {"id":135,"employee_id":"531987885-0","first_name":"Sid","last_name":"Tenaunt","email":"stenaunt3q@phpbb.com","phone":"295-386-3775","gender":"Male","department":"Sales","address":"222 Blaine Terrace","hire_date":"6/27/2018","website":"http://nationalgeographic.com","notes":"justo etiam pretium iaculis justo in hac habitasse platea dictumst","status":5,"type":1,"salary":"$927.08"}, {"id":136,"employee_id":"010876438-9","first_name":"Hunfredo","last_name":"Bastone","email":"hbastone3r@gmpg.org","phone":"509-962-4856","gender":"Male","department":"Services","address":"2 Cambridge Terrace","hire_date":"11/22/2017","website":"http://hc360.com","notes":"condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet","status":1,"type":2,"salary":"$1542.99"}, {"id":137,"employee_id":"673641606-X","first_name":"Virgil","last_name":"Mallabon","email":"vmallabon3s@mysql.com","phone":"412-268-6506","gender":"Male","department":"Business Development","address":"9 Havey Trail","hire_date":"3/26/2018","website":"https://fc2.com","notes":"non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis","status":1,"type":2,"salary":"$533.91"}, {"id":138,"employee_id":"674583602-5","first_name":"Raimund","last_name":"Garthshore","email":"rgarthshore3t@i2i.jp","phone":"690-495-5929","gender":"Male","department":"Support","address":"9 Toban Pass","hire_date":"7/4/2018","website":"https://icq.com","notes":"cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum","status":4,"type":3,"salary":"$1455.67"}, {"id":139,"employee_id":"669103553-4","first_name":"Velvet","last_name":"Chaffey","email":"vchaffey3u@mit.edu","phone":"751-664-7048","gender":"Female","department":"Human Resources","address":"24 Dexter Avenue","hire_date":"6/29/2018","website":"https://eepurl.com","notes":"sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed","status":6,"type":2,"salary":"$1608.14"}, {"id":140,"employee_id":"603845266-4","first_name":"Warren","last_name":"Course","email":"wcourse3v@who.int","phone":"714-691-0830","gender":"Male","department":"Research and Development","address":"1 Stoughton Trail","hire_date":"12/7/2017","website":"http://dedecms.com","notes":"ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent","status":2,"type":3,"salary":"$1183.79"}, {"id":141,"employee_id":"653433959-5","first_name":"Bobina","last_name":"Stroyan","email":"bstroyan3w@spotify.com","phone":"247-343-7540","gender":"Female","department":"Product Management","address":"127 Westerfield Way","hire_date":"8/20/2017","website":"https://unicef.org","notes":"pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo","status":2,"type":2,"salary":"$1289.19"}, {"id":142,"employee_id":"713131534-6","first_name":"Ulrich","last_name":"Monsey","email":"umonsey3x@google.co.jp","phone":"585-711-5479","gender":"Male","department":"Business Development","address":"638 Birchwood Pass","hire_date":"7/2/2018","website":"http://earthlink.net","notes":"at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet","status":3,"type":3,"salary":"$1350.77"}, {"id":143,"employee_id":"411238844-6","first_name":"Darrell","last_name":"Kelson","email":"dkelson3y@aol.com","phone":"755-795-2495","gender":"Male","department":"Support","address":"2 Eagan Center","hire_date":"11/1/2017","website":"http://cpanel.net","notes":"vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi","status":6,"type":3,"salary":"$543.19"}, {"id":144,"employee_id":"341336740-4","first_name":"Brook","last_name":"Temblett","email":"btemblett3z@unesco.org","phone":"985-734-8064","gender":"Male","department":"Marketing","address":"370 Garrison Street","hire_date":"1/16/2018","website":"https://devhub.com","notes":"rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed","status":3,"type":1,"salary":"$354.44"}, {"id":145,"employee_id":"387002802-5","first_name":"Portia","last_name":"Wybern","email":"pwybern40@example.com","phone":"239-713-0899","gender":"Female","department":"Services","address":"7 Tennessee Point","hire_date":"5/28/2018","website":"http://163.com","notes":"rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis","status":2,"type":1,"salary":"$2208.41"}, {"id":146,"employee_id":"595244490-3","first_name":"Debi","last_name":"Grady","email":"dgrady41@icio.us","phone":"959-988-3108","gender":"Female","department":"Business Development","address":"18955 Doe Crossing Place","hire_date":"3/10/2018","website":"http://cam.ac.uk","notes":"in felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat ut","status":4,"type":2,"salary":"$1167.37"}, {"id":147,"employee_id":"877613651-5","first_name":"Moise","last_name":"Garnson","email":"mgarnson42@dailymail.co.uk","phone":"402-162-8313","gender":"Male","department":"Training","address":"14 Grayhawk Way","hire_date":"2/3/2018","website":"http://t.co","notes":"nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras non velit nec nisi","status":5,"type":2,"salary":"$2274.95"}, {"id":148,"employee_id":"057397050-5","first_name":"Val","last_name":"Berthomier","email":"vberthomier43@mozilla.com","phone":"952-537-2739","gender":"Male","department":"Engineering","address":"0 Hanson Junction","hire_date":"2/23/2018","website":"http://smh.com.au","notes":"quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in","status":3,"type":1,"salary":"$2268.10"}, {"id":149,"employee_id":"594276612-6","first_name":"Brynn","last_name":"Cosgry","email":"bcosgry44@wikimedia.org","phone":"897-152-4927","gender":"Female","department":"Legal","address":"68483 Bowman Pass","hire_date":"6/11/2018","website":"http://unblog.fr","notes":"elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie","status":2,"type":1,"salary":"$304.63"}, {"id":150,"employee_id":"353613312-6","first_name":"Vitoria","last_name":"Crickmoor","email":"vcrickmoor45@taobao.com","phone":"607-928-5380","gender":"Female","department":"Human Resources","address":"77 Browning Avenue","hire_date":"11/20/2017","website":"http://e-recht24.de","notes":"enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis","status":5,"type":3,"salary":"$924.79"}, {"id":151,"employee_id":"291902769-7","first_name":"Carrissa","last_name":"Brownell","email":"cbrownell46@answers.com","phone":"128-824-6498","gender":"Female","department":"Services","address":"32386 Di Loreto Park","hire_date":"1/14/2018","website":"https://cbslocal.com","notes":"praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in","status":4,"type":2,"salary":"$2130.86"}, {"id":152,"employee_id":"842513206-1","first_name":"Dyann","last_name":"Pentecost","email":"dpentecost47@scientificamerican.com","phone":"558-509-9826","gender":"Female","department":"Human Resources","address":"9 Ridgeview Lane","hire_date":"3/25/2018","website":"https://irs.gov","notes":"vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non","status":6,"type":3,"salary":"$954.81"}, {"id":153,"employee_id":"878064554-2","first_name":"Waldo","last_name":"Bessey","email":"wbessey48@auda.org.au","phone":"986-291-1320","gender":"Male","department":"Business Development","address":"18 Roxbury Lane","hire_date":"4/2/2018","website":"https://biglobe.ne.jp","notes":"sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in","status":5,"type":3,"salary":"$2452.02"}, {"id":154,"employee_id":"845261853-0","first_name":"Jaymee","last_name":"Longstaffe","email":"jlongstaffe49@comsenz.com","phone":"986-707-1097","gender":"Female","department":"Human Resources","address":"4998 Dakota Drive","hire_date":"7/2/2018","website":"http://comcast.net","notes":"morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl","status":1,"type":1,"salary":"$2401.60"}, {"id":155,"employee_id":"133467041-2","first_name":"Gui","last_name":"Treuge","email":"gtreuge4a@eventbrite.com","phone":"446-433-2464","gender":"Female","department":"Accounting","address":"44 Meadow Ridge Parkway","hire_date":"2/19/2018","website":"http://amazon.com","notes":"vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget","status":3,"type":2,"salary":"$1260.96"}, {"id":156,"employee_id":"430655033-8","first_name":"Robinet","last_name":"Pilpovic","email":"rpilpovic4b@clickbank.net","phone":"719-201-5508","gender":"Female","department":"Business Development","address":"73 Talmadge Terrace","hire_date":"12/14/2017","website":"http://fda.gov","notes":"tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus","status":3,"type":3,"salary":"$996.17"}, {"id":157,"employee_id":"273670127-5","first_name":"Dominique","last_name":"Pinnion","email":"dpinnion4c@myspace.com","phone":"588-678-9990","gender":"Male","department":"Accounting","address":"0 Columbus Parkway","hire_date":"1/16/2018","website":"http://fastcompany.com","notes":"nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla","status":6,"type":1,"salary":"$2052.55"}, {"id":158,"employee_id":"514667447-7","first_name":"Nichole","last_name":"Sneesby","email":"nsneesby4d@google.com.hk","phone":"535-321-5685","gender":"Female","department":"Services","address":"84 Forest Run Trail","hire_date":"6/2/2018","website":"http://ibm.com","notes":"mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean","status":6,"type":3,"salary":"$517.69"}, {"id":159,"employee_id":"959381289-X","first_name":"Evvie","last_name":"Jurek","email":"ejurek4e@dailymail.co.uk","phone":"933-940-5953","gender":"Female","department":"Legal","address":"9807 Hagan Road","hire_date":"1/30/2018","website":"http://jigsy.com","notes":"dui proin leo odio porttitor id consequat in consequat ut","status":6,"type":3,"salary":"$475.90"}, {"id":160,"employee_id":"997401253-8","first_name":"Susana","last_name":"Tessier","email":"stessier4f@ox.ac.uk","phone":"723-896-2166","gender":"Female","department":"Sales","address":"9 Chive Place","hire_date":"4/3/2018","website":"https://google.com.br","notes":"orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum","status":3,"type":3,"salary":"$579.03"}, {"id":161,"employee_id":"252276663-5","first_name":"Kellyann","last_name":"Mangham","email":"kmangham4g@mtv.com","phone":"688-720-2536","gender":"Female","department":"Marketing","address":"70 Muir Court","hire_date":"7/31/2017","website":"https://baidu.com","notes":"non quam nec dui luctus rutrum nulla tellus in sagittis","status":6,"type":1,"salary":"$1833.96"}, {"id":162,"employee_id":"684537562-3","first_name":"Reta","last_name":"Downham","email":"rdownham4h@columbia.edu","phone":"805-542-6622","gender":"Female","department":"Training","address":"3 Sage Hill","hire_date":"10/7/2017","website":"https://cloudflare.com","notes":"erat id mauris vulputate elementum nullam varius nulla facilisi cras non velit nec nisi","status":2,"type":1,"salary":"$254.59"}, {"id":163,"employee_id":"755134881-6","first_name":"Abbe","last_name":"Didsbury","email":"adidsbury4i@usda.gov","phone":"911-906-3632","gender":"Female","department":"Support","address":"3527 Scofield Drive","hire_date":"3/27/2018","website":"http://webs.com","notes":"maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie","status":1,"type":2,"salary":"$1163.39"}, {"id":164,"employee_id":"983150152-7","first_name":"Bobbe","last_name":"Le Frank","email":"blefrank4j@youtube.com","phone":"777-324-7190","gender":"Female","department":"Accounting","address":"56607 Oneill Hill","hire_date":"8/18/2017","website":"http://salon.com","notes":"erat tortor sollicitudin mi sit amet lobortis sapien sapien non mi integer ac neque duis bibendum","status":1,"type":2,"salary":"$2173.86"}, {"id":165,"employee_id":"204907720-3","first_name":"Cal","last_name":"Scothorn","email":"cscothorn4k@miibeian.gov.cn","phone":"194-212-1904","gender":"Male","department":"Training","address":"468 Grim Street","hire_date":"5/19/2018","website":"https://ftc.gov","notes":"vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id","status":4,"type":2,"salary":"$2034.27"}, {"id":166,"employee_id":"697540250-7","first_name":"Lolly","last_name":"Treneman","email":"ltreneman4l@paypal.com","phone":"632-859-5314","gender":"Female","department":"Marketing","address":"72009 Riverside Lane","hire_date":"5/29/2018","website":"https://va.gov","notes":"in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt","status":5,"type":3,"salary":"$753.35"}, {"id":167,"employee_id":"115690768-3","first_name":"Cecilla","last_name":"Lapenna","email":"clapenna4m@123-reg.co.uk","phone":"628-961-1692","gender":"Female","department":"Human Resources","address":"9280 Kings Junction","hire_date":"9/29/2017","website":"https://desdev.cn","notes":"accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor","status":1,"type":1,"salary":"$2311.77"}, {"id":168,"employee_id":"571951854-1","first_name":"Dulcia","last_name":"Salthouse","email":"dsalthouse4n@woothemes.com","phone":"908-491-4688","gender":"Female","department":"Accounting","address":"46165 Lukken Plaza","hire_date":"11/12/2017","website":"https://hostgator.com","notes":"vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non","status":6,"type":1,"salary":"$822.82"}, {"id":169,"employee_id":"977337629-X","first_name":"Terrijo","last_name":"Creegan","email":"tcreegan4o@sogou.com","phone":"482-913-3726","gender":"Female","department":"Product Management","address":"4717 Hayes Hill","hire_date":"7/26/2017","website":"https://google.fr","notes":"nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et","status":6,"type":1,"salary":"$484.63"}, {"id":170,"employee_id":"027232140-0","first_name":"Edsel","last_name":"Coward","email":"ecoward4p@hatena.ne.jp","phone":"612-293-5449","gender":"Male","department":"Product Management","address":"3 Westerfield Plaza","hire_date":"8/8/2017","website":"http://prweb.com","notes":"suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus","status":1,"type":3,"salary":"$592.46"}, {"id":171,"employee_id":"263088468-6","first_name":"Ansel","last_name":"Monteith","email":"amonteith4q@deliciousdays.com","phone":"570-559-5834","gender":"Male","department":"Marketing","address":"3596 Elka Alley","hire_date":"12/15/2017","website":"http://paypal.com","notes":"luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a","status":3,"type":3,"salary":"$1449.66"}, {"id":172,"employee_id":"530835369-7","first_name":"Adler","last_name":"Medford","email":"amedford4r@ucsd.edu","phone":"595-468-9382","gender":"Male","department":"Training","address":"87 Namekagon Road","hire_date":"3/13/2018","website":"http://princeton.edu","notes":"sit amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla","status":2,"type":1,"salary":"$399.65"}, {"id":173,"employee_id":"607099253-9","first_name":"Kira","last_name":"Berford","email":"kberford4s@lulu.com","phone":"572-891-2967","gender":"Female","department":"Accounting","address":"414 Ruskin Terrace","hire_date":"1/16/2018","website":"http://instagram.com","notes":"et tempus semper est quam pharetra magna ac consequat metus sapien","status":1,"type":3,"salary":"$1928.81"}, {"id":174,"employee_id":"798630883-4","first_name":"Vivyanne","last_name":"Furzey","email":"vfurzey4t@ca.gov","phone":"278-121-5340","gender":"Female","department":"Human Resources","address":"94 Esch Park","hire_date":"5/17/2018","website":"https://amazon.de","notes":"faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices","status":6,"type":2,"salary":"$2375.11"}, {"id":175,"employee_id":"681999959-3","first_name":"Nikoletta","last_name":"Robelow","email":"nrobelow4u@smugmug.com","phone":"360-351-4307","gender":"Female","department":"Engineering","address":"5 Starling Trail","hire_date":"8/20/2017","website":"https://barnesandnoble.com","notes":"odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi","status":4,"type":2,"salary":"$250.80"}, {"id":176,"employee_id":"011864426-2","first_name":"Mathew","last_name":"Battyll","email":"mbattyll4v@over-blog.com","phone":"321-386-3766","gender":"Male","department":"Research and Development","address":"65072 Carey Crossing","hire_date":"5/15/2018","website":"http://ibm.com","notes":"vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat","status":2,"type":2,"salary":"$636.70"}, {"id":177,"employee_id":"570137655-9","first_name":"Forrest","last_name":"Cowderoy","email":"fcowderoy4w@ask.com","phone":"618-278-7932","gender":"Male","department":"Sales","address":"351 Buell Hill","hire_date":"12/26/2017","website":"https://123-reg.co.uk","notes":"magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien non mi","status":5,"type":3,"salary":"$699.94"}, {"id":178,"employee_id":"418945567-9","first_name":"Ax","last_name":"Brum","email":"abrum4x@ox.ac.uk","phone":"850-631-2124","gender":"Male","department":"Product Management","address":"261 Evergreen Parkway","hire_date":"8/31/2017","website":"http://narod.ru","notes":"non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in","status":1,"type":2,"salary":"$257.02"}, {"id":179,"employee_id":"848896179-0","first_name":"Travers","last_name":"Francecione","email":"tfrancecione4y@yelp.com","phone":"812-741-5424","gender":"Male","department":"Business Development","address":"425 Redwing Street","hire_date":"10/18/2017","website":"https://examiner.com","notes":"nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse","status":6,"type":3,"salary":"$2117.44"}, {"id":180,"employee_id":"819724851-6","first_name":"Eamon","last_name":"McGarrie","email":"emcgarrie4z@upenn.edu","phone":"778-137-8339","gender":"Male","department":"Accounting","address":"1045 Crest Line Way","hire_date":"8/18/2017","website":"http://whitehouse.gov","notes":"justo eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea","status":2,"type":1,"salary":"$493.98"}, {"id":181,"employee_id":"194192430-1","first_name":"Jenda","last_name":"Butts","email":"jbutts50@privacy.gov.au","phone":"396-649-0972","gender":"Female","department":"Research and Development","address":"25264 Sugar Alley","hire_date":"10/16/2017","website":"https://adobe.com","notes":"pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi","status":1,"type":2,"salary":"$957.15"}, {"id":182,"employee_id":"750517497-5","first_name":"Batsheva","last_name":"O\'Hoey","email":"bohoey51@linkedin.com","phone":"545-981-9250","gender":"Female","department":"Services","address":"83 Swallow Circle","hire_date":"10/20/2017","website":"https://army.mil","notes":"duis at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id","status":1,"type":1,"salary":"$1379.67"}, {"id":183,"employee_id":"222948193-2","first_name":"Garrick","last_name":"Coale","email":"gcoale52@blogspot.com","phone":"891-244-1372","gender":"Male","department":"Research and Development","address":"8 Lien Circle","hire_date":"10/14/2017","website":"https://qq.com","notes":"ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras in","status":4,"type":2,"salary":"$1818.60"}, {"id":184,"employee_id":"006801712-X","first_name":"Cody","last_name":"Myhan","email":"cmyhan53@hc360.com","phone":"271-326-1892","gender":"Male","department":"Sales","address":"1993 Forest Run Pass","hire_date":"3/23/2018","website":"http://vinaora.com","notes":"orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi","status":6,"type":3,"salary":"$1057.20"}, {"id":185,"employee_id":"093515326-8","first_name":"Osbert","last_name":"Musla","email":"omusla54@eventbrite.com","phone":"480-152-0632","gender":"Male","department":"Product Management","address":"032 Annamark Terrace","hire_date":"3/26/2018","website":"http://bbc.co.uk","notes":"neque libero convallis eget eleifend luctus ultricies eu nibh quisque","status":4,"type":2,"salary":"$1241.07"}, {"id":186,"employee_id":"532269185-5","first_name":"Ranice","last_name":"Lebond","email":"rlebond55@google.co.jp","phone":"157-709-4371","gender":"Female","department":"Legal","address":"2 Randy Junction","hire_date":"7/10/2018","website":"https://diigo.com","notes":"ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit","status":3,"type":1,"salary":"$1139.94"}, {"id":187,"employee_id":"820600310-X","first_name":"Guthrie","last_name":"Bandey","email":"gbandey56@studiopress.com","phone":"543-161-2237","gender":"Male","department":"Research and Development","address":"0 Pine View Circle","hire_date":"6/28/2018","website":"https://auda.org.au","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae","status":5,"type":2,"salary":"$2236.51"}, {"id":188,"employee_id":"665284501-6","first_name":"Launce","last_name":"Geldard","email":"lgeldard57@yandex.ru","phone":"506-333-2822","gender":"Male","department":"Accounting","address":"17 Haas Center","hire_date":"12/9/2017","website":"https://newsvine.com","notes":"ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam congue","status":4,"type":1,"salary":"$1815.94"}, {"id":189,"employee_id":"782377092-X","first_name":"Connie","last_name":"Toope","email":"ctoope58@mediafire.com","phone":"651-464-3542","gender":"Female","department":"Training","address":"3 Russell Center","hire_date":"12/14/2017","website":"https://unblog.fr","notes":"eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt","status":5,"type":2,"salary":"$1736.72"}, {"id":190,"employee_id":"251188287-6","first_name":"Lawton","last_name":"Prigmore","email":"lprigmore59@cnet.com","phone":"738-575-3587","gender":"Male","department":"Legal","address":"050 Eastlawn Avenue","hire_date":"9/4/2017","website":"http://uol.com.br","notes":"adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu","status":1,"type":1,"salary":"$1670.77"}, {"id":191,"employee_id":"219193763-2","first_name":"Barbara","last_name":"Aleksankin","email":"baleksankin5a@tiny.cc","phone":"224-597-1015","gender":"Female","department":"Engineering","address":"1 Gerald Crossing","hire_date":"6/14/2018","website":"http://soundcloud.com","notes":"imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere","status":3,"type":1,"salary":"$2209.41"}, {"id":192,"employee_id":"643523768-9","first_name":"Bab","last_name":"Vallack","email":"bvallack5b@slashdot.org","phone":"900-188-1943","gender":"Female","department":"Marketing","address":"43013 Rutledge Avenue","hire_date":"5/14/2018","website":"http://addtoany.com","notes":"sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget","status":3,"type":1,"salary":"$975.83"}, {"id":193,"employee_id":"524396310-0","first_name":"Billi","last_name":"Palia","email":"bpalia5c@google.de","phone":"328-700-9101","gender":"Female","department":"Marketing","address":"66 Pearson Court","hire_date":"3/5/2018","website":"http://trellian.com","notes":"pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est","status":3,"type":2,"salary":"$1311.25"}, {"id":194,"employee_id":"666722147-1","first_name":"Gallard","last_name":"Gough","email":"ggough5d@comcast.net","phone":"943-155-0838","gender":"Male","department":"Marketing","address":"742 Eliot Street","hire_date":"11/2/2017","website":"http://latimes.com","notes":"consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo","status":6,"type":3,"salary":"$1869.81"}, {"id":195,"employee_id":"433807272-5","first_name":"Matty","last_name":"Lante","email":"mlante5e@netscape.com","phone":"423-832-1948","gender":"Male","department":"Product Management","address":"33278 Northport Center","hire_date":"4/14/2018","website":"https://cornell.edu","notes":"quisque ut erat curabitur gravida nisi at nibh in hac habitasse","status":6,"type":3,"salary":"$1511.57"}, {"id":196,"employee_id":"082774740-3","first_name":"Niki","last_name":"Surgen","email":"nsurgen5f@unc.edu","phone":"235-964-4962","gender":"Female","department":"Sales","address":"477 Maryland Park","hire_date":"6/3/2018","website":"https://stumbleupon.com","notes":"posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel","status":6,"type":3,"salary":"$1742.42"}, {"id":197,"employee_id":"496412396-0","first_name":"Erek","last_name":"Devereu","email":"edevereu5g@nydailynews.com","phone":"988-854-5635","gender":"Male","department":"Marketing","address":"4222 Gateway Junction","hire_date":"12/2/2017","website":"http://purevolume.com","notes":"posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin","status":3,"type":1,"salary":"$2213.58"}, {"id":198,"employee_id":"815701353-4","first_name":"Ange","last_name":"Bassill","email":"abassill5h@odnoklassniki.ru","phone":"573-589-2234","gender":"Female","department":"Business Development","address":"7450 Maywood Crossing","hire_date":"12/18/2017","website":"http://time.com","notes":"a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis","status":2,"type":3,"salary":"$2381.50"}, {"id":199,"employee_id":"079850265-7","first_name":"Robena","last_name":"Jiggins","email":"rjiggins5i@comcast.net","phone":"202-269-3768","gender":"Female","department":"Accounting","address":"81 Golf View Circle","hire_date":"7/28/2017","website":"http://constantcontact.com","notes":"lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et","status":6,"type":1,"salary":"$2227.40"}, {"id":200,"employee_id":"710192734-3","first_name":"Lari","last_name":"Sweetenham","email":"lsweetenham5j@amazon.co.jp","phone":"838-858-2584","gender":"Female","department":"Business Development","address":"1021 Mesta Hill","hire_date":"8/11/2017","website":"https://typepad.com","notes":"sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in","status":1,"type":1,"salary":"$1540.09"}, {"id":201,"employee_id":"651581571-9","first_name":"Gaelan","last_name":"Schuh","email":"gschuh5k@1688.com","phone":"745-173-2305","gender":"Male","department":"Support","address":"1 Pennsylvania Parkway","hire_date":"7/10/2018","website":"http://vk.com","notes":"interdum in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus","status":6,"type":2,"salary":"$621.44"}, {"id":202,"employee_id":"396937197-X","first_name":"Valentino","last_name":"Vela","email":"vvela5l@t-online.de","phone":"549-694-5062","gender":"Male","department":"Support","address":"132 Mosinee Court","hire_date":"10/13/2017","website":"http://theglobeandmail.com","notes":"ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae","status":6,"type":2,"salary":"$1570.87"}, {"id":203,"employee_id":"455201347-5","first_name":"Paxton","last_name":"Westwood","email":"pwestwood5m@mashable.com","phone":"404-552-2652","gender":"Male","department":"Research and Development","address":"13644 Pepper Wood Road","hire_date":"4/14/2018","website":"http://amazon.co.uk","notes":"non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque","status":6,"type":1,"salary":"$307.42"}, {"id":204,"employee_id":"963542216-4","first_name":"Gianina","last_name":"Dragon","email":"gdragon5n@cmu.edu","phone":"478-617-0604","gender":"Female","department":"Legal","address":"30 Golf Course Court","hire_date":"10/20/2017","website":"http://taobao.com","notes":"amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum","status":1,"type":2,"salary":"$2042.72"}, {"id":205,"employee_id":"005186075-9","first_name":"Patricio","last_name":"Jentges","email":"pjentges5o@cyberchimps.com","phone":"632-971-4495","gender":"Male","department":"Sales","address":"68 Clemons Alley","hire_date":"5/14/2018","website":"http://squidoo.com","notes":"ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam","status":1,"type":3,"salary":"$1983.72"}, {"id":206,"employee_id":"596930988-5","first_name":"Bogey","last_name":"Heisler","email":"bheisler5p@mashable.com","phone":"731-748-1811","gender":"Male","department":"Business Development","address":"58943 Meadow Valley Alley","hire_date":"5/11/2018","website":"http://economist.com","notes":"ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem","status":1,"type":1,"salary":"$1040.61"}, {"id":207,"employee_id":"499909156-9","first_name":"Spenser","last_name":"Pyle","email":"spyle5q@plala.or.jp","phone":"566-843-7913","gender":"Male","department":"Support","address":"900 Fordem Plaza","hire_date":"2/10/2018","website":"https://tinyurl.com","notes":"luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci","status":3,"type":3,"salary":"$2133.09"}, {"id":208,"employee_id":"401266959-1","first_name":"Rayna","last_name":"Crepin","email":"rcrepin5r@webeden.co.uk","phone":"592-304-8987","gender":"Female","department":"Training","address":"469 Dovetail Plaza","hire_date":"7/3/2018","website":"https://ezinearticles.com","notes":"rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus","status":5,"type":3,"salary":"$1671.45"}, {"id":209,"employee_id":"166602922-X","first_name":"Nathalie","last_name":"Gall","email":"ngall5s@is.gd","phone":"801-654-6290","gender":"Female","department":"Human Resources","address":"4719 Stuart Plaza","hire_date":"3/22/2018","website":"http://blogspot.com","notes":"sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et","status":6,"type":1,"salary":"$1524.49"}, {"id":210,"employee_id":"284177230-6","first_name":"Ransell","last_name":"Ammer","email":"rammer5t@cnet.com","phone":"610-711-4680","gender":"Male","department":"Business Development","address":"48 Thierer Center","hire_date":"2/3/2018","website":"https://e-recht24.de","notes":"ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis","status":1,"type":2,"salary":"$892.45"}, {"id":211,"employee_id":"741216645-X","first_name":"Chrissie","last_name":"Devereu","email":"cdevereu5u@chron.com","phone":"763-146-3697","gender":"Male","department":"Research and Development","address":"90 Hansons Point","hire_date":"5/7/2018","website":"https://ebay.co.uk","notes":"sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula","status":2,"type":3,"salary":"$391.22"}, {"id":212,"employee_id":"837406761-6","first_name":"Odell","last_name":"Sherwood","email":"osherwood5v@umich.edu","phone":"959-550-4031","gender":"Male","department":"Sales","address":"04 Talmadge Lane","hire_date":"2/27/2018","website":"https://slideshare.net","notes":"in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum","status":4,"type":3,"salary":"$857.07"}, {"id":213,"employee_id":"411808497-X","first_name":"Baudoin","last_name":"Cesco","email":"bcesco5w@linkedin.com","phone":"416-193-4592","gender":"Male","department":"Legal","address":"1510 Michigan Point","hire_date":"8/1/2017","website":"http://simplemachines.org","notes":"vestibulum quam sapien varius ut blandit non interdum in ante vestibulum","status":1,"type":2,"salary":"$1358.70"}, {"id":214,"employee_id":"261229472-4","first_name":"Carree","last_name":"Edlington","email":"cedlington5x@ebay.com","phone":"194-150-1659","gender":"Female","department":"Research and Development","address":"30 Grayhawk Park","hire_date":"10/14/2017","website":"http://fc2.com","notes":"rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui proin leo","status":4,"type":3,"salary":"$1284.88"}, {"id":215,"employee_id":"929963538-2","first_name":"Mordecai","last_name":"Hatherley","email":"mhatherley5y@amazon.de","phone":"858-490-5169","gender":"Male","department":"Research and Development","address":"13854 Independence Court","hire_date":"8/24/2017","website":"https://sciencedaily.com","notes":"convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in","status":4,"type":2,"salary":"$2417.62"}, {"id":216,"employee_id":"037752030-6","first_name":"Melosa","last_name":"Overstone","email":"moverstone5z@canalblog.com","phone":"318-948-9174","gender":"Female","department":"Product Management","address":"61986 Emmet Avenue","hire_date":"4/19/2018","website":"http://blogspot.com","notes":"fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet","status":1,"type":2,"salary":"$2259.01"}, {"id":217,"employee_id":"532713055-X","first_name":"Shelden","last_name":"Dinnis","email":"sdinnis60@tinypic.com","phone":"333-186-8762","gender":"Male","department":"Accounting","address":"7255 Utah Way","hire_date":"3/14/2018","website":"https://4shared.com","notes":"libero rutrum ac lobortis vel dapibus at diam nam tristique tortor eu pede","status":3,"type":3,"salary":"$1840.38"}, {"id":218,"employee_id":"967102811-X","first_name":"Loydie","last_name":"Pavese","email":"lpavese61@a8.net","phone":"434-133-4789","gender":"Male","department":"Human Resources","address":"02602 Lien Point","hire_date":"1/4/2018","website":"https://jalbum.net","notes":"donec dapibus duis at velit eu est congue elementum in","status":6,"type":3,"salary":"$434.26"}, {"id":219,"employee_id":"460645399-0","first_name":"Alasteir","last_name":"Swetland","email":"aswetland62@amazon.co.jp","phone":"361-389-4622","gender":"Male","department":"Human Resources","address":"65 Basil Parkway","hire_date":"6/16/2018","website":"https://wikimedia.org","notes":"tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat","status":5,"type":2,"salary":"$1861.28"}, {"id":220,"employee_id":"099453213-X","first_name":"Gabbie","last_name":"McGroarty","email":"gmcgroarty63@ox.ac.uk","phone":"322-282-2538","gender":"Male","department":"Training","address":"686 Hudson Court","hire_date":"7/20/2017","website":"https://telegraph.co.uk","notes":"tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim","status":2,"type":3,"salary":"$1303.59"}, {"id":221,"employee_id":"697803051-1","first_name":"Maryanna","last_name":"McCrossan","email":"mmccrossan64@wsj.com","phone":"830-955-6927","gender":"Female","department":"Services","address":"3 Monument Lane","hire_date":"2/16/2018","website":"https://usda.gov","notes":"suscipit a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare","status":3,"type":2,"salary":"$1091.51"}, {"id":222,"employee_id":"808718144-1","first_name":"Doreen","last_name":"Hutt","email":"dhutt65@jugem.jp","phone":"374-621-0333","gender":"Female","department":"Product Management","address":"198 Sherman Alley","hire_date":"1/16/2018","website":"http://goo.gl","notes":"platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia","status":4,"type":1,"salary":"$1640.43"}, {"id":223,"employee_id":"749600110-4","first_name":"Valle","last_name":"Toulamain","email":"vtoulamain66@mail.ru","phone":"179-127-8460","gender":"Male","department":"Human Resources","address":"305 North Plaza","hire_date":"10/25/2017","website":"http://blogtalkradio.com","notes":"erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi","status":5,"type":1,"salary":"$2476.02"}, {"id":224,"employee_id":"897432026-6","first_name":"Tymon","last_name":"Melody","email":"tmelody67@discovery.com","phone":"864-587-4461","gender":"Male","department":"Support","address":"9 Pine View Avenue","hire_date":"6/27/2018","website":"http://harvard.edu","notes":"nec sem duis aliquam convallis nunc proin at turpis a pede posuere nonummy integer","status":2,"type":1,"salary":"$722.08"}, {"id":225,"employee_id":"091778125-2","first_name":"Kent","last_name":"Erridge","email":"kerridge68@usnews.com","phone":"608-307-1349","gender":"Male","department":"Marketing","address":"939 Cardinal Street","hire_date":"12/19/2017","website":"http://prlog.org","notes":"curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla","status":6,"type":2,"salary":"$333.09"}, {"id":226,"employee_id":"344788325-1","first_name":"Pincus","last_name":"Bartolomeu","email":"pbartolomeu69@ft.com","phone":"880-734-9013","gender":"Male","department":"Legal","address":"99645 Darwin Terrace","hire_date":"10/7/2017","website":"https://shutterfly.com","notes":"cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec","status":5,"type":2,"salary":"$1874.99"}, {"id":227,"employee_id":"278130480-8","first_name":"Leonardo","last_name":"Gilluley","email":"lgilluley6a@csmonitor.com","phone":"849-982-1955","gender":"Male","department":"Engineering","address":"27 Independence Lane","hire_date":"12/24/2017","website":"https://sitemeter.com","notes":"neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac","status":1,"type":1,"salary":"$805.37"}, {"id":228,"employee_id":"457121251-8","first_name":"Kordula","last_name":"Ebbitt","email":"kebbitt6b@cdc.gov","phone":"683-473-0530","gender":"Female","department":"Support","address":"615 Summerview Street","hire_date":"7/15/2018","website":"http://independent.co.uk","notes":"est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo","status":6,"type":3,"salary":"$1696.80"}, {"id":229,"employee_id":"235196309-1","first_name":"Odey","last_name":"Antonelli","email":"oantonelli6c@reddit.com","phone":"454-671-7595","gender":"Male","department":"Engineering","address":"01219 Ronald Regan Parkway","hire_date":"6/11/2018","website":"http://hud.gov","notes":"ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien","status":4,"type":3,"salary":"$1566.40"}, {"id":230,"employee_id":"741630871-2","first_name":"Terrance","last_name":"Southers","email":"tsouthers6d@aol.com","phone":"892-170-8181","gender":"Male","department":"Research and Development","address":"08453 Jay Junction","hire_date":"9/21/2017","website":"https://cbslocal.com","notes":"odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet","status":2,"type":2,"salary":"$491.31"}, {"id":231,"employee_id":"075615199-6","first_name":"Dina","last_name":"Hazell","email":"dhazell6e@sogou.com","phone":"457-105-6727","gender":"Female","department":"Services","address":"7666 Dovetail Crossing","hire_date":"12/6/2017","website":"http://google.com.br","notes":"vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget","status":3,"type":1,"salary":"$1164.56"}, {"id":232,"employee_id":"331046072-X","first_name":"Blake","last_name":"Dove","email":"bdove6f@sphinn.com","phone":"829-670-5501","gender":"Male","department":"Accounting","address":"3 Meadow Ridge Way","hire_date":"1/19/2018","website":"http://nymag.com","notes":"quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a","status":4,"type":2,"salary":"$395.04"}, {"id":233,"employee_id":"211173290-7","first_name":"Chanda","last_name":"Ramsby","email":"cramsby6g@mail.ru","phone":"708-724-7807","gender":"Female","department":"Marketing","address":"21160 Superior Drive","hire_date":"8/24/2017","website":"https://rakuten.co.jp","notes":"habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam varius","status":6,"type":3,"salary":"$1579.73"}, {"id":234,"employee_id":"581993169-6","first_name":"Kristoforo","last_name":"Palin","email":"kpalin6h@google.fr","phone":"650-336-9896","gender":"Male","department":"Support","address":"7 Mandrake Drive","hire_date":"6/21/2018","website":"http://amazonaws.com","notes":"vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus etiam vel augue","status":5,"type":2,"salary":"$2428.10"}, {"id":235,"employee_id":"508052012-4","first_name":"Dorene","last_name":"Sedman","email":"dsedman6i@squidoo.com","phone":"816-321-8528","gender":"Female","department":"Accounting","address":"34650 Packers Place","hire_date":"7/21/2017","website":"http://fastcompany.com","notes":"suspendisse ornare consequat lectus in est risus auctor sed tristique in","status":2,"type":3,"salary":"$428.63"}, {"id":236,"employee_id":"086709374-9","first_name":"Britney","last_name":"Lefwich","email":"blefwich6j@cyberchimps.com","phone":"924-496-7148","gender":"Female","department":"Human Resources","address":"58387 Waubesa Way","hire_date":"8/15/2017","website":"http://bing.com","notes":"neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel","status":1,"type":1,"salary":"$832.43"}, {"id":237,"employee_id":"826923163-0","first_name":"Dulcea","last_name":"Butchart","email":"dbutchart6k@gnu.org","phone":"644-248-4778","gender":"Female","department":"Product Management","address":"29 Atwood Avenue","hire_date":"2/20/2018","website":"http://boston.com","notes":"nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat","status":2,"type":2,"salary":"$1885.23"}, {"id":238,"employee_id":"161696725-0","first_name":"Rance","last_name":"Moorey","email":"rmoorey6l@wiley.com","phone":"800-827-1401","gender":"Male","department":"Accounting","address":"957 Oak Pass","hire_date":"2/26/2018","website":"https://usda.gov","notes":"viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis","status":1,"type":1,"salary":"$822.53"}, {"id":239,"employee_id":"902700180-4","first_name":"Dody","last_name":"Bissiker","email":"dbissiker6m@ezinearticles.com","phone":"557-955-0252","gender":"Female","department":"Product Management","address":"41 Main Court","hire_date":"11/23/2017","website":"http://theatlantic.com","notes":"sit amet sem fusce consequat nulla nisl nunc nisl duis","status":5,"type":3,"salary":"$1749.03"}, {"id":240,"employee_id":"599787707-8","first_name":"Borden","last_name":"Pagram","email":"bpagram6n@bluehost.com","phone":"612-878-1566","gender":"Male","department":"Support","address":"66497 Longview Court","hire_date":"10/2/2017","website":"https://cocolog-nifty.com","notes":"vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in","status":1,"type":1,"salary":"$1261.51"}, {"id":241,"employee_id":"448140376-4","first_name":"Gill","last_name":"Scotson","email":"gscotson6o@wisc.edu","phone":"111-522-6972","gender":"Female","department":"Engineering","address":"3 Katie Place","hire_date":"6/2/2018","website":"https://jimdo.com","notes":"velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus","status":1,"type":2,"salary":"$2332.46"}, {"id":242,"employee_id":"615821017-X","first_name":"Colan","last_name":"Beardsdale","email":"cbeardsdale6p@shutterfly.com","phone":"392-912-6568","gender":"Male","department":"Legal","address":"2 Maple Wood Trail","hire_date":"5/29/2018","website":"http://networksolutions.com","notes":"arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse","status":4,"type":2,"salary":"$1949.49"}, {"id":243,"employee_id":"154724310-4","first_name":"Shane","last_name":"Worgen","email":"sworgen6q@prweb.com","phone":"827-972-7207","gender":"Male","department":"Training","address":"4 Meadow Ridge Center","hire_date":"4/14/2018","website":"http://wordpress.com","notes":"posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus","status":2,"type":2,"salary":"$1464.06"}, {"id":244,"employee_id":"026255598-0","first_name":"Kennie","last_name":"Verrier","email":"kverrier6r@reddit.com","phone":"857-439-9419","gender":"Male","department":"Training","address":"1009 Burrows Hill","hire_date":"6/18/2018","website":"https://homestead.com","notes":"a feugiat et eros vestibulum ac est lacinia nisi venenatis","status":4,"type":1,"salary":"$710.71"}, {"id":245,"employee_id":"617423589-0","first_name":"Nora","last_name":"Tiuit","email":"ntiuit6s@opensource.org","phone":"516-119-9392","gender":"Female","department":"Product Management","address":"611 Amoth Trail","hire_date":"2/12/2018","website":"http://redcross.org","notes":"nisl nunc rhoncus dui vel sem sed sagittis nam congue risus","status":6,"type":1,"salary":"$341.28"}, {"id":246,"employee_id":"376249049-X","first_name":"Corbet","last_name":"Glassford","email":"cglassford6t@ycombinator.com","phone":"907-225-7304","gender":"Male","department":"Support","address":"88954 Scott Crossing","hire_date":"1/16/2018","website":"http://simplemachines.org","notes":"nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia","status":6,"type":1,"salary":"$900.01"}, {"id":247,"employee_id":"361459129-8","first_name":"Michele","last_name":"Brand","email":"mbrand6u@eventbrite.com","phone":"720-375-5170","gender":"Female","department":"Business Development","address":"83 Caliangt Way","hire_date":"6/21/2018","website":"http://fema.gov","notes":"ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras in","status":2,"type":3,"salary":"$1936.51"}, {"id":248,"employee_id":"550893256-9","first_name":"Nev","last_name":"Poskitt","email":"nposkitt6v@amazon.co.uk","phone":"190-312-7807","gender":"Male","department":"Accounting","address":"51 Bartillon Hill","hire_date":"4/9/2018","website":"http://sina.com.cn","notes":"sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci","status":6,"type":3,"salary":"$1977.42"}, {"id":249,"employee_id":"266123172-2","first_name":"Charmian","last_name":"Dionisio","email":"cdionisio6w@sbwire.com","phone":"508-658-4985","gender":"Female","department":"Research and Development","address":"69125 Hoepker Avenue","hire_date":"11/26/2017","website":"http://nasa.gov","notes":"sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque ultrices","status":4,"type":2,"salary":"$1139.03"}, {"id":250,"employee_id":"901898152-4","first_name":"Waly","last_name":"Braddon","email":"wbraddon6x@etsy.com","phone":"678-859-9650","gender":"Female","department":"Product Management","address":"088 Pennsylvania Parkway","hire_date":"1/1/2018","website":"https://jiathis.com","notes":"enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac","status":5,"type":3,"salary":"$807.26"}, {"id":251,"employee_id":"852226432-5","first_name":"Stanford","last_name":"Stopp","email":"sstopp6y@addthis.com","phone":"637-731-1621","gender":"Male","department":"Human Resources","address":"3338 Fieldstone Terrace","hire_date":"4/5/2018","website":"http://plala.or.jp","notes":"aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in","status":4,"type":1,"salary":"$615.82"}, {"id":252,"employee_id":"164816950-3","first_name":"Hieronymus","last_name":"Klimczak","email":"hklimczak6z@marketwatch.com","phone":"553-166-4570","gender":"Male","department":"Support","address":"52161 Thierer Pass","hire_date":"7/5/2018","website":"http://webeden.co.uk","notes":"vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient","status":5,"type":3,"salary":"$899.14"}, {"id":253,"employee_id":"618243263-2","first_name":"Nicolais","last_name":"Rodgier","email":"nrodgier70@123-reg.co.uk","phone":"479-784-1857","gender":"Male","department":"Accounting","address":"603 Amoth Place","hire_date":"1/14/2018","website":"http://columbia.edu","notes":"fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in","status":4,"type":1,"salary":"$1382.76"}, {"id":254,"employee_id":"602289169-8","first_name":"Tiphany","last_name":"Hammant","email":"thammant71@usgs.gov","phone":"123-624-2612","gender":"Female","department":"Human Resources","address":"0908 Stephen Plaza","hire_date":"2/26/2018","website":"https://ucoz.ru","notes":"eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium","status":5,"type":3,"salary":"$1594.78"}, {"id":255,"employee_id":"916979999-7","first_name":"Hermie","last_name":"Reggler","email":"hreggler72@house.gov","phone":"760-890-0698","gender":"Male","department":"Sales","address":"77322 Gateway Circle","hire_date":"9/11/2017","website":"http://seattletimes.com","notes":"orci pede venenatis non sodales sed tincidunt eu felis fusce","status":2,"type":1,"salary":"$433.44"}, {"id":256,"employee_id":"774356728-1","first_name":"Mason","last_name":"Shingles","email":"mshingles73@jalbum.net","phone":"478-125-6198","gender":"Male","department":"Sales","address":"721 Havey Center","hire_date":"4/13/2018","website":"https://ehow.com","notes":"integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent","status":6,"type":3,"salary":"$566.23"}, {"id":257,"employee_id":"469749753-8","first_name":"Jonah","last_name":"McLugish","email":"jmclugish74@si.edu","phone":"450-313-4218","gender":"Male","department":"Sales","address":"9 Kingsford Drive","hire_date":"2/1/2018","website":"https://businessweek.com","notes":"lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer","status":2,"type":1,"salary":"$1295.46"}, {"id":258,"employee_id":"891738289-4","first_name":"Fonz","last_name":"De\'Vere - Hunt","email":"fdeverehunt75@domainmarket.com","phone":"251-524-2806","gender":"Male","department":"Sales","address":"5 Sauthoff Street","hire_date":"6/12/2018","website":"https://bizjournals.com","notes":"erat curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin","status":2,"type":2,"salary":"$1604.49"}, {"id":259,"employee_id":"087978435-0","first_name":"Agnola","last_name":"Francescone","email":"afrancescone76@phpbb.com","phone":"535-996-2880","gender":"Female","department":"Accounting","address":"21092 Forster Drive","hire_date":"11/17/2017","website":"http://abc.net.au","notes":"arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor eu pede","status":3,"type":3,"salary":"$537.10"}, {"id":260,"employee_id":"735651281-5","first_name":"Jo-ann","last_name":"Moon","email":"jmoon77@home.pl","phone":"971-838-3777","gender":"Female","department":"Support","address":"016 Grim Road","hire_date":"8/29/2017","website":"http://pen.io","notes":"quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec","status":6,"type":2,"salary":"$2178.02"}, {"id":261,"employee_id":"405615507-0","first_name":"Christye","last_name":"Ramage","email":"cramage78@twitter.com","phone":"179-607-0154","gender":"Female","department":"Engineering","address":"71 Kenwood Street","hire_date":"7/2/2018","website":"http://harvard.edu","notes":"amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac","status":2,"type":3,"salary":"$2018.25"}, {"id":262,"employee_id":"254124619-6","first_name":"Say","last_name":"Everix","email":"severix79@eepurl.com","phone":"822-477-7882","gender":"Male","department":"Legal","address":"4601 Straubel Center","hire_date":"7/1/2018","website":"http://so-net.ne.jp","notes":"morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo","status":5,"type":2,"salary":"$979.62"}, {"id":263,"employee_id":"714870821-4","first_name":"Mildrid","last_name":"Colliford","email":"mcolliford7a@cpanel.net","phone":"335-841-0402","gender":"Female","department":"Research and Development","address":"7525 Dawn Hill","hire_date":"6/8/2018","website":"http://rambler.ru","notes":"turpis enim blandit mi in porttitor pede justo eu massa donec dapibus duis at velit eu est congue elementum","status":5,"type":1,"salary":"$2332.05"}, {"id":264,"employee_id":"444226998-X","first_name":"Horton","last_name":"Viant","email":"hviant7b@hostgator.com","phone":"522-897-3684","gender":"Male","department":"Engineering","address":"8008 Twin Pines Circle","hire_date":"12/28/2017","website":"http://mozilla.org","notes":"ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis","status":2,"type":3,"salary":"$332.53"}, {"id":265,"employee_id":"638057551-0","first_name":"Shanon","last_name":"Beckley","email":"sbeckley7c@oaic.gov.au","phone":"981-758-8017","gender":"Female","department":"Marketing","address":"49336 Ridgeview Pass","hire_date":"9/22/2017","website":"https://baidu.com","notes":"habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis","status":5,"type":1,"salary":"$1342.00"}, {"id":266,"employee_id":"264528256-3","first_name":"Frasco","last_name":"Doddrell","email":"fdoddrell7d@cisco.com","phone":"953-588-9799","gender":"Male","department":"Accounting","address":"031 Spohn Place","hire_date":"4/29/2018","website":"http://intel.com","notes":"odio porttitor id consequat in consequat ut nulla sed accumsan felis ut at","status":2,"type":3,"salary":"$1821.71"}, {"id":267,"employee_id":"620037444-9","first_name":"Efren","last_name":"Ozelton","email":"eozelton7e@shop-pro.jp","phone":"182-274-8460","gender":"Male","department":"Training","address":"5 Glacier Hill Place","hire_date":"1/11/2018","website":"https://cloudflare.com","notes":"condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit","status":3,"type":3,"salary":"$2446.18"}, {"id":268,"employee_id":"747007151-2","first_name":"Jeremias","last_name":"Ansteys","email":"jansteys7f@pagesperso-orange.fr","phone":"121-687-9691","gender":"Male","department":"Support","address":"206 Waubesa Lane","hire_date":"9/10/2017","website":"http://vistaprint.com","notes":"justo nec condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet","status":3,"type":2,"salary":"$1862.76"}, {"id":269,"employee_id":"633719786-0","first_name":"Had","last_name":"Larmor","email":"hlarmor7g@who.int","phone":"792-815-5244","gender":"Male","department":"Engineering","address":"21479 Lakewood Gardens Terrace","hire_date":"2/2/2018","website":"http://elpais.com","notes":"sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum","status":3,"type":1,"salary":"$754.10"}, {"id":270,"employee_id":"150900253-7","first_name":"Ring","last_name":"Dockerty","email":"rdockerty7h@patch.com","phone":"370-832-2897","gender":"Male","department":"Accounting","address":"6920 Nancy Pass","hire_date":"3/16/2018","website":"http://foxnews.com","notes":"vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia","status":6,"type":3,"salary":"$1398.74"}, {"id":271,"employee_id":"308867780-2","first_name":"Torrance","last_name":"De Beauchemp","email":"tdebeauchemp7i@dyndns.org","phone":"131-659-2943","gender":"Male","department":"Legal","address":"99517 Brown Pass","hire_date":"6/19/2018","website":"https://seesaa.net","notes":"amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel","status":1,"type":1,"salary":"$642.34"}, {"id":272,"employee_id":"465210678-5","first_name":"Gerda","last_name":"Kilban","email":"gkilban7j@wordpress.com","phone":"127-861-0265","gender":"Female","department":"Services","address":"953 Corscot Way","hire_date":"4/11/2018","website":"https://bloglines.com","notes":"eget tincidunt eget tempus vel pede morbi porttitor lorem id","status":5,"type":2,"salary":"$1243.66"}, {"id":273,"employee_id":"107092987-5","first_name":"Charin","last_name":"Mityashin","email":"cmityashin7k@theglobeandmail.com","phone":"423-805-4825","gender":"Female","department":"Legal","address":"2 Muir Junction","hire_date":"5/24/2018","website":"http://acquirethisname.com","notes":"augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida","status":6,"type":2,"salary":"$539.31"}, {"id":274,"employee_id":"310707991-X","first_name":"Carmelle","last_name":"Pache","email":"cpache7l@disqus.com","phone":"729-123-0155","gender":"Female","department":"Research and Development","address":"758 Continental Center","hire_date":"11/20/2017","website":"http://usa.gov","notes":"id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla","status":6,"type":1,"salary":"$1876.22"}, {"id":275,"employee_id":"309278497-9","first_name":"Cloe","last_name":"Grono","email":"cgrono7m@rambler.ru","phone":"381-473-5768","gender":"Female","department":"Research and Development","address":"643 Calypso Alley","hire_date":"2/10/2018","website":"http://intel.com","notes":"lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in libero ut massa","status":2,"type":2,"salary":"$328.72"}, {"id":276,"employee_id":"163670883-8","first_name":"Nye","last_name":"Caseborne","email":"ncaseborne7n@nhs.uk","phone":"822-569-2084","gender":"Male","department":"Support","address":"81557 Packers Circle","hire_date":"12/3/2017","website":"https://1688.com","notes":"arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget nunc","status":4,"type":2,"salary":"$1951.41"}, {"id":277,"employee_id":"807982530-0","first_name":"Calv","last_name":"Griffe","email":"cgriffe7o@mail.ru","phone":"309-457-7174","gender":"Male","department":"Legal","address":"8980 Jenna Pass","hire_date":"7/30/2017","website":"http://ft.com","notes":"etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat","status":6,"type":3,"salary":"$1857.21"}, {"id":278,"employee_id":"598513541-1","first_name":"Theodoric","last_name":"Wallicker","email":"twallicker7p@e-recht24.de","phone":"266-387-9797","gender":"Male","department":"Business Development","address":"22 Graceland Crossing","hire_date":"2/3/2018","website":"http://army.mil","notes":"et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere","status":3,"type":1,"salary":"$301.36"}, {"id":279,"employee_id":"181306384-2","first_name":"Linn","last_name":"Antonio","email":"lantonio7q@gravatar.com","phone":"462-885-7094","gender":"Male","department":"Human Resources","address":"2 Mockingbird Junction","hire_date":"11/3/2017","website":"https://zimbio.com","notes":"semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero","status":4,"type":1,"salary":"$2085.32"}, {"id":280,"employee_id":"277706165-3","first_name":"Gaylor","last_name":"Suatt","email":"gsuatt7r@hp.com","phone":"684-356-9857","gender":"Male","department":"Business Development","address":"9 Mesta Drive","hire_date":"12/5/2017","website":"http://google.com.hk","notes":"in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim","status":2,"type":1,"salary":"$982.05"}, {"id":281,"employee_id":"301639900-8","first_name":"Nanny","last_name":"Haylock","email":"nhaylock7s@acquirethisname.com","phone":"669-313-8347","gender":"Female","department":"Engineering","address":"269 Fulton Place","hire_date":"6/27/2018","website":"http://sbwire.com","notes":"ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante","status":2,"type":2,"salary":"$292.09"}, {"id":282,"employee_id":"053888448-7","first_name":"Berrie","last_name":"Abbots","email":"babbots7t@lycos.com","phone":"480-456-3043","gender":"Female","department":"Support","address":"7 Luster Circle","hire_date":"8/16/2017","website":"http://slideshare.net","notes":"fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed","status":1,"type":2,"salary":"$685.82"}, {"id":283,"employee_id":"098482265-8","first_name":"Nathaniel","last_name":"Pauls","email":"npauls7u@home.pl","phone":"657-584-6210","gender":"Male","department":"Services","address":"867 Menomonie Road","hire_date":"3/14/2018","website":"https://hubpages.com","notes":"dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium","status":4,"type":1,"salary":"$355.30"}, {"id":284,"employee_id":"087586302-7","first_name":"Hesther","last_name":"Laughlan","email":"hlaughlan7v@jiathis.com","phone":"960-473-6262","gender":"Female","department":"Research and Development","address":"1696 Twin Pines Point","hire_date":"3/23/2018","website":"https://unesco.org","notes":"vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien non mi","status":2,"type":2,"salary":"$2275.59"}, {"id":285,"employee_id":"237086376-5","first_name":"Darill","last_name":"Milne","email":"dmilne7w@bizjournals.com","phone":"450-941-7221","gender":"Male","department":"Engineering","address":"20 Mitchell Park","hire_date":"2/7/2018","website":"https://omniture.com","notes":"congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut","status":6,"type":2,"salary":"$1506.88"}, {"id":286,"employee_id":"490608835-X","first_name":"Shawnee","last_name":"Hasselby","email":"shasselby7x@prlog.org","phone":"153-202-4950","gender":"Female","department":"Engineering","address":"8 Scoville Court","hire_date":"4/14/2018","website":"https://ifeng.com","notes":"nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu","status":3,"type":2,"salary":"$1316.01"}, {"id":287,"employee_id":"412504905-X","first_name":"Bidget","last_name":"Yerrington","email":"byerrington7y@home.pl","phone":"224-835-3319","gender":"Female","department":"Marketing","address":"45 Sherman Plaza","hire_date":"10/27/2017","website":"http://whitehouse.gov","notes":"nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus","status":5,"type":2,"salary":"$1501.27"}, {"id":288,"employee_id":"223859497-3","first_name":"Sasha","last_name":"Zorzin","email":"szorzin7z@dion.ne.jp","phone":"291-899-2406","gender":"Female","department":"Accounting","address":"2819 Towne Alley","hire_date":"8/8/2017","website":"https://pcworld.com","notes":"pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices","status":1,"type":2,"salary":"$2248.19"}, {"id":289,"employee_id":"403340559-3","first_name":"Dareen","last_name":"Lopez","email":"dlopez80@dion.ne.jp","phone":"368-310-7343","gender":"Female","department":"Legal","address":"8 Anzinger Place","hire_date":"11/23/2017","website":"https://howstuffworks.com","notes":"vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent","status":1,"type":3,"salary":"$1451.44"}, {"id":290,"employee_id":"809667453-6","first_name":"Ericha","last_name":"Mayhew","email":"emayhew81@google.it","phone":"923-107-5382","gender":"Female","department":"Legal","address":"15 Dovetail Point","hire_date":"4/5/2018","website":"http://netlog.com","notes":"mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac","status":4,"type":2,"salary":"$571.91"}, {"id":291,"employee_id":"996544982-1","first_name":"Joana","last_name":"Hurch","email":"jhurch82@blinklist.com","phone":"323-570-3104","gender":"Female","department":"Product Management","address":"6 Gina Junction","hire_date":"9/25/2017","website":"http://51.la","notes":"lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer pede justo","status":4,"type":1,"salary":"$1845.68"}, {"id":292,"employee_id":"215493075-1","first_name":"Pollyanna","last_name":"le Keux","email":"plekeux83@gravatar.com","phone":"572-731-3140","gender":"Female","department":"Accounting","address":"6 Ridgeway Place","hire_date":"8/5/2017","website":"https://free.fr","notes":"leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac","status":2,"type":3,"salary":"$252.49"}, {"id":293,"employee_id":"037036201-2","first_name":"Nicola","last_name":"Gymlett","email":"ngymlett84@artisteer.com","phone":"574-535-6890","gender":"Female","department":"Engineering","address":"30945 Namekagon Trail","hire_date":"6/2/2018","website":"https://noaa.gov","notes":"quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci","status":2,"type":1,"salary":"$2458.19"}, {"id":294,"employee_id":"315397200-1","first_name":"Kacy","last_name":"Danilowicz","email":"kdanilowicz85@sakura.ne.jp","phone":"799-523-5840","gender":"Female","department":"Services","address":"110 Oneill Alley","hire_date":"5/8/2018","website":"http://plala.or.jp","notes":"sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus","status":4,"type":3,"salary":"$2190.39"}, {"id":295,"employee_id":"070718246-8","first_name":"Annemarie","last_name":"Duffyn","email":"aduffyn86@hp.com","phone":"778-883-9811","gender":"Female","department":"Product Management","address":"268 Grasskamp Crossing","hire_date":"3/18/2018","website":"https://cam.ac.uk","notes":"mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere nonummy integer","status":6,"type":2,"salary":"$898.77"}, {"id":296,"employee_id":"167312550-6","first_name":"Rebecka","last_name":"Brenard","email":"rbrenard87@tinyurl.com","phone":"499-787-5753","gender":"Female","department":"Services","address":"3 1st Alley","hire_date":"12/30/2017","website":"http://lulu.com","notes":"sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien","status":1,"type":1,"salary":"$873.75"}, {"id":297,"employee_id":"725923240-4","first_name":"Betteanne","last_name":"Fiennes","email":"bfiennes88@free.fr","phone":"827-200-8963","gender":"Female","department":"Accounting","address":"074 Sullivan Plaza","hire_date":"10/8/2017","website":"https://bizjournals.com","notes":"pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut","status":3,"type":1,"salary":"$434.06"}, {"id":298,"employee_id":"150162788-0","first_name":"Devin","last_name":"Scamel","email":"dscamel89@a8.net","phone":"424-569-9626","gender":"Female","department":"Marketing","address":"532 Kings Way","hire_date":"6/2/2018","website":"https://tinyurl.com","notes":"aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce","status":3,"type":3,"salary":"$1799.64"}, {"id":299,"employee_id":"424818371-4","first_name":"Lavinie","last_name":"Collumbell","email":"lcollumbell8a@issuu.com","phone":"202-877-4681","gender":"Female","department":"Sales","address":"069 Tony Alley","hire_date":"10/23/2017","website":"https://ebay.co.uk","notes":"eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer","status":6,"type":1,"salary":"$1350.61"}, {"id":300,"employee_id":"334187692-8","first_name":"Israel","last_name":"Greening","email":"igreening8b@howstuffworks.com","phone":"870-777-0048","gender":"Male","department":"Legal","address":"16 Crownhardt Trail","hire_date":"7/10/2018","website":"https://ycombinator.com","notes":"justo eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst","status":5,"type":3,"salary":"$899.15"}, {"id":301,"employee_id":"578611988-2","first_name":"Constanta","last_name":"Moro","email":"cmoro8c@yahoo.com","phone":"996-690-8094","gender":"Female","department":"Accounting","address":"59779 Kim Parkway","hire_date":"1/14/2018","website":"https://studiopress.com","notes":"odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam","status":5,"type":1,"salary":"$1689.71"}, {"id":302,"employee_id":"414540897-7","first_name":"Whit","last_name":"Cawdron","email":"wcawdron8d@walmart.com","phone":"610-570-2993","gender":"Male","department":"Training","address":"5 Cherokee Park","hire_date":"3/9/2018","website":"https://altervista.org","notes":"urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam","status":3,"type":3,"salary":"$1301.25"}, {"id":303,"employee_id":"610644395-5","first_name":"Josephine","last_name":"Hustler","email":"jhustler8e@home.pl","phone":"754-290-5586","gender":"Female","department":"Sales","address":"1 Columbus Center","hire_date":"7/8/2018","website":"https://apache.org","notes":"est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum","status":1,"type":3,"salary":"$737.25"}, {"id":304,"employee_id":"247568457-7","first_name":"Padgett","last_name":"Petkovic","email":"ppetkovic8f@sciencedaily.com","phone":"706-883-1715","gender":"Male","department":"Training","address":"7562 Elmside Avenue","hire_date":"8/25/2017","website":"https://dot.gov","notes":"eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio","status":3,"type":1,"salary":"$315.46"}, {"id":305,"employee_id":"284294417-8","first_name":"Hermine","last_name":"Gorick","email":"hgorick8g@deviantart.com","phone":"445-925-1000","gender":"Female","department":"Business Development","address":"018 Lerdahl Alley","hire_date":"7/1/2018","website":"http://spotify.com","notes":"dapibus nulla suscipit ligula in lacus curabitur at ipsum ac","status":2,"type":3,"salary":"$1639.32"}, {"id":306,"employee_id":"165433796-X","first_name":"Solomon","last_name":"Hargess","email":"shargess8h@360.cn","phone":"478-786-0363","gender":"Male","department":"Human Resources","address":"773 Redwing Trail","hire_date":"4/1/2018","website":"https://wunderground.com","notes":"id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam","status":3,"type":2,"salary":"$1006.12"}, {"id":307,"employee_id":"509293137-X","first_name":"Ilaire","last_name":"De Atta","email":"ideatta8i@weather.com","phone":"397-577-1997","gender":"Male","department":"Sales","address":"390 Prairie Rose Street","hire_date":"10/20/2017","website":"http://un.org","notes":"penatibus et magnis dis parturient montes nascetur ridiculus mus etiam vel augue","status":5,"type":3,"salary":"$1657.60"}, {"id":308,"employee_id":"809256679-8","first_name":"Nanny","last_name":"Yakobovitz","email":"nyakobovitz8j@1688.com","phone":"614-500-9492","gender":"Female","department":"Research and Development","address":"341 Cherokee Terrace","hire_date":"1/5/2018","website":"https://census.gov","notes":"cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes","status":5,"type":3,"salary":"$957.73"}, {"id":309,"employee_id":"923853518-3","first_name":"Amelie","last_name":"Swindle","email":"aswindle8k@google.com.hk","phone":"728-901-9623","gender":"Female","department":"Research and Development","address":"6 Clove Road","hire_date":"11/26/2017","website":"https://marketplace.net","notes":"arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget","status":3,"type":3,"salary":"$873.12"}, {"id":310,"employee_id":"940525921-0","first_name":"Petunia","last_name":"Tiler","email":"ptiler8l@scientificamerican.com","phone":"225-162-6754","gender":"Female","department":"Business Development","address":"811 Norway Maple Hill","hire_date":"7/22/2017","website":"http://cyberchimps.com","notes":"euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin","status":1,"type":1,"salary":"$1918.35"}, {"id":311,"employee_id":"623711021-6","first_name":"Sonya","last_name":"Yepiskopov","email":"syepiskopov8m@yellowpages.com","phone":"991-193-4740","gender":"Female","department":"Marketing","address":"531 Manitowish Park","hire_date":"7/17/2018","website":"http://surveymonkey.com","notes":"donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum","status":2,"type":3,"salary":"$1770.66"}, {"id":312,"employee_id":"860056745-9","first_name":"Peter","last_name":"Mustard","email":"pmustard8n@topsy.com","phone":"914-359-1940","gender":"Male","department":"Services","address":"7851 Ridgeview Pass","hire_date":"8/5/2017","website":"http://ycombinator.com","notes":"pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique","status":1,"type":2,"salary":"$962.75"}, {"id":313,"employee_id":"692365562-5","first_name":"Alvy","last_name":"Chiommienti","email":"achiommienti8o@ameblo.jp","phone":"142-797-2774","gender":"Male","department":"Legal","address":"030 Eagan Avenue","hire_date":"3/2/2018","website":"http://hc360.com","notes":"mauris eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque","status":5,"type":1,"salary":"$2481.85"}, {"id":314,"employee_id":"175423636-7","first_name":"Vitoria","last_name":"Glanton","email":"vglanton8p@phoca.cz","phone":"903-826-9993","gender":"Female","department":"Human Resources","address":"811 Pond Road","hire_date":"8/8/2017","website":"http://cornell.edu","notes":"eget orci vehicula condimentum curabitur in libero ut massa volutpat","status":1,"type":3,"salary":"$1908.59"}, {"id":315,"employee_id":"034637767-6","first_name":"Lizbeth","last_name":"McIndrew","email":"lmcindrew8q@washington.edu","phone":"982-226-5817","gender":"Female","department":"Business Development","address":"3625 Charing Cross Avenue","hire_date":"8/18/2017","website":"http://usa.gov","notes":"a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla","status":6,"type":3,"salary":"$2025.44"}, {"id":316,"employee_id":"274398934-3","first_name":"Briana","last_name":"Somes","email":"bsomes8r@yelp.com","phone":"221-769-2932","gender":"Female","department":"Training","address":"528 Old Gate Road","hire_date":"7/23/2017","website":"https://jimdo.com","notes":"donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet","status":1,"type":3,"salary":"$1720.83"}, {"id":317,"employee_id":"129990272-3","first_name":"Artus","last_name":"Balentyne","email":"abalentyne8s@opera.com","phone":"439-249-5582","gender":"Male","department":"Sales","address":"564 Weeping Birch Junction","hire_date":"3/14/2018","website":"https://photobucket.com","notes":"consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue","status":2,"type":1,"salary":"$2115.08"}, {"id":318,"employee_id":"066881048-3","first_name":"Papageno","last_name":"Cosson","email":"pcosson8t@princeton.edu","phone":"443-892-1710","gender":"Male","department":"Business Development","address":"38 Gale Parkway","hire_date":"11/18/2017","website":"http://timesonline.co.uk","notes":"pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus","status":5,"type":1,"salary":"$1177.08"}, {"id":319,"employee_id":"209633838-7","first_name":"Rosalinde","last_name":"Elmar","email":"relmar8u@163.com","phone":"687-330-4390","gender":"Female","department":"Training","address":"89 Ridge Oak Junction","hire_date":"6/19/2018","website":"http://unesco.org","notes":"mi in porttitor pede justo eu massa donec dapibus duis at velit eu est congue elementum in hac","status":3,"type":3,"salary":"$981.78"}, {"id":320,"employee_id":"739849131-X","first_name":"Oralie","last_name":"Walton","email":"owalton8v@upenn.edu","phone":"690-833-6583","gender":"Female","department":"Legal","address":"458 Warner Pass","hire_date":"12/24/2017","website":"https://1688.com","notes":"eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et","status":6,"type":1,"salary":"$344.13"}, {"id":321,"employee_id":"715189385-X","first_name":"Rosemaria","last_name":"Picopp","email":"rpicopp8w@army.mil","phone":"532-931-5965","gender":"Female","department":"Business Development","address":"76 Loeprich Avenue","hire_date":"9/29/2017","website":"http://woothemes.com","notes":"lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit","status":5,"type":2,"salary":"$288.15"}, {"id":322,"employee_id":"166085089-4","first_name":"Carline","last_name":"Pittwood","email":"cpittwood8x@hatena.ne.jp","phone":"422-530-3879","gender":"Female","department":"Engineering","address":"87585 Derek Point","hire_date":"8/27/2017","website":"http://usatoday.com","notes":"hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem","status":3,"type":3,"salary":"$1207.13"}, {"id":323,"employee_id":"157554253-6","first_name":"Jilleen","last_name":"Cropton","email":"jcropton8y@disqus.com","phone":"828-751-3129","gender":"Female","department":"Legal","address":"0 Kings Hill","hire_date":"6/23/2018","website":"http://mediafire.com","notes":"praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet","status":5,"type":2,"salary":"$1868.72"}, {"id":324,"employee_id":"437111358-3","first_name":"Ailey","last_name":"Wandless","email":"awandless8z@fda.gov","phone":"343-563-1843","gender":"Female","department":"Sales","address":"209 Annamark Terrace","hire_date":"11/29/2017","website":"https://g.co","notes":"sed tristique in tempus sit amet sem fusce consequat nulla nisl","status":6,"type":1,"salary":"$700.60"}, {"id":325,"employee_id":"425405666-4","first_name":"Benn","last_name":"Darnody","email":"bdarnody90@forbes.com","phone":"317-671-4370","gender":"Male","department":"Accounting","address":"6 Annamark Trail","hire_date":"8/1/2017","website":"http://sphinn.com","notes":"ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit","status":3,"type":3,"salary":"$1648.12"}, {"id":326,"employee_id":"027147980-9","first_name":"Javier","last_name":"Dobel","email":"jdobel91@ftc.gov","phone":"616-238-3661","gender":"Male","department":"Services","address":"28 Morrow Way","hire_date":"8/28/2017","website":"https://aol.com","notes":"praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer","status":4,"type":2,"salary":"$1671.91"}, {"id":327,"employee_id":"780064513-4","first_name":"Rodolph","last_name":"Raymond","email":"rraymond92@census.gov","phone":"223-105-4656","gender":"Male","department":"Product Management","address":"1 Superior Road","hire_date":"4/24/2018","website":"http://feedburner.com","notes":"nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor","status":3,"type":2,"salary":"$1793.50"}, {"id":328,"employee_id":"099405312-6","first_name":"Orrin","last_name":"Proctor","email":"oproctor93@boston.com","phone":"894-981-4761","gender":"Male","department":"Accounting","address":"4024 Arapahoe Road","hire_date":"1/28/2018","website":"http://tuttocitta.it","notes":"phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean","status":6,"type":1,"salary":"$2362.24"}, {"id":329,"employee_id":"965885138-X","first_name":"Quincey","last_name":"Crofts","email":"qcrofts94@nifty.com","phone":"120-205-1280","gender":"Male","department":"Engineering","address":"607 Ronald Regan Circle","hire_date":"12/2/2017","website":"https://ustream.tv","notes":"nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in","status":1,"type":2,"salary":"$712.06"}, {"id":330,"employee_id":"911951987-7","first_name":"Perri","last_name":"O\'Boyle","email":"poboyle95@sohu.com","phone":"860-677-2496","gender":"Female","department":"Legal","address":"3352 Luster Court","hire_date":"12/11/2017","website":"https://ustream.tv","notes":"venenatis turpis enim blandit mi in porttitor pede justo eu massa donec dapibus","status":4,"type":3,"salary":"$521.69"}, {"id":331,"employee_id":"146914324-0","first_name":"Dante","last_name":"Bolens","email":"dbolens96@bbb.org","phone":"448-274-0240","gender":"Male","department":"Training","address":"63 Oak Valley Terrace","hire_date":"12/12/2017","website":"https://blinklist.com","notes":"a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut","status":1,"type":2,"salary":"$1297.71"}, {"id":332,"employee_id":"699716432-3","first_name":"Tamas","last_name":"Stenning","email":"tstenning97@google.com.br","phone":"953-569-7039","gender":"Male","department":"Marketing","address":"37 Trailsway Hill","hire_date":"3/2/2018","website":"https://smugmug.com","notes":"amet lobortis sapien sapien non mi integer ac neque duis","status":3,"type":1,"salary":"$900.97"}, {"id":333,"employee_id":"426960913-3","first_name":"Leighton","last_name":"Milstead","email":"lmilstead98@aboutads.info","phone":"507-834-7444","gender":"Male","department":"Marketing","address":"6334 Havey Pass","hire_date":"9/8/2017","website":"http://oracle.com","notes":"blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing","status":5,"type":3,"salary":"$921.55"}, {"id":334,"employee_id":"333636015-3","first_name":"Marty","last_name":"Filan","email":"mfilan99@guardian.co.uk","phone":"813-841-7462","gender":"Male","department":"Product Management","address":"4 Mesta Circle","hire_date":"11/9/2017","website":"https://jimdo.com","notes":"pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet","status":5,"type":3,"salary":"$2229.49"}, {"id":335,"employee_id":"380151527-3","first_name":"Daffi","last_name":"Outlaw","email":"doutlaw9a@last.fm","phone":"797-403-3462","gender":"Female","department":"Legal","address":"66927 Eggendart Point","hire_date":"4/13/2018","website":"https://apple.com","notes":"enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus","status":3,"type":1,"salary":"$2463.68"}, {"id":336,"employee_id":"744312874-6","first_name":"Marcy","last_name":"Ritson","email":"mritson9b@examiner.com","phone":"362-495-5706","gender":"Female","department":"Legal","address":"03854 Acker Alley","hire_date":"9/18/2017","website":"http://google.it","notes":"faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse","status":4,"type":1,"salary":"$385.52"}, {"id":337,"employee_id":"254761989-X","first_name":"Stepha","last_name":"Clutten","email":"sclutten9c@adobe.com","phone":"227-882-3037","gender":"Female","department":"Research and Development","address":"259 Bowman Lane","hire_date":"4/24/2018","website":"http://cnn.com","notes":"sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat","status":4,"type":3,"salary":"$576.12"}, {"id":338,"employee_id":"413122637-5","first_name":"Manda","last_name":"Duerdin","email":"mduerdin9d@huffingtonpost.com","phone":"654-685-2155","gender":"Female","department":"Support","address":"84 Golden Leaf Place","hire_date":"9/16/2017","website":"http://state.tx.us","notes":"feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna","status":2,"type":2,"salary":"$2102.59"}, {"id":339,"employee_id":"216718181-7","first_name":"Koral","last_name":"Rampton","email":"krampton9e@timesonline.co.uk","phone":"126-699-4471","gender":"Female","department":"Business Development","address":"04894 Sunbrook Alley","hire_date":"7/4/2018","website":"http://mtv.com","notes":"vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris","status":3,"type":3,"salary":"$2066.99"}, {"id":340,"employee_id":"002830020-3","first_name":"Beltran","last_name":"Matteau","email":"bmatteau9f@timesonline.co.uk","phone":"845-424-7176","gender":"Male","department":"Legal","address":"317 Alpine Plaza","hire_date":"4/5/2018","website":"https://issuu.com","notes":"vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et","status":6,"type":3,"salary":"$1375.13"}, {"id":341,"employee_id":"617967669-0","first_name":"Bob","last_name":"Adolphine","email":"badolphine9g@senate.gov","phone":"778-173-9919","gender":"Male","department":"Product Management","address":"57744 Dahle Hill","hire_date":"1/9/2018","website":"http://dailymotion.com","notes":"nulla suspendisse potenti cras in purus eu magna vulputate luctus cum","status":5,"type":1,"salary":"$2399.60"}, {"id":342,"employee_id":"042033829-2","first_name":"Nikolos","last_name":"Luckes","email":"nluckes9h@youku.com","phone":"389-276-9301","gender":"Male","department":"Engineering","address":"678 Almo Circle","hire_date":"11/14/2017","website":"https://csmonitor.com","notes":"pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra","status":4,"type":3,"salary":"$2225.58"}, {"id":343,"employee_id":"012562374-7","first_name":"Melisent","last_name":"Mannock","email":"mmannock9i@google.nl","phone":"664-642-1888","gender":"Female","department":"Product Management","address":"447 Petterle Alley","hire_date":"2/22/2018","website":"http://scribd.com","notes":"sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum","status":6,"type":3,"salary":"$1622.20"}, {"id":344,"employee_id":"527652057-7","first_name":"Rickie","last_name":"McKerron","email":"rmckerron9j@imgur.com","phone":"455-420-1680","gender":"Male","department":"Support","address":"289 Mitchell Plaza","hire_date":"10/5/2017","website":"https://springer.com","notes":"quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse","status":3,"type":2,"salary":"$2196.49"}, {"id":345,"employee_id":"018785785-7","first_name":"Rutledge","last_name":"Airds","email":"rairds9k@engadget.com","phone":"482-847-4841","gender":"Male","department":"Marketing","address":"295 Glendale Center","hire_date":"6/14/2018","website":"https://dmoz.org","notes":"ut erat id mauris vulputate elementum nullam varius nulla facilisi","status":6,"type":3,"salary":"$378.04"}, {"id":346,"employee_id":"466489704-9","first_name":"Denice","last_name":"Wattins","email":"dwattins9l@ustream.tv","phone":"160-530-4641","gender":"Female","department":"Marketing","address":"47 Summerview Center","hire_date":"7/24/2017","website":"https://foxnews.com","notes":"eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst","status":1,"type":2,"salary":"$2297.89"}, {"id":347,"employee_id":"456501961-2","first_name":"Becki","last_name":"Dace","email":"bdace9m@globo.com","phone":"353-384-3408","gender":"Female","department":"Product Management","address":"1342 Shelley Park","hire_date":"2/3/2018","website":"https://ow.ly","notes":"phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus","status":3,"type":3,"salary":"$1806.53"}, {"id":348,"employee_id":"828200940-7","first_name":"Debi","last_name":"Padilla","email":"dpadilla9n@google.pl","phone":"147-413-1467","gender":"Female","department":"Product Management","address":"93 Blaine Avenue","hire_date":"3/16/2018","website":"http://tiny.cc","notes":"vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit","status":2,"type":2,"salary":"$660.15"}, {"id":349,"employee_id":"932799687-9","first_name":"Luella","last_name":"Babington","email":"lbabington9o@nifty.com","phone":"166-814-0072","gender":"Female","department":"Legal","address":"923 Lerdahl Avenue","hire_date":"6/22/2018","website":"https://spotify.com","notes":"dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices","status":3,"type":3,"salary":"$1588.19"}, {"id":350,"employee_id":"773863877-X","first_name":"Michail","last_name":"Alleway","email":"malleway9p@oaic.gov.au","phone":"314-689-0592","gender":"Male","department":"Training","address":"97197 Meadow Vale Place","hire_date":"7/22/2017","website":"http://sbwire.com","notes":"quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida nisi at nibh","status":5,"type":1,"salary":"$710.96"}, {"id":351,"employee_id":"401969383-8","first_name":"Fedora","last_name":"Vescovini","email":"fvescovini9q@mozilla.org","phone":"570-561-0130","gender":"Female","department":"Human Resources","address":"56856 Autumn Leaf Court","hire_date":"3/19/2018","website":"http://lycos.com","notes":"parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et","status":2,"type":2,"salary":"$1640.69"}, {"id":352,"employee_id":"057897886-5","first_name":"Dorisa","last_name":"Truesdale","email":"dtruesdale9r@barnesandnoble.com","phone":"965-618-9058","gender":"Female","department":"Human Resources","address":"96511 Rockefeller Pass","hire_date":"4/16/2018","website":"http://washingtonpost.com","notes":"lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in libero ut","status":2,"type":2,"salary":"$1079.89"}, {"id":353,"employee_id":"667151110-1","first_name":"Wilhelm","last_name":"Sooley","email":"wsooley9s@nature.com","phone":"163-681-8501","gender":"Male","department":"Legal","address":"94 2nd Center","hire_date":"4/10/2018","website":"http://goo.gl","notes":"felis ut at dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi","status":1,"type":1,"salary":"$1200.11"}, {"id":354,"employee_id":"885975098-9","first_name":"Marcus","last_name":"Lambirth","email":"mlambirth9t@odnoklassniki.ru","phone":"908-536-3150","gender":"Male","department":"Services","address":"5410 Armistice Court","hire_date":"6/20/2018","website":"https://tiny.cc","notes":"imperdiet et commodo vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet","status":4,"type":3,"salary":"$482.93"}, {"id":355,"employee_id":"948554103-1","first_name":"Edd","last_name":"Longman","email":"elongman9u@people.com.cn","phone":"896-348-2679","gender":"Male","department":"Support","address":"14 Clemons Parkway","hire_date":"8/15/2017","website":"http://t-online.de","notes":"elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in","status":4,"type":3,"salary":"$1724.68"}, {"id":356,"employee_id":"886135245-6","first_name":"Dion","last_name":"Slimm","email":"dslimm9v@cargocollective.com","phone":"552-796-4713","gender":"Male","department":"Engineering","address":"99800 Sundown Road","hire_date":"2/11/2018","website":"http://over-blog.com","notes":"quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices","status":3,"type":2,"salary":"$261.88"}, {"id":357,"employee_id":"409704042-1","first_name":"Umberto","last_name":"Parkin","email":"uparkin9w@unc.edu","phone":"530-116-4741","gender":"Male","department":"Human Resources","address":"7 Little Fleur Center","hire_date":"7/12/2018","website":"http://nih.gov","notes":"potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis","status":6,"type":3,"salary":"$1385.79"}, {"id":358,"employee_id":"422286342-4","first_name":"Alexia","last_name":"Hunn","email":"ahunn9x@scientificamerican.com","phone":"312-944-0388","gender":"Female","department":"Training","address":"1292 Mifflin Lane","hire_date":"5/5/2018","website":"https://friendfeed.com","notes":"mauris morbi non lectus aliquam sit amet diam in magna bibendum","status":2,"type":2,"salary":"$877.72"}, {"id":359,"employee_id":"375751241-3","first_name":"Sharyl","last_name":"Bewshaw","email":"sbewshaw9y@amazon.com","phone":"453-777-3783","gender":"Female","department":"Research and Development","address":"6147 Scoville Hill","hire_date":"12/20/2017","website":"https://shop-pro.jp","notes":"eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in","status":3,"type":1,"salary":"$2136.63"}, {"id":360,"employee_id":"140406564-4","first_name":"Alfonso","last_name":"Baudy","email":"abaudy9z@artisteer.com","phone":"827-327-0355","gender":"Male","department":"Support","address":"8 Haas Parkway","hire_date":"1/19/2018","website":"http://state.tx.us","notes":"commodo placerat praesent blandit nam nulla integer pede justo lacinia eget","status":5,"type":3,"salary":"$1029.48"}, {"id":361,"employee_id":"696796090-3","first_name":"Ravi","last_name":"Teape","email":"rteapea0@etsy.com","phone":"424-943-6381","gender":"Male","department":"Business Development","address":"37 Kennedy Street","hire_date":"2/6/2018","website":"https://dell.com","notes":"mollis molestie lorem quisque ut erat curabitur gravida nisi at nibh in","status":3,"type":1,"salary":"$372.63"}, {"id":362,"employee_id":"692676315-1","first_name":"Raye","last_name":"Peacop","email":"rpeacopa1@java.com","phone":"119-830-8805","gender":"Female","department":"Human Resources","address":"94868 Darwin Drive","hire_date":"12/22/2017","website":"https://joomla.org","notes":"donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum","status":4,"type":1,"salary":"$1540.19"}, {"id":363,"employee_id":"782871623-0","first_name":"Horten","last_name":"Ridder","email":"hriddera2@newyorker.com","phone":"805-680-9964","gender":"Male","department":"Services","address":"74641 Marcy Park","hire_date":"4/30/2018","website":"http://chronoengine.com","notes":"pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in","status":4,"type":2,"salary":"$643.01"}, {"id":364,"employee_id":"886175718-9","first_name":"Raffaello","last_name":"Mixer","email":"rmixera3@sogou.com","phone":"437-698-1834","gender":"Male","department":"Research and Development","address":"3735 Crowley Crossing","hire_date":"10/27/2017","website":"http://time.com","notes":"nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum","status":6,"type":3,"salary":"$1573.55"}, {"id":365,"employee_id":"491303919-9","first_name":"Elsa","last_name":"Haccleton","email":"ehaccletona4@mysql.com","phone":"425-783-0366","gender":"Female","department":"Sales","address":"466 Ilene Avenue","hire_date":"12/27/2017","website":"https://bizjournals.com","notes":"tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum","status":1,"type":2,"salary":"$488.18"}, {"id":366,"employee_id":"871525779-7","first_name":"Scarface","last_name":"Mayho","email":"smayhoa5@last.fm","phone":"338-818-7650","gender":"Male","department":"Research and Development","address":"54 Morning Hill","hire_date":"9/24/2017","website":"http://tripod.com","notes":"ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut","status":1,"type":1,"salary":"$502.06"}, {"id":367,"employee_id":"482843443-7","first_name":"Bentley","last_name":"Caulder","email":"bcauldera6@goo.ne.jp","phone":"607-353-8589","gender":"Male","department":"Legal","address":"2143 Springview Plaza","hire_date":"2/12/2018","website":"http://loc.gov","notes":"vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec","status":4,"type":2,"salary":"$1107.93"}, {"id":368,"employee_id":"410934604-5","first_name":"Casper","last_name":"Hirjak","email":"chirjaka7@europa.eu","phone":"249-837-2403","gender":"Male","department":"Product Management","address":"337 Carpenter Plaza","hire_date":"3/28/2018","website":"http://tinypic.com","notes":"dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida","status":5,"type":3,"salary":"$1080.93"}, {"id":369,"employee_id":"521192163-1","first_name":"Sharai","last_name":"Rainger","email":"sraingera8@godaddy.com","phone":"899-215-8141","gender":"Female","department":"Training","address":"05 Little Fleur Terrace","hire_date":"11/3/2017","website":"https://bloglovin.com","notes":"sapien urna pretium nisl ut volutpat sapien arcu sed augue","status":3,"type":2,"salary":"$2165.31"}, {"id":370,"employee_id":"540010511-4","first_name":"Kelsi","last_name":"Deporte","email":"kdeportea9@cdbaby.com","phone":"823-268-3114","gender":"Female","department":"Sales","address":"2 Crest Line Center","hire_date":"12/16/2017","website":"http://liveinternet.ru","notes":"vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est","status":6,"type":1,"salary":"$2155.92"}, {"id":371,"employee_id":"533771297-7","first_name":"Luigi","last_name":"Beddow","email":"lbeddowaa@issuu.com","phone":"355-329-4187","gender":"Male","department":"Business Development","address":"148 Macpherson Plaza","hire_date":"6/12/2018","website":"http://baidu.com","notes":"sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus","status":2,"type":3,"salary":"$348.10"}, {"id":372,"employee_id":"726780645-7","first_name":"Selig","last_name":"Landeg","email":"slandegab@dailymail.co.uk","phone":"488-197-2573","gender":"Male","department":"Business Development","address":"02 Ridge Oak Terrace","hire_date":"9/16/2017","website":"https://cbslocal.com","notes":"vestibulum sit amet cursus id turpis integer aliquet massa id lobortis","status":5,"type":1,"salary":"$949.25"}, {"id":373,"employee_id":"433933429-4","first_name":"Killian","last_name":"Foxten","email":"kfoxtenac@nih.gov","phone":"806-666-7844","gender":"Male","department":"Legal","address":"2672 Paget Street","hire_date":"4/29/2018","website":"https://irs.gov","notes":"lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula","status":2,"type":3,"salary":"$842.87"}, {"id":374,"employee_id":"169871789-X","first_name":"Lorant","last_name":"Deschlein","email":"ldeschleinad@fda.gov","phone":"266-596-1401","gender":"Male","department":"Services","address":"48451 East Pass","hire_date":"9/28/2017","website":"https://github.io","notes":"integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla","status":5,"type":3,"salary":"$1401.91"}, {"id":375,"employee_id":"486771991-9","first_name":"Nydia","last_name":"Hovy","email":"nhovyae@umich.edu","phone":"180-866-4707","gender":"Female","department":"Marketing","address":"71405 Packers Parkway","hire_date":"8/14/2017","website":"http://economist.com","notes":"nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur","status":6,"type":3,"salary":"$537.67"}, {"id":376,"employee_id":"794891441-2","first_name":"Pammy","last_name":"Fronks","email":"pfronksaf@netvibes.com","phone":"549-969-9376","gender":"Female","department":"Marketing","address":"2 Anhalt Pass","hire_date":"4/11/2018","website":"http://hc360.com","notes":"blandit mi in porttitor pede justo eu massa donec dapibus duis at velit eu est congue elementum","status":5,"type":3,"salary":"$834.07"}, {"id":377,"employee_id":"950462922-9","first_name":"Colene","last_name":"Gayforth","email":"cgayforthag@yellowbook.com","phone":"401-816-4281","gender":"Female","department":"Marketing","address":"1877 Fair Oaks Road","hire_date":"3/27/2018","website":"https://epa.gov","notes":"at velit vivamus vel nulla eget eros elementum pellentesque quisque","status":6,"type":2,"salary":"$605.34"}, {"id":378,"employee_id":"654524555-4","first_name":"Percival","last_name":"Sooper","email":"psooperah@cnet.com","phone":"316-921-4227","gender":"Male","department":"Business Development","address":"3931 Veith Circle","hire_date":"12/18/2017","website":"http://bravesites.com","notes":"congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede","status":2,"type":3,"salary":"$2124.14"}, {"id":379,"employee_id":"594683672-2","first_name":"Allan","last_name":"Bysh","email":"abyshai@blinklist.com","phone":"437-275-0839","gender":"Male","department":"Research and Development","address":"0763 Sunbrook Way","hire_date":"4/4/2018","website":"http://arizona.edu","notes":"consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere","status":3,"type":3,"salary":"$301.25"}, {"id":380,"employee_id":"250023659-5","first_name":"Evvy","last_name":"Pottes","email":"epottesaj@epa.gov","phone":"294-798-3537","gender":"Female","department":"Research and Development","address":"68 Londonderry Hill","hire_date":"5/24/2018","website":"http://tamu.edu","notes":"ligula vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam","status":5,"type":3,"salary":"$1492.20"}, {"id":381,"employee_id":"235445053-2","first_name":"Antoinette","last_name":"Wyant","email":"awyantak@squarespace.com","phone":"183-115-5357","gender":"Female","department":"Accounting","address":"1 Maple Alley","hire_date":"8/16/2017","website":"http://microsoft.com","notes":"luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum","status":6,"type":1,"salary":"$1136.98"}, {"id":382,"employee_id":"889752343-9","first_name":"Audrie","last_name":"Belamy","email":"abelamyal@indiatimes.com","phone":"111-820-5489","gender":"Female","department":"Support","address":"2859 Acker Court","hire_date":"6/25/2018","website":"http://jalbum.net","notes":"viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a","status":5,"type":2,"salary":"$905.68"}, {"id":383,"employee_id":"622648370-9","first_name":"Rhodia","last_name":"Cosgry","email":"rcosgryam@goo.ne.jp","phone":"350-490-2533","gender":"Female","department":"Engineering","address":"7 Esch Alley","hire_date":"9/2/2017","website":"https://vkontakte.ru","notes":"aliquam erat volutpat in congue etiam justo etiam pretium iaculis","status":1,"type":3,"salary":"$2334.99"}, {"id":384,"employee_id":"803014574-8","first_name":"Fabian","last_name":"Hullyer","email":"fhullyeran@t.co","phone":"127-957-1000","gender":"Male","department":"Training","address":"889 Warbler Pass","hire_date":"7/26/2017","website":"https://mozilla.com","notes":"rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat","status":5,"type":3,"salary":"$266.82"}, {"id":385,"employee_id":"847189830-6","first_name":"Pippa","last_name":"Skatcher","email":"pskatcherao@last.fm","phone":"929-459-4415","gender":"Female","department":"Services","address":"5 Novick Way","hire_date":"4/27/2018","website":"http://uol.com.br","notes":"platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem","status":6,"type":2,"salary":"$1044.65"}, {"id":386,"employee_id":"263904965-8","first_name":"Sayers","last_name":"Balmforth","email":"sbalmforthap@de.vu","phone":"358-989-1332","gender":"Male","department":"Services","address":"3 Northwestern Plaza","hire_date":"7/31/2017","website":"https://economist.com","notes":"magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient","status":6,"type":1,"salary":"$1316.51"}, {"id":387,"employee_id":"428252571-1","first_name":"Vinson","last_name":"Saenz","email":"vsaenzaq@sfgate.com","phone":"250-815-8178","gender":"Male","department":"Sales","address":"21 Karstens Place","hire_date":"2/6/2018","website":"http://geocities.jp","notes":"aliquam convallis nunc proin at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut","status":1,"type":3,"salary":"$2236.61"}, {"id":388,"employee_id":"161994026-4","first_name":"Genevra","last_name":"Ochiltree","email":"gochiltreear@google.co.jp","phone":"714-600-8674","gender":"Female","department":"Engineering","address":"1 Garrison Crossing","hire_date":"10/8/2017","website":"http://zimbio.com","notes":"orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis","status":2,"type":1,"salary":"$1088.97"}, {"id":389,"employee_id":"835257032-3","first_name":"Dale","last_name":"Sottell","email":"dsottellas@google.co.jp","phone":"740-537-9773","gender":"Male","department":"Research and Development","address":"08 Anniversary Plaza","hire_date":"4/17/2018","website":"https://wordpress.com","notes":"ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum","status":2,"type":2,"salary":"$1064.50"}, {"id":390,"employee_id":"107313260-9","first_name":"Lida","last_name":"Huxstep","email":"lhuxstepat@ted.com","phone":"889-948-5199","gender":"Female","department":"Legal","address":"4149 Bluejay Street","hire_date":"8/20/2017","website":"https://ask.com","notes":"est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum","status":3,"type":2,"salary":"$2371.16"}, {"id":391,"employee_id":"985451751-9","first_name":"Friedrich","last_name":"Stratz","email":"fstratzau@telegraph.co.uk","phone":"186-112-9915","gender":"Male","department":"Sales","address":"0 Dryden Court","hire_date":"8/9/2017","website":"http://berkeley.edu","notes":"ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","status":2,"type":3,"salary":"$1988.89"}, {"id":392,"employee_id":"092254097-7","first_name":"Dominik","last_name":"Bartolozzi","email":"dbartolozziav@noaa.gov","phone":"957-324-8100","gender":"Male","department":"Human Resources","address":"991 Onsgard Crossing","hire_date":"3/3/2018","website":"https://ucsd.edu","notes":"libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed vel enim sit amet","status":5,"type":1,"salary":"$2429.00"}, {"id":393,"employee_id":"830741061-4","first_name":"Sioux","last_name":"Lease","email":"sleaseaw@hhs.gov","phone":"549-636-6532","gender":"Female","department":"Business Development","address":"4 Jackson Point","hire_date":"1/21/2018","website":"http://vk.com","notes":"nascetur ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean","status":6,"type":2,"salary":"$2212.91"}, {"id":394,"employee_id":"877010064-0","first_name":"Neall","last_name":"Cronchey","email":"ncroncheyax@nyu.edu","phone":"739-585-7518","gender":"Male","department":"Legal","address":"7 Hintze Road","hire_date":"6/5/2018","website":"http://wunderground.com","notes":"nam congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie","status":1,"type":2,"salary":"$2317.04"}, {"id":395,"employee_id":"499456882-0","first_name":"Berget","last_name":"Matton","email":"bmattonay@answers.com","phone":"619-882-9196","gender":"Female","department":"Marketing","address":"4 Leroy Place","hire_date":"11/8/2017","website":"http://nifty.com","notes":"mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl","status":5,"type":3,"salary":"$1580.67"}, {"id":396,"employee_id":"488959067-6","first_name":"Emelita","last_name":"Robertelli","email":"erobertelliaz@umich.edu","phone":"204-696-0674","gender":"Female","department":"Accounting","address":"95 Lake View Point","hire_date":"6/27/2018","website":"https://paypal.com","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum","status":6,"type":1,"salary":"$1226.25"}, {"id":397,"employee_id":"551305144-3","first_name":"Cindelyn","last_name":"Eveleigh","email":"ceveleighb0@github.com","phone":"176-952-7360","gender":"Female","department":"Product Management","address":"28 Kinsman Place","hire_date":"9/22/2017","website":"https://npr.org","notes":"orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a","status":4,"type":3,"salary":"$1897.98"}, {"id":398,"employee_id":"810440645-0","first_name":"Lorna","last_name":"Kingzett","email":"lkingzettb1@fastcompany.com","phone":"832-292-1374","gender":"Female","department":"Human Resources","address":"48232 Debra Pass","hire_date":"12/21/2017","website":"https://goo.ne.jp","notes":"ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor convallis nulla neque","status":5,"type":3,"salary":"$1026.49"}, {"id":399,"employee_id":"080183001-X","first_name":"Abramo","last_name":"Oakenford","email":"aoakenfordb2@amazon.co.uk","phone":"450-581-3259","gender":"Male","department":"Research and Development","address":"46724 Merchant Crossing","hire_date":"12/13/2017","website":"https://elpais.com","notes":"vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien","status":1,"type":1,"salary":"$1572.74"}, {"id":400,"employee_id":"833852337-2","first_name":"Gabriele","last_name":"Meffan","email":"gmeffanb3@stanford.edu","phone":"944-595-0107","gender":"Male","department":"Product Management","address":"40073 Quincy Plaza","hire_date":"12/19/2017","website":"http://spiegel.de","notes":"justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula","status":5,"type":1,"salary":"$914.07"}, {"id":401,"employee_id":"998052226-7","first_name":"Tabbie","last_name":"Sebrook","email":"tsebrookb4@cocolog-nifty.com","phone":"947-266-9947","gender":"Female","department":"Human Resources","address":"34699 Kingsford Lane","hire_date":"11/4/2017","website":"https://microsoft.com","notes":"bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis","status":5,"type":3,"salary":"$1686.77"}, {"id":402,"employee_id":"133779813-4","first_name":"Edmund","last_name":"Hanlon","email":"ehanlonb5@networksolutions.com","phone":"173-176-9011","gender":"Male","department":"Legal","address":"8340 Continental Point","hire_date":"10/7/2017","website":"https://freewebs.com","notes":"blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula","status":2,"type":1,"salary":"$844.65"}, {"id":403,"employee_id":"613889123-6","first_name":"Terence","last_name":"O\'Beirne","email":"tobeirneb6@cornell.edu","phone":"905-462-3351","gender":"Male","department":"Support","address":"3 Bonner Alley","hire_date":"12/13/2017","website":"http://un.org","notes":"mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac","status":6,"type":2,"salary":"$1577.22"}, {"id":404,"employee_id":"647413403-8","first_name":"Oliviero","last_name":"Sinnatt","email":"osinnattb7@symantec.com","phone":"729-265-7257","gender":"Male","department":"Marketing","address":"1888 Shopko Drive","hire_date":"3/10/2018","website":"https://nsw.gov.au","notes":"cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis","status":5,"type":1,"salary":"$324.89"}, {"id":405,"employee_id":"389069925-1","first_name":"Rochell","last_name":"Ivanenko","email":"rivanenkob8@wunderground.com","phone":"742-462-3688","gender":"Female","department":"Marketing","address":"259 Lawn Junction","hire_date":"11/17/2017","website":"http://desdev.cn","notes":"consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices","status":4,"type":1,"salary":"$2059.09"}, {"id":406,"employee_id":"796375921-X","first_name":"Zelma","last_name":"Cochrane","email":"zcochraneb9@comsenz.com","phone":"872-855-5401","gender":"Female","department":"Training","address":"5 Westridge Junction","hire_date":"5/14/2018","website":"https://blogtalkradio.com","notes":"enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id","status":1,"type":1,"salary":"$2120.66"}, {"id":407,"employee_id":"841989729-9","first_name":"Chauncey","last_name":"Heather","email":"cheatherba@uiuc.edu","phone":"600-700-7118","gender":"Male","department":"Accounting","address":"942 Debs Lane","hire_date":"11/5/2017","website":"https://cmu.edu","notes":"ut volutpat sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam","status":5,"type":3,"salary":"$1866.02"}, {"id":408,"employee_id":"260368664-X","first_name":"Jacqueline","last_name":"Meininking","email":"jmeininkingbb@ustream.tv","phone":"403-605-5221","gender":"Female","department":"Sales","address":"34807 Lillian Hill","hire_date":"1/22/2018","website":"https://slideshare.net","notes":"ut mauris eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo","status":6,"type":2,"salary":"$1897.36"}, {"id":409,"employee_id":"905913948-8","first_name":"Levin","last_name":"Mynett","email":"lmynettbc@tripod.com","phone":"562-364-1414","gender":"Male","department":"Accounting","address":"8270 Artisan Avenue","hire_date":"10/6/2017","website":"https://mlb.com","notes":"orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae","status":4,"type":1,"salary":"$2322.53"}, {"id":410,"employee_id":"650442677-5","first_name":"Enriqueta","last_name":"Pencost","email":"epencostbd@weibo.com","phone":"267-901-5489","gender":"Female","department":"Human Resources","address":"598 Arizona Place","hire_date":"3/21/2018","website":"https://webmd.com","notes":"phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing","status":3,"type":2,"salary":"$1008.64"}, {"id":411,"employee_id":"421313005-3","first_name":"Cornelius","last_name":"Lazare","email":"clazarebe@w3.org","phone":"564-686-3591","gender":"Male","department":"Research and Development","address":"3048 Sutherland Road","hire_date":"3/2/2018","website":"http://weibo.com","notes":"rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non","status":2,"type":3,"salary":"$1325.42"}, {"id":412,"employee_id":"983822460-X","first_name":"Quincy","last_name":"Grahlmans","email":"qgrahlmansbf@theatlantic.com","phone":"866-507-8470","gender":"Male","department":"Engineering","address":"86 Anthes Way","hire_date":"3/2/2018","website":"http://wikia.com","notes":"lacus at turpis donec posuere metus vitae ipsum aliquam non mauris","status":3,"type":1,"salary":"$363.47"}, {"id":413,"employee_id":"117391982-1","first_name":"Cirilo","last_name":"Clynmans","email":"cclynmansbg@umich.edu","phone":"395-209-8577","gender":"Male","department":"Legal","address":"0069 Towne Parkway","hire_date":"4/3/2018","website":"https://paginegialle.it","notes":"congue risus semper porta volutpat quam pede lobortis ligula sit","status":3,"type":1,"salary":"$2046.10"}, {"id":414,"employee_id":"123040897-5","first_name":"Leola","last_name":"Olive","email":"lolivebh@usda.gov","phone":"255-399-7211","gender":"Female","department":"Training","address":"8 Dexter Street","hire_date":"9/13/2017","website":"https://prlog.org","notes":"at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra","status":1,"type":2,"salary":"$2179.76"}, {"id":415,"employee_id":"048982860-4","first_name":"Bessy","last_name":"Lisett","email":"blisettbi@auda.org.au","phone":"141-333-0171","gender":"Female","department":"Research and Development","address":"5 Myrtle Plaza","hire_date":"9/14/2017","website":"https://wikimedia.org","notes":"nibh in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna","status":1,"type":1,"salary":"$703.89"}, {"id":416,"employee_id":"582613143-8","first_name":"Donella","last_name":"Vanns","email":"dvannsbj@wisc.edu","phone":"970-218-4877","gender":"Female","department":"Services","address":"6848 Huxley Plaza","hire_date":"2/13/2018","website":"https://state.tx.us","notes":"lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus","status":6,"type":1,"salary":"$1145.45"}, {"id":417,"employee_id":"081845515-2","first_name":"Roch","last_name":"McCourt","email":"rmccourtbk@addtoany.com","phone":"882-177-9493","gender":"Female","department":"Research and Development","address":"20412 Merry Hill","hire_date":"1/7/2018","website":"http://cocolog-nifty.com","notes":"integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus","status":4,"type":3,"salary":"$817.33"}, {"id":418,"employee_id":"036363287-5","first_name":"Gratiana","last_name":"Burgwin","email":"gburgwinbl@joomla.org","phone":"494-479-3075","gender":"Female","department":"Training","address":"9 Cherokee Lane","hire_date":"6/9/2018","website":"http://seesaa.net","notes":"in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus","status":1,"type":3,"salary":"$2007.48"}, {"id":419,"employee_id":"033776599-5","first_name":"Danita","last_name":"Whitney","email":"dwhitneybm@columbia.edu","phone":"910-138-5581","gender":"Female","department":"Engineering","address":"695 Nancy Street","hire_date":"12/8/2017","website":"http://imgur.com","notes":"at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in hac","status":4,"type":1,"salary":"$2237.53"}, {"id":420,"employee_id":"778275184-5","first_name":"Christoffer","last_name":"Poller","email":"cpollerbn@liveinternet.ru","phone":"509-133-8807","gender":"Male","department":"Marketing","address":"5 Arapahoe Pass","hire_date":"10/15/2017","website":"http://google.co.uk","notes":"arcu libero rutrum ac lobortis vel dapibus at diam nam","status":6,"type":1,"salary":"$1722.57"}, {"id":421,"employee_id":"095854373-9","first_name":"Ericha","last_name":"Physic","email":"ephysicbo@dot.gov","phone":"828-235-6456","gender":"Female","department":"Human Resources","address":"1 Shelley Plaza","hire_date":"5/3/2018","website":"https://comcast.net","notes":"id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris","status":5,"type":1,"salary":"$2094.79"}, {"id":422,"employee_id":"954333375-0","first_name":"Adelle","last_name":"Northedge","email":"anorthedgebp@digg.com","phone":"369-954-3928","gender":"Female","department":"Human Resources","address":"132 Debs Parkway","hire_date":"9/8/2017","website":"http://timesonline.co.uk","notes":"auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis","status":2,"type":1,"salary":"$436.40"}, {"id":423,"employee_id":"407584814-0","first_name":"Phedra","last_name":"Gynn","email":"pgynnbq@quantcast.com","phone":"511-999-5539","gender":"Female","department":"Business Development","address":"965 Portage Alley","hire_date":"8/2/2017","website":"https://myspace.com","notes":"platea dictumst maecenas ut massa quis augue luctus tincidunt nulla","status":3,"type":3,"salary":"$1684.71"}, {"id":424,"employee_id":"812940375-7","first_name":"Erv","last_name":"Mawne","email":"emawnebr@umich.edu","phone":"680-716-0959","gender":"Male","department":"Legal","address":"2 Glacier Hill Place","hire_date":"6/17/2018","website":"https://salon.com","notes":"quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum","status":1,"type":3,"salary":"$544.33"}, {"id":425,"employee_id":"064808940-1","first_name":"Portie","last_name":"Tremblett","email":"ptremblettbs@sitemeter.com","phone":"529-659-3946","gender":"Male","department":"Research and Development","address":"14 Sachs Drive","hire_date":"4/22/2018","website":"http://acquirethisname.com","notes":"quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida","status":5,"type":1,"salary":"$689.76"}, {"id":426,"employee_id":"151407990-9","first_name":"Jaime","last_name":"Bygraves","email":"jbygravesbt@google.cn","phone":"812-900-3571","gender":"Female","department":"Business Development","address":"25 Del Sol Avenue","hire_date":"10/24/2017","website":"http://indiegogo.com","notes":"mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam","status":4,"type":1,"salary":"$280.64"}, {"id":427,"employee_id":"252278282-7","first_name":"Elle","last_name":"Sellack","email":"esellackbu@imgur.com","phone":"142-859-9709","gender":"Female","department":"Legal","address":"41421 Hooker Plaza","hire_date":"10/29/2017","website":"https://woothemes.com","notes":"feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa","status":3,"type":2,"salary":"$507.42"}, {"id":428,"employee_id":"109983946-7","first_name":"Roma","last_name":"Kienlein","email":"rkienleinbv@indiatimes.com","phone":"356-265-5875","gender":"Male","department":"Services","address":"65 Warrior Parkway","hire_date":"8/26/2017","website":"https://rakuten.co.jp","notes":"at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut","status":6,"type":1,"salary":"$914.01"}, {"id":429,"employee_id":"454856453-5","first_name":"Margarita","last_name":"Wedge","email":"mwedgebw@discuz.net","phone":"745-912-2962","gender":"Female","department":"Training","address":"73167 Farragut Terrace","hire_date":"12/25/2017","website":"http://flickr.com","notes":"luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque","status":1,"type":2,"salary":"$280.02"}, {"id":430,"employee_id":"839482313-0","first_name":"Franciskus","last_name":"Teresia","email":"fteresiabx@nymag.com","phone":"993-710-8153","gender":"Male","department":"Research and Development","address":"78 Valley Edge Alley","hire_date":"10/27/2017","website":"http://accuweather.com","notes":"potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt","status":4,"type":1,"salary":"$699.50"}, {"id":431,"employee_id":"760810405-8","first_name":"Christophorus","last_name":"Enderlein","email":"cenderleinby@hexun.com","phone":"320-344-3696","gender":"Male","department":"Legal","address":"1832 Kings Junction","hire_date":"4/6/2018","website":"http://blogtalkradio.com","notes":"at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id","status":3,"type":1,"salary":"$1994.40"}, {"id":432,"employee_id":"182653883-6","first_name":"Maggi","last_name":"Blofield","email":"mblofieldbz@hao123.com","phone":"382-195-4044","gender":"Female","department":"Marketing","address":"21 Carioca Court","hire_date":"10/29/2017","website":"http://opensource.org","notes":"luctus ultricies eu nibh quisque id justo sit amet sapien dignissim","status":5,"type":2,"salary":"$825.43"}, {"id":433,"employee_id":"966678917-5","first_name":"Ag","last_name":"Wearing","email":"awearingc0@gnu.org","phone":"674-999-6239","gender":"Female","department":"Accounting","address":"4 Carey Court","hire_date":"7/9/2018","website":"https://techcrunch.com","notes":"a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio","status":6,"type":2,"salary":"$2049.80"}, {"id":434,"employee_id":"244727837-3","first_name":"Prentiss","last_name":"Kerman","email":"pkermanc1@adobe.com","phone":"783-187-8171","gender":"Male","department":"Marketing","address":"06910 Aberg Road","hire_date":"5/20/2018","website":"https://webmd.com","notes":"eu interdum eu tincidunt in leo maecenas pulvinar lobortis est","status":1,"type":3,"salary":"$1134.24"}, {"id":435,"employee_id":"018330941-3","first_name":"Laureen","last_name":"Lanon","email":"llanonc2@unc.edu","phone":"611-782-3718","gender":"Female","department":"Services","address":"36 Westend Plaza","hire_date":"11/2/2017","website":"https://e-recht24.de","notes":"accumsan tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum","status":1,"type":3,"salary":"$1568.91"}, {"id":436,"employee_id":"081790270-8","first_name":"Larissa","last_name":"Cowill","email":"lcowillc3@go.com","phone":"172-352-8279","gender":"Female","department":"Business Development","address":"1 Onsgard Circle","hire_date":"4/17/2018","website":"http://unblog.fr","notes":"odio consequat varius integer ac leo pellentesque ultrices mattis odio donec","status":4,"type":3,"salary":"$2035.66"}, {"id":437,"employee_id":"767401913-6","first_name":"Arny","last_name":"Mossdale","email":"amossdalec4@ucoz.ru","phone":"859-929-0052","gender":"Male","department":"Accounting","address":"2 Buena Vista Point","hire_date":"4/19/2018","website":"https://umn.edu","notes":"ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna","status":2,"type":1,"salary":"$512.76"}, {"id":438,"employee_id":"086425835-6","first_name":"Deena","last_name":"Kryszkiecicz","email":"dkryszkieciczc5@sitemeter.com","phone":"317-630-8147","gender":"Female","department":"Marketing","address":"9174 Crest Line Junction","hire_date":"7/1/2018","website":"http://microsoft.com","notes":"odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac","status":4,"type":1,"salary":"$491.47"}, {"id":439,"employee_id":"883721633-5","first_name":"Casar","last_name":"Mozzetti","email":"cmozzettic6@pcworld.com","phone":"736-647-0293","gender":"Male","department":"Sales","address":"4147 Bonner Center","hire_date":"1/16/2018","website":"http://nymag.com","notes":"non mi integer ac neque duis bibendum morbi non quam nec dui","status":6,"type":1,"salary":"$1244.14"}, {"id":440,"employee_id":"434650054-4","first_name":"Darice","last_name":"Scripps","email":"dscrippsc7@wix.com","phone":"699-549-7625","gender":"Female","department":"Accounting","address":"4 Daystar Place","hire_date":"9/18/2017","website":"https://wikispaces.com","notes":"in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate","status":4,"type":1,"salary":"$1786.65"}, {"id":441,"employee_id":"076235846-7","first_name":"Kelsi","last_name":"Cancellieri","email":"kcancellieric8@salon.com","phone":"563-608-6571","gender":"Female","department":"Product Management","address":"470 Holmberg Place","hire_date":"8/4/2017","website":"http://ftc.gov","notes":"velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante","status":5,"type":3,"salary":"$513.44"}, {"id":442,"employee_id":"569952107-0","first_name":"Curt","last_name":"Tunmore","email":"ctunmorec9@wisc.edu","phone":"782-762-3868","gender":"Male","department":"Legal","address":"16506 Westend Junction","hire_date":"5/16/2018","website":"https://sakura.ne.jp","notes":"sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl","status":2,"type":3,"salary":"$1213.96"}, {"id":443,"employee_id":"383633966-8","first_name":"Fay","last_name":"Kinnerk","email":"fkinnerkca@macromedia.com","phone":"215-422-3554","gender":"Female","department":"Business Development","address":"02657 Lake View Junction","hire_date":"8/2/2017","website":"http://angelfire.com","notes":"posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue","status":4,"type":2,"salary":"$407.95"}, {"id":444,"employee_id":"729346815-6","first_name":"Kelbee","last_name":"Dumbleton","email":"kdumbletoncb@behance.net","phone":"749-679-4798","gender":"Male","department":"Training","address":"5 Mariners Cove Street","hire_date":"1/24/2018","website":"https://cyberchimps.com","notes":"nascetur ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id","status":5,"type":1,"salary":"$696.08"}, {"id":445,"employee_id":"747521861-9","first_name":"Davin","last_name":"Merricks","email":"dmerrickscc@ask.com","phone":"785-747-6250","gender":"Male","department":"Research and Development","address":"5142 Montana Way","hire_date":"7/13/2018","website":"https://google.pl","notes":"dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in","status":4,"type":2,"salary":"$642.15"}, {"id":446,"employee_id":"216019302-X","first_name":"Garner","last_name":"Dwyr","email":"gdwyrcd@samsung.com","phone":"385-543-7297","gender":"Male","department":"Research and Development","address":"4 Linden Park","hire_date":"8/25/2017","website":"http://nsw.gov.au","notes":"eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien","status":6,"type":2,"salary":"$1391.05"}, {"id":447,"employee_id":"555101167-4","first_name":"Loella","last_name":"Bartosinski","email":"lbartosinskice@topsy.com","phone":"181-493-0626","gender":"Female","department":"Product Management","address":"4498 Loeprich Trail","hire_date":"5/26/2018","website":"http://about.me","notes":"ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor","status":2,"type":3,"salary":"$917.71"}, {"id":448,"employee_id":"970348373-9","first_name":"Zaccaria","last_name":"Cliff","email":"zcliffcf@goodreads.com","phone":"452-781-4791","gender":"Male","department":"Product Management","address":"27100 8th Trail","hire_date":"9/11/2017","website":"https://i2i.jp","notes":"pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus","status":2,"type":3,"salary":"$2137.89"}, {"id":449,"employee_id":"561313066-3","first_name":"Lizabeth","last_name":"Darell","email":"ldarellcg@army.mil","phone":"178-691-2018","gender":"Female","department":"Support","address":"3028 Sunbrook Drive","hire_date":"6/20/2018","website":"https://pagesperso-orange.fr","notes":"nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id","status":3,"type":2,"salary":"$548.39"}, {"id":450,"employee_id":"475249315-2","first_name":"Karole","last_name":"Moorhouse","email":"kmoorhousech@ask.com","phone":"971-402-0509","gender":"Female","department":"Human Resources","address":"83274 Blue Bill Park Center","hire_date":"12/31/2017","website":"https://seattletimes.com","notes":"non mauris morbi non lectus aliquam sit amet diam in magna bibendum","status":1,"type":3,"salary":"$1469.00"}, {"id":451,"employee_id":"890740322-8","first_name":"Tyne","last_name":"Carbine","email":"tcarbineci@illinois.edu","phone":"988-771-6510","gender":"Female","department":"Human Resources","address":"8568 American Crossing","hire_date":"12/15/2017","website":"https://apple.com","notes":"nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros","status":3,"type":1,"salary":"$662.93"}, {"id":452,"employee_id":"737691319-X","first_name":"Pattie","last_name":"Ben-Aharon","email":"pbenaharoncj@sciencedirect.com","phone":"261-507-6937","gender":"Male","department":"Research and Development","address":"671 Walton Point","hire_date":"5/8/2018","website":"http://blinklist.com","notes":"vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget","status":5,"type":3,"salary":"$882.17"}, {"id":453,"employee_id":"622434271-7","first_name":"Alberik","last_name":"O\'Regan","email":"aoreganck@gmpg.org","phone":"282-555-1049","gender":"Male","department":"Training","address":"2298 Summer Ridge Way","hire_date":"12/3/2017","website":"https://arstechnica.com","notes":"in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque","status":3,"type":1,"salary":"$1495.86"}, {"id":454,"employee_id":"024409622-8","first_name":"Melessa","last_name":"Jennery","email":"mjennerycl@army.mil","phone":"163-199-2858","gender":"Female","department":"Training","address":"14485 Mandrake Street","hire_date":"10/1/2017","website":"https://macromedia.com","notes":"ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer pede","status":4,"type":1,"salary":"$1533.74"}, {"id":455,"employee_id":"681357341-1","first_name":"Pablo","last_name":"Kearns","email":"pkearnscm@wunderground.com","phone":"859-351-4526","gender":"Male","department":"Engineering","address":"26982 8th Terrace","hire_date":"11/9/2017","website":"http://huffingtonpost.com","notes":"montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient","status":1,"type":3,"salary":"$1783.68"}, {"id":456,"employee_id":"964951088-5","first_name":"Kyle","last_name":"Shallow","email":"kshallowcn@shop-pro.jp","phone":"328-483-0063","gender":"Male","department":"Support","address":"3 Transport Parkway","hire_date":"11/28/2017","website":"http://guardian.co.uk","notes":"amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed","status":6,"type":2,"salary":"$460.54"}, {"id":457,"employee_id":"312016021-0","first_name":"Gunter","last_name":"Hammatt","email":"ghammattco@slashdot.org","phone":"708-848-5471","gender":"Male","department":"Sales","address":"9 Springview Circle","hire_date":"9/19/2017","website":"http://ucoz.ru","notes":"quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor","status":1,"type":1,"salary":"$982.54"}, {"id":458,"employee_id":"851918413-8","first_name":"Justis","last_name":"Libby","email":"jlibbycp@answers.com","phone":"142-806-3092","gender":"Male","department":"Accounting","address":"0 Boyd Street","hire_date":"2/21/2018","website":"https://lycos.com","notes":"elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue","status":2,"type":2,"salary":"$641.35"}, {"id":459,"employee_id":"213358260-6","first_name":"Aldus","last_name":"McClintock","email":"amcclintockcq@nydailynews.com","phone":"332-699-9611","gender":"Male","department":"Legal","address":"84181 Westend Way","hire_date":"9/25/2017","website":"http://free.fr","notes":"tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo","status":2,"type":2,"salary":"$1369.07"}, {"id":460,"employee_id":"672487599-4","first_name":"Luce","last_name":"Sculley","email":"lsculleycr@myspace.com","phone":"121-950-8814","gender":"Female","department":"Support","address":"008 Fairfield Pass","hire_date":"12/21/2017","website":"http://buzzfeed.com","notes":"dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero","status":5,"type":1,"salary":"$1348.05"}, {"id":461,"employee_id":"647304520-1","first_name":"Guilbert","last_name":"Denty","email":"gdentycs@cbsnews.com","phone":"574-982-6460","gender":"Male","department":"Training","address":"37882 Thierer Crossing","hire_date":"10/28/2017","website":"https://gnu.org","notes":"lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam","status":6,"type":2,"salary":"$296.09"}, {"id":462,"employee_id":"189235750-X","first_name":"Erika","last_name":"Eldred","email":"eeldredct@icio.us","phone":"733-760-3435","gender":"Female","department":"Research and Development","address":"94826 Logan Place","hire_date":"2/18/2018","website":"https://freewebs.com","notes":"ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis","status":2,"type":2,"salary":"$741.69"}, {"id":463,"employee_id":"419696894-5","first_name":"Jo","last_name":"Copeman","email":"jcopemancu@geocities.com","phone":"173-702-0656","gender":"Male","department":"Business Development","address":"4949 Kennedy Lane","hire_date":"7/14/2018","website":"https://ed.gov","notes":"nulla facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros","status":6,"type":2,"salary":"$1835.35"}, {"id":464,"employee_id":"015027493-9","first_name":"Peyter","last_name":"Hellmore","email":"phellmorecv@digg.com","phone":"632-582-9736","gender":"Male","department":"Engineering","address":"3121 Waywood Hill","hire_date":"9/6/2017","website":"https://imdb.com","notes":"nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc","status":6,"type":2,"salary":"$2212.66"}, {"id":465,"employee_id":"832937399-1","first_name":"Orin","last_name":"Barbie","email":"obarbiecw@huffingtonpost.com","phone":"256-215-8770","gender":"Male","department":"Marketing","address":"32669 Iowa Parkway","hire_date":"2/18/2018","website":"http://artisteer.com","notes":"pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a","status":1,"type":1,"salary":"$1866.77"}, {"id":466,"employee_id":"072281813-0","first_name":"Orelee","last_name":"Copsey","email":"ocopseycx@utexas.edu","phone":"394-385-8452","gender":"Female","department":"Support","address":"8 Drewry Point","hire_date":"10/4/2017","website":"https://constantcontact.com","notes":"enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id","status":4,"type":2,"salary":"$1230.46"}, {"id":467,"employee_id":"606044235-8","first_name":"Sigismondo","last_name":"Ofen","email":"sofency@mapquest.com","phone":"341-819-8669","gender":"Male","department":"Research and Development","address":"77396 Doe Crossing Alley","hire_date":"8/11/2017","website":"http://princeton.edu","notes":"pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim lorem","status":6,"type":2,"salary":"$1765.19"}, {"id":468,"employee_id":"821273689-X","first_name":"Jedediah","last_name":"MacLaig","email":"jmaclaigcz@360.cn","phone":"534-631-5874","gender":"Male","department":"Services","address":"4 Comanche Parkway","hire_date":"1/12/2018","website":"https://squarespace.com","notes":"curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel","status":4,"type":1,"salary":"$1215.24"}, {"id":469,"employee_id":"066207236-7","first_name":"Beverlee","last_name":"O\' Loughran","email":"boloughrand0@cyberchimps.com","phone":"127-755-5606","gender":"Female","department":"Marketing","address":"74 Lotheville Parkway","hire_date":"12/11/2017","website":"https://nsw.gov.au","notes":"vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis","status":6,"type":3,"salary":"$2307.28"}, {"id":470,"employee_id":"844898553-2","first_name":"Martica","last_name":"Matteoli","email":"mmatteolid1@pen.io","phone":"672-519-4332","gender":"Female","department":"Engineering","address":"2 Badeau Junction","hire_date":"4/12/2018","website":"https://npr.org","notes":"consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue","status":6,"type":3,"salary":"$984.27"}, {"id":471,"employee_id":"311719965-9","first_name":"Huberto","last_name":"Potte","email":"hpotted2@princeton.edu","phone":"863-788-5617","gender":"Male","department":"Marketing","address":"87 Ridge Oak Parkway","hire_date":"4/19/2018","website":"http://washington.edu","notes":"faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec","status":1,"type":3,"salary":"$878.14"}, {"id":472,"employee_id":"582143417-3","first_name":"Cliff","last_name":"Packer","email":"cpackerd3@kickstarter.com","phone":"508-822-7087","gender":"Male","department":"Services","address":"5595 Burrows Point","hire_date":"6/24/2018","website":"https://techcrunch.com","notes":"curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a","status":6,"type":3,"salary":"$381.41"}, {"id":473,"employee_id":"855235495-0","first_name":"Ross","last_name":"Ladley","email":"rladleyd4@cnn.com","phone":"198-656-5423","gender":"Male","department":"Product Management","address":"1 Northport Road","hire_date":"6/15/2018","website":"http://bluehost.com","notes":"dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus","status":2,"type":2,"salary":"$2146.81"}, {"id":474,"employee_id":"404159862-1","first_name":"Alyce","last_name":"McCleod","email":"amccleodd5@redcross.org","phone":"880-580-5700","gender":"Female","department":"Human Resources","address":"925 Bultman Parkway","hire_date":"2/25/2018","website":"https://com.com","notes":"fusce congue diam id ornare imperdiet sapien urna pretium nisl ut","status":6,"type":3,"salary":"$1903.25"}, {"id":475,"employee_id":"589835155-8","first_name":"Verina","last_name":"Courvert","email":"vcourvertd6@cafepress.com","phone":"172-360-9828","gender":"Female","department":"Accounting","address":"8974 Spaight Street","hire_date":"7/16/2018","website":"https://google.fr","notes":"duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam","status":6,"type":1,"salary":"$1561.79"}, {"id":476,"employee_id":"972641382-6","first_name":"Culver","last_name":"Marchant","email":"cmarchantd7@hhs.gov","phone":"554-336-4806","gender":"Male","department":"Support","address":"399 Loomis Way","hire_date":"3/27/2018","website":"https://simplemachines.org","notes":"dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium","status":4,"type":1,"salary":"$654.68"}, {"id":477,"employee_id":"500316478-5","first_name":"Caye","last_name":"Vogl","email":"cvogld8@weibo.com","phone":"185-256-5198","gender":"Female","department":"Research and Development","address":"96853 Homewood Pass","hire_date":"4/5/2018","website":"https://intel.com","notes":"mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl","status":3,"type":1,"salary":"$1814.29"}, {"id":478,"employee_id":"907436177-3","first_name":"Clerc","last_name":"Ramalhete","email":"cramalheted9@slate.com","phone":"830-908-1520","gender":"Male","department":"Legal","address":"93 Almo Hill","hire_date":"1/1/2018","website":"http://wufoo.com","notes":"sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices","status":5,"type":2,"salary":"$1579.44"}, {"id":479,"employee_id":"995025649-6","first_name":"Tomkin","last_name":"Hasluck","email":"thasluckda@fema.gov","phone":"978-887-7805","gender":"Male","department":"Services","address":"8482 Lindbergh Place","hire_date":"2/16/2018","website":"http://pcworld.com","notes":"vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam","status":3,"type":1,"salary":"$953.22"}, {"id":480,"employee_id":"066615751-0","first_name":"Odette","last_name":"Giabuzzi","email":"ogiabuzzidb@posterous.com","phone":"489-723-2878","gender":"Female","department":"Business Development","address":"45078 Burning Wood Court","hire_date":"3/10/2018","website":"https://oaic.gov.au","notes":"in congue etiam justo etiam pretium iaculis justo in hac habitasse platea","status":3,"type":2,"salary":"$254.89"}, {"id":481,"employee_id":"702181810-6","first_name":"Jervis","last_name":"Agdahl","email":"jagdahldc@typepad.com","phone":"912-890-8348","gender":"Male","department":"Marketing","address":"44161 Trailsway Crossing","hire_date":"11/25/2017","website":"https://furl.net","notes":"nisl nunc rhoncus dui vel sem sed sagittis nam congue risus","status":6,"type":1,"salary":"$1736.06"}, {"id":482,"employee_id":"718527178-9","first_name":"Selby","last_name":"Dore","email":"sdoredd@sogou.com","phone":"273-822-7706","gender":"Male","department":"Sales","address":"9855 Aberg Alley","hire_date":"4/26/2018","website":"http://hp.com","notes":"a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis","status":2,"type":1,"salary":"$665.95"}, {"id":483,"employee_id":"194704747-7","first_name":"Peyter","last_name":"Simonsson","email":"psimonssonde@theguardian.com","phone":"745-367-5082","gender":"Male","department":"Research and Development","address":"26 Donald Avenue","hire_date":"1/17/2018","website":"http://netvibes.com","notes":"sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit","status":4,"type":3,"salary":"$648.55"}, {"id":484,"employee_id":"546275328-4","first_name":"Tarrah","last_name":"Badrick","email":"tbadrickdf@geocities.jp","phone":"197-873-5702","gender":"Female","department":"Support","address":"8 Farmco Hill","hire_date":"4/23/2018","website":"http://hao123.com","notes":"quam nec dui luctus rutrum nulla tellus in sagittis dui","status":2,"type":2,"salary":"$505.63"}, {"id":485,"employee_id":"161723623-3","first_name":"Eduino","last_name":"Trengrouse","email":"etrengrousedg@hao123.com","phone":"225-234-9800","gender":"Male","department":"Business Development","address":"76471 Spaight Drive","hire_date":"5/22/2018","website":"https://ovh.net","notes":"mauris eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu","status":1,"type":2,"salary":"$1731.67"}, {"id":486,"employee_id":"070034175-7","first_name":"Shir","last_name":"Capper","email":"scapperdh@multiply.com","phone":"537-286-9052","gender":"Female","department":"Research and Development","address":"8 Troy Place","hire_date":"4/5/2018","website":"http://cnet.com","notes":"lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed","status":2,"type":1,"salary":"$494.21"}, {"id":487,"employee_id":"767827536-6","first_name":"Tani","last_name":"Cuxson","email":"tcuxsondi@yahoo.com","phone":"880-339-2128","gender":"Female","department":"Support","address":"8250 Eagan Terrace","hire_date":"4/5/2018","website":"http://howstuffworks.com","notes":"morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet","status":6,"type":2,"salary":"$959.94"}, {"id":488,"employee_id":"902168185-4","first_name":"Rand","last_name":"MacQueen","email":"rmacqueendj@bravesites.com","phone":"617-715-8951","gender":"Male","department":"Accounting","address":"08228 Pawling Court","hire_date":"3/14/2018","website":"https://state.tx.us","notes":"vulputate elementum nullam varius nulla facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus","status":6,"type":2,"salary":"$1160.93"}, {"id":489,"employee_id":"040879291-4","first_name":"Talyah","last_name":"Shernock","email":"tshernockdk@state.tx.us","phone":"741-423-4538","gender":"Female","department":"Sales","address":"20 Melby Avenue","hire_date":"2/25/2018","website":"http://e-recht24.de","notes":"pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc","status":2,"type":1,"salary":"$572.13"}, {"id":490,"employee_id":"474259442-8","first_name":"Jacquelin","last_name":"Santello","email":"jsantellodl@geocities.com","phone":"537-411-8619","gender":"Female","department":"Support","address":"57889 Manitowish Alley","hire_date":"8/20/2017","website":"https://i2i.jp","notes":"sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris","status":3,"type":1,"salary":"$332.58"}, {"id":491,"employee_id":"450169658-3","first_name":"Bell","last_name":"Beckley","email":"bbeckleydm@cloudflare.com","phone":"217-894-3996","gender":"Female","department":"Support","address":"77 Mosinee Drive","hire_date":"6/24/2018","website":"http://sogou.com","notes":"vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat","status":2,"type":2,"salary":"$1353.02"}, {"id":492,"employee_id":"086726928-6","first_name":"Ivory","last_name":"Likly","email":"iliklydn@scientificamerican.com","phone":"609-525-5539","gender":"Female","department":"Training","address":"661 Daystar Pass","hire_date":"8/27/2017","website":"http://sfgate.com","notes":"iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat","status":1,"type":2,"salary":"$1809.00"}, {"id":493,"employee_id":"711819703-3","first_name":"Fae","last_name":"Wiggall","email":"fwiggalldo@columbia.edu","phone":"437-540-3973","gender":"Female","department":"Marketing","address":"36 Forest Dale Circle","hire_date":"9/24/2017","website":"http://newsvine.com","notes":"dui proin leo odio porttitor id consequat in consequat ut","status":4,"type":3,"salary":"$2403.80"}, {"id":494,"employee_id":"290349600-5","first_name":"Ernestine","last_name":"Goalby","email":"egoalbydp@digg.com","phone":"180-831-1929","gender":"Female","department":"Engineering","address":"7 Del Mar Point","hire_date":"10/19/2017","website":"https://tiny.cc","notes":"quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere","status":6,"type":3,"salary":"$2336.08"}, {"id":495,"employee_id":"538385022-8","first_name":"Jessie","last_name":"Impey","email":"jimpeydq@washingtonpost.com","phone":"422-805-3725","gender":"Female","department":"Business Development","address":"287 Ryan Point","hire_date":"3/31/2018","website":"https://go.com","notes":"eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor","status":5,"type":2,"salary":"$611.44"}, {"id":496,"employee_id":"143360510-4","first_name":"Yanaton","last_name":"Camplejohn","email":"ycamplejohndr@nhs.uk","phone":"936-368-9176","gender":"Male","department":"Marketing","address":"99 Northland Pass","hire_date":"9/3/2017","website":"https://is.gd","notes":"enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet","status":4,"type":1,"salary":"$2245.39"}, {"id":497,"employee_id":"750684578-4","first_name":"Trudi","last_name":"Overington","email":"toveringtonds@prlog.org","phone":"270-552-8062","gender":"Female","department":"Marketing","address":"7427 Blaine Place","hire_date":"10/17/2017","website":"http://dion.ne.jp","notes":"mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris","status":1,"type":2,"salary":"$1073.92"}, {"id":498,"employee_id":"221179228-6","first_name":"Clemmie","last_name":"Durek","email":"cdurekdt@whitehouse.gov","phone":"692-244-6198","gender":"Male","department":"Human Resources","address":"58886 Alpine Terrace","hire_date":"4/12/2018","website":"https://senate.gov","notes":"nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula","status":6,"type":2,"salary":"$1969.24"}, {"id":499,"employee_id":"568206519-0","first_name":"Saunder","last_name":"Pain","email":"spaindu@de.vu","phone":"473-272-7672","gender":"Male","department":"Business Development","address":"57956 Packers Trail","hire_date":"9/14/2017","website":"https://wp.com","notes":"amet eleifend pede libero quis orci nullam molestie nibh in","status":3,"type":1,"salary":"$377.29"}, {"id":500,"employee_id":"425526429-5","first_name":"Sam","last_name":"Thomann","email":"sthomanndv@vimeo.com","phone":"614-882-2312","gender":"Female","department":"Human Resources","address":"5 Red Cloud Trail","hire_date":"5/11/2018","website":"http://mtv.com","notes":"purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio","status":1,"type":3,"salary":"$1111.96"}, {"id":501,"employee_id":"117610162-5","first_name":"Lindsay","last_name":"Kraut","email":"lkrautdw@cnet.com","phone":"425-547-6447","gender":"Female","department":"Engineering","address":"5672 Clemons Lane","hire_date":"6/8/2018","website":"https://fastcompany.com","notes":"id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede","status":2,"type":1,"salary":"$760.65"}, {"id":502,"employee_id":"984428955-6","first_name":"Sholom","last_name":"Shipman","email":"sshipmandx@networkadvertising.org","phone":"471-320-6739","gender":"Male","department":"Research and Development","address":"10 Sutteridge Crossing","hire_date":"6/10/2018","website":"http://comsenz.com","notes":"adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum","status":3,"type":1,"salary":"$1776.23"}, {"id":503,"employee_id":"410067431-7","first_name":"Josefa","last_name":"Wynn","email":"jwynndy@cnet.com","phone":"498-617-3001","gender":"Female","department":"Legal","address":"626 Muir Circle","hire_date":"11/10/2017","website":"http://arizona.edu","notes":"integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse","status":1,"type":3,"salary":"$1226.60"}, {"id":504,"employee_id":"028594067-8","first_name":"Gae","last_name":"McKane","email":"gmckanedz@washington.edu","phone":"206-954-8266","gender":"Female","department":"Research and Development","address":"29777 Sommers Alley","hire_date":"9/20/2017","website":"http://adobe.com","notes":"porta volutpat quam pede lobortis ligula sit amet eleifend pede libero","status":2,"type":2,"salary":"$407.96"}, {"id":505,"employee_id":"326426622-9","first_name":"Lorinda","last_name":"Tomowicz","email":"ltomowicze0@msu.edu","phone":"328-817-3161","gender":"Female","department":"Product Management","address":"712 Mallard Drive","hire_date":"10/5/2017","website":"https://un.org","notes":"sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat","status":4,"type":1,"salary":"$2408.57"}, {"id":506,"employee_id":"270468637-8","first_name":"Rafi","last_name":"Mc Harg","email":"rmcharge1@gnu.org","phone":"499-665-2017","gender":"Male","department":"Marketing","address":"355 Milwaukee Pass","hire_date":"9/2/2017","website":"https://apple.com","notes":"sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim","status":2,"type":1,"salary":"$2260.97"}, {"id":507,"employee_id":"383508689-8","first_name":"Perceval","last_name":"Apark","email":"paparke2@ow.ly","phone":"917-150-4444","gender":"Male","department":"Business Development","address":"369 East Point","hire_date":"10/1/2017","website":"http://icq.com","notes":"integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula","status":5,"type":1,"salary":"$1344.27"}, {"id":508,"employee_id":"195865159-1","first_name":"Dyann","last_name":"Iacobo","email":"diacoboe3@rediff.com","phone":"699-728-7247","gender":"Female","department":"Legal","address":"709 High Crossing Junction","hire_date":"2/20/2018","website":"https://yellowpages.com","notes":"ultrices mattis odio donec vitae nisi nam ultrices libero non mattis","status":6,"type":1,"salary":"$1111.05"}, {"id":509,"employee_id":"981494545-5","first_name":"Cornall","last_name":"Arnfield","email":"carnfielde4@ebay.co.uk","phone":"731-176-4240","gender":"Male","department":"Research and Development","address":"71 Lakewood Way","hire_date":"5/17/2018","website":"http://vk.com","notes":"mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor","status":3,"type":2,"salary":"$821.90"}, {"id":510,"employee_id":"088408667-4","first_name":"Wendall","last_name":"Langmaid","email":"wlangmaide5@sourceforge.net","phone":"335-490-0227","gender":"Male","department":"Product Management","address":"20191 Katie Street","hire_date":"9/23/2017","website":"http://dyndns.org","notes":"lorem quisque ut erat curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer","status":1,"type":3,"salary":"$557.72"}, {"id":511,"employee_id":"725959027-0","first_name":"Gustavo","last_name":"Frowde","email":"gfrowdee6@sciencedaily.com","phone":"226-885-7445","gender":"Male","department":"Marketing","address":"91 Westerfield Park","hire_date":"4/24/2018","website":"http://reddit.com","notes":"ligula sit amet eleifend pede libero quis orci nullam molestie nibh in","status":6,"type":2,"salary":"$795.00"}, {"id":512,"employee_id":"065409990-1","first_name":"Dyann","last_name":"Rousell","email":"drouselle7@so-net.ne.jp","phone":"296-840-4065","gender":"Female","department":"Marketing","address":"82161 Jay Road","hire_date":"9/25/2017","website":"https://blogspot.com","notes":"ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia","status":2,"type":3,"salary":"$765.07"}, {"id":513,"employee_id":"285010494-9","first_name":"Lucienne","last_name":"Castello","email":"lcastelloe8@exblog.jp","phone":"680-565-2679","gender":"Female","department":"Business Development","address":"32620 Sutherland Lane","hire_date":"11/19/2017","website":"http://squidoo.com","notes":"sed tristique in tempus sit amet sem fusce consequat nulla","status":6,"type":2,"salary":"$1540.86"}, {"id":514,"employee_id":"595628191-X","first_name":"Jacquie","last_name":"Millsom","email":"jmillsome9@stanford.edu","phone":"732-658-4644","gender":"Female","department":"Sales","address":"5 West Drive","hire_date":"7/22/2017","website":"http://edublogs.org","notes":"sit amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum","status":4,"type":2,"salary":"$1071.47"}, {"id":515,"employee_id":"067222722-3","first_name":"Agretha","last_name":"Kevern","email":"akevernea@pbs.org","phone":"678-329-6733","gender":"Female","department":"Sales","address":"7099 Prentice Drive","hire_date":"9/22/2017","website":"http://pbs.org","notes":"condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan","status":3,"type":2,"salary":"$335.98"}, {"id":516,"employee_id":"054554550-1","first_name":"Cybill","last_name":"Maddison","email":"cmaddisoneb@angelfire.com","phone":"964-989-9152","gender":"Female","department":"Accounting","address":"87630 Mockingbird Place","hire_date":"5/24/2018","website":"http://unesco.org","notes":"iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque","status":6,"type":1,"salary":"$821.01"}, {"id":517,"employee_id":"817006907-6","first_name":"Abe","last_name":"Barme","email":"abarmeec@yellowbook.com","phone":"767-754-0994","gender":"Male","department":"Human Resources","address":"96 Service Circle","hire_date":"1/14/2018","website":"https://nature.com","notes":"tortor risus dapibus augue vel accumsan tellus nisi eu orci","status":3,"type":3,"salary":"$1875.92"}, {"id":518,"employee_id":"743717134-1","first_name":"Sallee","last_name":"Ephgrave","email":"sephgraveed@usda.gov","phone":"959-505-3973","gender":"Female","department":"Research and Development","address":"913 Laurel Place","hire_date":"3/28/2018","website":"https://bloglovin.com","notes":"dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie","status":5,"type":2,"salary":"$1313.62"}, {"id":519,"employee_id":"385122785-9","first_name":"Vlad","last_name":"Kasbye","email":"vkasbyeee@ycombinator.com","phone":"270-122-0315","gender":"Male","department":"Research and Development","address":"77 Cambridge Crossing","hire_date":"3/23/2018","website":"http://123-reg.co.uk","notes":"sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum","status":1,"type":1,"salary":"$2258.49"}, {"id":520,"employee_id":"891359762-4","first_name":"Aluino","last_name":"Thoresbie","email":"athoresbieef@yellowbook.com","phone":"406-945-8430","gender":"Male","department":"Accounting","address":"08556 Chinook Center","hire_date":"2/7/2018","website":"https://163.com","notes":"diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci","status":5,"type":1,"salary":"$1746.72"}, {"id":521,"employee_id":"009979810-7","first_name":"Pansy","last_name":"Meco","email":"pmecoeg@newsvine.com","phone":"577-321-5002","gender":"Female","department":"Training","address":"2 Anhalt Plaza","hire_date":"6/9/2018","website":"http://godaddy.com","notes":"lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh","status":4,"type":2,"salary":"$996.08"}, {"id":522,"employee_id":"817438242-9","first_name":"Tyrus","last_name":"Jameson","email":"tjamesoneh@example.com","phone":"942-794-5383","gender":"Male","department":"Marketing","address":"1159 Quincy Park","hire_date":"2/16/2018","website":"https://tinypic.com","notes":"non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla","status":1,"type":2,"salary":"$683.93"}, {"id":523,"employee_id":"425717013-1","first_name":"Gasper","last_name":"Casin","email":"gcasinei@bbb.org","phone":"924-594-2762","gender":"Male","department":"Services","address":"54 Butternut Junction","hire_date":"3/6/2018","website":"http://imgur.com","notes":"nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis ligula sit amet","status":6,"type":2,"salary":"$360.97"}, {"id":524,"employee_id":"309675188-9","first_name":"Thatch","last_name":"Crinkley","email":"tcrinkleyej@artisteer.com","phone":"166-901-1673","gender":"Male","department":"Product Management","address":"241 Lighthouse Bay Plaza","hire_date":"10/17/2017","website":"http://mlb.com","notes":"augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea","status":5,"type":2,"salary":"$1397.54"}, {"id":525,"employee_id":"578154346-5","first_name":"Dukey","last_name":"Hacun","email":"dhacunek@timesonline.co.uk","phone":"288-708-4115","gender":"Male","department":"Accounting","address":"52824 Transport Place","hire_date":"12/27/2017","website":"https://pcworld.com","notes":"posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui","status":3,"type":3,"salary":"$2376.40"}, {"id":526,"employee_id":"379738361-4","first_name":"Lindy","last_name":"Billo","email":"lbilloel@macromedia.com","phone":"801-573-9373","gender":"Female","department":"Research and Development","address":"54404 Hermina Terrace","hire_date":"10/1/2017","website":"http://nsw.gov.au","notes":"semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat ut nulla","status":6,"type":3,"salary":"$2158.48"}, {"id":527,"employee_id":"466883586-2","first_name":"Dalston","last_name":"Bogace","email":"dbogaceem@vk.com","phone":"295-805-9785","gender":"Male","department":"Product Management","address":"38 Becker Street","hire_date":"9/15/2017","website":"http://tumblr.com","notes":"etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat","status":1,"type":1,"salary":"$1911.79"}, {"id":528,"employee_id":"540218312-0","first_name":"Millard","last_name":"Florentine","email":"mflorentineen@washingtonpost.com","phone":"922-496-0342","gender":"Male","department":"Research and Development","address":"5 Forest Run Street","hire_date":"10/4/2017","website":"https://pen.io","notes":"semper rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui","status":6,"type":2,"salary":"$1686.38"}, {"id":529,"employee_id":"471433513-8","first_name":"Tove","last_name":"Gagan","email":"tgaganeo@google.com.hk","phone":"674-360-2542","gender":"Female","department":"Accounting","address":"12 Dayton Pass","hire_date":"12/20/2017","website":"http://google.com.hk","notes":"donec quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum","status":2,"type":3,"salary":"$560.97"}, {"id":530,"employee_id":"896500909-X","first_name":"Veda","last_name":"Palfrey","email":"vpalfreyep@youku.com","phone":"332-927-5840","gender":"Female","department":"Support","address":"38 Packers Road","hire_date":"12/2/2017","website":"https://dion.ne.jp","notes":"lectus suspendisse potenti in eleifend quam a odio in hac habitasse","status":6,"type":2,"salary":"$1058.94"}, {"id":531,"employee_id":"864412579-6","first_name":"Suellen","last_name":"Canavan","email":"scanavaneq@scientificamerican.com","phone":"576-969-0877","gender":"Female","department":"Accounting","address":"2 Manley Trail","hire_date":"3/22/2018","website":"http://un.org","notes":"etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus","status":6,"type":1,"salary":"$2336.14"}, {"id":532,"employee_id":"361106781-4","first_name":"Hallie","last_name":"Vannoni","email":"hvannonier@flickr.com","phone":"260-478-2440","gender":"Female","department":"Accounting","address":"2567 Lillian Hill","hire_date":"8/16/2017","website":"https://cloudflare.com","notes":"ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi","status":4,"type":3,"salary":"$1386.77"}, {"id":533,"employee_id":"319328011-9","first_name":"Mersey","last_name":"Schwieso","email":"mschwiesoes@chron.com","phone":"132-552-8514","gender":"Female","department":"Business Development","address":"5 Nelson Point","hire_date":"6/10/2018","website":"http://shutterfly.com","notes":"sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et","status":3,"type":1,"salary":"$824.84"}, {"id":534,"employee_id":"713956296-2","first_name":"Lefty","last_name":"Clute","email":"lcluteet@rambler.ru","phone":"449-868-4056","gender":"Male","department":"Training","address":"7763 Sunnyside Plaza","hire_date":"11/7/2017","website":"http://storify.com","notes":"id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit","status":2,"type":1,"salary":"$1307.33"}, {"id":535,"employee_id":"069730721-2","first_name":"Roxine","last_name":"Shakelady","email":"rshakeladyeu@live.com","phone":"399-312-9948","gender":"Female","department":"Sales","address":"357 Shopko Lane","hire_date":"1/3/2018","website":"http://freewebs.com","notes":"maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum","status":3,"type":2,"salary":"$2481.79"}, {"id":536,"employee_id":"074201811-3","first_name":"Noam","last_name":"Rowlinson","email":"nrowlinsonev@gov.uk","phone":"117-590-9070","gender":"Male","department":"Training","address":"5 Katie Pass","hire_date":"4/11/2018","website":"https://gravatar.com","notes":"pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper","status":1,"type":3,"salary":"$293.52"}, {"id":537,"employee_id":"048139754-X","first_name":"Frasier","last_name":"Prall","email":"fprallew@eventbrite.com","phone":"258-309-4486","gender":"Male","department":"Research and Development","address":"032 Coleman Road","hire_date":"2/12/2018","website":"https://prlog.org","notes":"consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero","status":4,"type":3,"salary":"$1068.17"}, {"id":538,"employee_id":"006004879-4","first_name":"Woodman","last_name":"Walas","email":"wwalasex@virginia.edu","phone":"169-283-0001","gender":"Male","department":"Support","address":"1669 Dennis Pass","hire_date":"11/2/2017","website":"https://mapquest.com","notes":"vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient","status":1,"type":2,"salary":"$1803.38"}, {"id":539,"employee_id":"668179309-6","first_name":"Trenton","last_name":"Raatz","email":"traatzey@goo.ne.jp","phone":"338-986-6038","gender":"Male","department":"Legal","address":"46 International Street","hire_date":"10/16/2017","website":"http://bbb.org","notes":"risus dapibus augue vel accumsan tellus nisi eu orci mauris","status":5,"type":1,"salary":"$309.70"}, {"id":540,"employee_id":"169561284-1","first_name":"Herculie","last_name":"Mainstone","email":"hmainstoneez@abc.net.au","phone":"719-667-5959","gender":"Male","department":"Human Resources","address":"76598 Old Shore Hill","hire_date":"1/27/2018","website":"https://squidoo.com","notes":"adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante ipsum primis","status":2,"type":1,"salary":"$719.96"}, {"id":541,"employee_id":"188941104-3","first_name":"Myrtie","last_name":"Dybald","email":"mdybaldf0@stumbleupon.com","phone":"455-883-9262","gender":"Female","department":"Engineering","address":"27 Continental Trail","hire_date":"9/11/2017","website":"http://photobucket.com","notes":"integer ac leo pellentesque ultrices mattis odio donec vitae nisi","status":2,"type":2,"salary":"$1509.79"}, {"id":542,"employee_id":"672328549-2","first_name":"Mozelle","last_name":"Parrett","email":"mparrettf1@alexa.com","phone":"520-187-8950","gender":"Female","department":"Marketing","address":"7 Kennedy Plaza","hire_date":"5/11/2018","website":"https://ibm.com","notes":"ullamcorper purus sit amet nulla quisque arcu libero rutrum ac","status":4,"type":1,"salary":"$1112.79"}, {"id":543,"employee_id":"233524722-0","first_name":"Winny","last_name":"Rizzelli","email":"wrizzellif2@liveinternet.ru","phone":"638-553-1453","gender":"Female","department":"Legal","address":"64226 Rigney Plaza","hire_date":"7/3/2018","website":"https://globo.com","notes":"magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus","status":4,"type":2,"salary":"$511.39"}, {"id":544,"employee_id":"980292964-6","first_name":"Rubetta","last_name":"Roberts","email":"rrobertsf3@vimeo.com","phone":"320-783-0613","gender":"Female","department":"Product Management","address":"77 Center Hill","hire_date":"7/11/2018","website":"http://google.com.br","notes":"faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur","status":2,"type":3,"salary":"$2439.32"}, {"id":545,"employee_id":"546244510-5","first_name":"Duffie","last_name":"Coley","email":"dcoleyf4@google.co.jp","phone":"802-258-2354","gender":"Male","department":"Marketing","address":"4960 Portage Way","hire_date":"10/15/2017","website":"http://sphinn.com","notes":"mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent","status":5,"type":1,"salary":"$1205.36"}, {"id":546,"employee_id":"056298206-X","first_name":"Marianna","last_name":"Laxston","email":"mlaxstonf5@issuu.com","phone":"784-812-7862","gender":"Female","department":"Accounting","address":"03 Morningstar Crossing","hire_date":"3/27/2018","website":"http://sohu.com","notes":"orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam","status":4,"type":3,"salary":"$2091.54"}, {"id":547,"employee_id":"854997068-9","first_name":"Leonard","last_name":"Ghilks","email":"lghilksf6@google.com.hk","phone":"344-427-1979","gender":"Male","department":"Business Development","address":"8 Mandrake Trail","hire_date":"9/9/2017","website":"https://gnu.org","notes":"dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat","status":1,"type":1,"salary":"$2360.29"}, {"id":548,"employee_id":"374005192-2","first_name":"Delcine","last_name":"Gibard","email":"dgibardf7@feedburner.com","phone":"486-769-5871","gender":"Female","department":"Engineering","address":"07365 Almo Avenue","hire_date":"1/20/2018","website":"http://telegraph.co.uk","notes":"sollicitudin mi sit amet lobortis sapien sapien non mi integer ac","status":3,"type":1,"salary":"$2194.72"}, {"id":549,"employee_id":"981938694-2","first_name":"Jasen","last_name":"Penella","email":"jpenellaf8@unc.edu","phone":"946-137-4880","gender":"Male","department":"Sales","address":"8245 Lyons Way","hire_date":"7/30/2017","website":"https://alibaba.com","notes":"curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat","status":6,"type":2,"salary":"$2175.16"}, {"id":550,"employee_id":"184850704-6","first_name":"Claresta","last_name":"Lanahan","email":"clanahanf9@redcross.org","phone":"421-926-4102","gender":"Female","department":"Product Management","address":"16627 Glendale Crossing","hire_date":"5/29/2018","website":"https://dailymail.co.uk","notes":"ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor","status":4,"type":1,"salary":"$1947.50"}, {"id":551,"employee_id":"147962271-0","first_name":"Wilbur","last_name":"Bourrel","email":"wbourrelfa@cisco.com","phone":"111-829-9008","gender":"Male","department":"Sales","address":"2 Bay Junction","hire_date":"1/23/2018","website":"http://skype.com","notes":"quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus","status":5,"type":1,"salary":"$2126.19"}, {"id":552,"employee_id":"229215988-0","first_name":"Roseann","last_name":"Hapke","email":"rhapkefb@amazon.co.jp","phone":"253-634-1559","gender":"Female","department":"Training","address":"3 Ilene Way","hire_date":"5/18/2018","website":"https://imdb.com","notes":"in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam","status":2,"type":3,"salary":"$692.93"}, {"id":553,"employee_id":"751330939-6","first_name":"Tabby","last_name":"Potter","email":"tpotterfc@discuz.net","phone":"798-581-9705","gender":"Male","department":"Research and Development","address":"30 Karstens Trail","hire_date":"10/18/2017","website":"http://ihg.com","notes":"consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce","status":5,"type":3,"salary":"$1811.07"}, {"id":554,"employee_id":"319386525-7","first_name":"Delmar","last_name":"Maffin","email":"dmaffinfd@go.com","phone":"949-706-8947","gender":"Male","department":"Engineering","address":"7237 Lerdahl Hill","hire_date":"11/23/2017","website":"https://intel.com","notes":"sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam","status":5,"type":2,"salary":"$1440.38"}, {"id":555,"employee_id":"180320571-7","first_name":"Mord","last_name":"Plaskett","email":"mplaskettfe@dedecms.com","phone":"428-505-2974","gender":"Male","department":"Marketing","address":"5635 Northridge Alley","hire_date":"10/16/2017","website":"https://goo.gl","notes":"condimentum neque sapien placerat ante nulla justo aliquam quis turpis","status":6,"type":3,"salary":"$870.49"}, {"id":556,"employee_id":"844696576-3","first_name":"Bil","last_name":"Maple","email":"bmapleff@ning.com","phone":"884-552-0647","gender":"Male","department":"Support","address":"6 Sunnyside Court","hire_date":"6/7/2018","website":"https://cdbaby.com","notes":"nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula","status":5,"type":1,"salary":"$391.64"}, {"id":557,"employee_id":"073155412-4","first_name":"Padraic","last_name":"Ambrogetti","email":"pambrogettifg@answers.com","phone":"945-772-9655","gender":"Male","department":"Legal","address":"262 Canary Court","hire_date":"5/4/2018","website":"https://w3.org","notes":"odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero","status":6,"type":1,"salary":"$1676.16"}, {"id":558,"employee_id":"445618451-5","first_name":"Genia","last_name":"Bonehill","email":"gbonehillfh@aol.com","phone":"514-971-7446","gender":"Female","department":"Accounting","address":"1 Oneill Park","hire_date":"2/1/2018","website":"http://theglobeandmail.com","notes":"augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc","status":3,"type":1,"salary":"$867.46"}, {"id":559,"employee_id":"748640207-6","first_name":"Sly","last_name":"Flacke","email":"sflackefi@youku.com","phone":"190-966-7454","gender":"Male","department":"Business Development","address":"2 Straubel Center","hire_date":"4/10/2018","website":"http://yahoo.com","notes":"amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu","status":4,"type":3,"salary":"$1797.09"}, {"id":560,"employee_id":"520331874-3","first_name":"Bennett","last_name":"Clampton","email":"bclamptonfj@goo.ne.jp","phone":"435-279-5530","gender":"Male","department":"Accounting","address":"56741 Warner Terrace","hire_date":"10/28/2017","website":"http://google.cn","notes":"justo etiam pretium iaculis justo in hac habitasse platea dictumst","status":3,"type":2,"salary":"$861.37"}, {"id":561,"employee_id":"377676559-3","first_name":"Ophelie","last_name":"Cregeen","email":"ocregeenfk@cisco.com","phone":"614-728-9664","gender":"Female","department":"Product Management","address":"0 Utah Trail","hire_date":"7/9/2018","website":"http://statcounter.com","notes":"nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus","status":5,"type":2,"salary":"$2121.34"}, {"id":562,"employee_id":"833683302-1","first_name":"Daffy","last_name":"Trotter","email":"dtrotterfl@w3.org","phone":"881-221-5716","gender":"Female","department":"Sales","address":"9617 Oak Terrace","hire_date":"9/14/2017","website":"https://msn.com","notes":"ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla","status":1,"type":2,"salary":"$982.48"}, {"id":563,"employee_id":"297416391-2","first_name":"Rollin","last_name":"Schulke","email":"rschulkefm@blogtalkradio.com","phone":"693-773-2895","gender":"Male","department":"Engineering","address":"0717 Merry Trail","hire_date":"12/10/2017","website":"https://pinterest.com","notes":"sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at","status":5,"type":1,"salary":"$897.96"}, {"id":564,"employee_id":"329686914-X","first_name":"Nanice","last_name":"Sempill","email":"nsempillfn@amazon.de","phone":"360-950-5204","gender":"Female","department":"Engineering","address":"310 Straubel Park","hire_date":"6/12/2018","website":"http://ow.ly","notes":"venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet","status":1,"type":1,"salary":"$2266.13"}, {"id":565,"employee_id":"987885496-5","first_name":"Loleta","last_name":"Berard","email":"lberardfo@kickstarter.com","phone":"385-848-2662","gender":"Female","department":"Marketing","address":"49148 Knutson Road","hire_date":"5/30/2018","website":"https://freewebs.com","notes":"habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt","status":2,"type":1,"salary":"$1899.36"}, {"id":566,"employee_id":"026111923-0","first_name":"Simmonds","last_name":"Herculeson","email":"sherculesonfp@digg.com","phone":"177-792-9992","gender":"Male","department":"Research and Development","address":"09 Derek Junction","hire_date":"10/6/2017","website":"http://google.ru","notes":"iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id","status":4,"type":1,"salary":"$2458.36"}, {"id":567,"employee_id":"738580768-2","first_name":"Isidoro","last_name":"Carluccio","email":"icarlucciofq@ifeng.com","phone":"477-980-2970","gender":"Male","department":"Product Management","address":"32 Lien Junction","hire_date":"2/18/2018","website":"http://a8.net","notes":"vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id","status":6,"type":1,"salary":"$1606.68"}, {"id":568,"employee_id":"451895226-X","first_name":"Dickie","last_name":"Morcombe","email":"dmorcombefr@yellowbook.com","phone":"213-676-7361","gender":"Male","department":"Engineering","address":"94 Blaine Drive","hire_date":"2/28/2018","website":"http://quantcast.com","notes":"faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat","status":3,"type":1,"salary":"$1795.94"}, {"id":569,"employee_id":"120806965-9","first_name":"Garwood","last_name":"Adcock","email":"gadcockfs@europa.eu","phone":"794-670-6493","gender":"Male","department":"Accounting","address":"900 Texas Plaza","hire_date":"5/8/2018","website":"https://wikia.com","notes":"aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio","status":5,"type":1,"salary":"$565.32"}, {"id":570,"employee_id":"056294117-7","first_name":"Lemar","last_name":"Halegarth","email":"lhalegarthft@sfgate.com","phone":"942-570-9030","gender":"Male","department":"Support","address":"37138 Forest Dale Drive","hire_date":"9/14/2017","website":"http://bloomberg.com","notes":"ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus","status":3,"type":3,"salary":"$2046.86"}, {"id":571,"employee_id":"892461613-7","first_name":"Irvine","last_name":"Ruselin","email":"iruselinfu@answers.com","phone":"908-342-9993","gender":"Male","department":"Human Resources","address":"9859 Brickson Park Pass","hire_date":"12/27/2017","website":"http://discuz.net","notes":"porttitor lacus at turpis donec posuere metus vitae ipsum aliquam","status":1,"type":1,"salary":"$1719.02"}, {"id":572,"employee_id":"467294167-1","first_name":"Ingram","last_name":"Maiklem","email":"imaiklemfv@xinhuanet.com","phone":"774-570-3815","gender":"Male","department":"Human Resources","address":"956 Jenifer Alley","hire_date":"8/15/2017","website":"https://bandcamp.com","notes":"cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam","status":1,"type":2,"salary":"$1208.99"}, {"id":573,"employee_id":"078731029-8","first_name":"Pasquale","last_name":"Carnow","email":"pcarnowfw@over-blog.com","phone":"823-672-5601","gender":"Male","department":"Research and Development","address":"99 Merchant Parkway","hire_date":"4/26/2018","website":"https://ustream.tv","notes":"vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec","status":3,"type":1,"salary":"$1848.12"}, {"id":574,"employee_id":"026664954-8","first_name":"Hermy","last_name":"Paiton","email":"hpaitonfx@digg.com","phone":"764-229-1805","gender":"Male","department":"Product Management","address":"698 Thackeray Way","hire_date":"1/11/2018","website":"http://imdb.com","notes":"in hac habitasse platea dictumst etiam faucibus cursus urna ut","status":1,"type":2,"salary":"$1518.69"}, {"id":575,"employee_id":"672706698-1","first_name":"Ruby","last_name":"Barritt","email":"rbarrittfy@reuters.com","phone":"272-671-6978","gender":"Female","department":"Business Development","address":"0 Ilene Pass","hire_date":"7/26/2017","website":"http://samsung.com","notes":"in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante","status":5,"type":2,"salary":"$2404.07"}, {"id":576,"employee_id":"959234324-1","first_name":"Reinwald","last_name":"Connolly","email":"rconnollyfz@unc.edu","phone":"256-757-8941","gender":"Male","department":"Support","address":"176 Cardinal Hill","hire_date":"9/18/2017","website":"http://constantcontact.com","notes":"hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien","status":6,"type":2,"salary":"$2121.45"}, {"id":577,"employee_id":"032000879-7","first_name":"Ferdie","last_name":"Paydon","email":"fpaydong0@businesswire.com","phone":"760-201-4090","gender":"Male","department":"Marketing","address":"84 Eastwood Road","hire_date":"12/5/2017","website":"https://nba.com","notes":"gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem","status":2,"type":3,"salary":"$2155.61"}, {"id":578,"employee_id":"265514291-8","first_name":"Jozef","last_name":"Lafranconi","email":"jlafranconig1@mediafire.com","phone":"306-419-6170","gender":"Male","department":"Human Resources","address":"904 Holy Cross Alley","hire_date":"1/5/2018","website":"http://google.es","notes":"volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis","status":1,"type":3,"salary":"$817.24"}, {"id":579,"employee_id":"213313648-7","first_name":"Dennison","last_name":"Corryer","email":"dcorryerg2@biblegateway.com","phone":"267-774-3581","gender":"Male","department":"Product Management","address":"99154 Red Cloud Way","hire_date":"6/4/2018","website":"http://cpanel.net","notes":"nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo","status":6,"type":3,"salary":"$1341.78"}, {"id":580,"employee_id":"473015388-X","first_name":"Englebert","last_name":"Fulleylove","email":"efulleyloveg3@photobucket.com","phone":"398-931-0902","gender":"Male","department":"Marketing","address":"32500 Amoth Plaza","hire_date":"2/23/2018","website":"https://netscape.com","notes":"justo eu massa donec dapibus duis at velit eu est","status":5,"type":3,"salary":"$325.00"}, {"id":581,"employee_id":"143330915-7","first_name":"Allyn","last_name":"Kill","email":"akillg4@timesonline.co.uk","phone":"842-460-7843","gender":"Female","department":"Training","address":"419 Utah Road","hire_date":"4/10/2018","website":"http://google.co.uk","notes":"rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie","status":6,"type":2,"salary":"$1613.53"}, {"id":582,"employee_id":"282580938-1","first_name":"Lynett","last_name":"Bayford","email":"lbayfordg5@vistaprint.com","phone":"132-193-4754","gender":"Female","department":"Sales","address":"2330 Summit Way","hire_date":"5/4/2018","website":"http://marketplace.net","notes":"justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing","status":2,"type":1,"salary":"$326.91"}, {"id":583,"employee_id":"617313819-0","first_name":"Hazlett","last_name":"Baroch","email":"hbarochg6@geocities.jp","phone":"985-965-6967","gender":"Male","department":"Accounting","address":"605 Golden Leaf Plaza","hire_date":"2/18/2018","website":"https://google.ca","notes":"quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida nisi at","status":6,"type":3,"salary":"$1988.10"}, {"id":584,"employee_id":"708172793-X","first_name":"Bertrand","last_name":"Enrigo","email":"benrigog7@blinklist.com","phone":"582-769-9744","gender":"Male","department":"Support","address":"39527 Kim Alley","hire_date":"7/10/2018","website":"https://eepurl.com","notes":"suspendisse potenti in eleifend quam a odio in hac habitasse","status":2,"type":3,"salary":"$1834.97"}, {"id":585,"employee_id":"275070512-6","first_name":"Tess","last_name":"Pagen","email":"tpageng8@mit.edu","phone":"942-433-3855","gender":"Female","department":"Training","address":"06 Loftsgordon Avenue","hire_date":"3/8/2018","website":"https://java.com","notes":"mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices","status":6,"type":3,"salary":"$1516.81"}, {"id":586,"employee_id":"689460094-5","first_name":"Jeramie","last_name":"Stanlock","email":"jstanlockg9@epa.gov","phone":"304-355-0889","gender":"Male","department":"Research and Development","address":"92 Marquette Court","hire_date":"9/7/2017","website":"http://bandcamp.com","notes":"elit ac nulla sed vel enim sit amet nunc viverra dapibus","status":3,"type":1,"salary":"$502.42"}, {"id":587,"employee_id":"806406122-9","first_name":"Giovanni","last_name":"Garmons","email":"ggarmonsga@ustream.tv","phone":"230-839-9491","gender":"Male","department":"Business Development","address":"06 Grim Parkway","hire_date":"4/8/2018","website":"http://nifty.com","notes":"enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","status":1,"type":1,"salary":"$2256.86"}, {"id":588,"employee_id":"739999179-0","first_name":"Hanan","last_name":"Maudsley","email":"hmaudsleygb@so-net.ne.jp","phone":"175-280-1081","gender":"Male","department":"Engineering","address":"79 Muir Avenue","hire_date":"6/12/2018","website":"http://icio.us","notes":"posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut","status":5,"type":1,"salary":"$1049.23"}, {"id":589,"employee_id":"706661556-5","first_name":"Elliott","last_name":"Scoone","email":"escoonegc@ted.com","phone":"609-922-2496","gender":"Male","department":"Human Resources","address":"531 Sunbrook Crossing","hire_date":"5/21/2018","website":"https://businessweek.com","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae duis","status":5,"type":1,"salary":"$1289.79"}, {"id":590,"employee_id":"647600560-X","first_name":"Caressa","last_name":"Haylands","email":"chaylandsgd@deliciousdays.com","phone":"330-761-2112","gender":"Female","department":"Business Development","address":"41 Ludington Point","hire_date":"2/2/2018","website":"http://ovh.net","notes":"orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi","status":3,"type":3,"salary":"$836.63"}, {"id":591,"employee_id":"205991586-4","first_name":"Hollie","last_name":"Salt","email":"hsaltge@imageshack.us","phone":"273-911-3845","gender":"Female","department":"Marketing","address":"1 Pepper Wood Pass","hire_date":"7/11/2018","website":"https://china.com.cn","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi","status":5,"type":3,"salary":"$1099.82"}, {"id":592,"employee_id":"965356355-6","first_name":"Darcy","last_name":"Hanington","email":"dhaningtongf@deliciousdays.com","phone":"574-882-0980","gender":"Male","department":"Business Development","address":"63 Evergreen Terrace","hire_date":"3/9/2018","website":"https://elpais.com","notes":"in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt","status":1,"type":2,"salary":"$735.59"}, {"id":593,"employee_id":"764631584-2","first_name":"Norby","last_name":"Dearsley","email":"ndearsleygg@umich.edu","phone":"502-882-6268","gender":"Male","department":"Training","address":"53903 Weeping Birch Junction","hire_date":"12/15/2017","website":"https://fda.gov","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti","status":4,"type":2,"salary":"$1928.30"}, {"id":594,"employee_id":"714591085-3","first_name":"Justino","last_name":"Kernes","email":"jkernesgh@gravatar.com","phone":"978-345-2401","gender":"Male","department":"Research and Development","address":"728 Emmet Pass","hire_date":"2/1/2018","website":"https://timesonline.co.uk","notes":"adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis","status":1,"type":3,"salary":"$2298.11"}, {"id":595,"employee_id":"742011723-3","first_name":"Orly","last_name":"Eunson","email":"oeunsongi@discovery.com","phone":"264-270-5870","gender":"Female","department":"Sales","address":"61373 Arizona Way","hire_date":"12/21/2017","website":"http://hud.gov","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae donec","status":1,"type":3,"salary":"$1270.96"}, {"id":596,"employee_id":"659860506-7","first_name":"Denny","last_name":"Medhurst","email":"dmedhurstgj@salon.com","phone":"415-409-9800","gender":"Male","department":"Human Resources","address":"57516 Summerview Point","hire_date":"9/24/2017","website":"https://smugmug.com","notes":"donec ut mauris eget massa tempor convallis nulla neque libero convallis eget eleifend","status":3,"type":3,"salary":"$473.45"}, {"id":597,"employee_id":"280034283-8","first_name":"Sheree","last_name":"Milward","email":"smilwardgk@java.com","phone":"924-677-2252","gender":"Female","department":"Services","address":"6 Mifflin Way","hire_date":"1/9/2018","website":"http://deviantart.com","notes":"gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer","status":2,"type":1,"salary":"$598.68"}, {"id":598,"employee_id":"708571091-8","first_name":"Evvy","last_name":"Blyth","email":"eblythgl@theglobeandmail.com","phone":"578-126-0856","gender":"Female","department":"Services","address":"9270 Di Loreto Court","hire_date":"6/7/2018","website":"https://livejournal.com","notes":"nunc purus phasellus in felis donec semper sapien a libero nam dui","status":1,"type":3,"salary":"$348.86"}, {"id":599,"employee_id":"349704535-7","first_name":"Zaria","last_name":"McEntagart","email":"zmcentagartgm@barnesandnoble.com","phone":"395-247-3033","gender":"Female","department":"Services","address":"2 Dahle Parkway","hire_date":"11/9/2017","website":"https://ted.com","notes":"et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in","status":5,"type":1,"salary":"$1690.86"}, {"id":600,"employee_id":"696865945-X","first_name":"Rania","last_name":"Joll","email":"rjollgn@flickr.com","phone":"896-350-6175","gender":"Female","department":"Marketing","address":"53 Wayridge Road","hire_date":"7/18/2018","website":"https://toplist.cz","notes":"nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis sed","status":5,"type":3,"salary":"$2093.20"}, {"id":601,"employee_id":"991762911-4","first_name":"Viv","last_name":"Benn","email":"vbenngo@ning.com","phone":"312-736-0023","gender":"Female","department":"Marketing","address":"07 Derek Crossing","hire_date":"5/21/2018","website":"http://alibaba.com","notes":"amet eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec","status":2,"type":1,"salary":"$1872.12"}, {"id":602,"employee_id":"382390348-9","first_name":"Ilaire","last_name":"Wasling","email":"iwaslinggp@scientificamerican.com","phone":"173-493-6304","gender":"Male","department":"Human Resources","address":"12922 Mandrake Crossing","hire_date":"8/27/2017","website":"http://facebook.com","notes":"a libero nam dui proin leo odio porttitor id consequat","status":5,"type":3,"salary":"$1725.89"}, {"id":603,"employee_id":"552719023-8","first_name":"Burke","last_name":"Monkhouse","email":"bmonkhousegq@oakley.com","phone":"905-500-1112","gender":"Male","department":"Product Management","address":"94 Loftsgordon Junction","hire_date":"5/28/2018","website":"http://timesonline.co.uk","notes":"ut erat id mauris vulputate elementum nullam varius nulla facilisi","status":2,"type":3,"salary":"$1893.79"}, {"id":604,"employee_id":"798859457-5","first_name":"Chrissie","last_name":"Kordes","email":"ckordesgr@unc.edu","phone":"892-349-2152","gender":"Female","department":"Human Resources","address":"2262 Kedzie Drive","hire_date":"1/29/2018","website":"https://admin.ch","notes":"magna at nunc commodo placerat praesent blandit nam nulla integer pede justo lacinia","status":2,"type":2,"salary":"$1612.86"}, {"id":605,"employee_id":"790837382-8","first_name":"Lawry","last_name":"Mussen","email":"lmussengs@w3.org","phone":"218-185-0171","gender":"Male","department":"Support","address":"7846 Randy Parkway","hire_date":"8/4/2017","website":"https://boston.com","notes":"id luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et","status":3,"type":3,"salary":"$1954.32"}, {"id":606,"employee_id":"699240792-9","first_name":"Poul","last_name":"Goggins","email":"pgogginsgt@linkedin.com","phone":"293-675-2005","gender":"Male","department":"Sales","address":"530 Butternut Alley","hire_date":"12/26/2017","website":"https://facebook.com","notes":"aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in","status":3,"type":1,"salary":"$2373.61"}, {"id":607,"employee_id":"751445107-2","first_name":"Cleon","last_name":"MacDirmid","email":"cmacdirmidgu@squarespace.com","phone":"614-981-7314","gender":"Male","department":"Marketing","address":"2037 Oak Road","hire_date":"12/7/2017","website":"https://apple.com","notes":"mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci","status":6,"type":1,"salary":"$2126.42"}, {"id":608,"employee_id":"377293929-5","first_name":"Aristotle","last_name":"Kenna","email":"akennagv@usda.gov","phone":"937-264-8841","gender":"Male","department":"Human Resources","address":"7054 Nancy Street","hire_date":"6/8/2018","website":"https://bizjournals.com","notes":"euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis","status":2,"type":1,"salary":"$1552.69"}, {"id":609,"employee_id":"572760268-8","first_name":"Loise","last_name":"Jewster","email":"ljewstergw@paypal.com","phone":"750-588-5224","gender":"Female","department":"Sales","address":"65006 La Follette Hill","hire_date":"3/28/2018","website":"https://etsy.com","notes":"vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante ipsum primis","status":2,"type":2,"salary":"$1714.69"}, {"id":610,"employee_id":"286782603-9","first_name":"Derril","last_name":"Gildersleeve","email":"dgildersleevegx@360.cn","phone":"980-730-4259","gender":"Male","department":"Sales","address":"344 Maple Wood Drive","hire_date":"6/5/2018","website":"https://nps.gov","notes":"justo eu massa donec dapibus duis at velit eu est congue elementum","status":6,"type":3,"salary":"$1941.04"}, {"id":611,"employee_id":"060727167-1","first_name":"Carny","last_name":"Kid","email":"ckidgy@ebay.co.uk","phone":"223-113-6069","gender":"Male","department":"Training","address":"39 Blaine Lane","hire_date":"11/12/2017","website":"https://typepad.com","notes":"tristique est et tempus semper est quam pharetra magna ac consequat metus","status":2,"type":2,"salary":"$1198.62"}, {"id":612,"employee_id":"887378830-0","first_name":"Cymbre","last_name":"Yewdale","email":"cyewdalegz@xinhuanet.com","phone":"420-452-2167","gender":"Female","department":"Training","address":"47 Bunker Hill Plaza","hire_date":"9/14/2017","website":"https://hc360.com","notes":"felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec","status":3,"type":2,"salary":"$938.61"}, {"id":613,"employee_id":"839681912-2","first_name":"Stan","last_name":"Liccardo","email":"sliccardoh0@omniture.com","phone":"587-732-3349","gender":"Male","department":"Research and Development","address":"2 Vahlen Pass","hire_date":"5/18/2018","website":"https://sun.com","notes":"porttitor pede justo eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst","status":3,"type":2,"salary":"$1151.20"}, {"id":614,"employee_id":"049388805-5","first_name":"Dorry","last_name":"Chinn","email":"dchinnh1@mtv.com","phone":"327-579-7951","gender":"Female","department":"Services","address":"695 Gina Hill","hire_date":"2/6/2018","website":"http://163.com","notes":"tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus","status":2,"type":2,"salary":"$2293.47"}, {"id":615,"employee_id":"261839282-5","first_name":"Homere","last_name":"Caughtry","email":"hcaughtryh2@marketwatch.com","phone":"251-532-7745","gender":"Male","department":"Business Development","address":"42 Clarendon Trail","hire_date":"1/2/2018","website":"http://princeton.edu","notes":"lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id","status":1,"type":2,"salary":"$778.37"}, {"id":616,"employee_id":"063355832-X","first_name":"Tresa","last_name":"Stert","email":"tsterth3@bigcartel.com","phone":"918-850-0143","gender":"Female","department":"Product Management","address":"50 Jenifer Plaza","hire_date":"1/6/2018","website":"http://jalbum.net","notes":"libero nam dui proin leo odio porttitor id consequat in consequat ut nulla sed accumsan felis","status":6,"type":2,"salary":"$1409.15"}, {"id":617,"employee_id":"227188136-6","first_name":"Megan","last_name":"Roles","email":"mrolesh4@fastcompany.com","phone":"987-824-9818","gender":"Female","department":"Accounting","address":"6317 Anderson Alley","hire_date":"9/27/2017","website":"https://cyberchimps.com","notes":"in ante vestibulum ante ipsum primis in faucibus orci luctus","status":4,"type":2,"salary":"$2235.13"}, {"id":618,"employee_id":"797674915-3","first_name":"Alexa","last_name":"MacElroy","email":"amacelroyh5@naver.com","phone":"702-634-3451","gender":"Female","department":"Training","address":"9 Hanover Center","hire_date":"9/9/2017","website":"http://tinypic.com","notes":"sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum","status":5,"type":1,"salary":"$330.74"}, {"id":619,"employee_id":"176850987-5","first_name":"Binny","last_name":"Warfield","email":"bwarfieldh6@skyrock.com","phone":"728-172-7160","gender":"Female","department":"Research and Development","address":"2 Tony Hill","hire_date":"1/23/2018","website":"https://ucsd.edu","notes":"tristique est et tempus semper est quam pharetra magna ac consequat","status":6,"type":1,"salary":"$2051.56"}, {"id":620,"employee_id":"347858539-2","first_name":"Sallee","last_name":"Joder","email":"sjoderh7@plala.or.jp","phone":"906-345-0526","gender":"Female","department":"Product Management","address":"7 Pennsylvania Junction","hire_date":"6/15/2018","website":"http://ning.com","notes":"scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin","status":1,"type":2,"salary":"$2256.31"}, {"id":621,"employee_id":"059946664-2","first_name":"Stacee","last_name":"Noar","email":"snoarh8@wired.com","phone":"460-477-6620","gender":"Male","department":"Services","address":"5601 Waywood Circle","hire_date":"11/4/2017","website":"https://google.cn","notes":"id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in","status":5,"type":3,"salary":"$933.67"}, {"id":622,"employee_id":"594411543-2","first_name":"Carroll","last_name":"Challiss","email":"cchallissh9@mozilla.org","phone":"880-420-7393","gender":"Male","department":"Legal","address":"0618 Delladonna Street","hire_date":"4/12/2018","website":"https://vinaora.com","notes":"nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie","status":4,"type":3,"salary":"$2495.94"}, {"id":623,"employee_id":"879915683-0","first_name":"Merrie","last_name":"Mundford","email":"mmundfordha@instagram.com","phone":"229-802-1367","gender":"Female","department":"Business Development","address":"2 Amoth Trail","hire_date":"9/20/2017","website":"http://theatlantic.com","notes":"tempus semper est quam pharetra magna ac consequat metus sapien ut","status":4,"type":3,"salary":"$1461.98"}, {"id":624,"employee_id":"137646308-3","first_name":"Alwyn","last_name":"Von Brook","email":"avonbrookhb@cafepress.com","phone":"871-592-1630","gender":"Male","department":"Engineering","address":"70212 Novick Circle","hire_date":"5/9/2018","website":"http://wikipedia.org","notes":"quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor","status":4,"type":3,"salary":"$2106.64"}, {"id":625,"employee_id":"787463921-9","first_name":"Brock","last_name":"Snasdell","email":"bsnasdellhc@rediff.com","phone":"935-728-8645","gender":"Male","department":"Sales","address":"3 Larry Terrace","hire_date":"4/18/2018","website":"http://ucoz.ru","notes":"aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed","status":5,"type":3,"salary":"$2363.71"}, {"id":626,"employee_id":"867263586-8","first_name":"Camilla","last_name":"Rainsden","email":"crainsdenhd@diigo.com","phone":"509-638-6802","gender":"Female","department":"Human Resources","address":"75896 Hallows Avenue","hire_date":"3/6/2018","website":"https://statcounter.com","notes":"integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio","status":5,"type":1,"salary":"$2310.38"}, {"id":627,"employee_id":"364771698-7","first_name":"Magnum","last_name":"Leiden","email":"mleidenhe@cam.ac.uk","phone":"599-231-2724","gender":"Male","department":"Training","address":"91705 Merry Alley","hire_date":"1/18/2018","website":"https://tiny.cc","notes":"ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl","status":4,"type":1,"salary":"$2273.73"}, {"id":628,"employee_id":"764688429-4","first_name":"Letisha","last_name":"Norbury","email":"lnorburyhf@posterous.com","phone":"205-259-8870","gender":"Female","department":"Services","address":"3 Pawling Park","hire_date":"1/27/2018","website":"https://networkadvertising.org","notes":"integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas","status":4,"type":3,"salary":"$1816.51"}, {"id":629,"employee_id":"442460799-2","first_name":"Amble","last_name":"Eplate","email":"aeplatehg@de.vu","phone":"701-264-7714","gender":"Male","department":"Engineering","address":"454 Cambridge Alley","hire_date":"8/12/2017","website":"http://sohu.com","notes":"donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique","status":2,"type":1,"salary":"$1681.54"}, {"id":630,"employee_id":"474911199-6","first_name":"Josefa","last_name":"Mourant","email":"jmouranthh@hao123.com","phone":"298-448-8394","gender":"Female","department":"Research and Development","address":"93255 Red Cloud Crossing","hire_date":"7/14/2018","website":"http://indiegogo.com","notes":"ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis","status":1,"type":3,"salary":"$1833.27"}, {"id":631,"employee_id":"695137935-1","first_name":"Ransom","last_name":"Elliff","email":"relliffhi@lycos.com","phone":"920-413-1926","gender":"Male","department":"Marketing","address":"24358 Bultman Point","hire_date":"4/5/2018","website":"http://addtoany.com","notes":"aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas","status":2,"type":3,"salary":"$1861.24"}, {"id":632,"employee_id":"568146198-X","first_name":"Anne","last_name":"Fratson","email":"afratsonhj@techcrunch.com","phone":"922-130-4570","gender":"Female","department":"Training","address":"9324 Fordem Trail","hire_date":"12/30/2017","website":"http://homestead.com","notes":"feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse","status":5,"type":1,"salary":"$1365.92"}, {"id":633,"employee_id":"429529294-X","first_name":"Raina","last_name":"Dorre","email":"rdorrehk@addtoany.com","phone":"953-229-7547","gender":"Female","department":"Accounting","address":"1 Elgar Alley","hire_date":"10/31/2017","website":"https://ox.ac.uk","notes":"duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor","status":1,"type":2,"salary":"$1956.17"}, {"id":634,"employee_id":"107889117-6","first_name":"Wiley","last_name":"Iddy","email":"widdyhl@sourceforge.net","phone":"386-571-8918","gender":"Male","department":"Accounting","address":"0 Coolidge Avenue","hire_date":"3/19/2018","website":"https://reverbnation.com","notes":"tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis","status":1,"type":1,"salary":"$1932.76"}, {"id":635,"employee_id":"924614982-3","first_name":"Kimberly","last_name":"Lethem","email":"klethemhm@google.nl","phone":"297-178-9058","gender":"Female","department":"Sales","address":"07496 Derek Avenue","hire_date":"10/23/2017","website":"http://feedburner.com","notes":"at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at","status":2,"type":2,"salary":"$538.26"}, {"id":636,"employee_id":"308444064-6","first_name":"Arabele","last_name":"Abden","email":"aabdenhn@china.com.cn","phone":"624-843-4335","gender":"Female","department":"Services","address":"095 Service Center","hire_date":"12/25/2017","website":"http://webnode.com","notes":"est phasellus sit amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla","status":5,"type":2,"salary":"$592.81"}, {"id":637,"employee_id":"523748690-8","first_name":"Ophelia","last_name":"Le Count","email":"olecountho@sitemeter.com","phone":"205-789-9629","gender":"Female","department":"Marketing","address":"01 Dryden Pass","hire_date":"3/22/2018","website":"http://flavors.me","notes":"parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient","status":2,"type":3,"salary":"$1696.76"}, {"id":638,"employee_id":"584599054-8","first_name":"Veronique","last_name":"Stobbie","email":"vstobbiehp@bizjournals.com","phone":"136-411-6967","gender":"Female","department":"Business Development","address":"284 Macpherson Drive","hire_date":"12/6/2017","website":"https://tamu.edu","notes":"fermentum justo nec condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque","status":3,"type":2,"salary":"$2113.44"}, {"id":639,"employee_id":"767407623-7","first_name":"Carry","last_name":"Kloska","email":"ckloskahq@cargocollective.com","phone":"141-900-2603","gender":"Female","department":"Business Development","address":"910 Graceland Lane","hire_date":"8/5/2017","website":"https://hud.gov","notes":"morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum","status":2,"type":1,"salary":"$779.14"}, {"id":640,"employee_id":"544682250-1","first_name":"Raff","last_name":"Elven","email":"relvenhr@scribd.com","phone":"502-507-5023","gender":"Male","department":"Training","address":"0069 Raven Circle","hire_date":"8/18/2017","website":"http://creativecommons.org","notes":"molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas","status":6,"type":3,"salary":"$2217.71"}, {"id":641,"employee_id":"468714743-7","first_name":"Walsh","last_name":"Kenwell","email":"wkenwellhs@shinystat.com","phone":"238-899-2487","gender":"Male","department":"Human Resources","address":"5 Mesta Alley","hire_date":"5/26/2018","website":"https://nydailynews.com","notes":"ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce","status":4,"type":1,"salary":"$1185.95"}, {"id":642,"employee_id":"032700633-1","first_name":"Fonzie","last_name":"Peter","email":"fpeterht@google.cn","phone":"499-539-6881","gender":"Male","department":"Engineering","address":"463 Summit Way","hire_date":"10/3/2017","website":"http://soundcloud.com","notes":"in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl","status":2,"type":1,"salary":"$1990.65"}, {"id":643,"employee_id":"726333865-3","first_name":"Keen","last_name":"Getcliffe","email":"kgetcliffehu@youku.com","phone":"287-632-1636","gender":"Male","department":"Accounting","address":"52 Buena Vista Trail","hire_date":"1/1/2018","website":"http://paypal.com","notes":"at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id","status":5,"type":3,"salary":"$846.62"}, {"id":644,"employee_id":"873252076-X","first_name":"Charin","last_name":"Oldfield","email":"coldfieldhv@xrea.com","phone":"653-485-6635","gender":"Female","department":"Training","address":"5 Dapin Street","hire_date":"6/17/2018","website":"http://archive.org","notes":"ligula sit amet eleifend pede libero quis orci nullam molestie","status":2,"type":2,"salary":"$771.23"}, {"id":645,"employee_id":"337248013-9","first_name":"Durward","last_name":"Scarsbrick","email":"dscarsbrickhw@adobe.com","phone":"108-243-8896","gender":"Male","department":"Research and Development","address":"2 Beilfuss Road","hire_date":"11/4/2017","website":"https://creativecommons.org","notes":"iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id","status":6,"type":1,"salary":"$947.17"}, {"id":646,"employee_id":"575139382-1","first_name":"Fredek","last_name":"Leckie","email":"fleckiehx@unblog.fr","phone":"548-937-3036","gender":"Male","department":"Marketing","address":"4 Dunning Plaza","hire_date":"12/24/2017","website":"http://bluehost.com","notes":"lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit","status":4,"type":1,"salary":"$2121.82"}, {"id":647,"employee_id":"217054904-8","first_name":"Jakob","last_name":"Muddle","email":"jmuddlehy@digg.com","phone":"341-109-8160","gender":"Male","department":"Marketing","address":"69879 Clyde Gallagher Park","hire_date":"11/24/2017","website":"http://pbs.org","notes":"posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec","status":4,"type":2,"salary":"$949.75"}, {"id":648,"employee_id":"749343103-5","first_name":"Janek","last_name":"Archbould","email":"jarchbouldhz@ca.gov","phone":"430-705-0254","gender":"Male","department":"Marketing","address":"554 Eastlawn Street","hire_date":"6/2/2018","website":"http://cmu.edu","notes":"luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti","status":3,"type":1,"salary":"$2090.48"}, {"id":649,"employee_id":"443501439-4","first_name":"Dorise","last_name":"Beevis","email":"dbeevisi0@com.com","phone":"608-666-7708","gender":"Female","department":"Support","address":"510 Huxley Trail","hire_date":"10/6/2017","website":"https://creativecommons.org","notes":"id consequat in consequat ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer","status":4,"type":3,"salary":"$2093.86"}, {"id":650,"employee_id":"993540218-5","first_name":"Damiano","last_name":"Rutherforth","email":"drutherforthi1@macromedia.com","phone":"894-812-9541","gender":"Male","department":"Business Development","address":"0 Hayes Hill","hire_date":"1/3/2018","website":"https://usa.gov","notes":"pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat","status":5,"type":3,"salary":"$1610.28"}, {"id":651,"employee_id":"186912282-8","first_name":"Kitty","last_name":"Dorney","email":"kdorneyi2@shareasale.com","phone":"979-945-0835","gender":"Female","department":"Training","address":"169 Daystar Lane","hire_date":"7/21/2017","website":"https://chron.com","notes":"sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh","status":6,"type":3,"salary":"$684.03"}, {"id":652,"employee_id":"936661876-6","first_name":"Krishnah","last_name":"Swancock","email":"kswancocki3@cpanel.net","phone":"846-389-6298","gender":"Male","department":"Engineering","address":"49291 Sutteridge Point","hire_date":"2/18/2018","website":"https://nydailynews.com","notes":"at dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae","status":4,"type":2,"salary":"$2342.65"}, {"id":653,"employee_id":"378446883-7","first_name":"Crin","last_name":"Hatry","email":"chatryi4@sun.com","phone":"375-283-4304","gender":"Female","department":"Marketing","address":"24657 Golden Leaf Street","hire_date":"10/9/2017","website":"http://sciencedirect.com","notes":"mattis egestas metus aenean fermentum donec ut mauris eget massa tempor convallis nulla neque","status":4,"type":2,"salary":"$1152.71"}, {"id":654,"employee_id":"725816535-5","first_name":"Josephine","last_name":"Bocke","email":"jbockei5@dedecms.com","phone":"709-218-2121","gender":"Female","department":"Engineering","address":"73 Eastwood Pass","hire_date":"5/1/2018","website":"http://discovery.com","notes":"amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere","status":1,"type":1,"salary":"$610.57"}, {"id":655,"employee_id":"655537935-9","first_name":"Munmro","last_name":"McCudden","email":"mmccuddeni6@dedecms.com","phone":"527-809-4175","gender":"Male","department":"Accounting","address":"84 Lakeland Way","hire_date":"1/15/2018","website":"https://sciencedirect.com","notes":"dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id","status":5,"type":3,"salary":"$2472.25"}, {"id":656,"employee_id":"534384518-5","first_name":"Peta","last_name":"Grouvel","email":"pgrouveli7@businessweek.com","phone":"677-920-9635","gender":"Female","department":"Research and Development","address":"2 Sloan Way","hire_date":"12/19/2017","website":"https://mapy.cz","notes":"duis at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis","status":6,"type":2,"salary":"$1952.65"}, {"id":657,"employee_id":"932900385-0","first_name":"Estell","last_name":"Rex","email":"erexi8@instagram.com","phone":"469-507-4629","gender":"Female","department":"Accounting","address":"7544 Eastlawn Pass","hire_date":"12/6/2017","website":"https://hao123.com","notes":"est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est","status":6,"type":1,"salary":"$1383.51"}, {"id":658,"employee_id":"470307437-0","first_name":"Mitzi","last_name":"Gyurkovics","email":"mgyurkovicsi9@over-blog.com","phone":"715-681-1395","gender":"Female","department":"Services","address":"4438 Service Hill","hire_date":"2/9/2018","website":"http://aboutads.info","notes":"a suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula","status":6,"type":3,"salary":"$1117.55"}, {"id":659,"employee_id":"353982188-0","first_name":"Livy","last_name":"Cowlam","email":"lcowlamia@is.gd","phone":"164-158-3762","gender":"Female","department":"Legal","address":"0 Washington Road","hire_date":"4/23/2018","website":"https://indiatimes.com","notes":"duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis","status":1,"type":3,"salary":"$1251.71"}, {"id":660,"employee_id":"993200248-8","first_name":"Myrtice","last_name":"Edes","email":"medesib@usnews.com","phone":"855-416-8542","gender":"Female","department":"Sales","address":"6 Lotheville Avenue","hire_date":"10/20/2017","website":"http://wikispaces.com","notes":"magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt","status":4,"type":3,"salary":"$1997.01"}, {"id":661,"employee_id":"599617941-5","first_name":"Tommie","last_name":"Deakan","email":"tdeakanic@github.io","phone":"561-829-3186","gender":"Male","department":"Legal","address":"58 Bashford Alley","hire_date":"1/31/2018","website":"https://ebay.co.uk","notes":"ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a","status":4,"type":1,"salary":"$2022.04"}, {"id":662,"employee_id":"799194014-4","first_name":"Kellie","last_name":"Marquot","email":"kmarquotid@behance.net","phone":"258-367-6848","gender":"Female","department":"Sales","address":"6 Ohio Point","hire_date":"2/2/2018","website":"https://plala.or.jp","notes":"faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut","status":1,"type":2,"salary":"$336.28"}, {"id":663,"employee_id":"647492770-4","first_name":"Alfredo","last_name":"Huygen","email":"ahuygenie@usnews.com","phone":"552-673-7436","gender":"Male","department":"Engineering","address":"32 Saint Paul Hill","hire_date":"3/19/2018","website":"http://bloglovin.com","notes":"vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque","status":5,"type":3,"salary":"$912.19"}, {"id":664,"employee_id":"636062781-7","first_name":"Dulcinea","last_name":"Molyneaux","email":"dmolyneauxif@dropbox.com","phone":"438-696-8082","gender":"Female","department":"Business Development","address":"443 Drewry Plaza","hire_date":"8/5/2017","website":"https://arizona.edu","notes":"fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti","status":2,"type":2,"salary":"$910.29"}, {"id":665,"employee_id":"389443969-6","first_name":"Giff","last_name":"Kettel","email":"gkettelig@shop-pro.jp","phone":"446-416-7541","gender":"Male","department":"Human Resources","address":"06149 Shelley Park","hire_date":"2/27/2018","website":"http://stumbleupon.com","notes":"dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante","status":1,"type":3,"salary":"$917.04"}, {"id":666,"employee_id":"413322681-X","first_name":"Elmore","last_name":"Fitzharris","email":"efitzharrisih@google.cn","phone":"989-524-4294","gender":"Male","department":"Legal","address":"66860 Ridgeway Plaza","hire_date":"6/22/2018","website":"https://instagram.com","notes":"mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit","status":5,"type":3,"salary":"$2186.02"}, {"id":667,"employee_id":"815407726-4","first_name":"Angy","last_name":"Durban","email":"adurbanii@wikia.com","phone":"897-122-5541","gender":"Female","department":"Training","address":"457 Glendale Pass","hire_date":"1/19/2018","website":"http://usatoday.com","notes":"massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et","status":4,"type":3,"salary":"$1943.00"}, {"id":668,"employee_id":"593533936-6","first_name":"Cinda","last_name":"Eisak","email":"ceisakij@gov.uk","phone":"364-878-8239","gender":"Female","department":"Marketing","address":"72410 Tomscot Hill","hire_date":"6/13/2018","website":"https://ask.com","notes":"leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper","status":1,"type":1,"salary":"$477.81"}, {"id":669,"employee_id":"386431667-7","first_name":"Ilsa","last_name":"Lergan","email":"ilerganik@epa.gov","phone":"363-773-1838","gender":"Female","department":"Legal","address":"627 Bluejay Alley","hire_date":"4/5/2018","website":"http://nba.com","notes":"tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat","status":3,"type":2,"salary":"$864.59"}, {"id":670,"employee_id":"327529124-6","first_name":"Joana","last_name":"Tilliard","email":"jtilliardil@icio.us","phone":"317-579-8921","gender":"Female","department":"Sales","address":"83056 Killdeer Drive","hire_date":"1/24/2018","website":"https://sina.com.cn","notes":"porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit","status":1,"type":3,"salary":"$826.57"}, {"id":671,"employee_id":"716488501-X","first_name":"Dorri","last_name":"Spaughton","email":"dspaughtonim@diigo.com","phone":"775-248-9772","gender":"Female","department":"Engineering","address":"17 Charing Cross Pass","hire_date":"11/9/2017","website":"http://naver.com","notes":"lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl","status":1,"type":1,"salary":"$2058.08"}, {"id":672,"employee_id":"815967924-6","first_name":"Livvyy","last_name":"Reaveley","email":"lreaveleyin@newyorker.com","phone":"470-922-5582","gender":"Female","department":"Human Resources","address":"507 Granby Court","hire_date":"7/6/2018","website":"https://abc.net.au","notes":"in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus","status":3,"type":3,"salary":"$2390.00"}, {"id":673,"employee_id":"353903060-3","first_name":"Doris","last_name":"Piscopo","email":"dpiscopoio@reverbnation.com","phone":"709-930-1076","gender":"Female","department":"Training","address":"64 Annamark Center","hire_date":"12/10/2017","website":"http://bluehost.com","notes":"luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis","status":3,"type":1,"salary":"$2146.37"}, {"id":674,"employee_id":"985746807-1","first_name":"Massimo","last_name":"Breche","email":"mbrecheip@rediff.com","phone":"154-869-4732","gender":"Male","department":"Research and Development","address":"34443 Sheridan Junction","hire_date":"12/24/2017","website":"https://posterous.com","notes":"blandit non interdum in ante vestibulum ante ipsum primis in faucibus","status":1,"type":3,"salary":"$747.93"}, {"id":675,"employee_id":"138241196-0","first_name":"Marc","last_name":"Sowden","email":"msowdeniq@ovh.net","phone":"989-224-4253","gender":"Male","department":"Training","address":"6 Maple Wood Park","hire_date":"4/12/2018","website":"https://foxnews.com","notes":"eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio","status":3,"type":3,"salary":"$1227.61"}, {"id":676,"employee_id":"448198510-0","first_name":"Miguelita","last_name":"Clinning","email":"mclinningir@google.it","phone":"723-381-2446","gender":"Female","department":"Engineering","address":"48121 Roth Way","hire_date":"11/15/2017","website":"http://washingtonpost.com","notes":"adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante","status":6,"type":1,"salary":"$389.30"}, {"id":677,"employee_id":"638949538-2","first_name":"Cletus","last_name":"Gerlack","email":"cgerlackis@networksolutions.com","phone":"269-695-5505","gender":"Male","department":"Product Management","address":"4602 Northland Way","hire_date":"4/27/2018","website":"http://a8.net","notes":"aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac","status":2,"type":3,"salary":"$918.72"}, {"id":678,"employee_id":"252449741-0","first_name":"Zackariah","last_name":"Crowson","email":"zcrowsonit@google.fr","phone":"522-425-6878","gender":"Male","department":"Research and Development","address":"25 La Follette Street","hire_date":"7/26/2017","website":"http://bbc.co.uk","notes":"fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat","status":2,"type":2,"salary":"$716.93"}, {"id":679,"employee_id":"840831888-8","first_name":"Papageno","last_name":"Maslin","email":"pmasliniu@usda.gov","phone":"552-899-5637","gender":"Male","department":"Business Development","address":"499 Ridgeway Alley","hire_date":"7/29/2017","website":"https://geocities.jp","notes":"placerat praesent blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede","status":1,"type":3,"salary":"$299.08"}, {"id":680,"employee_id":"602937124-X","first_name":"Carmel","last_name":"St. Ledger","email":"cstledgeriv@harvard.edu","phone":"634-788-2799","gender":"Female","department":"Sales","address":"87 Lakeland Place","hire_date":"8/15/2017","website":"http://bluehost.com","notes":"maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi","status":2,"type":2,"salary":"$2452.58"}, {"id":681,"employee_id":"166132011-2","first_name":"Sara-ann","last_name":"Whitticks","email":"swhitticksiw@google.com.au","phone":"712-132-0455","gender":"Female","department":"Marketing","address":"499 Prentice Road","hire_date":"7/25/2017","website":"https://uol.com.br","notes":"quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus","status":6,"type":1,"salary":"$1604.40"}, {"id":682,"employee_id":"820641726-5","first_name":"Marji","last_name":"Scupham","email":"mscuphamix@patch.com","phone":"889-178-4698","gender":"Female","department":"Research and Development","address":"254 Brown Street","hire_date":"3/29/2018","website":"http://fema.gov","notes":"felis fusce posuere felis sed lacus morbi sem mauris laoreet ut","status":4,"type":1,"salary":"$1060.14"}, {"id":683,"employee_id":"513253217-9","first_name":"Lisha","last_name":"Cossor","email":"lcossoriy@typepad.com","phone":"286-473-6032","gender":"Female","department":"Marketing","address":"49694 Stephen Trail","hire_date":"8/7/2017","website":"https://nps.gov","notes":"iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate","status":3,"type":2,"salary":"$2378.68"}, {"id":684,"employee_id":"249557946-9","first_name":"Rancell","last_name":"Sowten","email":"rsowteniz@github.com","phone":"875-923-2726","gender":"Male","department":"Accounting","address":"66514 Eliot Drive","hire_date":"11/2/2017","website":"http://etsy.com","notes":"ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor","status":4,"type":2,"salary":"$1318.09"}, {"id":685,"employee_id":"049179644-7","first_name":"Nicolea","last_name":"Ehlerding","email":"nehlerdingj0@stanford.edu","phone":"406-593-6125","gender":"Female","department":"Services","address":"70 Hayes Parkway","hire_date":"2/10/2018","website":"https://wordpress.org","notes":"quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor convallis nulla","status":1,"type":3,"salary":"$545.73"}, {"id":686,"employee_id":"063656962-4","first_name":"Madalena","last_name":"Simonian","email":"msimonianj1@psu.edu","phone":"989-634-8212","gender":"Female","department":"Research and Development","address":"9486 Kinsman Court","hire_date":"9/1/2017","website":"https://cnn.com","notes":"sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel","status":4,"type":2,"salary":"$394.67"}, {"id":687,"employee_id":"221473129-6","first_name":"Flss","last_name":"Duro","email":"fduroj2@mayoclinic.com","phone":"654-676-9069","gender":"Female","department":"Training","address":"6 Moland Park","hire_date":"6/24/2018","website":"https://squidoo.com","notes":"sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper","status":4,"type":2,"salary":"$300.04"}, {"id":688,"employee_id":"672662135-3","first_name":"Sidonnie","last_name":"Bisp","email":"sbispj3@eventbrite.com","phone":"592-258-0085","gender":"Female","department":"Legal","address":"164 Fieldstone Alley","hire_date":"12/25/2017","website":"https://fema.gov","notes":"vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac","status":3,"type":3,"salary":"$2405.89"}, {"id":689,"employee_id":"932752723-2","first_name":"Mack","last_name":"Sirr","email":"msirrj4@jigsy.com","phone":"678-932-0326","gender":"Male","department":"Training","address":"71 Del Sol Lane","hire_date":"1/21/2018","website":"http://about.me","notes":"massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet","status":5,"type":1,"salary":"$522.47"}, {"id":690,"employee_id":"158019071-5","first_name":"Zola","last_name":"Beirne","email":"zbeirnej5@qq.com","phone":"338-170-4611","gender":"Female","department":"Training","address":"4 Doe Crossing Junction","hire_date":"9/29/2017","website":"http://skype.com","notes":"neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros","status":3,"type":3,"salary":"$1334.49"}, {"id":691,"employee_id":"893906095-4","first_name":"Roxane","last_name":"Stares","email":"rstaresj6@scientificamerican.com","phone":"371-437-8341","gender":"Female","department":"Marketing","address":"9740 Mcbride Court","hire_date":"5/10/2018","website":"http://odnoklassniki.ru","notes":"fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo","status":2,"type":1,"salary":"$2296.43"}, {"id":692,"employee_id":"601370084-2","first_name":"Nicole","last_name":"MacMickan","email":"nmacmickanj7@google.cn","phone":"193-701-1820","gender":"Female","department":"Product Management","address":"26025 Pawling Terrace","hire_date":"8/26/2017","website":"https://ca.gov","notes":"felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu massa donec","status":3,"type":1,"salary":"$1509.18"}, {"id":693,"employee_id":"356952132-X","first_name":"Norry","last_name":"Bruce","email":"nbrucej8@ocn.ne.jp","phone":"343-447-0594","gender":"Male","department":"Training","address":"37 Thierer Pass","hire_date":"6/19/2018","website":"https://fc2.com","notes":"mauris vulputate elementum nullam varius nulla facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus","status":3,"type":3,"salary":"$2334.36"}, {"id":694,"employee_id":"650802152-4","first_name":"Maxie","last_name":"Macvain","email":"mmacvainj9@edublogs.org","phone":"915-723-4900","gender":"Male","department":"Product Management","address":"8058 Sheridan Drive","hire_date":"6/7/2018","website":"http://theatlantic.com","notes":"curabitur gravida nisi at nibh in hac habitasse platea dictumst","status":6,"type":1,"salary":"$1063.50"}, {"id":695,"employee_id":"330548767-4","first_name":"Octavia","last_name":"Blas","email":"oblasja@aboutads.info","phone":"453-949-8257","gender":"Female","department":"Sales","address":"916 Bunker Hill Lane","hire_date":"3/8/2018","website":"http://wiley.com","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec","status":4,"type":1,"salary":"$2255.72"}, {"id":696,"employee_id":"504533227-9","first_name":"Fidelia","last_name":"Lowten","email":"flowtenjb@china.com.cn","phone":"985-183-9461","gender":"Female","department":"Marketing","address":"533 Arizona Way","hire_date":"1/2/2018","website":"http://theguardian.com","notes":"eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper","status":5,"type":2,"salary":"$2173.91"}, {"id":697,"employee_id":"286438381-0","first_name":"Cordie","last_name":"Dear","email":"cdearjc@prweb.com","phone":"305-150-9917","gender":"Male","department":"Sales","address":"86801 Pine View Way","hire_date":"11/1/2017","website":"http://toplist.cz","notes":"adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere","status":3,"type":3,"salary":"$943.97"}, {"id":698,"employee_id":"651996975-3","first_name":"Ambros","last_name":"Hagan","email":"ahaganjd@sciencedaily.com","phone":"137-312-6328","gender":"Male","department":"Business Development","address":"37 Bowman Hill","hire_date":"4/17/2018","website":"http://indiatimes.com","notes":"sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce","status":6,"type":2,"salary":"$1508.52"}, {"id":699,"employee_id":"090524267-X","first_name":"Paige","last_name":"Poulett","email":"ppoulettje@guardian.co.uk","phone":"919-567-9670","gender":"Female","department":"Sales","address":"56 Kingsford Hill","hire_date":"3/22/2018","website":"https://alibaba.com","notes":"vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur","status":2,"type":1,"salary":"$1217.96"}, {"id":700,"employee_id":"645400820-7","first_name":"Merrile","last_name":"Gullifant","email":"mgullifantjf@ft.com","phone":"222-616-8973","gender":"Female","department":"Training","address":"88 Parkside Pass","hire_date":"12/26/2017","website":"http://europa.eu","notes":"in est risus auctor sed tristique in tempus sit amet sem","status":3,"type":1,"salary":"$408.05"}, {"id":701,"employee_id":"894005173-4","first_name":"Cletus","last_name":"Khoter","email":"ckhoterjg@mlb.com","phone":"319-165-9067","gender":"Male","department":"Sales","address":"02019 Mendota Plaza","hire_date":"1/22/2018","website":"http://slate.com","notes":"vel nisl duis ac nibh fusce lacus purus aliquet at feugiat","status":5,"type":3,"salary":"$1554.16"}, {"id":702,"employee_id":"213179655-2","first_name":"Jeannette","last_name":"Ipgrave","email":"jipgravejh@timesonline.co.uk","phone":"725-413-1695","gender":"Female","department":"Legal","address":"1925 Onsgard Road","hire_date":"1/5/2018","website":"http://ihg.com","notes":"vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus","status":1,"type":3,"salary":"$2083.56"}, {"id":703,"employee_id":"810266120-8","first_name":"Dotty","last_name":"Andreini","email":"dandreiniji@cbc.ca","phone":"679-249-9520","gender":"Female","department":"Sales","address":"9563 Cherokee Crossing","hire_date":"1/18/2018","website":"https://seesaa.net","notes":"suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam","status":6,"type":1,"salary":"$1521.92"}, {"id":704,"employee_id":"493468147-7","first_name":"Serene","last_name":"Ricket","email":"sricketjj@tinypic.com","phone":"502-419-3371","gender":"Female","department":"Product Management","address":"025 Iowa Parkway","hire_date":"11/18/2017","website":"http://xinhuanet.com","notes":"eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur","status":6,"type":2,"salary":"$1404.60"}, {"id":705,"employee_id":"570931159-6","first_name":"Rip","last_name":"Aldiss","email":"raldissjk@cnet.com","phone":"507-836-2057","gender":"Male","department":"Engineering","address":"19144 Columbus Pass","hire_date":"10/12/2017","website":"http://ow.ly","notes":"non ligula pellentesque ultrices phasellus id sapien in sapien iaculis","status":6,"type":3,"salary":"$1030.97"}, {"id":706,"employee_id":"855788471-0","first_name":"Forbes","last_name":"Heaslip","email":"fheaslipjl@nymag.com","phone":"669-963-3068","gender":"Male","department":"Human Resources","address":"83 Dawn Terrace","hire_date":"2/22/2018","website":"http://histats.com","notes":"gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio","status":5,"type":1,"salary":"$1071.79"}, {"id":707,"employee_id":"063855246-X","first_name":"Anette","last_name":"Issit","email":"aissitjm@trellian.com","phone":"488-677-2177","gender":"Female","department":"Engineering","address":"86 Westerfield Plaza","hire_date":"4/14/2018","website":"https://usatoday.com","notes":"amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus","status":3,"type":1,"salary":"$655.17"}, {"id":708,"employee_id":"113037184-0","first_name":"Joseito","last_name":"Darrel","email":"jdarreljn@senate.gov","phone":"572-615-9650","gender":"Male","department":"Human Resources","address":"94 Delaware Avenue","hire_date":"11/14/2017","website":"http://sbwire.com","notes":"eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a","status":6,"type":2,"salary":"$2420.09"}, {"id":709,"employee_id":"067166587-1","first_name":"Clayton","last_name":"Coventry","email":"ccoventryjo@state.tx.us","phone":"996-796-8145","gender":"Male","department":"Business Development","address":"7715 Blaine Trail","hire_date":"7/18/2018","website":"http://washington.edu","notes":"ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices","status":1,"type":1,"salary":"$1149.72"}, {"id":710,"employee_id":"502322291-8","first_name":"Ashleigh","last_name":"Cook","email":"acookjp@wunderground.com","phone":"578-756-0819","gender":"Female","department":"Research and Development","address":"0 Bunting Crossing","hire_date":"2/7/2018","website":"http://google.ca","notes":"quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis","status":4,"type":3,"salary":"$2396.14"}, {"id":711,"employee_id":"964219398-1","first_name":"Gregorius","last_name":"Whaplington","email":"gwhaplingtonjq@who.int","phone":"867-493-5512","gender":"Male","department":"Services","address":"9 Anhalt Avenue","hire_date":"7/22/2017","website":"https://msu.edu","notes":"leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede","status":5,"type":3,"salary":"$780.84"}, {"id":712,"employee_id":"857753635-1","first_name":"Jaymie","last_name":"Saterthwait","email":"jsaterthwaitjr@slashdot.org","phone":"584-535-3130","gender":"Male","department":"Support","address":"993 Anthes Junction","hire_date":"9/19/2017","website":"https://friendfeed.com","notes":"donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo","status":6,"type":2,"salary":"$1582.30"}, {"id":713,"employee_id":"110435325-3","first_name":"Chas","last_name":"Liepina","email":"cliepinajs@home.pl","phone":"118-369-7905","gender":"Male","department":"Support","address":"43 Dixon Center","hire_date":"12/15/2017","website":"http://sciencedirect.com","notes":"amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus","status":1,"type":1,"salary":"$1048.75"}, {"id":714,"employee_id":"858122083-5","first_name":"Montgomery","last_name":"Fairlaw","email":"mfairlawjt@sciencedirect.com","phone":"922-490-3988","gender":"Male","department":"Research and Development","address":"360 Katie Alley","hire_date":"10/27/2017","website":"http://surveymonkey.com","notes":"mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis","status":5,"type":1,"salary":"$1218.41"}, {"id":715,"employee_id":"953911433-0","first_name":"Abraham","last_name":"Cowie","email":"acowieju@4shared.com","phone":"239-800-8947","gender":"Male","department":"Human Resources","address":"8315 Stoughton Junction","hire_date":"2/18/2018","website":"https://wufoo.com","notes":"libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus","status":2,"type":2,"salary":"$1431.58"}, {"id":716,"employee_id":"980188704-4","first_name":"Ryann","last_name":"Nutkins","email":"rnutkinsjv@qq.com","phone":"986-164-8594","gender":"Female","department":"Sales","address":"92 Vahlen Lane","hire_date":"9/8/2017","website":"https://skype.com","notes":"nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque","status":2,"type":2,"salary":"$2320.72"}, {"id":717,"employee_id":"496180526-2","first_name":"Catina","last_name":"Baser","email":"cbaserjw@businessweek.com","phone":"532-723-4330","gender":"Female","department":"Services","address":"4199 Hanson Hill","hire_date":"9/21/2017","website":"http://reddit.com","notes":"vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed","status":4,"type":1,"salary":"$704.47"}, {"id":718,"employee_id":"569821610-X","first_name":"Adrea","last_name":"Thrussell","email":"athrusselljx@wikipedia.org","phone":"121-272-3387","gender":"Female","department":"Sales","address":"97263 Riverside Junction","hire_date":"12/11/2017","website":"http://jalbum.net","notes":"sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse","status":1,"type":1,"salary":"$1502.79"}, {"id":719,"employee_id":"635471406-1","first_name":"Harry","last_name":"O\'Corr","email":"hocorrjy@globo.com","phone":"628-461-4876","gender":"Male","department":"Support","address":"5 Crownhardt Drive","hire_date":"12/28/2017","website":"https://wix.com","notes":"diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus","status":3,"type":3,"salary":"$1743.03"}, {"id":720,"employee_id":"357220718-5","first_name":"Nance","last_name":"Corness","email":"ncornessjz@about.com","phone":"506-196-3218","gender":"Female","department":"Sales","address":"41697 Springview Circle","hire_date":"10/17/2017","website":"http://angelfire.com","notes":"pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac","status":6,"type":2,"salary":"$766.20"}, {"id":721,"employee_id":"288703491-X","first_name":"Andrus","last_name":"Thomerson","email":"athomersonk0@abc.net.au","phone":"473-877-4517","gender":"Male","department":"Training","address":"8 Cherokee Court","hire_date":"10/24/2017","website":"http://fema.gov","notes":"ligula nec sem duis aliquam convallis nunc proin at turpis a pede","status":3,"type":1,"salary":"$1700.61"}, {"id":722,"employee_id":"139646871-4","first_name":"Roxanne","last_name":"Hecks","email":"rhecksk1@google.es","phone":"679-836-5987","gender":"Female","department":"Sales","address":"79 Main Center","hire_date":"10/31/2017","website":"http://naver.com","notes":"diam cras pellentesque volutpat dui maecenas tristique est et tempus","status":5,"type":2,"salary":"$2165.50"}, {"id":723,"employee_id":"106514862-3","first_name":"Tremayne","last_name":"Proffitt","email":"tproffittk2@dailymotion.com","phone":"212-607-7025","gender":"Male","department":"Engineering","address":"4 Sunnyside Road","hire_date":"1/23/2018","website":"http://pbs.org","notes":"amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec","status":3,"type":3,"salary":"$618.28"}, {"id":724,"employee_id":"979600546-8","first_name":"Lannie","last_name":"Ettels","email":"lettelsk3@sina.com.cn","phone":"110-670-1034","gender":"Male","department":"Business Development","address":"50733 Farmco Avenue","hire_date":"7/27/2017","website":"https://washingtonpost.com","notes":"rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum","status":1,"type":1,"salary":"$2157.28"}, {"id":725,"employee_id":"455215314-5","first_name":"Simon","last_name":"Kimblen","email":"skimblenk4@nature.com","phone":"632-400-5992","gender":"Male","department":"Support","address":"5100 Atwood Street","hire_date":"10/12/2017","website":"https://cisco.com","notes":"ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere","status":6,"type":3,"salary":"$841.35"}, {"id":726,"employee_id":"244157015-3","first_name":"Bing","last_name":"Lytell","email":"blytellk5@zdnet.com","phone":"104-793-5468","gender":"Male","department":"Legal","address":"194 Continental Way","hire_date":"4/4/2018","website":"https://weibo.com","notes":"justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus","status":6,"type":3,"salary":"$797.43"}, {"id":727,"employee_id":"918765161-0","first_name":"Shell","last_name":"Salvadori","email":"ssalvadorik6@addthis.com","phone":"608-475-2435","gender":"Female","department":"Services","address":"009 Walton Parkway","hire_date":"11/8/2017","website":"https://oracle.com","notes":"tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede","status":2,"type":1,"salary":"$369.19"}, {"id":728,"employee_id":"297398731-8","first_name":"Carey","last_name":"Vockings","email":"cvockingsk7@163.com","phone":"714-839-9140","gender":"Male","department":"Human Resources","address":"389 Calypso Park","hire_date":"3/4/2018","website":"http://admin.ch","notes":"natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum","status":4,"type":1,"salary":"$433.80"}, {"id":729,"employee_id":"547893183-7","first_name":"Pernell","last_name":"Frontczak","email":"pfrontczakk8@gizmodo.com","phone":"263-776-3928","gender":"Male","department":"Services","address":"9682 Barnett Place","hire_date":"11/6/2017","website":"http://shinystat.com","notes":"nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit amet","status":5,"type":2,"salary":"$1877.01"}, {"id":730,"employee_id":"871014844-2","first_name":"Mahmoud","last_name":"Smelley","email":"msmelleyk9@hibu.com","phone":"971-916-0272","gender":"Male","department":"Human Resources","address":"263 John Wall Avenue","hire_date":"10/24/2017","website":"https://yandex.ru","notes":"nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula","status":2,"type":1,"salary":"$1653.35"}, {"id":731,"employee_id":"601496906-3","first_name":"Joshia","last_name":"Camerana","email":"jcameranaka@soup.io","phone":"512-287-9399","gender":"Male","department":"Support","address":"53310 Corben Center","hire_date":"4/22/2018","website":"http://wired.com","notes":"rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet","status":1,"type":2,"salary":"$1489.98"}, {"id":732,"employee_id":"051552235-X","first_name":"Gus","last_name":"Killingback","email":"gkillingbackkb@webnode.com","phone":"394-825-4059","gender":"Female","department":"Business Development","address":"6275 Vidon Avenue","hire_date":"3/19/2018","website":"https://fotki.com","notes":"turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor","status":4,"type":2,"salary":"$310.68"}, {"id":733,"employee_id":"464520984-1","first_name":"Beckie","last_name":"Lorentz","email":"blorentzkc@lycos.com","phone":"345-121-8865","gender":"Female","department":"Sales","address":"36832 Delaware Pass","hire_date":"2/20/2018","website":"https://dion.ne.jp","notes":"dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh","status":3,"type":1,"salary":"$1055.28"}, {"id":734,"employee_id":"227389953-X","first_name":"Hal","last_name":"Bearman","email":"hbearmankd@purevolume.com","phone":"557-110-4474","gender":"Male","department":"Research and Development","address":"81 Rutledge Drive","hire_date":"9/25/2017","website":"http://time.com","notes":"maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus vivamus in felis","status":2,"type":1,"salary":"$2126.72"}, {"id":735,"employee_id":"953650773-0","first_name":"Lianna","last_name":"Utton","email":"luttonke@i2i.jp","phone":"176-288-4750","gender":"Female","department":"Services","address":"147 Harbort Pass","hire_date":"6/13/2018","website":"https://reference.com","notes":"lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a","status":3,"type":3,"salary":"$1122.12"}, {"id":736,"employee_id":"086191597-6","first_name":"Field","last_name":"Speight","email":"fspeightkf@bandcamp.com","phone":"555-358-8933","gender":"Male","department":"Sales","address":"88302 Express Circle","hire_date":"4/1/2018","website":"https://homestead.com","notes":"sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien","status":5,"type":3,"salary":"$393.67"}, {"id":737,"employee_id":"169320493-2","first_name":"Frayda","last_name":"McNeachtain","email":"fmcneachtainkg@sbwire.com","phone":"118-638-1568","gender":"Female","department":"Engineering","address":"36649 Mandrake Avenue","hire_date":"2/17/2018","website":"http://blog.com","notes":"tempus sit amet sem fusce consequat nulla nisl nunc nisl","status":4,"type":1,"salary":"$619.57"}, {"id":738,"employee_id":"612245514-8","first_name":"Daisey","last_name":"Neath","email":"dneathkh@foxnews.com","phone":"698-436-9176","gender":"Female","department":"Training","address":"9715 Knutson Place","hire_date":"5/26/2018","website":"http://tamu.edu","notes":"ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin","status":2,"type":2,"salary":"$1674.16"}, {"id":739,"employee_id":"233363217-8","first_name":"Philip","last_name":"Wedmore.","email":"pwedmoreki@alexa.com","phone":"820-745-6102","gender":"Male","department":"Human Resources","address":"6969 Hudson Drive","hire_date":"2/6/2018","website":"https://php.net","notes":"felis eu sapien cursus vestibulum proin eu mi nulla ac enim in","status":1,"type":1,"salary":"$2421.30"}, {"id":740,"employee_id":"388586195-X","first_name":"Kessiah","last_name":"Farrens","email":"kfarrenskj@cloudflare.com","phone":"195-961-2704","gender":"Female","department":"Engineering","address":"7001 Bashford Plaza","hire_date":"7/30/2017","website":"https://google.de","notes":"pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus","status":3,"type":3,"salary":"$1148.86"}, {"id":741,"employee_id":"577264956-6","first_name":"Devan","last_name":"Mancer","email":"dmancerkk@nasa.gov","phone":"527-727-0360","gender":"Female","department":"Services","address":"715 Alpine Point","hire_date":"10/10/2017","website":"http://prlog.org","notes":"facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus","status":4,"type":1,"salary":"$483.23"}, {"id":742,"employee_id":"906086622-3","first_name":"Jessa","last_name":"Chadwyck","email":"jchadwyckkl@skype.com","phone":"380-842-5113","gender":"Female","department":"Support","address":"6 Kingsford Pass","hire_date":"5/8/2018","website":"https://lycos.com","notes":"pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed","status":1,"type":3,"salary":"$559.83"}, {"id":743,"employee_id":"291832829-4","first_name":"Etta","last_name":"Cubbin","email":"ecubbinkm@360.cn","phone":"524-585-7456","gender":"Female","department":"Marketing","address":"6 Steensland Park","hire_date":"3/22/2018","website":"http://phoca.cz","notes":"duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu","status":1,"type":3,"salary":"$1759.01"}, {"id":744,"employee_id":"884673346-0","first_name":"Goldarina","last_name":"Hallick","email":"ghallickkn@cornell.edu","phone":"735-265-4985","gender":"Female","department":"Business Development","address":"77046 Anthes Park","hire_date":"8/15/2017","website":"http://youku.com","notes":"proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum","status":3,"type":2,"salary":"$1702.89"}, {"id":745,"employee_id":"929468064-9","first_name":"Dru","last_name":"Fearon","email":"dfearonko@toplist.cz","phone":"792-396-1723","gender":"Female","department":"Product Management","address":"752 Florence Center","hire_date":"8/1/2017","website":"https://homestead.com","notes":"porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce","status":3,"type":2,"salary":"$1664.47"}, {"id":746,"employee_id":"451339697-0","first_name":"Ashla","last_name":"Marder","email":"amarderkp@free.fr","phone":"125-745-4335","gender":"Female","department":"Marketing","address":"77260 Annamark Way","hire_date":"1/28/2018","website":"http://cyberchimps.com","notes":"ornare consequat lectus in est risus auctor sed tristique in tempus sit","status":2,"type":1,"salary":"$1727.85"}, {"id":747,"employee_id":"302964454-5","first_name":"Suzanne","last_name":"Maltman","email":"smaltmankq@businessweek.com","phone":"161-281-1125","gender":"Female","department":"Marketing","address":"2 Thackeray Point","hire_date":"12/3/2017","website":"https://indiatimes.com","notes":"eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id","status":1,"type":2,"salary":"$2094.54"}, {"id":748,"employee_id":"575721334-5","first_name":"Bevan","last_name":"Hatt","email":"bhattkr@youku.com","phone":"183-692-4271","gender":"Male","department":"Sales","address":"47 Lake View Terrace","hire_date":"6/28/2018","website":"https://arizona.edu","notes":"donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit","status":2,"type":3,"salary":"$2187.91"}, {"id":749,"employee_id":"476712324-0","first_name":"Penni","last_name":"Swiffin","email":"pswiffinks@ustream.tv","phone":"508-193-8676","gender":"Female","department":"Sales","address":"33 Coleman Crossing","hire_date":"10/5/2017","website":"http://issuu.com","notes":"placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet","status":5,"type":2,"salary":"$1052.26"}, {"id":750,"employee_id":"330191798-4","first_name":"Janis","last_name":"Clery","email":"jclerykt@addtoany.com","phone":"507-351-2373","gender":"Female","department":"Legal","address":"73 Lakewood Junction","hire_date":"8/20/2017","website":"https://auda.org.au","notes":"consequat dui nec nisi volutpat eleifend donec ut dolor morbi","status":4,"type":3,"salary":"$1817.49"}, {"id":751,"employee_id":"851528476-6","first_name":"Lyndy","last_name":"Balasin","email":"lbalasinku@sohu.com","phone":"732-480-2676","gender":"Female","department":"Product Management","address":"2 Straubel Pass","hire_date":"8/16/2017","website":"https://hp.com","notes":"nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros","status":4,"type":1,"salary":"$1810.39"}, {"id":752,"employee_id":"775182812-9","first_name":"Ingemar","last_name":"Feuell","email":"ifeuellkv@sina.com.cn","phone":"464-180-8449","gender":"Male","department":"Legal","address":"046 Magdeline Road","hire_date":"1/27/2018","website":"https://sphinn.com","notes":"quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus","status":4,"type":2,"salary":"$566.88"}, {"id":753,"employee_id":"522465201-4","first_name":"Roderic","last_name":"Danielsky","email":"rdanielskykw@goo.ne.jp","phone":"648-156-2583","gender":"Male","department":"Training","address":"5 Kim Junction","hire_date":"12/9/2017","website":"https://dailymotion.com","notes":"lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium","status":2,"type":2,"salary":"$1915.96"}, {"id":754,"employee_id":"506203118-4","first_name":"Mohandis","last_name":"Neubigging","email":"mneubiggingkx@zimbio.com","phone":"813-421-1638","gender":"Male","department":"Legal","address":"301 Elka Terrace","hire_date":"4/3/2018","website":"https://1688.com","notes":"venenatis turpis enim blandit mi in porttitor pede justo eu massa donec dapibus duis at","status":6,"type":2,"salary":"$1446.16"}, {"id":755,"employee_id":"837202041-8","first_name":"Egor","last_name":"Baus","email":"ebausky@myspace.com","phone":"973-860-4459","gender":"Male","department":"Legal","address":"1 Meadow Ridge Circle","hire_date":"7/10/2018","website":"http://reverbnation.com","notes":"justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris","status":6,"type":3,"salary":"$1402.85"}, {"id":756,"employee_id":"851990157-3","first_name":"Elias","last_name":"Buckthorp","email":"ebuckthorpkz@sourceforge.net","phone":"383-782-5504","gender":"Male","department":"Accounting","address":"17 Maple Circle","hire_date":"6/10/2018","website":"http://cbc.ca","notes":"in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor","status":6,"type":2,"salary":"$1628.69"}, {"id":757,"employee_id":"136037018-8","first_name":"Annemarie","last_name":"Klarzynski","email":"aklarzynskil0@un.org","phone":"606-347-7535","gender":"Female","department":"Research and Development","address":"47457 Oxford Terrace","hire_date":"4/18/2018","website":"http://toplist.cz","notes":"turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in","status":2,"type":2,"salary":"$1318.80"}, {"id":758,"employee_id":"819408506-3","first_name":"Elladine","last_name":"Luckie","email":"eluckiel1@oaic.gov.au","phone":"958-846-3367","gender":"Female","department":"Engineering","address":"45089 Hallows Plaza","hire_date":"12/18/2017","website":"https://msn.com","notes":"suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula","status":4,"type":3,"salary":"$372.14"}, {"id":759,"employee_id":"998636425-6","first_name":"Denise","last_name":"Grundon","email":"dgrundonl2@berkeley.edu","phone":"526-336-1234","gender":"Female","department":"Sales","address":"8988 Welch Crossing","hire_date":"7/17/2018","website":"https://weibo.com","notes":"congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in","status":2,"type":1,"salary":"$489.95"}, {"id":760,"employee_id":"184019292-5","first_name":"Ludovika","last_name":"Yewen","email":"lyewenl3@google.com","phone":"131-144-1624","gender":"Female","department":"Engineering","address":"88 Cardinal Hill","hire_date":"9/26/2017","website":"https://weibo.com","notes":"fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo","status":4,"type":1,"salary":"$1651.19"}, {"id":761,"employee_id":"998923606-2","first_name":"Giffy","last_name":"Florentine","email":"gflorentinel4@marketwatch.com","phone":"631-489-6012","gender":"Male","department":"Marketing","address":"431 Hagan Place","hire_date":"10/27/2017","website":"http://disqus.com","notes":"sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit","status":5,"type":3,"salary":"$1174.22"}, {"id":762,"employee_id":"141148008-2","first_name":"Levy","last_name":"Edmott","email":"ledmottl5@topsy.com","phone":"278-821-2455","gender":"Male","department":"Research and Development","address":"98566 Barnett Trail","hire_date":"4/15/2018","website":"https://wordpress.com","notes":"eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio","status":6,"type":1,"salary":"$1988.62"}, {"id":763,"employee_id":"049603703-X","first_name":"Tarrah","last_name":"Borlease","email":"tborleasel6@merriam-webster.com","phone":"933-263-6101","gender":"Female","department":"Product Management","address":"5853 Eastwood Plaza","hire_date":"10/28/2017","website":"https://ft.com","notes":"morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor","status":3,"type":1,"salary":"$1958.92"}, {"id":764,"employee_id":"708787705-4","first_name":"Chrystel","last_name":"Bendik","email":"cbendikl7@hhs.gov","phone":"587-253-8983","gender":"Female","department":"Services","address":"1 Oxford Terrace","hire_date":"5/3/2018","website":"http://fda.gov","notes":"consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis","status":1,"type":2,"salary":"$1453.37"}, {"id":765,"employee_id":"138485319-7","first_name":"Hershel","last_name":"Grelak","email":"hgrelakl8@cnbc.com","phone":"203-361-3308","gender":"Male","department":"Legal","address":"54057 Scoville Lane","hire_date":"11/10/2017","website":"https://pagesperso-orange.fr","notes":"eget nunc donec quis orci eget orci vehicula condimentum curabitur in libero ut","status":6,"type":2,"salary":"$721.76"}, {"id":766,"employee_id":"556654694-3","first_name":"Joni","last_name":"Saunt","email":"jsauntl9@auda.org.au","phone":"964-566-0479","gender":"Female","department":"Legal","address":"8993 Meadow Vale Place","hire_date":"9/25/2017","website":"http://bandcamp.com","notes":"posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam","status":5,"type":2,"salary":"$1489.95"}, {"id":767,"employee_id":"352383808-8","first_name":"Vanda","last_name":"Jindrak","email":"vjindrakla@army.mil","phone":"592-225-3910","gender":"Female","department":"Accounting","address":"55577 Texas Circle","hire_date":"4/15/2018","website":"https://qq.com","notes":"vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna","status":5,"type":2,"salary":"$1262.62"}, {"id":768,"employee_id":"024565800-9","first_name":"Zaccaria","last_name":"Kornel","email":"zkornellb@ihg.com","phone":"650-254-6349","gender":"Male","department":"Business Development","address":"11874 Atwood Park","hire_date":"5/11/2018","website":"https://tripadvisor.com","notes":"felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus","status":2,"type":3,"salary":"$715.65"}, {"id":769,"employee_id":"751780558-4","first_name":"Carlene","last_name":"Chatenet","email":"cchatenetlc@paginegialle.it","phone":"646-191-7557","gender":"Female","department":"Product Management","address":"914 Pierstorff Way","hire_date":"5/9/2018","website":"https://amazonaws.com","notes":"felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec","status":2,"type":3,"salary":"$425.29"}, {"id":770,"employee_id":"680798737-4","first_name":"Hyacinthe","last_name":"Gulvin","email":"hgulvinld@time.com","phone":"766-455-2185","gender":"Female","department":"Research and Development","address":"52032 Crescent Oaks Trail","hire_date":"4/5/2018","website":"http://about.com","notes":"consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices","status":2,"type":1,"salary":"$433.74"}, {"id":771,"employee_id":"020830472-X","first_name":"Jacklin","last_name":"Kezor","email":"jkezorle@123-reg.co.uk","phone":"533-153-5896","gender":"Female","department":"Human Resources","address":"95187 Comanche Road","hire_date":"10/30/2017","website":"https://goo.ne.jp","notes":"turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris","status":4,"type":3,"salary":"$541.46"}, {"id":772,"employee_id":"384837986-4","first_name":"Farley","last_name":"Keggin","email":"fkegginlf@uiuc.edu","phone":"256-957-5424","gender":"Male","department":"Accounting","address":"0 Rockefeller Drive","hire_date":"9/17/2017","website":"https://umn.edu","notes":"vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac","status":5,"type":2,"salary":"$2489.99"}, {"id":773,"employee_id":"217698341-6","first_name":"Karry","last_name":"Mussalli","email":"kmussallilg@shinystat.com","phone":"604-426-4935","gender":"Female","department":"Research and Development","address":"5 Steensland Alley","hire_date":"12/30/2017","website":"https://princeton.edu","notes":"sit amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac","status":4,"type":2,"salary":"$1972.87"}, {"id":774,"employee_id":"337028137-6","first_name":"Kiersten","last_name":"Trimble","email":"ktrimblelh@angelfire.com","phone":"482-420-7278","gender":"Female","department":"Marketing","address":"3 Parkside Street","hire_date":"10/28/2017","website":"https://amazonaws.com","notes":"morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante nulla","status":2,"type":1,"salary":"$1741.59"}, {"id":775,"employee_id":"971844527-7","first_name":"Marget","last_name":"Sizland","email":"msizlandli@vistaprint.com","phone":"492-485-1277","gender":"Female","department":"Marketing","address":"51041 Toban Avenue","hire_date":"1/17/2018","website":"http://google.com.hk","notes":"cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc","status":5,"type":3,"salary":"$2434.08"}, {"id":776,"employee_id":"610098778-3","first_name":"Nanine","last_name":"Doohey","email":"ndooheylj@devhub.com","phone":"772-873-6018","gender":"Female","department":"Engineering","address":"0294 Ludington Circle","hire_date":"1/24/2018","website":"https://tinyurl.com","notes":"morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante","status":5,"type":2,"salary":"$1397.82"}, {"id":777,"employee_id":"226237088-5","first_name":"Victor","last_name":"Street","email":"vstreetlk@sitemeter.com","phone":"795-451-0197","gender":"Male","department":"Business Development","address":"07520 Hagan Lane","hire_date":"11/14/2017","website":"http://europa.eu","notes":"nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum","status":1,"type":3,"salary":"$462.01"}, {"id":778,"employee_id":"271193556-6","first_name":"Koren","last_name":"Allicock","email":"kallicockll@taobao.com","phone":"437-920-3466","gender":"Female","department":"Services","address":"6 6th Point","hire_date":"8/20/2017","website":"http://icio.us","notes":"semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum","status":2,"type":3,"salary":"$1589.23"}, {"id":779,"employee_id":"263513301-8","first_name":"Zoe","last_name":"Woodall","email":"zwoodalllm@surveymonkey.com","phone":"518-192-1416","gender":"Female","department":"Accounting","address":"37384 Steensland Court","hire_date":"2/8/2018","website":"http://washingtonpost.com","notes":"justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim","status":1,"type":1,"salary":"$740.26"}, {"id":780,"employee_id":"733220236-0","first_name":"Gregorio","last_name":"O\'Hannen","email":"gohannenln@smugmug.com","phone":"292-651-6749","gender":"Male","department":"Business Development","address":"1 Dapin Hill","hire_date":"1/27/2018","website":"http://reddit.com","notes":"ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero","status":6,"type":3,"salary":"$688.37"}, {"id":781,"employee_id":"436266716-4","first_name":"Cchaddie","last_name":"Awmack","email":"cawmacklo@bigcartel.com","phone":"725-885-3599","gender":"Male","department":"Engineering","address":"18 Coolidge Terrace","hire_date":"10/27/2017","website":"https://va.gov","notes":"tempus sit amet sem fusce consequat nulla nisl nunc nisl","status":6,"type":1,"salary":"$727.41"}, {"id":782,"employee_id":"311545185-7","first_name":"Sandro","last_name":"Dixsee","email":"sdixseelp@privacy.gov.au","phone":"536-788-8629","gender":"Male","department":"Research and Development","address":"96 Meadow Ridge Junction","hire_date":"5/3/2018","website":"http://nationalgeographic.com","notes":"amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor","status":4,"type":1,"salary":"$1884.62"}, {"id":783,"employee_id":"417867865-5","first_name":"Reilly","last_name":"Hourahan","email":"rhourahanlq@goodreads.com","phone":"487-266-9652","gender":"Male","department":"Sales","address":"71 Talmadge Terrace","hire_date":"3/28/2018","website":"http://gravatar.com","notes":"integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices","status":2,"type":2,"salary":"$887.30"}, {"id":784,"employee_id":"959654095-5","first_name":"Perla","last_name":"Bielby","email":"pbielbylr@cbc.ca","phone":"942-335-0976","gender":"Female","department":"Marketing","address":"225 7th Way","hire_date":"1/3/2018","website":"https://odnoklassniki.ru","notes":"congue risus semper porta volutpat quam pede lobortis ligula sit amet","status":4,"type":2,"salary":"$2415.35"}, {"id":785,"employee_id":"463941874-4","first_name":"Jecho","last_name":"Ganniclifft","email":"jganniclifftls@de.vu","phone":"587-690-5131","gender":"Male","department":"Services","address":"1 Glendale Lane","hire_date":"1/1/2018","website":"https://walmart.com","notes":"lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed","status":1,"type":1,"salary":"$1052.20"}, {"id":786,"employee_id":"668177772-4","first_name":"Corie","last_name":"Stenett","email":"cstenettlt@mail.ru","phone":"410-118-0485","gender":"Female","department":"Support","address":"8770 Monument Park","hire_date":"1/2/2018","website":"http://ycombinator.com","notes":"diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat","status":2,"type":1,"salary":"$302.53"}, {"id":787,"employee_id":"750892159-3","first_name":"Marya","last_name":"Renachowski","email":"mrenachowskilu@archive.org","phone":"234-917-9091","gender":"Female","department":"Services","address":"73 Bay Circle","hire_date":"10/8/2017","website":"http://usa.gov","notes":"nec sem duis aliquam convallis nunc proin at turpis a pede posuere","status":2,"type":2,"salary":"$1001.15"}, {"id":788,"employee_id":"546260319-3","first_name":"Chandler","last_name":"Pardue","email":"cparduelv@godaddy.com","phone":"253-709-1935","gender":"Male","department":"Accounting","address":"5 North Place","hire_date":"2/24/2018","website":"http://umn.edu","notes":"pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel","status":6,"type":3,"salary":"$1052.23"}, {"id":789,"employee_id":"791728813-7","first_name":"Almeda","last_name":"Illsley","email":"aillsleylw@posterous.com","phone":"202-999-4761","gender":"Female","department":"Marketing","address":"6626 Truax Trail","hire_date":"1/23/2018","website":"http://com.com","notes":"lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea","status":4,"type":2,"salary":"$2053.46"}, {"id":790,"employee_id":"640790420-X","first_name":"Kerri","last_name":"Costard","email":"kcostardlx@utexas.edu","phone":"466-313-3400","gender":"Female","department":"Product Management","address":"66 Loeprich Terrace","hire_date":"10/12/2017","website":"http://flickr.com","notes":"dui maecenas tristique est et tempus semper est quam pharetra","status":6,"type":3,"salary":"$397.40"}, {"id":791,"employee_id":"213817571-5","first_name":"Opal","last_name":"Attack","email":"oattackly@discuz.net","phone":"364-997-1710","gender":"Female","department":"Legal","address":"40 Melby Drive","hire_date":"7/27/2017","website":"https://mozilla.com","notes":"in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan","status":4,"type":2,"salary":"$1947.19"}, {"id":792,"employee_id":"855588374-1","first_name":"Kerrie","last_name":"Spens","email":"kspenslz@whitehouse.gov","phone":"206-606-4566","gender":"Female","department":"Legal","address":"61689 Nelson Alley","hire_date":"2/4/2018","website":"https://usnews.com","notes":"odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet erat nulla","status":4,"type":3,"salary":"$309.33"}, {"id":793,"employee_id":"408276383-X","first_name":"Alexi","last_name":"Lownes","email":"alownesm0@census.gov","phone":"249-263-4112","gender":"Female","department":"Legal","address":"6 Randy Lane","hire_date":"9/3/2017","website":"https://naver.com","notes":"congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend","status":6,"type":2,"salary":"$2030.25"}, {"id":794,"employee_id":"121098905-0","first_name":"Korrie","last_name":"Balaam","email":"kbalaamm1@umich.edu","phone":"841-183-3396","gender":"Female","department":"Research and Development","address":"7 Pankratz Park","hire_date":"6/23/2018","website":"http://tinypic.com","notes":"eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst","status":2,"type":3,"salary":"$1815.21"}, {"id":795,"employee_id":"732280161-X","first_name":"Abbye","last_name":"Lisle","email":"alislem2@cafepress.com","phone":"811-214-0555","gender":"Female","department":"Business Development","address":"0665 Knutson Park","hire_date":"10/7/2017","website":"https://nyu.edu","notes":"tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum","status":6,"type":2,"salary":"$1745.97"}, {"id":796,"employee_id":"939143806-7","first_name":"Letizia","last_name":"Burgwin","email":"lburgwinm3@hostgator.com","phone":"314-217-7762","gender":"Female","department":"Human Resources","address":"68 Meadow Ridge Center","hire_date":"3/24/2018","website":"https://canalblog.com","notes":"quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero","status":2,"type":1,"salary":"$622.82"}, {"id":797,"employee_id":"931230824-6","first_name":"Hazel","last_name":"Micheu","email":"hmicheum4@scribd.com","phone":"415-802-8407","gender":"Male","department":"Business Development","address":"353 Ludington Hill","hire_date":"8/5/2017","website":"http://hexun.com","notes":"erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer pede justo lacinia eget tincidunt","status":4,"type":3,"salary":"$494.96"}, {"id":798,"employee_id":"507962072-2","first_name":"Les","last_name":"Sloam","email":"lsloamm5@wikia.com","phone":"785-126-0550","gender":"Male","department":"Product Management","address":"09330 Spohn Circle","hire_date":"6/6/2018","website":"http://timesonline.co.uk","notes":"et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam","status":6,"type":2,"salary":"$1118.02"}, {"id":799,"employee_id":"212703331-0","first_name":"Giorgia","last_name":"Guidera","email":"gguideram6@theguardian.com","phone":"327-880-9189","gender":"Female","department":"Engineering","address":"2 Corry Point","hire_date":"4/5/2018","website":"https://merriam-webster.com","notes":"donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit","status":1,"type":3,"salary":"$2303.44"}, {"id":800,"employee_id":"576570473-5","first_name":"Baudoin","last_name":"Ffrench","email":"bffrenchm7@irs.gov","phone":"562-970-6433","gender":"Male","department":"Sales","address":"56 4th Court","hire_date":"11/24/2017","website":"https://tinyurl.com","notes":"sapien varius ut blandit non interdum in ante vestibulum ante ipsum primis in","status":1,"type":2,"salary":"$1587.82"}, {"id":801,"employee_id":"181943676-4","first_name":"Cordell","last_name":"Jantet","email":"cjantetm8@seattletimes.com","phone":"597-880-5051","gender":"Male","department":"Support","address":"1 Warrior Avenue","hire_date":"5/6/2018","website":"http://who.int","notes":"venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et commodo","status":1,"type":2,"salary":"$1580.06"}, {"id":802,"employee_id":"857791408-9","first_name":"Rochella","last_name":"Deavin","email":"rdeavinm9@yellowbook.com","phone":"157-458-3422","gender":"Female","department":"Business Development","address":"99155 Forest Trail","hire_date":"12/27/2017","website":"https://twitpic.com","notes":"luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet","status":6,"type":2,"salary":"$1138.03"}, {"id":803,"employee_id":"673618968-3","first_name":"Em","last_name":"Empson","email":"eempsonma@answers.com","phone":"250-516-4358","gender":"Male","department":"Legal","address":"0329 Village Green Avenue","hire_date":"2/17/2018","website":"http://wufoo.com","notes":"tellus nisi eu orci mauris lacinia sapien quis libero nullam","status":3,"type":2,"salary":"$1999.72"}, {"id":804,"employee_id":"043477209-7","first_name":"Ty","last_name":"Bulfit","email":"tbulfitmb@businessweek.com","phone":"381-955-9639","gender":"Male","department":"Training","address":"60213 Longview Circle","hire_date":"4/8/2018","website":"https://phoca.cz","notes":"placerat ante nulla justo aliquam quis turpis eget elit sodales","status":3,"type":2,"salary":"$1438.39"}, {"id":805,"employee_id":"167345466-6","first_name":"Loretta","last_name":"Jackett","email":"ljackettmc@pinterest.com","phone":"543-716-4727","gender":"Female","department":"Human Resources","address":"95 Swallow Avenue","hire_date":"10/10/2017","website":"https://cocolog-nifty.com","notes":"vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus","status":5,"type":2,"salary":"$1322.57"}, {"id":806,"employee_id":"844767394-4","first_name":"Amabel","last_name":"Lestrange","email":"alestrangemd@cargocollective.com","phone":"755-174-7238","gender":"Female","department":"Marketing","address":"0 Prairieview Place","hire_date":"1/28/2018","website":"https://storify.com","notes":"platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum","status":1,"type":1,"salary":"$1288.32"}, {"id":807,"employee_id":"716764899-X","first_name":"Gerald","last_name":"Heberden","email":"gheberdenme@slideshare.net","phone":"196-441-8295","gender":"Male","department":"Business Development","address":"88 Schlimgen Point","hire_date":"7/27/2017","website":"http://posterous.com","notes":"amet diam in magna bibendum imperdiet nullam orci pede venenatis non","status":1,"type":3,"salary":"$2228.42"}, {"id":808,"employee_id":"607496737-7","first_name":"Symon","last_name":"Veart","email":"sveartmf@google.co.uk","phone":"442-410-1960","gender":"Male","department":"Sales","address":"0 Maple Wood Court","hire_date":"11/7/2017","website":"http://hatena.ne.jp","notes":"suspendisse accumsan tortor quis turpis sed ante vivamus tortor duis","status":2,"type":3,"salary":"$1510.75"}, {"id":809,"employee_id":"864135592-8","first_name":"Rolfe","last_name":"Cleare","email":"rclearemg@fema.gov","phone":"102-452-1227","gender":"Male","department":"Engineering","address":"137 Florence Hill","hire_date":"4/23/2018","website":"http://mysql.com","notes":"volutpat erat quisque erat eros viverra eget congue eget semper rutrum","status":3,"type":3,"salary":"$1341.99"}, {"id":810,"employee_id":"342600434-8","first_name":"Callean","last_name":"Jerrolt","email":"cjerroltmh@g.co","phone":"795-810-1691","gender":"Male","department":"Product Management","address":"30693 Burrows Road","hire_date":"1/24/2018","website":"https://cbslocal.com","notes":"praesent blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede","status":2,"type":3,"salary":"$796.65"}, {"id":811,"employee_id":"205902301-7","first_name":"Shawna","last_name":"Rosborough","email":"srosboroughmi@opera.com","phone":"209-749-1562","gender":"Female","department":"Marketing","address":"039 Ludington Way","hire_date":"5/31/2018","website":"https://delicious.com","notes":"eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus","status":4,"type":1,"salary":"$301.37"}, {"id":812,"employee_id":"301219263-8","first_name":"Noelyn","last_name":"McEnteggart","email":"nmcenteggartmj@ow.ly","phone":"539-327-6367","gender":"Female","department":"Marketing","address":"0022 Lukken Drive","hire_date":"9/18/2017","website":"http://canalblog.com","notes":"pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra","status":2,"type":3,"salary":"$432.49"}, {"id":813,"employee_id":"718416820-8","first_name":"Bart","last_name":"Dyneley","email":"bdyneleymk@google.com.au","phone":"231-398-0202","gender":"Male","department":"Product Management","address":"9421 Green Street","hire_date":"11/20/2017","website":"http://dot.gov","notes":"nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis","status":6,"type":3,"salary":"$539.57"}, {"id":814,"employee_id":"632205591-7","first_name":"Correy","last_name":"Colquete","email":"ccolqueteml@google.co.jp","phone":"300-874-9684","gender":"Male","department":"Legal","address":"08 Garrison Alley","hire_date":"6/24/2018","website":"http://who.int","notes":"pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet","status":2,"type":2,"salary":"$2303.71"}, {"id":815,"employee_id":"426716297-2","first_name":"Rodge","last_name":"Hourston","email":"rhourstonmm@newsvine.com","phone":"492-284-8794","gender":"Male","department":"Business Development","address":"62 Brown Place","hire_date":"3/10/2018","website":"http://washington.edu","notes":"elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam","status":4,"type":1,"salary":"$1139.65"}, {"id":816,"employee_id":"638277031-0","first_name":"Kesley","last_name":"Liff","email":"kliffmn@fda.gov","phone":"279-346-8257","gender":"Female","department":"Services","address":"33317 Golden Leaf Alley","hire_date":"3/18/2018","website":"http://feedburner.com","notes":"erat curabitur gravida nisi at nibh in hac habitasse platea","status":1,"type":3,"salary":"$1721.96"}, {"id":817,"employee_id":"180232918-8","first_name":"Peirce","last_name":"Cluley","email":"pcluleymo@dailymail.co.uk","phone":"742-672-2952","gender":"Male","department":"Legal","address":"9209 Merchant Lane","hire_date":"10/15/2017","website":"https://cornell.edu","notes":"in est risus auctor sed tristique in tempus sit amet sem fusce consequat","status":5,"type":3,"salary":"$1636.79"}, {"id":818,"employee_id":"863979892-3","first_name":"Frayda","last_name":"Pickersail","email":"fpickersailmp@123-reg.co.uk","phone":"971-770-7430","gender":"Female","department":"Product Management","address":"0822 Sage Terrace","hire_date":"1/16/2018","website":"https://liveinternet.ru","notes":"ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo","status":6,"type":3,"salary":"$1913.44"}, {"id":819,"employee_id":"192493662-3","first_name":"Anselm","last_name":"Gibbonson","email":"agibbonsonmq@wikia.com","phone":"863-906-7411","gender":"Male","department":"Support","address":"8 Pawling Circle","hire_date":"7/2/2018","website":"http://rambler.ru","notes":"quisque porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis","status":2,"type":2,"salary":"$1742.85"}, {"id":820,"employee_id":"200052209-2","first_name":"Elberta","last_name":"Persicke","email":"epersickemr@blogger.com","phone":"668-943-3372","gender":"Female","department":"Research and Development","address":"8174 6th Crossing","hire_date":"9/27/2017","website":"https://mozilla.com","notes":"at velit eu est congue elementum in hac habitasse platea dictumst","status":2,"type":1,"salary":"$867.17"}, {"id":821,"employee_id":"395194882-5","first_name":"Sandro","last_name":"Marre","email":"smarrems@imdb.com","phone":"406-798-3488","gender":"Male","department":"Sales","address":"9212 Kropf Avenue","hire_date":"3/2/2018","website":"https://sciencedirect.com","notes":"donec ut dolor morbi vel lectus in quam fringilla rhoncus","status":6,"type":1,"salary":"$635.08"}, {"id":822,"employee_id":"855157045-5","first_name":"Mirabelle","last_name":"Varrow","email":"mvarrowmt@jiathis.com","phone":"756-556-9120","gender":"Female","department":"Support","address":"22554 Butternut Point","hire_date":"10/21/2017","website":"https://netvibes.com","notes":"proin at turpis a pede posuere nonummy integer non velit","status":5,"type":3,"salary":"$1613.32"}, {"id":823,"employee_id":"704941465-4","first_name":"Raoul","last_name":"Stuer","email":"rstuermu@cbsnews.com","phone":"189-643-4969","gender":"Male","department":"Services","address":"9 Debra Center","hire_date":"7/8/2018","website":"http://umich.edu","notes":"natoque penatibus et magnis dis parturient montes nascetur ridiculus mus etiam vel augue vestibulum rutrum","status":5,"type":3,"salary":"$2328.21"}, {"id":824,"employee_id":"732581584-0","first_name":"Ned","last_name":"Bru","email":"nbrumv@storify.com","phone":"128-130-4321","gender":"Male","department":"Business Development","address":"557 Gulseth Trail","hire_date":"10/5/2017","website":"https://unblog.fr","notes":"faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras","status":6,"type":3,"salary":"$961.24"}, {"id":825,"employee_id":"091790688-8","first_name":"Rick","last_name":"Ciccone","email":"rcicconemw@imdb.com","phone":"856-504-8970","gender":"Male","department":"Accounting","address":"66255 Westport Alley","hire_date":"8/8/2017","website":"https://infoseek.co.jp","notes":"etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut","status":5,"type":1,"salary":"$1186.43"}, {"id":826,"employee_id":"520293949-3","first_name":"Corinne","last_name":"Fownes","email":"cfownesmx@ehow.com","phone":"440-823-7406","gender":"Female","department":"Support","address":"26742 Debs Lane","hire_date":"1/11/2018","website":"https://baidu.com","notes":"ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend","status":2,"type":2,"salary":"$554.62"}, {"id":827,"employee_id":"365292994-2","first_name":"Cammy","last_name":"Holtaway","email":"choltawaymy@dion.ne.jp","phone":"194-960-1147","gender":"Female","department":"Services","address":"1131 Jay Junction","hire_date":"3/24/2018","website":"http://earthlink.net","notes":"praesent blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede","status":2,"type":3,"salary":"$1863.85"}, {"id":828,"employee_id":"843722533-7","first_name":"Fayth","last_name":"Haill","email":"fhaillmz@disqus.com","phone":"744-567-8110","gender":"Female","department":"Business Development","address":"33 Merrick Circle","hire_date":"3/15/2018","website":"https://cafepress.com","notes":"odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue","status":1,"type":3,"salary":"$2355.13"}, {"id":829,"employee_id":"322169240-4","first_name":"Trixi","last_name":"Pendlenton","email":"tpendlentonn0@taobao.com","phone":"957-310-2126","gender":"Female","department":"Marketing","address":"5 Jenna Avenue","hire_date":"8/29/2017","website":"https://nymag.com","notes":"ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor","status":3,"type":1,"salary":"$652.58"}, {"id":830,"employee_id":"135439312-0","first_name":"Hewe","last_name":"Prisk","email":"hpriskn1@ox.ac.uk","phone":"978-865-1619","gender":"Male","department":"Support","address":"97189 Fair Oaks Trail","hire_date":"12/24/2017","website":"http://sciencedirect.com","notes":"ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem","status":3,"type":1,"salary":"$440.95"}, {"id":831,"employee_id":"349704938-7","first_name":"Ezekiel","last_name":"De Haven","email":"edehavenn2@sbwire.com","phone":"793-431-3934","gender":"Male","department":"Support","address":"73 Tomscot Court","hire_date":"3/28/2018","website":"http://yale.edu","notes":"molestie nibh in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna","status":2,"type":2,"salary":"$307.26"}, {"id":832,"employee_id":"468212952-X","first_name":"Lou","last_name":"Saffell","email":"lsaffelln3@jigsy.com","phone":"635-726-3361","gender":"Female","department":"Business Development","address":"7279 Green Ridge Trail","hire_date":"7/27/2017","website":"http://google.it","notes":"ut nulla sed accumsan felis ut at dolor quis odio consequat varius","status":6,"type":3,"salary":"$2220.38"}, {"id":833,"employee_id":"946703651-7","first_name":"Kinnie","last_name":"Maryin","email":"kmaryinn4@taobao.com","phone":"407-291-2839","gender":"Male","department":"Business Development","address":"689 Reinke Drive","hire_date":"3/31/2018","website":"http://e-recht24.de","notes":"mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue","status":4,"type":3,"salary":"$1743.63"}, {"id":834,"employee_id":"469462469-5","first_name":"Gardie","last_name":"Bernli","email":"gbernlin5@printfriendly.com","phone":"655-626-8380","gender":"Male","department":"Research and Development","address":"05 Reinke Plaza","hire_date":"4/20/2018","website":"http://springer.com","notes":"faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat","status":6,"type":2,"salary":"$2438.74"}, {"id":835,"employee_id":"041162428-8","first_name":"Leticia","last_name":"Josefer","email":"ljosefern6@chronoengine.com","phone":"101-342-0106","gender":"Female","department":"Engineering","address":"3656 Bobwhite Trail","hire_date":"12/17/2017","website":"http://wordpress.org","notes":"orci pede venenatis non sodales sed tincidunt eu felis fusce","status":6,"type":2,"salary":"$1397.56"}, {"id":836,"employee_id":"589695198-1","first_name":"Darrick","last_name":"Granger","email":"dgrangern7@weather.com","phone":"205-150-7029","gender":"Male","department":"Support","address":"2 Roth Center","hire_date":"11/10/2017","website":"http://youku.com","notes":"elementum ligula vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus","status":5,"type":3,"salary":"$2094.14"}, {"id":837,"employee_id":"278485362-4","first_name":"Dyana","last_name":"Digger","email":"ddiggern8@omniture.com","phone":"750-673-1281","gender":"Female","department":"Legal","address":"49619 Graceland Drive","hire_date":"4/26/2018","website":"http://smh.com.au","notes":"aenean fermentum donec ut mauris eget massa tempor convallis nulla neque libero convallis eget eleifend","status":1,"type":1,"salary":"$1973.01"}, {"id":838,"employee_id":"779146008-4","first_name":"Lydon","last_name":"Masdon","email":"lmasdonn9@a8.net","phone":"212-527-6705","gender":"Male","department":"Training","address":"753 Golf Course Crossing","hire_date":"11/13/2017","website":"http://ucsd.edu","notes":"eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien","status":6,"type":3,"salary":"$753.19"}, {"id":839,"employee_id":"547768354-6","first_name":"Angelika","last_name":"Darch","email":"adarchna@tiny.cc","phone":"648-106-0061","gender":"Female","department":"Marketing","address":"5984 Hallows Point","hire_date":"5/13/2018","website":"http://omniture.com","notes":"tellus nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras non","status":5,"type":2,"salary":"$622.00"}, {"id":840,"employee_id":"211575367-4","first_name":"Hilliary","last_name":"Corkel","email":"hcorkelnb@yale.edu","phone":"145-299-6840","gender":"Female","department":"Human Resources","address":"39 Ridgeview Center","hire_date":"5/31/2018","website":"http://sbwire.com","notes":"nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse","status":6,"type":2,"salary":"$2237.81"}, {"id":841,"employee_id":"858981932-9","first_name":"Simeon","last_name":"Hearson","email":"shearsonnc@amazonaws.com","phone":"694-518-1962","gender":"Male","department":"Engineering","address":"8700 Esker Terrace","hire_date":"2/27/2018","website":"http://dedecms.com","notes":"nisi volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed","status":6,"type":2,"salary":"$1122.62"}, {"id":842,"employee_id":"431756926-4","first_name":"Tuck","last_name":"MacInnes","email":"tmacinnesnd@wordpress.org","phone":"783-303-6460","gender":"Male","department":"Support","address":"21 Veith Trail","hire_date":"9/2/2017","website":"https://marketwatch.com","notes":"mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui","status":5,"type":3,"salary":"$719.94"}, {"id":843,"employee_id":"597581423-5","first_name":"Sanders","last_name":"Yantsev","email":"syantsevne@pinterest.com","phone":"163-830-1851","gender":"Male","department":"Support","address":"92682 Stone Corner Court","hire_date":"9/23/2017","website":"http://house.gov","notes":"quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac","status":6,"type":1,"salary":"$1833.46"}, {"id":844,"employee_id":"528020275-4","first_name":"Sissy","last_name":"Innwood","email":"sinnwoodnf@example.com","phone":"340-721-2264","gender":"Female","department":"Product Management","address":"7857 Hayes Park","hire_date":"10/20/2017","website":"http://jigsy.com","notes":"risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis","status":1,"type":3,"salary":"$432.76"}, {"id":845,"employee_id":"717372604-2","first_name":"Saunder","last_name":"Flarity","email":"sflarityng@multiply.com","phone":"816-385-5389","gender":"Male","department":"Legal","address":"11 Hoepker Park","hire_date":"9/15/2017","website":"http://youtube.com","notes":"condimentum id luctus nec molestie sed justo pellentesque viverra pede","status":2,"type":3,"salary":"$2470.02"}, {"id":846,"employee_id":"225292769-0","first_name":"Denney","last_name":"Oakden","email":"doakdennh@bing.com","phone":"920-869-3544","gender":"Male","department":"Human Resources","address":"68494 Maple Alley","hire_date":"2/4/2018","website":"http://usatoday.com","notes":"ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque","status":4,"type":1,"salary":"$2220.67"}, {"id":847,"employee_id":"467850974-7","first_name":"Elita","last_name":"Burthom","email":"eburthomni@hp.com","phone":"335-219-3625","gender":"Female","department":"Accounting","address":"274 Katie Park","hire_date":"2/9/2018","website":"https://de.vu","notes":"ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae","status":4,"type":2,"salary":"$847.49"}, {"id":848,"employee_id":"898160045-7","first_name":"Stacie","last_name":"Hebner","email":"shebnernj@liveinternet.ru","phone":"890-770-6048","gender":"Female","department":"Human Resources","address":"44506 Bayside Drive","hire_date":"4/23/2018","website":"http://freewebs.com","notes":"massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea","status":2,"type":1,"salary":"$356.40"}, {"id":849,"employee_id":"818484277-5","first_name":"Betta","last_name":"Leakner","email":"bleaknernk@hud.gov","phone":"313-659-0867","gender":"Female","department":"Marketing","address":"09485 Dovetail Terrace","hire_date":"7/29/2017","website":"https://123-reg.co.uk","notes":"sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst","status":1,"type":2,"salary":"$1884.90"}, {"id":850,"employee_id":"087125652-5","first_name":"Kyle","last_name":"Wiggington","email":"kwiggingtonnl@latimes.com","phone":"297-144-3797","gender":"Male","department":"Legal","address":"0 Ronald Regan Crossing","hire_date":"4/6/2018","website":"http://csmonitor.com","notes":"eget nunc donec quis orci eget orci vehicula condimentum curabitur","status":5,"type":3,"salary":"$2215.86"}, {"id":851,"employee_id":"377288512-8","first_name":"Nara","last_name":"Resun","email":"nresunnm@mit.edu","phone":"731-180-4173","gender":"Female","department":"Sales","address":"7074 Golf Center","hire_date":"11/5/2017","website":"http://pinterest.com","notes":"vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra","status":5,"type":3,"salary":"$2166.61"}, {"id":852,"employee_id":"918618308-7","first_name":"Allene","last_name":"Gilstoun","email":"agilstounnn@cam.ac.uk","phone":"679-115-5305","gender":"Female","department":"Training","address":"70602 Schiller Trail","hire_date":"5/15/2018","website":"http://google.nl","notes":"nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices","status":1,"type":3,"salary":"$2047.71"}, {"id":853,"employee_id":"171710057-0","first_name":"Jarrett","last_name":"Kareman","email":"jkaremanno@mashable.com","phone":"571-811-3029","gender":"Male","department":"Research and Development","address":"135 Merry Hill","hire_date":"11/7/2017","website":"https://digg.com","notes":"curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae","status":2,"type":2,"salary":"$1898.66"}, {"id":854,"employee_id":"668119849-X","first_name":"Alidia","last_name":"Elias","email":"aeliasnp@hao123.com","phone":"621-868-7561","gender":"Female","department":"Business Development","address":"4467 Basil Circle","hire_date":"3/27/2018","website":"http://illinois.edu","notes":"id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate","status":6,"type":2,"salary":"$700.05"}, {"id":855,"employee_id":"359970386-8","first_name":"Audrey","last_name":"Cassel","email":"acasselnq@feedburner.com","phone":"110-165-9967","gender":"Female","department":"Engineering","address":"652 Dixon Junction","hire_date":"5/9/2018","website":"http://earthlink.net","notes":"suspendisse accumsan tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec","status":5,"type":2,"salary":"$1663.68"}, {"id":856,"employee_id":"853032462-5","first_name":"Gwyn","last_name":"Agiolfinger","email":"gagiolfingernr@fotki.com","phone":"990-944-9334","gender":"Female","department":"Engineering","address":"88005 Delaware Center","hire_date":"4/21/2018","website":"http://marketwatch.com","notes":"velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat","status":6,"type":3,"salary":"$594.90"}, {"id":857,"employee_id":"059215254-5","first_name":"Tuesday","last_name":"Akid","email":"takidns@weibo.com","phone":"673-912-7877","gender":"Female","department":"Marketing","address":"9652 Banding Avenue","hire_date":"8/16/2017","website":"https://samsung.com","notes":"ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor eu","status":4,"type":3,"salary":"$583.68"}, {"id":858,"employee_id":"474123789-3","first_name":"Carmel","last_name":"Morison","email":"cmorisonnt@com.com","phone":"767-605-1813","gender":"Female","department":"Business Development","address":"49 Valley Edge Street","hire_date":"6/29/2018","website":"https://goodreads.com","notes":"maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi","status":1,"type":1,"salary":"$2025.43"}, {"id":859,"employee_id":"626321755-3","first_name":"Salem","last_name":"Tomblings","email":"stomblingsnu@quantcast.com","phone":"841-956-0344","gender":"Male","department":"Product Management","address":"1522 Esch Alley","hire_date":"6/15/2018","website":"https://weibo.com","notes":"ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer","status":3,"type":2,"salary":"$426.68"}, {"id":860,"employee_id":"434074089-6","first_name":"Micky","last_name":"Prester","email":"mpresternv@flickr.com","phone":"934-275-4620","gender":"Female","department":"Marketing","address":"39 Nancy Drive","hire_date":"2/8/2018","website":"http://reference.com","notes":"faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam","status":1,"type":3,"salary":"$1926.90"}, {"id":861,"employee_id":"795857739-7","first_name":"Bernice","last_name":"Swinbourne","email":"bswinbournenw@yale.edu","phone":"936-824-2359","gender":"Female","department":"Sales","address":"216 Crowley Parkway","hire_date":"8/19/2017","website":"http://timesonline.co.uk","notes":"a odio in hac habitasse platea dictumst maecenas ut massa","status":3,"type":2,"salary":"$1384.84"}, {"id":862,"employee_id":"389656737-3","first_name":"Jacqui","last_name":"Fairbank","email":"jfairbanknx@macromedia.com","phone":"835-651-1622","gender":"Female","department":"Marketing","address":"7794 Talisman Park","hire_date":"5/23/2018","website":"https://liveinternet.ru","notes":"sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu massa","status":4,"type":2,"salary":"$363.54"}, {"id":863,"employee_id":"038925263-8","first_name":"Rochelle","last_name":"MacFadin","email":"rmacfadinny@narod.ru","phone":"443-239-8405","gender":"Female","department":"Marketing","address":"26 Shelley Hill","hire_date":"9/22/2017","website":"http://indiatimes.com","notes":"at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget","status":4,"type":2,"salary":"$2179.15"}, {"id":864,"employee_id":"657345006-X","first_name":"Any","last_name":"Heilds","email":"aheildsnz@theatlantic.com","phone":"954-253-2413","gender":"Male","department":"Support","address":"3694 Tomscot Road","hire_date":"2/10/2018","website":"https://huffingtonpost.com","notes":"sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac","status":5,"type":3,"salary":"$1128.45"}, {"id":865,"employee_id":"965469830-7","first_name":"Babbette","last_name":"Patchett","email":"bpatchetto0@usnews.com","phone":"670-691-5401","gender":"Female","department":"Business Development","address":"4 Prentice Park","hire_date":"5/29/2018","website":"http://cisco.com","notes":"in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt","status":5,"type":3,"salary":"$1734.90"}, {"id":866,"employee_id":"330409850-X","first_name":"Norrie","last_name":"Goghin","email":"ngoghino1@baidu.com","phone":"491-790-2918","gender":"Female","department":"Business Development","address":"645 Browning Lane","hire_date":"10/13/2017","website":"https://foxnews.com","notes":"ut blandit non interdum in ante vestibulum ante ipsum primis in faucibus orci","status":2,"type":2,"salary":"$430.97"}, {"id":867,"employee_id":"040434544-1","first_name":"Nichole","last_name":"Russel","email":"nrusselo2@cargocollective.com","phone":"540-530-3814","gender":"Male","department":"Services","address":"90419 Manley Terrace","hire_date":"12/7/2017","website":"http://joomla.org","notes":"pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna","status":3,"type":1,"salary":"$654.35"}, {"id":868,"employee_id":"351531103-3","first_name":"Hatti","last_name":"O\' Lone","email":"holoneo3@cargocollective.com","phone":"795-856-1540","gender":"Female","department":"Marketing","address":"3 Hazelcrest Way","hire_date":"1/22/2018","website":"http://ucla.edu","notes":"blandit mi in porttitor pede justo eu massa donec dapibus duis at","status":6,"type":2,"salary":"$2334.45"}, {"id":869,"employee_id":"353987017-2","first_name":"Vinny","last_name":"Sterland","email":"vsterlando4@vk.com","phone":"169-336-7150","gender":"Female","department":"Business Development","address":"417 Sundown Avenue","hire_date":"8/6/2017","website":"https://telegraph.co.uk","notes":"amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum","status":3,"type":1,"salary":"$1521.90"}, {"id":870,"employee_id":"281066414-5","first_name":"Heather","last_name":"Attwell","email":"hattwello5@ebay.com","phone":"938-751-5370","gender":"Female","department":"Accounting","address":"0 Corscot Parkway","hire_date":"2/28/2018","website":"https://com.com","notes":"tristique est et tempus semper est quam pharetra magna ac consequat metus sapien","status":4,"type":3,"salary":"$2166.56"}, {"id":871,"employee_id":"149270060-6","first_name":"Batsheva","last_name":"O\'Sheilds","email":"bosheildso6@utexas.edu","phone":"894-295-9511","gender":"Female","department":"Training","address":"60564 Orin Park","hire_date":"9/7/2017","website":"http://unesco.org","notes":"tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a","status":6,"type":3,"salary":"$1727.86"}, {"id":872,"employee_id":"643611254-5","first_name":"Willow","last_name":"Deeth","email":"wdeetho7@harvard.edu","phone":"159-925-5389","gender":"Female","department":"Accounting","address":"607 Anthes Lane","hire_date":"7/16/2018","website":"http://eventbrite.com","notes":"augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus","status":5,"type":2,"salary":"$1190.81"}, {"id":873,"employee_id":"058405556-0","first_name":"Mic","last_name":"Dengel","email":"mdengelo8@networksolutions.com","phone":"727-927-8796","gender":"Male","department":"Accounting","address":"785 Dawn Terrace","hire_date":"9/30/2017","website":"https://zimbio.com","notes":"justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus","status":2,"type":1,"salary":"$298.54"}, {"id":874,"employee_id":"549865806-0","first_name":"Hortense","last_name":"Mandell","email":"hmandello9@illinois.edu","phone":"572-206-1688","gender":"Female","department":"Services","address":"7958 Sherman Plaza","hire_date":"12/22/2017","website":"http://cdc.gov","notes":"nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo","status":1,"type":1,"salary":"$1498.34"}, {"id":875,"employee_id":"908338420-9","first_name":"Gilemette","last_name":"Bagenal","email":"gbagenaloa@diigo.com","phone":"475-315-9575","gender":"Female","department":"Engineering","address":"6193 6th Drive","hire_date":"8/29/2017","website":"http://reverbnation.com","notes":"tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula","status":5,"type":1,"salary":"$2230.76"}, {"id":876,"employee_id":"977156817-5","first_name":"Aloisia","last_name":"De Minico","email":"ademinicoob@delicious.com","phone":"120-288-0753","gender":"Female","department":"Accounting","address":"844 Blue Bill Park Avenue","hire_date":"10/14/2017","website":"http://friendfeed.com","notes":"proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque","status":1,"type":1,"salary":"$608.47"}, {"id":877,"employee_id":"885815976-4","first_name":"Reece","last_name":"Slyvester","email":"rslyvesteroc@apple.com","phone":"776-585-2812","gender":"Male","department":"Support","address":"49 Del Sol Park","hire_date":"4/28/2018","website":"http://yale.edu","notes":"dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh","status":6,"type":3,"salary":"$2352.46"}, {"id":878,"employee_id":"577787056-2","first_name":"Kean","last_name":"Venes","email":"kvenesod@forbes.com","phone":"580-228-2393","gender":"Male","department":"Support","address":"7890 Blue Bill Park Parkway","hire_date":"7/9/2018","website":"https://sbwire.com","notes":"quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non","status":4,"type":2,"salary":"$1752.92"}, {"id":879,"employee_id":"070850529-5","first_name":"Cathee","last_name":"Farquar","email":"cfarquaroe@jugem.jp","phone":"427-616-2628","gender":"Female","department":"Research and Development","address":"7849 Anthes Pass","hire_date":"8/11/2017","website":"http://nyu.edu","notes":"dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla","status":6,"type":1,"salary":"$1249.57"}, {"id":880,"employee_id":"573192593-3","first_name":"Koren","last_name":"Grayland","email":"kgraylandof@qq.com","phone":"522-950-3145","gender":"Female","department":"Research and Development","address":"23753 Bay Crossing","hire_date":"7/23/2017","website":"https://pagesperso-orange.fr","notes":"pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus","status":1,"type":1,"salary":"$2393.05"}, {"id":881,"employee_id":"509885019-3","first_name":"Phip","last_name":"Phateplace","email":"pphateplaceog@squidoo.com","phone":"901-708-2027","gender":"Male","department":"Product Management","address":"5966 Gulseth Drive","hire_date":"7/5/2018","website":"https://example.com","notes":"suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque","status":6,"type":2,"salary":"$1635.88"}, {"id":882,"employee_id":"701133697-4","first_name":"Moses","last_name":"Helix","email":"mhelixoh@jugem.jp","phone":"947-652-3546","gender":"Male","department":"Sales","address":"5 Westerfield Way","hire_date":"3/9/2018","website":"https://google.it","notes":"ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer pede","status":4,"type":2,"salary":"$452.06"}, {"id":883,"employee_id":"445368708-7","first_name":"Zebadiah","last_name":"Redington","email":"zredingtonoi@squarespace.com","phone":"106-887-0468","gender":"Male","department":"Training","address":"42 Di Loreto Point","hire_date":"2/17/2018","website":"http://sina.com.cn","notes":"in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod","status":1,"type":3,"salary":"$2018.44"}, {"id":884,"employee_id":"023371746-3","first_name":"Morna","last_name":"Beckwith","email":"mbeckwithoj@usnews.com","phone":"447-925-5378","gender":"Female","department":"Business Development","address":"9836 Browning Park","hire_date":"3/10/2018","website":"http://ihg.com","notes":"sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus","status":2,"type":3,"salary":"$721.52"}, {"id":885,"employee_id":"254571653-7","first_name":"Zorine","last_name":"Shervil","email":"zshervilok@yolasite.com","phone":"203-384-0989","gender":"Female","department":"Product Management","address":"51051 Golden Leaf Avenue","hire_date":"4/25/2018","website":"https://studiopress.com","notes":"sit amet diam in magna bibendum imperdiet nullam orci pede venenatis non sodales","status":2,"type":2,"salary":"$2409.49"}, {"id":886,"employee_id":"960030935-3","first_name":"Cory","last_name":"Ackland","email":"cacklandol@epa.gov","phone":"686-765-5372","gender":"Male","department":"Legal","address":"17 Colorado Circle","hire_date":"6/30/2018","website":"http://dropbox.com","notes":"vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus","status":1,"type":1,"salary":"$1792.46"}, {"id":887,"employee_id":"087598468-1","first_name":"Oona","last_name":"Schriren","email":"oschrirenom@biblegateway.com","phone":"757-810-4691","gender":"Female","department":"Marketing","address":"08 Oxford Plaza","hire_date":"3/7/2018","website":"https://newyorker.com","notes":"cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat","status":1,"type":2,"salary":"$310.95"}, {"id":888,"employee_id":"913978565-3","first_name":"Cary","last_name":"Nutty","email":"cnuttyon@zimbio.com","phone":"906-633-9244","gender":"Male","department":"Support","address":"893 Melrose Circle","hire_date":"4/15/2018","website":"https://businessweek.com","notes":"enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id","status":5,"type":1,"salary":"$1885.07"}, {"id":889,"employee_id":"852709101-1","first_name":"Marys","last_name":"Colling","email":"mcollingoo@weather.com","phone":"953-749-3087","gender":"Female","department":"Training","address":"87987 Duke Lane","hire_date":"9/28/2017","website":"https://blogtalkradio.com","notes":"justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim","status":5,"type":2,"salary":"$2235.04"}, {"id":890,"employee_id":"291123541-X","first_name":"Peggy","last_name":"Flockhart","email":"pflockhartop@bing.com","phone":"415-872-2156","gender":"Female","department":"Support","address":"1 Jay Avenue","hire_date":"4/14/2018","website":"http://fastcompany.com","notes":"nec nisi volutpat eleifend donec ut dolor morbi vel lectus in","status":1,"type":3,"salary":"$1097.99"}, {"id":891,"employee_id":"061820725-2","first_name":"Em","last_name":"Trippett","email":"etrippettoq@reverbnation.com","phone":"838-745-0517","gender":"Male","department":"Accounting","address":"71881 Warrior Circle","hire_date":"11/25/2017","website":"http://marketwatch.com","notes":"leo odio porttitor id consequat in consequat ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer","status":4,"type":1,"salary":"$1944.75"}, {"id":892,"employee_id":"246309066-9","first_name":"Benedikta","last_name":"Anelay","email":"banelayor@wired.com","phone":"402-214-4561","gender":"Female","department":"Legal","address":"6996 Magdeline Trail","hire_date":"9/16/2017","website":"https://spotify.com","notes":"non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit","status":5,"type":1,"salary":"$2424.53"}, {"id":893,"employee_id":"340359317-7","first_name":"Emma","last_name":"Fidoe","email":"efidoeos@nyu.edu","phone":"499-385-6103","gender":"Female","department":"Accounting","address":"1 Springs Junction","hire_date":"1/17/2018","website":"https://bloglines.com","notes":"a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet","status":1,"type":2,"salary":"$1109.61"}, {"id":894,"employee_id":"647906622-7","first_name":"Derwin","last_name":"Cuffe","email":"dcuffeot@washington.edu","phone":"386-529-5089","gender":"Male","department":"Accounting","address":"9404 Kedzie Point","hire_date":"5/8/2018","website":"https://topsy.com","notes":"ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa","status":4,"type":3,"salary":"$784.33"}, {"id":895,"employee_id":"734537898-5","first_name":"Cheston","last_name":"Laherty","email":"clahertyou@sphinn.com","phone":"237-651-6840","gender":"Male","department":"Accounting","address":"136 Bowman Way","hire_date":"6/21/2018","website":"http://last.fm","notes":"massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque id","status":1,"type":3,"salary":"$1384.83"}, {"id":896,"employee_id":"517246133-7","first_name":"Francklyn","last_name":"Tellesson","email":"ftellessonov@sbwire.com","phone":"431-989-9730","gender":"Male","department":"Engineering","address":"8663 Grover Pass","hire_date":"2/10/2018","website":"https://exblog.jp","notes":"id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in","status":1,"type":1,"salary":"$515.07"}, {"id":897,"employee_id":"244720621-6","first_name":"Rossy","last_name":"Rubinowicz","email":"rrubinowiczow@privacy.gov.au","phone":"128-751-6213","gender":"Male","department":"Sales","address":"6 Park Meadow Drive","hire_date":"7/18/2018","website":"http://360.cn","notes":"eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor duis mattis egestas metus","status":5,"type":1,"salary":"$1665.47"}, {"id":898,"employee_id":"239166941-0","first_name":"Whitman","last_name":"Klezmski","email":"wklezmskiox@phpbb.com","phone":"833-785-5590","gender":"Male","department":"Training","address":"2 American Ash Court","hire_date":"5/20/2018","website":"http://mayoclinic.com","notes":"posuere nonummy integer non velit donec diam neque vestibulum eget","status":2,"type":2,"salary":"$2110.09"}, {"id":899,"employee_id":"289033043-5","first_name":"Ivory","last_name":"Witcombe","email":"iwitcombeoy@mysql.com","phone":"195-438-5956","gender":"Female","department":"Support","address":"4652 Maywood Circle","hire_date":"6/10/2018","website":"http://toplist.cz","notes":"orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam","status":4,"type":1,"salary":"$1509.44"}, {"id":900,"employee_id":"735454334-9","first_name":"Marcelia","last_name":"Scrannage","email":"mscrannageoz@phpbb.com","phone":"867-246-0019","gender":"Female","department":"Product Management","address":"798 Gulseth Way","hire_date":"6/16/2018","website":"https://bloglovin.com","notes":"vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus","status":6,"type":3,"salary":"$2235.67"}, {"id":901,"employee_id":"628040894-9","first_name":"Ariel","last_name":"Schiefersten","email":"aschieferstenp0@earthlink.net","phone":"576-850-5308","gender":"Female","department":"Marketing","address":"28 Westend Terrace","hire_date":"8/11/2017","website":"https://cnbc.com","notes":"vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat","status":3,"type":3,"salary":"$1638.83"}, {"id":902,"employee_id":"417689860-7","first_name":"Neala","last_name":"Schofield","email":"nschofieldp1@earthlink.net","phone":"827-705-9400","gender":"Female","department":"Training","address":"4989 Orin Plaza","hire_date":"1/27/2018","website":"http://bloomberg.com","notes":"eget tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in","status":6,"type":3,"salary":"$1248.12"}, {"id":903,"employee_id":"678441197-8","first_name":"Ody","last_name":"Craster","email":"ocrasterp2@histats.com","phone":"982-198-5117","gender":"Male","department":"Accounting","address":"44477 Ridgeview Junction","hire_date":"4/1/2018","website":"http://rambler.ru","notes":"dapibus duis at velit eu est congue elementum in hac habitasse platea","status":2,"type":1,"salary":"$714.64"}, {"id":904,"employee_id":"601468081-0","first_name":"Frazer","last_name":"Joinsey","email":"fjoinseyp3@sogou.com","phone":"826-605-9383","gender":"Male","department":"Sales","address":"5219 Village Green Center","hire_date":"9/20/2017","website":"http://devhub.com","notes":"mi nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem","status":3,"type":3,"salary":"$1477.02"}, {"id":905,"employee_id":"182272871-1","first_name":"Euell","last_name":"Parsand","email":"eparsandp4@answers.com","phone":"695-370-0261","gender":"Male","department":"Accounting","address":"8355 Upham Way","hire_date":"12/7/2017","website":"https://myspace.com","notes":"est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien","status":6,"type":2,"salary":"$1642.29"}, {"id":906,"employee_id":"123091226-6","first_name":"Gloriane","last_name":"Boatswain","email":"gboatswainp5@1688.com","phone":"284-454-8780","gender":"Female","department":"Human Resources","address":"31 Sunnyside Place","hire_date":"4/21/2018","website":"http://acquirethisname.com","notes":"sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere","status":5,"type":1,"salary":"$382.88"}, {"id":907,"employee_id":"910029012-2","first_name":"Cymbre","last_name":"Josefson","email":"cjosefsonp6@dot.gov","phone":"965-996-9224","gender":"Female","department":"Services","address":"678 Sauthoff Circle","hire_date":"10/16/2017","website":"https://mysql.com","notes":"scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at","status":4,"type":2,"salary":"$2055.21"}, {"id":908,"employee_id":"326145281-1","first_name":"Hiram","last_name":"Server","email":"hserverp7@e-recht24.de","phone":"713-883-2136","gender":"Male","department":"Legal","address":"647 Crowley Road","hire_date":"9/7/2017","website":"http://pagesperso-orange.fr","notes":"ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing","status":4,"type":2,"salary":"$1835.86"}, {"id":909,"employee_id":"822859393-7","first_name":"Olin","last_name":"Blanpein","email":"oblanpeinp8@desdev.cn","phone":"330-588-2934","gender":"Male","department":"Sales","address":"2 Merry Avenue","hire_date":"9/28/2017","website":"https://altervista.org","notes":"pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in","status":1,"type":3,"salary":"$1559.85"}, {"id":910,"employee_id":"622152688-4","first_name":"Roderic","last_name":"Goldthorpe","email":"rgoldthorpep9@nba.com","phone":"337-140-9491","gender":"Male","department":"Accounting","address":"462 Talmadge Plaza","hire_date":"9/23/2017","website":"http://webs.com","notes":"ut volutpat sapien arcu sed augue aliquam erat volutpat in","status":5,"type":1,"salary":"$2497.67"}, {"id":911,"employee_id":"081619141-7","first_name":"Dimitri","last_name":"Birkmyre","email":"dbirkmyrepa@surveymonkey.com","phone":"342-895-5184","gender":"Male","department":"Accounting","address":"0 Mcbride Park","hire_date":"8/27/2017","website":"http://ow.ly","notes":"non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus","status":2,"type":3,"salary":"$281.75"}, {"id":912,"employee_id":"782208639-1","first_name":"Riobard","last_name":"Beatey","email":"rbeateypb@blog.com","phone":"162-210-1893","gender":"Male","department":"Accounting","address":"9 Green Ridge Alley","hire_date":"2/22/2018","website":"https://bing.com","notes":"in faucibus orci luctus et ultrices posuere cubilia curae donec","status":1,"type":2,"salary":"$1265.73"}, {"id":913,"employee_id":"660920982-0","first_name":"Natalya","last_name":"Hinze","email":"nhinzepc@angelfire.com","phone":"732-647-5264","gender":"Female","department":"Legal","address":"7 Larry Park","hire_date":"12/1/2017","website":"https://weibo.com","notes":"volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet","status":4,"type":2,"salary":"$1530.93"}, {"id":914,"employee_id":"432319797-7","first_name":"Chickie","last_name":"Mounfield","email":"cmounfieldpd@nba.com","phone":"560-730-2512","gender":"Female","department":"Training","address":"51236 Holy Cross Trail","hire_date":"10/28/2017","website":"https://shutterfly.com","notes":"convallis nunc proin at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices","status":5,"type":1,"salary":"$2235.54"}, {"id":915,"employee_id":"406004760-0","first_name":"See","last_name":"Jeenes","email":"sjeenespe@arizona.edu","phone":"268-712-4165","gender":"Male","department":"Engineering","address":"230 Nova Street","hire_date":"10/20/2017","website":"https://goo.gl","notes":"sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis","status":2,"type":3,"salary":"$1222.20"}, {"id":916,"employee_id":"047059394-6","first_name":"Vassili","last_name":"Capener","email":"vcapenerpf@t.co","phone":"986-924-0785","gender":"Male","department":"Human Resources","address":"61178 Scofield Trail","hire_date":"8/25/2017","website":"https://washingtonpost.com","notes":"cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et","status":5,"type":3,"salary":"$1949.74"}, {"id":917,"employee_id":"180396440-5","first_name":"Bill","last_name":"Larvent","email":"blarventpg@naver.com","phone":"529-947-5325","gender":"Male","department":"Business Development","address":"44 Hansons Park","hire_date":"8/30/2017","website":"https://hud.gov","notes":"eget congue eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui proin","status":4,"type":2,"salary":"$841.10"}, {"id":918,"employee_id":"283546824-2","first_name":"Basile","last_name":"Digges","email":"bdiggesph@myspace.com","phone":"206-710-6581","gender":"Male","department":"Research and Development","address":"083 Hanson Avenue","hire_date":"1/18/2018","website":"http://simplemachines.org","notes":"sed magna at nunc commodo placerat praesent blandit nam nulla integer pede","status":2,"type":2,"salary":"$586.02"}, {"id":919,"employee_id":"347048793-6","first_name":"Nissy","last_name":"Di Boldi","email":"ndiboldipi@state.gov","phone":"166-264-1516","gender":"Female","department":"Legal","address":"92 Dixon Center","hire_date":"8/14/2017","website":"https://domainmarket.com","notes":"duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim","status":2,"type":2,"salary":"$1528.40"}, {"id":920,"employee_id":"954552593-2","first_name":"Fraze","last_name":"Zamora","email":"fzamorapj@google.nl","phone":"149-538-9076","gender":"Male","department":"Human Resources","address":"4 Linden Trail","hire_date":"1/19/2018","website":"http://theglobeandmail.com","notes":"orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi","status":6,"type":2,"salary":"$1091.36"}, {"id":921,"employee_id":"120102828-0","first_name":"Cecilla","last_name":"Gorrie","email":"cgorriepk@auda.org.au","phone":"513-939-0970","gender":"Female","department":"Product Management","address":"384 Clarendon Center","hire_date":"1/20/2018","website":"https://economist.com","notes":"consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel","status":1,"type":1,"salary":"$525.41"}, {"id":922,"employee_id":"920174569-9","first_name":"Annalise","last_name":"Kerins","email":"akerinspl@surveymonkey.com","phone":"545-661-7432","gender":"Female","department":"Marketing","address":"6522 Reindahl Plaza","hire_date":"8/3/2017","website":"https://wordpress.com","notes":"morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet","status":3,"type":3,"salary":"$905.14"}, {"id":923,"employee_id":"784253584-1","first_name":"Lamar","last_name":"Livingston","email":"llivingstonpm@mail.ru","phone":"709-300-9506","gender":"Male","department":"Services","address":"18117 Reindahl Junction","hire_date":"1/13/2018","website":"http://dagondesign.com","notes":"rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa","status":4,"type":3,"salary":"$2443.20"}, {"id":924,"employee_id":"988584613-1","first_name":"Helaina","last_name":"Alenov","email":"halenovpn@4shared.com","phone":"572-441-0032","gender":"Female","department":"Services","address":"469 Manitowish Center","hire_date":"5/10/2018","website":"http://foxnews.com","notes":"placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros","status":4,"type":1,"salary":"$560.67"}, {"id":925,"employee_id":"049938321-4","first_name":"Brocky","last_name":"Tuite","email":"btuitepo@gmpg.org","phone":"512-393-7521","gender":"Male","department":"Services","address":"408 Fairview Hill","hire_date":"7/1/2018","website":"https://myspace.com","notes":"turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","status":3,"type":3,"salary":"$2028.73"}, {"id":926,"employee_id":"902267560-2","first_name":"Urbanus","last_name":"Ambrogi","email":"uambrogipp@dailymotion.com","phone":"232-264-1680","gender":"Male","department":"Engineering","address":"0 Thierer Circle","hire_date":"4/3/2018","website":"https://infoseek.co.jp","notes":"amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor","status":2,"type":2,"salary":"$1764.44"}, {"id":927,"employee_id":"991397372-4","first_name":"Cissy","last_name":"Anmore","email":"canmorepq@cpanel.net","phone":"202-901-2748","gender":"Female","department":"Human Resources","address":"80876 Amoth Place","hire_date":"9/30/2017","website":"https://taobao.com","notes":"cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum","status":2,"type":2,"salary":"$2243.19"}, {"id":928,"employee_id":"102182510-7","first_name":"Gaven","last_name":"MacTrustey","email":"gmactrusteypr@go.com","phone":"654-262-2808","gender":"Male","department":"Legal","address":"04978 Kensington Alley","hire_date":"2/13/2018","website":"https://ask.com","notes":"eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras","status":5,"type":3,"salary":"$2414.43"}, {"id":929,"employee_id":"094556174-1","first_name":"Lawrence","last_name":"Lloyds","email":"llloydsps@sogou.com","phone":"858-645-8381","gender":"Male","department":"Marketing","address":"602 Division Lane","hire_date":"3/2/2018","website":"https://patch.com","notes":"at turpis a pede posuere nonummy integer non velit donec diam","status":2,"type":1,"salary":"$1515.11"}, {"id":930,"employee_id":"391075695-6","first_name":"Kleon","last_name":"Hawket","email":"khawketpt@reference.com","phone":"129-947-4020","gender":"Male","department":"Product Management","address":"4501 Ronald Regan Pass","hire_date":"1/21/2018","website":"http://google.ru","notes":"lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus","status":2,"type":2,"salary":"$1414.43"}, {"id":931,"employee_id":"131408718-5","first_name":"Casar","last_name":"Willers","email":"cwillerspu@example.com","phone":"768-642-6411","gender":"Male","department":"Training","address":"3 Clemons Pass","hire_date":"5/9/2018","website":"https://dyndns.org","notes":"risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien","status":6,"type":1,"salary":"$396.91"}, {"id":932,"employee_id":"555033377-5","first_name":"Marcia","last_name":"Wasling","email":"mwaslingpv@china.com.cn","phone":"337-344-8789","gender":"Female","department":"Research and Development","address":"4 Merrick Alley","hire_date":"4/27/2018","website":"http://paypal.com","notes":"imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce","status":4,"type":2,"salary":"$640.93"}, {"id":933,"employee_id":"581222296-7","first_name":"Samuel","last_name":"Alenov","email":"salenovpw@moonfruit.com","phone":"348-435-6018","gender":"Male","department":"Marketing","address":"0 Carpenter Point","hire_date":"10/11/2017","website":"http://ihg.com","notes":"nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi","status":6,"type":1,"salary":"$1490.27"}, {"id":934,"employee_id":"778142125-6","first_name":"Auberta","last_name":"Scase","email":"ascasepx@imdb.com","phone":"787-786-1888","gender":"Female","department":"Engineering","address":"39926 Hollow Ridge Center","hire_date":"3/17/2018","website":"https://examiner.com","notes":"bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede","status":2,"type":1,"salary":"$937.82"}, {"id":935,"employee_id":"736149611-3","first_name":"Twila","last_name":"Yousef","email":"tyousefpy@discuz.net","phone":"168-625-3515","gender":"Female","department":"Sales","address":"85 Eggendart Lane","hire_date":"8/4/2017","website":"http://feedburner.com","notes":"aenean fermentum donec ut mauris eget massa tempor convallis nulla neque","status":5,"type":1,"salary":"$2163.57"}, {"id":936,"employee_id":"910688087-8","first_name":"Rhona","last_name":"Skate","email":"rskatepz@discovery.com","phone":"865-106-4351","gender":"Female","department":"Engineering","address":"327 Duke Pass","hire_date":"9/17/2017","website":"http://ucoz.com","notes":"ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit","status":3,"type":2,"salary":"$1706.28"}, {"id":937,"employee_id":"248948482-6","first_name":"Hilario","last_name":"Hefford","email":"hheffordq0@list-manage.com","phone":"190-986-6387","gender":"Male","department":"Support","address":"355 Hallows Center","hire_date":"7/25/2017","website":"http://sina.com.cn","notes":"quam a odio in hac habitasse platea dictumst maecenas ut massa quis","status":6,"type":2,"salary":"$791.03"}, {"id":938,"employee_id":"679369811-7","first_name":"Nomi","last_name":"Gascone","email":"ngasconeq1@simplemachines.org","phone":"116-610-1692","gender":"Female","department":"Product Management","address":"58021 Mesta Drive","hire_date":"3/30/2018","website":"http://people.com.cn","notes":"massa donec dapibus duis at velit eu est congue elementum","status":2,"type":1,"salary":"$1925.68"}, {"id":939,"employee_id":"419630112-6","first_name":"Les","last_name":"Vaar","email":"lvaarq2@oakley.com","phone":"278-817-5498","gender":"Male","department":"Marketing","address":"1564 Sage Point","hire_date":"6/29/2018","website":"http://cam.ac.uk","notes":"integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi","status":5,"type":3,"salary":"$2379.48"}, {"id":940,"employee_id":"975095812-8","first_name":"Melicent","last_name":"Hassell","email":"mhassellq3@networksolutions.com","phone":"617-316-4628","gender":"Female","department":"Legal","address":"2845 Barnett Avenue","hire_date":"2/3/2018","website":"http://ucoz.com","notes":"tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit","status":4,"type":2,"salary":"$2427.08"}, {"id":941,"employee_id":"312852638-9","first_name":"Breena","last_name":"Scranney","email":"bscranneyq4@gmpg.org","phone":"103-742-8337","gender":"Female","department":"Support","address":"83 Del Mar Street","hire_date":"5/12/2018","website":"http://parallels.com","notes":"integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem","status":3,"type":2,"salary":"$2473.28"}, {"id":942,"employee_id":"664027710-7","first_name":"Mitchel","last_name":"Ashingden","email":"mashingdenq5@jimdo.com","phone":"680-971-9551","gender":"Male","department":"Services","address":"52259 Tomscot Point","hire_date":"11/17/2017","website":"http://globo.com","notes":"cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus","status":1,"type":2,"salary":"$1456.29"}, {"id":943,"employee_id":"669043116-9","first_name":"Diena","last_name":"Kilroy","email":"dkilroyq6@blog.com","phone":"500-474-5258","gender":"Female","department":"Human Resources","address":"0 Rowland Street","hire_date":"4/14/2018","website":"http://goo.gl","notes":"in lectus pellentesque at nulla suspendisse potenti cras in purus","status":2,"type":2,"salary":"$1964.78"}, {"id":944,"employee_id":"231599768-2","first_name":"Birgitta","last_name":"Creedland","email":"bcreedlandq7@shinystat.com","phone":"885-813-9256","gender":"Female","department":"Research and Development","address":"2604 Eastwood Hill","hire_date":"2/7/2018","website":"https://g.co","notes":"adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a","status":3,"type":3,"salary":"$273.43"}, {"id":945,"employee_id":"718392098-4","first_name":"Chelsie","last_name":"Blazeby","email":"cblazebyq8@myspace.com","phone":"455-370-2509","gender":"Female","department":"Engineering","address":"4488 Pennsylvania Hill","hire_date":"6/1/2018","website":"https://oaic.gov.au","notes":"sagittis nam congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam","status":1,"type":2,"salary":"$1532.30"}, {"id":946,"employee_id":"730262510-7","first_name":"Kip","last_name":"Yglesias","email":"kyglesiasq9@mediafire.com","phone":"744-205-9308","gender":"Male","department":"Services","address":"2618 Sauthoff Circle","hire_date":"1/8/2018","website":"http://sciencedaily.com","notes":"lorem quisque ut erat curabitur gravida nisi at nibh in hac habitasse","status":3,"type":2,"salary":"$2255.08"}, {"id":947,"employee_id":"409668021-4","first_name":"Arte","last_name":"Mityukov","email":"amityukovqa@simplemachines.org","phone":"662-302-6515","gender":"Male","department":"Product Management","address":"2098 Sage Terrace","hire_date":"4/27/2018","website":"http://angelfire.com","notes":"odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim lorem","status":2,"type":3,"salary":"$1715.17"}, {"id":948,"employee_id":"251173974-7","first_name":"Wini","last_name":"Dorian","email":"wdorianqb@netlog.com","phone":"490-887-4082","gender":"Female","department":"Services","address":"93 Milwaukee Parkway","hire_date":"11/10/2017","website":"https://yellowbook.com","notes":"ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel","status":4,"type":2,"salary":"$1795.30"}, {"id":949,"employee_id":"026173862-3","first_name":"Brana","last_name":"Koppes","email":"bkoppesqc@g.co","phone":"968-368-9173","gender":"Female","department":"Human Resources","address":"59 Waubesa Junction","hire_date":"4/9/2018","website":"https://google.es","notes":"curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum ac","status":2,"type":3,"salary":"$679.08"}, {"id":950,"employee_id":"669220838-6","first_name":"Karry","last_name":"Perkins","email":"kperkinsqd@blogspot.com","phone":"484-507-3283","gender":"Female","department":"Business Development","address":"1 Nevada Terrace","hire_date":"7/29/2017","website":"http://issuu.com","notes":"praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer","status":5,"type":3,"salary":"$1679.37"}, {"id":951,"employee_id":"762086972-7","first_name":"Shepperd","last_name":"Hazlewood","email":"shazlewoodqe@g.co","phone":"311-254-3012","gender":"Male","department":"Accounting","address":"5427 Cardinal Plaza","hire_date":"6/21/2018","website":"https://whitehouse.gov","notes":"sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus","status":3,"type":3,"salary":"$1217.62"}, {"id":952,"employee_id":"418422991-3","first_name":"Sergei","last_name":"Juckes","email":"sjuckesqf@technorati.com","phone":"486-896-2040","gender":"Male","department":"Sales","address":"50 Leroy Avenue","hire_date":"8/14/2017","website":"http://zdnet.com","notes":"vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi","status":3,"type":2,"salary":"$2488.72"}, {"id":953,"employee_id":"393004703-9","first_name":"Renaldo","last_name":"Pearson","email":"rpearsonqg@adobe.com","phone":"921-422-0993","gender":"Male","department":"Product Management","address":"9 Lighthouse Bay Street","hire_date":"7/18/2018","website":"http://dion.ne.jp","notes":"aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean","status":6,"type":3,"salary":"$970.25"}, {"id":954,"employee_id":"557626711-7","first_name":"Lucila","last_name":"Carles","email":"lcarlesqh@parallels.com","phone":"793-968-2100","gender":"Female","department":"Services","address":"0263 Oriole Park","hire_date":"7/8/2018","website":"https://wufoo.com","notes":"vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus","status":4,"type":1,"salary":"$960.36"}, {"id":955,"employee_id":"172444633-9","first_name":"Tedie","last_name":"Ginnell","email":"tginnellqi@youtu.be","phone":"589-792-0068","gender":"Male","department":"Services","address":"5772 Division Park","hire_date":"8/22/2017","website":"https://nature.com","notes":"eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque quam","status":2,"type":1,"salary":"$311.19"}, {"id":956,"employee_id":"037254971-3","first_name":"Carce","last_name":"Sheircliffe","email":"csheircliffeqj@craigslist.org","phone":"623-714-6450","gender":"Male","department":"Support","address":"09 Merry Way","hire_date":"12/20/2017","website":"http://exblog.jp","notes":"imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi","status":1,"type":1,"salary":"$1905.11"}, {"id":957,"employee_id":"007863387-7","first_name":"Mellisa","last_name":"Pentland","email":"mpentlandqk@flavors.me","phone":"631-934-5783","gender":"Female","department":"Services","address":"93095 1st Junction","hire_date":"1/5/2018","website":"http://ycombinator.com","notes":"nunc proin at turpis a pede posuere nonummy integer non velit","status":4,"type":1,"salary":"$839.00"}, {"id":958,"employee_id":"610993337-6","first_name":"Wilden","last_name":"Edinborough","email":"wedinboroughql@lulu.com","phone":"903-407-0431","gender":"Male","department":"Training","address":"71371 Kropf Crossing","hire_date":"12/2/2017","website":"https://comsenz.com","notes":"faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras non velit","status":5,"type":1,"salary":"$1278.54"}, {"id":959,"employee_id":"311880498-X","first_name":"Marjie","last_name":"Hanssmann","email":"mhanssmannqm@myspace.com","phone":"718-670-6224","gender":"Female","department":"Marketing","address":"9 Sunbrook Place","hire_date":"8/30/2017","website":"http://ucoz.ru","notes":"convallis nunc proin at turpis a pede posuere nonummy integer non velit donec diam","status":5,"type":3,"salary":"$1962.65"}, {"id":960,"employee_id":"403658203-8","first_name":"Cary","last_name":"Trayford","email":"ctrayfordqn@globo.com","phone":"585-236-7329","gender":"Female","department":"Sales","address":"766 Alpine Avenue","hire_date":"9/27/2017","website":"http://surveymonkey.com","notes":"at nulla suspendisse potenti cras in purus eu magna vulputate","status":2,"type":3,"salary":"$1927.79"}, {"id":961,"employee_id":"871186561-X","first_name":"Dominica","last_name":"Feehely","email":"dfeehelyqo@goo.gl","phone":"418-146-9893","gender":"Female","department":"Product Management","address":"163 Weeping Birch Drive","hire_date":"6/16/2018","website":"http://github.com","notes":"quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum","status":5,"type":3,"salary":"$344.23"}, {"id":962,"employee_id":"464431218-5","first_name":"Ilyssa","last_name":"Van der Hoeven","email":"ivanderhoevenqp@qq.com","phone":"740-535-7157","gender":"Female","department":"Accounting","address":"3 Huxley Point","hire_date":"7/13/2018","website":"https://eventbrite.com","notes":"phasellus id sapien in sapien iaculis congue vivamus metus arcu","status":3,"type":1,"salary":"$2135.61"}, {"id":963,"employee_id":"802727037-5","first_name":"Don","last_name":"Woffinden","email":"dwoffindenqq@kickstarter.com","phone":"815-956-1326","gender":"Male","department":"Marketing","address":"8 Fairview Street","hire_date":"5/3/2018","website":"https://tuttocitta.it","notes":"feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam","status":2,"type":1,"salary":"$1928.24"}, {"id":964,"employee_id":"939154702-8","first_name":"Clovis","last_name":"Leindecker","email":"cleindeckerqr@rakuten.co.jp","phone":"581-992-5821","gender":"Female","department":"Business Development","address":"7003 Nova Parkway","hire_date":"3/31/2018","website":"https://simplemachines.org","notes":"nulla sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio","status":4,"type":1,"salary":"$1101.46"}, {"id":965,"employee_id":"977079512-7","first_name":"Row","last_name":"Curtin","email":"rcurtinqs@pcworld.com","phone":"366-505-1893","gender":"Female","department":"Legal","address":"37626 Butterfield Court","hire_date":"3/12/2018","website":"https://yellowbook.com","notes":"nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis","status":3,"type":2,"salary":"$734.46"}, {"id":966,"employee_id":"056387772-3","first_name":"Lesli","last_name":"Northey","email":"lnortheyqt@mediafire.com","phone":"834-818-7685","gender":"Female","department":"Research and Development","address":"1819 Northwestern Place","hire_date":"4/21/2018","website":"https://pagesperso-orange.fr","notes":"nulla ut erat id mauris vulputate elementum nullam varius nulla","status":2,"type":3,"salary":"$1675.32"}, {"id":967,"employee_id":"605313562-3","first_name":"Lamont","last_name":"Bunn","email":"lbunnqu@java.com","phone":"450-703-5969","gender":"Male","department":"Support","address":"75 Dayton Road","hire_date":"5/29/2018","website":"https://adobe.com","notes":"eu sapien cursus vestibulum proin eu mi nulla ac enim","status":5,"type":3,"salary":"$1506.99"}, {"id":968,"employee_id":"343791568-1","first_name":"Steve","last_name":"Pawellek","email":"spawellekqv@usda.gov","phone":"144-500-5254","gender":"Male","department":"Support","address":"1187 Glacier Hill Hill","hire_date":"8/8/2017","website":"https://netvibes.com","notes":"a ipsum integer a nibh in quis justo maecenas rhoncus aliquam","status":2,"type":1,"salary":"$1337.06"}, {"id":969,"employee_id":"520606017-8","first_name":"Ody","last_name":"Casterton","email":"ocastertonqw@goo.ne.jp","phone":"512-527-3787","gender":"Male","department":"Sales","address":"748 Fallview Drive","hire_date":"5/31/2018","website":"https://smh.com.au","notes":"sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum","status":1,"type":2,"salary":"$2356.26"}, {"id":970,"employee_id":"876243880-8","first_name":"Aldus","last_name":"Scrimgeour","email":"ascrimgeourqx@wufoo.com","phone":"851-634-3915","gender":"Male","department":"Engineering","address":"30579 Bunker Hill Point","hire_date":"11/3/2017","website":"https://bluehost.com","notes":"ligula suspendisse ornare consequat lectus in est risus auctor sed tristique","status":1,"type":3,"salary":"$1699.96"}, {"id":971,"employee_id":"680532532-3","first_name":"Addi","last_name":"Haydon","email":"ahaydonqy@acquirethisname.com","phone":"567-229-6507","gender":"Female","department":"Sales","address":"451 Mayer Trail","hire_date":"7/7/2018","website":"https://addtoany.com","notes":"nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras","status":1,"type":1,"salary":"$804.36"}, {"id":972,"employee_id":"971576765-6","first_name":"Vernen","last_name":"Welbeck","email":"vwelbeckqz@cocolog-nifty.com","phone":"557-652-6455","gender":"Male","department":"Research and Development","address":"02 Pleasure Drive","hire_date":"12/24/2017","website":"https://php.net","notes":"turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a","status":2,"type":1,"salary":"$1893.89"}, {"id":973,"employee_id":"645560109-2","first_name":"Melli","last_name":"Jentzsch","email":"mjentzschr0@livejournal.com","phone":"320-961-5015","gender":"Female","department":"Support","address":"30457 Kings Plaza","hire_date":"7/20/2017","website":"http://yahoo.com","notes":"nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo","status":4,"type":1,"salary":"$601.90"}, {"id":974,"employee_id":"888672351-2","first_name":"Algernon","last_name":"Tweedle","email":"atweedler1@oracle.com","phone":"804-263-5735","gender":"Male","department":"Business Development","address":"978 Dorton Alley","hire_date":"1/31/2018","website":"https://tinyurl.com","notes":"luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis","status":5,"type":1,"salary":"$1415.96"}, {"id":975,"employee_id":"981656239-1","first_name":"Gilly","last_name":"Hallatt","email":"ghallattr2@china.com.cn","phone":"501-263-2764","gender":"Female","department":"Marketing","address":"3836 Anzinger Terrace","hire_date":"4/11/2018","website":"http://taobao.com","notes":"consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum","status":1,"type":2,"salary":"$2471.44"}, {"id":976,"employee_id":"615969001-9","first_name":"Rikki","last_name":"Galley","email":"rgalleyr3@imageshack.us","phone":"130-690-7439","gender":"Female","department":"Business Development","address":"52 Talmadge Hill","hire_date":"10/10/2017","website":"https://jalbum.net","notes":"et ultrices posuere cubilia curae mauris viverra diam vitae quam","status":4,"type":3,"salary":"$1090.85"}, {"id":977,"employee_id":"022321369-1","first_name":"Gaye","last_name":"Ranger","email":"grangerr4@fema.gov","phone":"671-189-2403","gender":"Female","department":"Engineering","address":"35 Donald Junction","hire_date":"2/3/2018","website":"https://g.co","notes":"sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis ligula","status":3,"type":2,"salary":"$1481.67"}, {"id":978,"employee_id":"008938404-0","first_name":"Tommie","last_name":"Reace","email":"treacer5@ucla.edu","phone":"786-291-3851","gender":"Female","department":"Business Development","address":"873 Superior Plaza","hire_date":"2/14/2018","website":"https://amazon.de","notes":"metus aenean fermentum donec ut mauris eget massa tempor convallis nulla neque libero convallis eget","status":6,"type":1,"salary":"$1046.10"}, {"id":979,"employee_id":"080841532-8","first_name":"Patti","last_name":"Sirman","email":"psirmanr6@forbes.com","phone":"332-411-3746","gender":"Female","department":"Marketing","address":"19 Nova Plaza","hire_date":"2/8/2018","website":"http://dell.com","notes":"felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc","status":3,"type":2,"salary":"$1291.83"}, {"id":980,"employee_id":"316441122-7","first_name":"Leo","last_name":"Oloshkin","email":"loloshkinr7@wikimedia.org","phone":"924-235-4010","gender":"Male","department":"Business Development","address":"20344 Columbus Plaza","hire_date":"7/15/2018","website":"http://imageshack.us","notes":"vel augue vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia","status":1,"type":2,"salary":"$1299.64"}, {"id":981,"employee_id":"942913030-7","first_name":"Marco","last_name":"Bezemer","email":"mbezemerr8@blogger.com","phone":"739-838-7322","gender":"Male","department":"Business Development","address":"99 Lien Way","hire_date":"4/16/2018","website":"https://rediff.com","notes":"vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus","status":6,"type":3,"salary":"$2186.06"}, {"id":982,"employee_id":"723635281-0","first_name":"Crissy","last_name":"Shoosmith","email":"cshoosmithr9@mediafire.com","phone":"339-935-3368","gender":"Female","department":"Services","address":"649 Bartelt Hill","hire_date":"2/3/2018","website":"http://cnbc.com","notes":"turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere","status":1,"type":2,"salary":"$560.64"}, {"id":983,"employee_id":"724639902-X","first_name":"Georgiana","last_name":"Chartre","email":"gchartrera@t-online.de","phone":"772-156-4637","gender":"Female","department":"Business Development","address":"12 Derek Lane","hire_date":"11/6/2017","website":"https://miibeian.gov.cn","notes":"a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id","status":1,"type":3,"salary":"$1125.39"}, {"id":984,"employee_id":"539030881-6","first_name":"Ninetta","last_name":"Thorburn","email":"nthorburnrb@acquirethisname.com","phone":"130-745-1755","gender":"Female","department":"Accounting","address":"9373 High Crossing Pass","hire_date":"2/8/2018","website":"https://wix.com","notes":"eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus vivamus","status":5,"type":2,"salary":"$937.40"}, {"id":985,"employee_id":"250191052-4","first_name":"Julietta","last_name":"Canning","email":"jcanningrc@engadget.com","phone":"602-616-3819","gender":"Female","department":"Business Development","address":"6316 Schurz Parkway","hire_date":"6/13/2018","website":"https://reference.com","notes":"quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed","status":2,"type":3,"salary":"$1982.96"}, {"id":986,"employee_id":"090768281-2","first_name":"Cornie","last_name":"Alsop","email":"calsoprd@dropbox.com","phone":"749-584-3743","gender":"Female","department":"Human Resources","address":"02546 Spaight Place","hire_date":"6/24/2018","website":"http://technorati.com","notes":"non mauris morbi non lectus aliquam sit amet diam in magna bibendum","status":4,"type":2,"salary":"$1048.30"}, {"id":987,"employee_id":"438335362-2","first_name":"Linnea","last_name":"Tippin","email":"ltippinre@canalblog.com","phone":"853-711-1666","gender":"Female","department":"Marketing","address":"7331 Emmet Pass","hire_date":"12/30/2017","website":"https://cam.ac.uk","notes":"sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla","status":6,"type":3,"salary":"$1261.24"}, {"id":988,"employee_id":"399525643-0","first_name":"Kathye","last_name":"Vinson","email":"kvinsonrf@rediff.com","phone":"774-672-3524","gender":"Female","department":"Sales","address":"22 Bonner Street","hire_date":"10/7/2017","website":"http://dyndns.org","notes":"integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel","status":5,"type":2,"salary":"$1041.96"}, {"id":989,"employee_id":"425067933-0","first_name":"Kandace","last_name":"Hatter","email":"khatterrg@cafepress.com","phone":"631-169-9684","gender":"Female","department":"Research and Development","address":"709 Lien Road","hire_date":"5/26/2018","website":"https://bloglines.com","notes":"habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec","status":3,"type":3,"salary":"$1450.62"}, {"id":990,"employee_id":"786003350-X","first_name":"Kacie","last_name":"Rowson","email":"krowsonrh@chronoengine.com","phone":"333-530-2269","gender":"Female","department":"Engineering","address":"612 Thackeray Court","hire_date":"7/30/2017","website":"https://odnoklassniki.ru","notes":"nulla integer pede justo lacinia eget tincidunt eget tempus vel pede morbi","status":2,"type":3,"salary":"$552.57"}, {"id":991,"employee_id":"046546123-9","first_name":"Selby","last_name":"Gillimgham","email":"sgillimghamri@house.gov","phone":"469-918-1790","gender":"Male","department":"Accounting","address":"63767 Dwight Avenue","hire_date":"6/20/2018","website":"http://adobe.com","notes":"ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit","status":1,"type":2,"salary":"$1425.75"}, {"id":992,"employee_id":"206309950-2","first_name":"Lyon","last_name":"Gravenor","email":"lgravenorrj@ucsd.edu","phone":"807-329-4234","gender":"Male","department":"Support","address":"51713 Dorton Terrace","hire_date":"1/10/2018","website":"https://list-manage.com","notes":"sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci","status":1,"type":1,"salary":"$1735.57"}, {"id":993,"employee_id":"444851642-3","first_name":"Lynnell","last_name":"Drewes","email":"ldrewesrk@census.gov","phone":"540-267-8327","gender":"Female","department":"Legal","address":"0 Coolidge Drive","hire_date":"11/26/2017","website":"http://weibo.com","notes":"in est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis","status":3,"type":3,"salary":"$539.88"}, {"id":994,"employee_id":"085878174-3","first_name":"Alaric","last_name":"Marczyk","email":"amarczykrl@apple.com","phone":"616-684-3991","gender":"Male","department":"Engineering","address":"06514 Hollow Ridge Circle","hire_date":"8/5/2017","website":"https://ftc.gov","notes":"libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit","status":4,"type":1,"salary":"$2144.32"}, {"id":995,"employee_id":"740945020-7","first_name":"Tallie","last_name":"Keller","email":"tkellerrm@ustream.tv","phone":"678-664-1529","gender":"Male","department":"Product Management","address":"04209 Toban Park","hire_date":"5/20/2018","website":"https://nasa.gov","notes":"libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc","status":4,"type":1,"salary":"$2263.14"}, {"id":996,"employee_id":"796497559-5","first_name":"Buiron","last_name":"Alsina","email":"balsinarn@amazon.de","phone":"643-351-2865","gender":"Male","department":"Accounting","address":"522 Marcy Center","hire_date":"6/2/2018","website":"http://google.es","notes":"ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id","status":3,"type":1,"salary":"$1306.20"}, {"id":997,"employee_id":"057599692-7","first_name":"Hall","last_name":"Cattell","email":"hcattellro@who.int","phone":"609-612-7472","gender":"Male","department":"Training","address":"9 Autumn Leaf Parkway","hire_date":"1/26/2018","website":"https://google.com","notes":"tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean","status":4,"type":2,"salary":"$2065.65"}, {"id":998,"employee_id":"764038753-1","first_name":"Orton","last_name":"Davie","email":"odavierp@sbwire.com","phone":"245-526-0063","gender":"Male","department":"Research and Development","address":"4 Bellgrove Parkway","hire_date":"6/15/2018","website":"https://china.com.cn","notes":"a pede posuere nonummy integer non velit donec diam neque","status":4,"type":1,"salary":"$1616.21"}, {"id":999,"employee_id":"447607191-0","first_name":"Hortense","last_name":"Robez","email":"hrobezrq@tripadvisor.com","phone":"362-207-0143","gender":"Female","department":"Marketing","address":"657 Victoria Drive","hire_date":"3/16/2018","website":"http://eventbrite.com","notes":"ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis","status":3,"type":2,"salary":"$2095.85"}, {"id":1000,"employee_id":"588935146-X","first_name":"Cosette","last_name":"Jonson","email":"cjonsonrr@dailymotion.com","phone":"188-171-1078","gender":"Female","department":"Research and Development","address":"2372 Myrtle Drive","hire_date":"9/22/2017","website":"http://hugedomains.com","notes":"erat volutpat in congue etiam justo etiam pretium iaculis justo","status":5,"type":1,"salary":"$550.38"}]'),a=$("#kt_modal_KTDatatable_local"),t=$("#modal_datatable_local_source").KTDatatable({data:{type:"local",source:e,pageSize:10},layout:{scroll:!0,height:400,footer:!1},sortable:!0,pagination:!0,search:{input:a.find("#generalSearch")},columns:[{field:"id",title:"#",sortable:!1,width:20,type:"number",selector:{class:"kt-checkbox--solid"},textAlign:"center"},{field:"employee_id",title:"Employee ID"},{field:"name",title:"Name",template:function(e){return e.first_name+" "+e.last_name}},{field:"hire_date",title:"Hire Date",type:"date",format:"MM/DD/YYYY"},{field:"gender",title:"Gender"},{field:"status",title:"Status",template:function(e){var a={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--success"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+a[e.status].title+""}},{field:"type",title:"Type",autoHide:!1,template:function(e){var a={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"accent"}};return' '+a[e.type].title+""}},{field:"Actions",title:"Actions",sortable:!1,width:110,overflow:"visible",autoHide:!1,template:function(){return'\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'}}]});a.find("#kt_form_status").on("change",function(){t.search($(this).val().toLowerCase(),"status")}),a.find("#kt_form_type").on("change",function(){t.search($(this).val().toLowerCase(),"type")}),a.find("#kt_form_status,#kt_form_type").selectpicker(),t.hide();var s=!1;a.on("shown.bs.modal",function(){if(!s){var e=$(this).find(".modal-content");t.spinnerCallback(!0,e),t.reload(),t.on("kt-datatable--on-layout-updated",function(){t.show(),t.spinnerCallback(!1,e),t.redraw()}),s=!0}})}(),a=$("#sub_datatable_ajax_source"),t=a.KTDatatable({data:{type:"remote",source:{read:{url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/customers.php"}},pageSize:10,serverPaging:!0,serverFiltering:!1,serverSorting:!0},layout:{theme:"default",scroll:!1,height:null,footer:!1},sortable:!0,pagination:!0,search:{input:a.find("#generalSearch")},columns:[{field:"RecordID",title:"",sortable:!1,width:30,textAlign:"center"},{field:"FirstName",title:"First Name",sortable:"asc"},{field:"LastName",title:"Last Name"},{field:"Company",title:"Company"},{field:"Email",title:"Email"},{field:"Phone",title:"Phone"},{field:"Status",title:"Status",template:function(e){var a={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--success"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+a[e.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(e){var a={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"accent"}};return' '+a[e.Type].title+""}},{field:"Actions",width:130,title:"Actions",sortable:!1,overflow:"visible",textAlign:"left",autoHide:!1,template:function(e){return'\t\t '}}]}),(s=t.closest(".kt-portlet")).find("#kt_form_status").on("change",function(){t.search($(this).val().toLowerCase(),"Status")}),s.find("#kt_form_type").on("change",function(){t.search($(this).val().toLowerCase(),"Type")}),s.find("#kt_form_status,#kt_form_type").selectpicker(),t.on("click","[data-record-id]",function(){e($(this).data("record-id")),$("#kt_modal_sub_KTDatatable_remote").modal("show")})}}}();jQuery(document).ready(function(){KTDatatableModal.init()}); \ No newline at end of file +'use strict'; +var KTDatatableModal = (function() { + var e = function(e) { + var a = $('#modal_sub_datatable_ajax_source'), + t = a.KTDatatable({ + data: { + type: 'remote', + source: { + read: { + url: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/orders.php', + params: { query: { generalSearch: '', CustomerID: e } }, + }, + }, + pageSize: 10, + serverPaging: !0, + serverFiltering: !1, + serverSorting: !0, + }, + layout: { theme: 'default', scroll: !0, height: 350, footer: !1 }, + search: { input: a.find('#generalSearch') }, + sortable: !0, + columns: [ + { field: 'RecordID', title: '#', sortable: !1, width: 30 }, + { + field: 'OrderID', + title: 'Order ID', + template: function(e) { + return '' + e.OrderID + ' - ' + e.ShipCountry + ''; + }, + }, + { field: 'ShipCountry', title: 'Country', width: 100 }, + { field: 'ShipAddress', title: 'Ship Address' }, + { field: 'ShipName', title: 'Ship Name', autoHide: !1 }, + { field: 'TotalPayment', title: 'Payment', type: 'number' }, + { + field: 'Status', + title: 'Status', + template: function(e) { + var a = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--success' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return ( + '' + + a[e.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Type', + autoHide: !1, + template: function(e) { + var a = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'accent' }, + }; + return ( + ' ' + + a[e.Type].title + + '' + ); + }, + }, + ], + }), + s = t.closest('.modal'); + s.find('#kt_form_status').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Status', + ); + }), + s.find('#kt_form_type').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Type', + ); + }), + s.find('#kt_form_status,#kt_form_type').selectpicker(), + t.hide(), + s + .on('shown.bs.modal', function() { + var e = $(this).find('.modal-content'); + t.spinnerCallback(!0, e), + t.on('kt-datatable--on-layout-updated', function() { + t.show(), t.spinnerCallback(!1, e), t.redraw(); + }); + }) + .on('hidden.bs.modal', function() { + a.KTDatatable('destroy'); + }); + }; + return { + init: function() { + var a, t, s; + !(function() { + var e = $('#kt_modal_KTDatatable_remote'), + a = $('#modal_datatable_ajax_source').KTDatatable({ + data: { + type: 'remote', + source: { + read: { + url: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php', + }, + }, + pageSize: 10, + serverPaging: !0, + serverFiltering: !0, + serverSorting: !0, + }, + layout: { scroll: !0, height: 400, footer: !1 }, + sortable: !0, + pagination: !0, + search: { input: e.find('#generalSearch'), delay: 400 }, + columns: [ + { + field: 'RecordID', + title: '#', + sortable: 'asc', + width: 30, + type: 'number', + selector: !1, + textAlign: 'center', + }, + { + field: 'OrderID', + title: 'Profile Picture', + template: function(e, a) { + for (var t = 4 + a; t > 12; ) t -= 3; + var s = '100_' + t + '.jpg', + i = KTUtil.getRandomInt(0, 5), + n = ['Developer', 'Designer', 'CEO', 'Manager', 'Architect', 'Sales']; + return t > 5 + ? '
    \t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\tphoto\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t' + + e.CompanyAgent + + '\t\t\t\t\t\t\t\t' + + n[i] + + '\t\t\t\t\t\t\t
    \t\t\t\t\t\t
    ' + : '
    \t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t
    ' + + e.CompanyAgent.substring(0, 1) + + '
    \t\t\t\t\t\t\t
    \t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t' + + e.CompanyAgent + + '\t\t\t\t\t\t\t\t' + + n[i] + + '\t\t\t\t\t\t\t
    \t\t\t\t\t\t
    '; + }, + }, + { field: 'CompanyAgent', title: 'Name' }, + { field: 'ShipDate', title: 'Ship Date', type: 'date', format: 'MM/DD/YYYY' }, + { field: 'ShipCountry', title: 'Ship Country' }, + { + field: 'Status', + title: 'Status', + template: function(e) { + var a = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--success' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return ( + '' + + a[e.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Type', + autoHide: !1, + template: function(e) { + var a = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return ( + ' ' + + a[e.Type].title + + '' + ); + }, + }, + { + field: 'Actions', + title: 'Actions', + sortable: !1, + width: 110, + overflow: 'visible', + autoHide: !1, + template: function() { + return '\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'; + }, + }, + ], + }); + e.find('#kt_form_status').on('change', function() { + a.search( + $(this) + .val() + .toLowerCase(), + 'status', + ); + }), + e.find('#kt_form_type').on('change', function() { + a.search( + $(this) + .val() + .toLowerCase(), + 'type', + ); + }), + e.find('#kt_form_status,#kt_form_type').selectpicker(), + a.hide(); + var t = !1; + e.on('shown.bs.modal', function() { + if (!t) { + var e = $(this).find('.modal-content'); + a.spinnerCallback(!0, e), + a.reload(), + a.on('kt-datatable--on-layout-updated', function() { + a.show(), a.spinnerCallback(!1, e), a.redraw(); + }), + (t = !0); + } + }); + })(), + (function() { + var e = JSON.parse( + '[{"id":1,"employee_id":"463978155-5","first_name":"Carroll","last_name":"Maharry","email":"cmaharry0@topsy.com","phone":"420-935-0970","gender":"Male","department":"Legal","address":"72460 Bunting Trail","hire_date":"3/18/2018","website":"https://gmpg.org","notes":"euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","status":6,"type":2,"salary":"$339.37"}, {"id":2,"employee_id":"590410601-7","first_name":"Jae","last_name":"Frammingham","email":"jframmingham1@ucoz.com","phone":"377-986-0708","gender":"Male","department":"Human Resources","address":"976 Eagle Crest Junction","hire_date":"10/22/2017","website":"https://telegraph.co.uk","notes":"consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia","status":5,"type":2,"salary":"$1568.00"}, {"id":3,"employee_id":"562079447-4","first_name":"Natalie","last_name":"Stuchberry","email":"nstuchberry2@jimdo.com","phone":"718-320-9991","gender":"Female","department":"Legal","address":"9971 Rigney Pass","hire_date":"6/1/2018","website":"http://nbcnews.com","notes":"tempus sit amet sem fusce consequat nulla nisl nunc nisl duis","status":1,"type":1,"salary":"$2014.50"}, {"id":4,"employee_id":"078485871-3","first_name":"Abran","last_name":"Ivett","email":"aivett3@pinterest.com","phone":"784-922-2482","gender":"Male","department":"Accounting","address":"9 Mesta Court","hire_date":"2/6/2018","website":"http://wikipedia.org","notes":"vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra","status":2,"type":1,"salary":"$1205.64"}, {"id":5,"employee_id":"048140516-X","first_name":"Viola","last_name":"Ends","email":"vends4@squarespace.com","phone":"613-457-5253","gender":"Female","department":"Research and Development","address":"2 Paget Court","hire_date":"3/16/2018","website":"https://dot.gov","notes":"id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit","status":2,"type":2,"salary":"$1376.93"}, {"id":6,"employee_id":"115191539-4","first_name":"Marabel","last_name":"Foystone","email":"mfoystone5@example.com","phone":"731-391-3134","gender":"Female","department":"Support","address":"2498 Tennyson Way","hire_date":"5/10/2018","website":"http://booking.com","notes":"nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis","status":1,"type":1,"salary":"$1498.25"}, {"id":7,"employee_id":"053408526-1","first_name":"Maiga","last_name":"Frogley","email":"mfrogley6@flavors.me","phone":"559-339-1188","gender":"Female","department":"Legal","address":"6 Sage Circle","hire_date":"10/24/2017","website":"http://ustream.tv","notes":"in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur","status":4,"type":1,"salary":"$2420.50"}, {"id":8,"employee_id":"996172199-3","first_name":"Leia","last_name":"Rapelli","email":"lrapelli7@amazonaws.com","phone":"882-958-3554","gender":"Female","department":"Training","address":"5 Bellgrove Park","hire_date":"3/11/2018","website":"https://va.gov","notes":"ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus","status":5,"type":3,"salary":"$479.73"}, {"id":9,"employee_id":"290771439-2","first_name":"Lilias","last_name":"Stollsteiner","email":"lstollsteiner8@opensource.org","phone":"725-615-6480","gender":"Female","department":"Product Management","address":"5 Shoshone Park","hire_date":"4/26/2018","website":"http://163.com","notes":"blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem","status":6,"type":3,"salary":"$815.69"}, {"id":10,"employee_id":"475138305-1","first_name":"Chrissie","last_name":"Trenouth","email":"ctrenouth9@addtoany.com","phone":"653-550-6039","gender":"Male","department":"Product Management","address":"6753 Fulton Drive","hire_date":"4/5/2018","website":"https://nifty.com","notes":"erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in","status":5,"type":2,"salary":"$1011.26"}, {"id":11,"employee_id":"909173505-8","first_name":"Tisha","last_name":"Timewell","email":"ttimewella@photobucket.com","phone":"372-765-5253","gender":"Female","department":"Legal","address":"5142 7th Terrace","hire_date":"3/21/2018","website":"https://360.cn","notes":"dolor morbi vel lectus in quam fringilla rhoncus mauris enim","status":4,"type":1,"salary":"$1169.55"}, {"id":12,"employee_id":"930860193-7","first_name":"Abie","last_name":"Adamec","email":"aadamecb@ask.com","phone":"728-535-2654","gender":"Male","department":"Marketing","address":"7 Prentice Point","hire_date":"6/28/2018","website":"https://epa.gov","notes":"mauris vulputate elementum nullam varius nulla facilisi cras non velit nec nisi","status":4,"type":1,"salary":"$256.18"}, {"id":13,"employee_id":"302125353-9","first_name":"Saidee","last_name":"Christol","email":"schristolc@reverbnation.com","phone":"575-573-3469","gender":"Female","department":"Sales","address":"753 Moose Road","hire_date":"1/9/2018","website":"https://soup.io","notes":"erat fermentum justo nec condimentum neque sapien placerat ante nulla","status":1,"type":1,"salary":"$1888.02"}, {"id":14,"employee_id":"264870457-4","first_name":"Merna","last_name":"Studman","email":"mstudmand@bloomberg.com","phone":"301-593-9922","gender":"Female","department":"Sales","address":"32617 Merchant Park","hire_date":"12/14/2017","website":"https://dyndns.org","notes":"risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis","status":2,"type":1,"salary":"$525.89"}, {"id":15,"employee_id":"458961353-0","first_name":"Carey","last_name":"De Paepe","email":"cdepaepee@vistaprint.com","phone":"437-166-5682","gender":"Male","department":"Business Development","address":"57299 Hintze Terrace","hire_date":"3/5/2018","website":"https://ed.gov","notes":"etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut","status":4,"type":3,"salary":"$380.12"}, {"id":16,"employee_id":"668397107-2","first_name":"Elana","last_name":"Fontel","email":"efontelf@ox.ac.uk","phone":"295-591-0290","gender":"Female","department":"Legal","address":"6 Lyons Alley","hire_date":"2/23/2018","website":"http://amazon.co.uk","notes":"in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis","status":1,"type":2,"salary":"$557.74"}, {"id":17,"employee_id":"633477701-7","first_name":"Martyn","last_name":"Palethorpe","email":"mpalethorpeg@hhs.gov","phone":"602-830-1929","gender":"Male","department":"Human Resources","address":"82 Johnson Trail","hire_date":"6/11/2018","website":"http://domainmarket.com","notes":"metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque","status":4,"type":3,"salary":"$692.98"}, {"id":18,"employee_id":"649247266-7","first_name":"Banky","last_name":"Scrafton","email":"bscraftonh@rakuten.co.jp","phone":"582-430-5651","gender":"Male","department":"Business Development","address":"9931 Charing Cross Road","hire_date":"10/8/2017","website":"http://com.com","notes":"morbi odio odio elementum eu interdum eu tincidunt in leo","status":3,"type":2,"salary":"$2251.69"}, {"id":19,"employee_id":"353134888-4","first_name":"Carl","last_name":"Cartlidge","email":"ccartlidgei@topsy.com","phone":"788-594-5978","gender":"Male","department":"Support","address":"01023 Loftsgordon Court","hire_date":"6/10/2018","website":"https://w3.org","notes":"montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis","status":5,"type":2,"salary":"$1098.95"}, {"id":20,"employee_id":"217229894-8","first_name":"Cecil","last_name":"Dovidaitis","email":"cdovidaitisj@friendfeed.com","phone":"871-276-5383","gender":"Male","department":"Accounting","address":"47936 Park Meadow Place","hire_date":"10/19/2017","website":"http://archive.org","notes":"interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien","status":5,"type":1,"salary":"$2023.29"}, {"id":21,"employee_id":"502127380-9","first_name":"Charlene","last_name":"Pulsford","email":"cpulsfordk@google.es","phone":"334-897-8875","gender":"Female","department":"Support","address":"0622 Ronald Regan Junction","hire_date":"5/1/2018","website":"http://forbes.com","notes":"ipsum dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit","status":5,"type":1,"salary":"$2125.68"}, {"id":22,"employee_id":"954387630-4","first_name":"Agnes","last_name":"Eslinger","email":"aeslingerl@ucsd.edu","phone":"127-200-2804","gender":"Female","department":"Engineering","address":"1372 John Wall Terrace","hire_date":"1/6/2018","website":"http://pagesperso-orange.fr","notes":"diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus","status":1,"type":3,"salary":"$429.41"}, {"id":23,"employee_id":"332655163-0","first_name":"Felic","last_name":"Mathiasen","email":"fmathiasenm@pagesperso-orange.fr","phone":"563-844-1190","gender":"Male","department":"Business Development","address":"9416 Little Fleur Pass","hire_date":"10/21/2017","website":"http://feedburner.com","notes":"fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam","status":1,"type":3,"salary":"$1501.00"}, {"id":24,"employee_id":"281704570-X","first_name":"Stephani","last_name":"Rowell","email":"srowelln@ucla.edu","phone":"159-771-9442","gender":"Female","department":"Training","address":"10 Aberg Circle","hire_date":"2/13/2018","website":"http://nydailynews.com","notes":"vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin","status":2,"type":2,"salary":"$637.61"}, {"id":25,"employee_id":"757531800-3","first_name":"Jackson","last_name":"Kettlestring","email":"jkettlestringo@prnewswire.com","phone":"411-365-5414","gender":"Male","department":"Marketing","address":"0 Dorton Plaza","hire_date":"12/15/2017","website":"http://fda.gov","notes":"purus phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat","status":5,"type":3,"salary":"$1777.79"}, {"id":26,"employee_id":"687935758-X","first_name":"Marius","last_name":"Bembrick","email":"mbembrickp@jigsy.com","phone":"386-209-3865","gender":"Male","department":"Research and Development","address":"6 Nancy Plaza","hire_date":"9/4/2017","website":"https://apple.com","notes":"orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat","status":1,"type":1,"salary":"$508.32"}, {"id":27,"employee_id":"676433511-7","first_name":"Darnell","last_name":"Edes","email":"dedesq@surveymonkey.com","phone":"500-702-1594","gender":"Male","department":"Support","address":"373 Maryland Drive","hire_date":"12/10/2017","website":"http://walmart.com","notes":"euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc","status":6,"type":3,"salary":"$2139.18"}, {"id":28,"employee_id":"336040872-1","first_name":"Margaux","last_name":"O\'Feeny","email":"mofeenyr@amazon.co.jp","phone":"114-808-0574","gender":"Female","department":"Support","address":"59849 Packers Point","hire_date":"9/21/2017","website":"http://tmall.com","notes":"at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem","status":1,"type":3,"salary":"$909.79"}, {"id":29,"employee_id":"736038403-6","first_name":"Ly","last_name":"Blaszkiewicz","email":"lblaszkiewiczs@live.com","phone":"193-583-6061","gender":"Male","department":"Research and Development","address":"8 Prentice Place","hire_date":"6/18/2018","website":"https://prweb.com","notes":"purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in","status":5,"type":1,"salary":"$1789.96"}, {"id":30,"employee_id":"599372101-4","first_name":"Dayle","last_name":"Rablin","email":"drablint@jugem.jp","phone":"639-124-8424","gender":"Female","department":"Services","address":"35 Kenwood Point","hire_date":"6/30/2018","website":"https://csmonitor.com","notes":"vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante","status":3,"type":1,"salary":"$1594.26"}, {"id":31,"employee_id":"306503794-7","first_name":"Jaquenette","last_name":"Laurence","email":"jlaurenceu@topsy.com","phone":"809-291-9012","gender":"Female","department":"Product Management","address":"1 Holy Cross Circle","hire_date":"5/15/2018","website":"http://cornell.edu","notes":"turpis a pede posuere nonummy integer non velit donec diam neque vestibulum","status":3,"type":1,"salary":"$541.85"}, {"id":32,"employee_id":"708872496-0","first_name":"Bryn","last_name":"Gaukrodge","email":"bgaukrodgev@1688.com","phone":"197-490-4415","gender":"Male","department":"Product Management","address":"88036 Springs Center","hire_date":"3/12/2018","website":"https://bing.com","notes":"lectus pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque","status":3,"type":3,"salary":"$1433.56"}, {"id":33,"employee_id":"820772036-0","first_name":"Quintina","last_name":"Tromans","email":"qtromansw@t.co","phone":"150-592-4259","gender":"Female","department":"Business Development","address":"503 Grim Junction","hire_date":"1/30/2018","website":"https://dagondesign.com","notes":"nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti","status":4,"type":2,"salary":"$1763.79"}, {"id":34,"employee_id":"306191423-4","first_name":"North","last_name":"Linforth","email":"nlinforthx@devhub.com","phone":"311-987-2066","gender":"Male","department":"Human Resources","address":"46 Spenser Drive","hire_date":"6/16/2018","website":"https://delicious.com","notes":"mi sit amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec","status":6,"type":3,"salary":"$1598.27"}, {"id":35,"employee_id":"896478886-9","first_name":"Abbie","last_name":"Clampe","email":"aclampey@ameblo.jp","phone":"829-922-0897","gender":"Female","department":"Services","address":"0 Alpine Pass","hire_date":"10/31/2017","website":"http://nationalgeographic.com","notes":"sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est","status":3,"type":2,"salary":"$918.46"}, {"id":36,"employee_id":"345166971-4","first_name":"Ivonne","last_name":"Benstead","email":"ibensteadz@ftc.gov","phone":"239-904-6612","gender":"Female","department":"Human Resources","address":"32 Utah Avenue","hire_date":"3/27/2018","website":"http://sitemeter.com","notes":"curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend","status":6,"type":3,"salary":"$939.94"}, {"id":37,"employee_id":"271776454-2","first_name":"Brennen","last_name":"Duplain","email":"bduplain10@paginegialle.it","phone":"847-233-6429","gender":"Male","department":"Support","address":"64832 Sutherland Avenue","hire_date":"10/25/2017","website":"http://goo.gl","notes":"donec posuere metus vitae ipsum aliquam non mauris morbi non","status":1,"type":2,"salary":"$2153.00"}, {"id":38,"employee_id":"159362791-2","first_name":"Floris","last_name":"Rowntree","email":"frowntree11@goodreads.com","phone":"145-701-7289","gender":"Female","department":"Human Resources","address":"1 Prairieview Terrace","hire_date":"1/22/2018","website":"https://wordpress.com","notes":"sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat","status":1,"type":2,"salary":"$1469.21"}, {"id":39,"employee_id":"591823535-3","first_name":"Arlette","last_name":"Neumann","email":"aneumann12@google.it","phone":"626-427-8715","gender":"Female","department":"Legal","address":"5 Comanche Terrace","hire_date":"9/15/2017","website":"https://drupal.org","notes":"cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum","status":3,"type":1,"salary":"$2285.73"}, {"id":40,"employee_id":"760095255-6","first_name":"Jasper","last_name":"Blennerhassett","email":"jblennerhassett13@ovh.net","phone":"493-589-6952","gender":"Male","department":"Services","address":"48770 Hansons Center","hire_date":"6/3/2018","website":"http://imdb.com","notes":"integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna","status":3,"type":3,"salary":"$1261.12"}, {"id":41,"employee_id":"293876593-2","first_name":"Daniela","last_name":"Cauley","email":"dcauley14@si.edu","phone":"913-991-1546","gender":"Female","department":"Training","address":"327 Waubesa Pass","hire_date":"2/13/2018","website":"https://techcrunch.com","notes":"accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a","status":5,"type":3,"salary":"$1354.71"}, {"id":42,"employee_id":"754195998-7","first_name":"Allsun","last_name":"Cosin","email":"acosin15@seattletimes.com","phone":"890-332-0597","gender":"Female","department":"Business Development","address":"19242 Forest Dale Avenue","hire_date":"10/8/2017","website":"http://yellowbook.com","notes":"eu mi nulla ac enim in tempor turpis nec euismod scelerisque quam turpis","status":1,"type":1,"salary":"$463.81"}, {"id":43,"employee_id":"874856299-8","first_name":"Shalne","last_name":"Abramow","email":"sabramow16@1688.com","phone":"859-996-2703","gender":"Female","department":"Support","address":"678 Cardinal Trail","hire_date":"10/22/2017","website":"http://meetup.com","notes":"mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis","status":3,"type":3,"salary":"$2143.95"}, {"id":44,"employee_id":"274796603-8","first_name":"Britt","last_name":"Brameld","email":"bbrameld17@wiley.com","phone":"844-159-2313","gender":"Female","department":"Business Development","address":"01741 Truax Way","hire_date":"7/12/2018","website":"https://digg.com","notes":"a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id","status":2,"type":1,"salary":"$2400.44"}, {"id":45,"employee_id":"383491864-4","first_name":"Tammy","last_name":"Cordrey","email":"tcordrey18@photobucket.com","phone":"609-503-1223","gender":"Male","department":"Training","address":"3 Leroy Junction","hire_date":"8/6/2017","website":"https://aol.com","notes":"sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus","status":5,"type":2,"salary":"$1838.70"}, {"id":46,"employee_id":"981710394-3","first_name":"Vanya","last_name":"Stygall","email":"vstygall19@comsenz.com","phone":"347-830-1157","gender":"Female","department":"Sales","address":"49 Twin Pines Alley","hire_date":"2/23/2018","website":"https://istockphoto.com","notes":"quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus","status":4,"type":1,"salary":"$1612.69"}, {"id":47,"employee_id":"859972565-3","first_name":"Ilene","last_name":"Longden","email":"ilongden1a@seesaa.net","phone":"367-599-8104","gender":"Female","department":"Research and Development","address":"3317 Chinook Drive","hire_date":"4/16/2018","website":"http://time.com","notes":"condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo","status":3,"type":3,"salary":"$377.64"}, {"id":48,"employee_id":"969985171-6","first_name":"Chrysler","last_name":"Havick","email":"chavick1b@reference.com","phone":"878-108-5011","gender":"Female","department":"Accounting","address":"0 Buena Vista Crossing","hire_date":"11/18/2017","website":"https://weather.com","notes":"odio cras mi pede malesuada in imperdiet et commodo vulputate justo in","status":1,"type":3,"salary":"$778.85"}, {"id":49,"employee_id":"216013804-5","first_name":"Fifine","last_name":"Haggus","email":"fhaggus1c@oaic.gov.au","phone":"633-912-8346","gender":"Female","department":"Research and Development","address":"520 Tomscot Avenue","hire_date":"6/18/2018","website":"https://mozilla.org","notes":"vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in","status":5,"type":1,"salary":"$635.37"}, {"id":50,"employee_id":"966655811-4","first_name":"Ali","last_name":"Chue","email":"achue1d@vkontakte.ru","phone":"605-172-0203","gender":"Male","department":"Business Development","address":"0 Lyons Pass","hire_date":"8/2/2017","website":"http://springer.com","notes":"volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet erat","status":4,"type":2,"salary":"$2110.01"}, {"id":51,"employee_id":"861821671-2","first_name":"Celene","last_name":"Ledes","email":"cledes1e@opera.com","phone":"271-211-2956","gender":"Female","department":"Services","address":"9 Manley Terrace","hire_date":"4/27/2018","website":"http://4shared.com","notes":"libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum","status":3,"type":2,"salary":"$996.88"}, {"id":52,"employee_id":"416647881-8","first_name":"Luciano","last_name":"Lighterness","email":"llighterness1f@bizjournals.com","phone":"808-427-6621","gender":"Male","department":"Sales","address":"1 Bluejay Plaza","hire_date":"1/30/2018","website":"http://hud.gov","notes":"sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi","status":4,"type":2,"salary":"$2194.47"}, {"id":53,"employee_id":"716498565-0","first_name":"Oren","last_name":"Rixon","email":"orixon1g@paypal.com","phone":"640-688-8978","gender":"Male","department":"Research and Development","address":"03588 Randy Circle","hire_date":"12/16/2017","website":"http://tripod.com","notes":"sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis","status":4,"type":1,"salary":"$1590.74"}, {"id":54,"employee_id":"846826707-4","first_name":"Pearce","last_name":"Stark","email":"pstark1h@vk.com","phone":"724-173-2759","gender":"Male","department":"Marketing","address":"9134 Del Mar Alley","hire_date":"6/6/2018","website":"http://wp.com","notes":"fermentum donec ut mauris eget massa tempor convallis nulla neque libero convallis eget","status":1,"type":3,"salary":"$369.47"}, {"id":55,"employee_id":"817466406-8","first_name":"Paco","last_name":"Halden","email":"phalden1i@cbsnews.com","phone":"142-137-8107","gender":"Male","department":"Training","address":"9 Pennsylvania Place","hire_date":"3/31/2018","website":"http://gov.uk","notes":"ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla","status":6,"type":3,"salary":"$644.30"}, {"id":56,"employee_id":"486286979-3","first_name":"Merissa","last_name":"Tindle","email":"mtindle1j@sina.com.cn","phone":"645-520-7142","gender":"Female","department":"Sales","address":"672 Onsgard Way","hire_date":"4/4/2018","website":"http://oracle.com","notes":"id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras","status":5,"type":2,"salary":"$1821.01"}, {"id":57,"employee_id":"165434032-4","first_name":"Montague","last_name":"Coventon","email":"mcoventon1k@sbwire.com","phone":"933-259-7571","gender":"Male","department":"Training","address":"8 Lakeland Court","hire_date":"8/14/2017","website":"https://geocities.com","notes":"ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac","status":5,"type":3,"salary":"$1533.95"}, {"id":58,"employee_id":"154965026-2","first_name":"Kristel","last_name":"La Croce","email":"klacroce1l@noaa.gov","phone":"405-768-8955","gender":"Female","department":"Services","address":"630 Marcy Drive","hire_date":"10/17/2017","website":"http://ucsd.edu","notes":"vivamus in felis eu sapien cursus vestibulum proin eu mi nulla","status":6,"type":1,"salary":"$572.43"}, {"id":59,"employee_id":"531973169-8","first_name":"Felecia","last_name":"Aishford","email":"faishford1m@surveymonkey.com","phone":"308-335-5646","gender":"Female","department":"Marketing","address":"4169 Spenser Lane","hire_date":"1/14/2018","website":"https://accuweather.com","notes":"vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula","status":2,"type":2,"salary":"$535.61"}, {"id":60,"employee_id":"398015522-6","first_name":"Gabbey","last_name":"Faunch","email":"gfaunch1n@lulu.com","phone":"312-420-7864","gender":"Female","department":"Marketing","address":"66 Del Sol Crossing","hire_date":"10/12/2017","website":"https://tinypic.com","notes":"vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec","status":5,"type":3,"salary":"$454.67"}, {"id":61,"employee_id":"811193945-0","first_name":"Kiah","last_name":"MacGragh","email":"kmacgragh1o@nih.gov","phone":"585-387-4897","gender":"Female","department":"Accounting","address":"0082 8th Street","hire_date":"10/21/2017","website":"http://unblog.fr","notes":"turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a","status":3,"type":1,"salary":"$1998.31"}, {"id":62,"employee_id":"768660578-7","first_name":"Mireielle","last_name":"Danilishin","email":"mdanilishin1p@go.com","phone":"772-806-1933","gender":"Female","department":"Support","address":"9475 Transport Pass","hire_date":"8/12/2017","website":"https://i2i.jp","notes":"elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit","status":1,"type":3,"salary":"$332.09"}, {"id":63,"employee_id":"087657628-5","first_name":"Kaitlin","last_name":"Slowley","email":"kslowley1q@etsy.com","phone":"857-196-0908","gender":"Female","department":"Product Management","address":"136 Harbort Way","hire_date":"6/28/2018","website":"https://umn.edu","notes":"eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum","status":6,"type":2,"salary":"$2008.41"}, {"id":64,"employee_id":"247247211-0","first_name":"Ellissa","last_name":"Bench","email":"ebench1r@issuu.com","phone":"770-716-1929","gender":"Female","department":"Support","address":"07536 Atwood Street","hire_date":"1/17/2018","website":"https://goo.gl","notes":"egestas metus aenean fermentum donec ut mauris eget massa tempor convallis nulla","status":3,"type":1,"salary":"$662.94"}, {"id":65,"employee_id":"229767685-9","first_name":"Renato","last_name":"Loftie","email":"rloftie1s@photobucket.com","phone":"806-232-0956","gender":"Male","department":"Legal","address":"49603 Hanover Drive","hire_date":"9/4/2017","website":"https://apache.org","notes":"nunc proin at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel","status":5,"type":1,"salary":"$315.88"}, {"id":66,"employee_id":"303250444-9","first_name":"Eamon","last_name":"Chater","email":"echater1t@github.io","phone":"843-377-6351","gender":"Male","department":"Support","address":"1 Gina Lane","hire_date":"6/27/2018","website":"https://bravesites.com","notes":"id luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat","status":6,"type":2,"salary":"$575.88"}, {"id":67,"employee_id":"118110309-6","first_name":"Jeramey","last_name":"Guye","email":"jguye1u@bloglines.com","phone":"966-388-3378","gender":"Male","department":"Research and Development","address":"7141 Forest Dale Plaza","hire_date":"5/13/2018","website":"http://blogspot.com","notes":"habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur","status":4,"type":1,"salary":"$883.94"}, {"id":68,"employee_id":"604717575-9","first_name":"Ermentrude","last_name":"Caygill","email":"ecaygill1v@posterous.com","phone":"325-412-1846","gender":"Female","department":"Research and Development","address":"8 Vahlen Road","hire_date":"8/23/2017","website":"http://pinterest.com","notes":"vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci","status":4,"type":2,"salary":"$1261.05"}, {"id":69,"employee_id":"354395696-5","first_name":"Tyler","last_name":"Bearward","email":"tbearward1w@stanford.edu","phone":"264-480-4084","gender":"Male","department":"Engineering","address":"0 Oakridge Pass","hire_date":"9/23/2017","website":"http://toplist.cz","notes":"tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra","status":2,"type":2,"salary":"$1916.86"}, {"id":70,"employee_id":"448117293-2","first_name":"Cordelia","last_name":"Dod","email":"cdod1x@google.nl","phone":"904-991-9112","gender":"Female","department":"Services","address":"1 Oak Trail","hire_date":"5/19/2018","website":"http://nifty.com","notes":"at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget orci","status":2,"type":1,"salary":"$728.99"}, {"id":71,"employee_id":"078622063-5","first_name":"Jud","last_name":"Hugonnet","email":"jhugonnet1y@bravesites.com","phone":"793-605-5368","gender":"Male","department":"Human Resources","address":"2 Blue Bill Park Crossing","hire_date":"3/5/2018","website":"http://theatlantic.com","notes":"rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus","status":4,"type":3,"salary":"$1122.09"}, {"id":72,"employee_id":"177821412-6","first_name":"Bliss","last_name":"Wormell","email":"bwormell1z@google.es","phone":"923-926-7137","gender":"Female","department":"Services","address":"97487 Vernon Way","hire_date":"2/9/2018","website":"https://slashdot.org","notes":"turpis a pede posuere nonummy integer non velit donec diam neque vestibulum","status":6,"type":3,"salary":"$1325.37"}, {"id":73,"employee_id":"167412899-1","first_name":"Pennie","last_name":"Miles","email":"pmiles20@wikipedia.org","phone":"402-175-4814","gender":"Female","department":"Accounting","address":"25 Calypso Street","hire_date":"8/25/2017","website":"https://networkadvertising.org","notes":"orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet","status":3,"type":1,"salary":"$1857.52"}, {"id":74,"employee_id":"766232726-4","first_name":"Alethea","last_name":"Kubis","email":"akubis21@nytimes.com","phone":"195-533-0554","gender":"Female","department":"Research and Development","address":"7 Badeau Junction","hire_date":"12/20/2017","website":"https://columbia.edu","notes":"congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu","status":2,"type":1,"salary":"$1731.13"}, {"id":75,"employee_id":"148106817-2","first_name":"Niven","last_name":"Leckey","email":"nleckey22@rediff.com","phone":"419-694-8836","gender":"Male","department":"Research and Development","address":"41429 Texas Pass","hire_date":"8/22/2017","website":"https://chron.com","notes":"maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat","status":2,"type":3,"salary":"$835.59"}, {"id":76,"employee_id":"218188716-0","first_name":"Gav","last_name":"Denkin","email":"gdenkin23@phoca.cz","phone":"109-349-2084","gender":"Male","department":"Product Management","address":"866 Vermont Parkway","hire_date":"12/27/2017","website":"https://nytimes.com","notes":"eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris","status":1,"type":1,"salary":"$2271.20"}, {"id":77,"employee_id":"949856193-1","first_name":"Haroun","last_name":"McDermott","email":"hmcdermott24@gnu.org","phone":"650-332-8136","gender":"Male","department":"Legal","address":"18 Farragut Junction","hire_date":"1/12/2018","website":"https://techcrunch.com","notes":"orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet","status":3,"type":1,"salary":"$555.57"}, {"id":78,"employee_id":"816956055-1","first_name":"Enrico","last_name":"Marzelli","email":"emarzelli25@elegantthemes.com","phone":"931-285-9268","gender":"Male","department":"Services","address":"8 Stephen Center","hire_date":"7/16/2018","website":"https://cyberchimps.com","notes":"dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc","status":2,"type":2,"salary":"$820.63"}, {"id":79,"employee_id":"135814107-X","first_name":"Shermy","last_name":"Tersay","email":"stersay26@scientificamerican.com","phone":"459-559-9053","gender":"Male","department":"Engineering","address":"280 Muir Trail","hire_date":"8/31/2017","website":"https://facebook.com","notes":"sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus","status":3,"type":1,"salary":"$314.22"}, {"id":80,"employee_id":"214238400-5","first_name":"Kimberley","last_name":"Slorach","email":"kslorach27@ovh.net","phone":"408-346-4135","gender":"Female","department":"Legal","address":"33408 Dryden Center","hire_date":"4/18/2018","website":"https://live.com","notes":"congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus","status":2,"type":3,"salary":"$1960.21"}, {"id":81,"employee_id":"364281767-X","first_name":"Shirlee","last_name":"Heugel","email":"sheugel28@jiathis.com","phone":"823-228-8386","gender":"Female","department":"Research and Development","address":"4825 Autumn Leaf Junction","hire_date":"7/26/2017","website":"http://goodreads.com","notes":"est lacinia nisi venenatis tristique fusce congue diam id ornare","status":6,"type":1,"salary":"$1122.94"}, {"id":82,"employee_id":"197212989-9","first_name":"Lazar","last_name":"Fryatt","email":"lfryatt29@smugmug.com","phone":"529-726-0197","gender":"Male","department":"Business Development","address":"7434 Stephen Park","hire_date":"5/5/2018","website":"http://businessinsider.com","notes":"risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante","status":2,"type":2,"salary":"$1950.44"}, {"id":83,"employee_id":"184011545-9","first_name":"Ainslie","last_name":"Dobbings","email":"adobbings2a@newsvine.com","phone":"543-769-3230","gender":"Female","department":"Accounting","address":"9670 Parkside Way","hire_date":"5/18/2018","website":"https://seattletimes.com","notes":"facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla","status":5,"type":3,"salary":"$1025.26"}, {"id":84,"employee_id":"550071613-1","first_name":"Nola","last_name":"Dolder","email":"ndolder2b@nationalgeographic.com","phone":"660-563-6589","gender":"Female","department":"Sales","address":"41 Harper Trail","hire_date":"11/7/2017","website":"http://intel.com","notes":"donec quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat","status":4,"type":3,"salary":"$658.49"}, {"id":85,"employee_id":"549482172-2","first_name":"Stacy","last_name":"Flanaghan","email":"sflanaghan2c@prlog.org","phone":"803-731-1786","gender":"Female","department":"Sales","address":"9884 Carberry Terrace","hire_date":"3/30/2018","website":"https://dropbox.com","notes":"sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum","status":2,"type":3,"salary":"$2020.80"}, {"id":86,"employee_id":"367901888-6","first_name":"Uri","last_name":"Langdridge","email":"ulangdridge2d@sciencedaily.com","phone":"514-481-8237","gender":"Male","department":"Research and Development","address":"1873 Sunnyside Circle","hire_date":"3/25/2018","website":"https://hubpages.com","notes":"vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan","status":6,"type":3,"salary":"$369.40"}, {"id":87,"employee_id":"131679327-3","first_name":"Magdalena","last_name":"Rivelin","email":"mrivelin2e@123-reg.co.uk","phone":"475-989-2264","gender":"Female","department":"Engineering","address":"11 Pleasure Terrace","hire_date":"7/26/2017","website":"https://photobucket.com","notes":"justo eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse","status":1,"type":3,"salary":"$802.14"}, {"id":88,"employee_id":"962685709-9","first_name":"Seana","last_name":"Lackeye","email":"slackeye2f@w3.org","phone":"870-403-9921","gender":"Female","department":"Engineering","address":"1688 Northland Lane","hire_date":"7/8/2018","website":"https://topsy.com","notes":"turpis a pede posuere nonummy integer non velit donec diam neque vestibulum","status":3,"type":3,"salary":"$639.17"}, {"id":89,"employee_id":"031798299-0","first_name":"Marshal","last_name":"Kelf","email":"mkelf2g@vkontakte.ru","phone":"680-707-7861","gender":"Male","department":"Accounting","address":"87835 Kropf Circle","hire_date":"1/21/2018","website":"https://mit.edu","notes":"nulla quisque arcu libero rutrum ac lobortis vel dapibus at","status":1,"type":1,"salary":"$1644.11"}, {"id":90,"employee_id":"666187814-2","first_name":"Olag","last_name":"Suffield","email":"osuffield2h@topsy.com","phone":"920-122-4995","gender":"Male","department":"Human Resources","address":"00792 Buhler Place","hire_date":"5/5/2018","website":"https://hubpages.com","notes":"sed tincidunt eu felis fusce posuere felis sed lacus morbi","status":3,"type":1,"salary":"$1405.49"}, {"id":91,"employee_id":"972507663-X","first_name":"Andy","last_name":"Elgram","email":"aelgram2i@utexas.edu","phone":"198-157-8848","gender":"Female","department":"Support","address":"42 Garrison Point","hire_date":"10/1/2017","website":"http://mapy.cz","notes":"nam dui proin leo odio porttitor id consequat in consequat ut nulla sed accumsan felis","status":5,"type":2,"salary":"$684.75"}, {"id":92,"employee_id":"950510229-1","first_name":"Lennard","last_name":"Amberson","email":"lamberson2j@artisteer.com","phone":"611-164-2821","gender":"Male","department":"Engineering","address":"5985 Merry Drive","hire_date":"10/7/2017","website":"http://mysql.com","notes":"donec posuere metus vitae ipsum aliquam non mauris morbi non","status":2,"type":1,"salary":"$1537.93"}, {"id":93,"employee_id":"391601599-0","first_name":"Lucina","last_name":"Sinclaire","email":"lsinclaire2k@sitemeter.com","phone":"900-419-3471","gender":"Female","department":"Research and Development","address":"1 Mallard Court","hire_date":"12/19/2017","website":"http://woothemes.com","notes":"curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non","status":4,"type":2,"salary":"$1682.97"}, {"id":94,"employee_id":"780789784-8","first_name":"Zilvia","last_name":"Hessing","email":"zhessing2l@ca.gov","phone":"786-487-2292","gender":"Female","department":"Training","address":"8 Hanover Trail","hire_date":"4/11/2018","website":"http://hhs.gov","notes":"in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam","status":2,"type":1,"salary":"$1264.21"}, {"id":95,"employee_id":"154091500-X","first_name":"Randie","last_name":"Duplan","email":"rduplan2m@ox.ac.uk","phone":"254-881-3750","gender":"Female","department":"Human Resources","address":"7 Gerald Alley","hire_date":"1/27/2018","website":"https://slideshare.net","notes":"ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a","status":4,"type":3,"salary":"$1338.17"}, {"id":96,"employee_id":"269765014-8","first_name":"Rose","last_name":"Luter","email":"rluter2n@marketplace.net","phone":"960-532-6752","gender":"Female","department":"Research and Development","address":"99 Tony Drive","hire_date":"8/19/2017","website":"https://marriott.com","notes":"sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi","status":1,"type":1,"salary":"$1901.64"}, {"id":97,"employee_id":"985484449-8","first_name":"Carmencita","last_name":"Burdis","email":"cburdis2o@comcast.net","phone":"636-450-6253","gender":"Female","department":"Product Management","address":"976 Fieldstone Terrace","hire_date":"3/2/2018","website":"https://google.ru","notes":"amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus","status":3,"type":3,"salary":"$1799.42"}, {"id":98,"employee_id":"803354276-4","first_name":"Martguerita","last_name":"Buckerfield","email":"mbuckerfield2p@businessinsider.com","phone":"994-400-4021","gender":"Female","department":"Research and Development","address":"92 Ridge Oak Terrace","hire_date":"6/13/2018","website":"http://wordpress.org","notes":"sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum","status":1,"type":1,"salary":"$677.13"}, {"id":99,"employee_id":"326728049-4","first_name":"Lorene","last_name":"Biffen","email":"lbiffen2q@bbb.org","phone":"638-745-7652","gender":"Female","department":"Support","address":"46 Alpine Road","hire_date":"3/29/2018","website":"http://ucoz.ru","notes":"integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus","status":2,"type":3,"salary":"$899.25"}, {"id":100,"employee_id":"607725913-6","first_name":"Magdaia","last_name":"Nickels","email":"mnickels2r@edublogs.org","phone":"546-128-7946","gender":"Female","department":"Services","address":"0 Schiller Pass","hire_date":"3/27/2018","website":"http://networksolutions.com","notes":"scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis","status":6,"type":3,"salary":"$1578.12"}, {"id":101,"employee_id":"972393712-3","first_name":"Deloria","last_name":"Bamfield","email":"dbamfield2s@nbcnews.com","phone":"470-379-7670","gender":"Female","department":"Accounting","address":"8 Sundown Way","hire_date":"12/20/2017","website":"https://multiply.com","notes":"diam in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu","status":1,"type":2,"salary":"$1657.96"}, {"id":102,"employee_id":"885692265-7","first_name":"Aime","last_name":"Wiggins","email":"awiggins2t@de.vu","phone":"517-672-9432","gender":"Female","department":"Legal","address":"687 Oak Trail","hire_date":"8/12/2017","website":"http://alibaba.com","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae","status":5,"type":3,"salary":"$595.54"}, {"id":103,"employee_id":"261177042-5","first_name":"Luz","last_name":"Leuren","email":"lleuren2u@php.net","phone":"944-752-0631","gender":"Female","department":"Sales","address":"870 Holmberg Terrace","hire_date":"1/2/2018","website":"https://un.org","notes":"fermentum donec ut mauris eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque","status":1,"type":1,"salary":"$1431.61"}, {"id":104,"employee_id":"705056567-9","first_name":"Herminia","last_name":"Vint","email":"hvint2v@addthis.com","phone":"215-746-1315","gender":"Female","department":"Product Management","address":"2 Jay Point","hire_date":"8/21/2017","website":"http://macromedia.com","notes":"faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam","status":5,"type":1,"salary":"$925.04"}, {"id":105,"employee_id":"499919735-9","first_name":"Julita","last_name":"Durie","email":"jdurie2w@guardian.co.uk","phone":"476-162-6690","gender":"Female","department":"Engineering","address":"63 Arapahoe Street","hire_date":"5/19/2018","website":"http://istockphoto.com","notes":"sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus","status":5,"type":3,"salary":"$983.78"}, {"id":106,"employee_id":"513095556-0","first_name":"Saleem","last_name":"Montel","email":"smontel2x@people.com.cn","phone":"228-261-6358","gender":"Male","department":"Training","address":"86472 Commercial Hill","hire_date":"3/4/2018","website":"https://hp.com","notes":"neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio","status":2,"type":2,"salary":"$280.05"}, {"id":107,"employee_id":"510722692-2","first_name":"Jecho","last_name":"Grayshon","email":"jgrayshon2y@loc.gov","phone":"698-125-3058","gender":"Male","department":"Engineering","address":"4 Norway Maple Pass","hire_date":"5/23/2018","website":"https://wordpress.com","notes":"quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi","status":2,"type":1,"salary":"$765.18"}, {"id":108,"employee_id":"950399045-9","first_name":"Joaquin","last_name":"Drakeford","email":"jdrakeford2z@census.gov","phone":"394-664-8952","gender":"Male","department":"Sales","address":"2885 Banding Street","hire_date":"9/16/2017","website":"https://indiatimes.com","notes":"integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem","status":4,"type":1,"salary":"$1887.22"}, {"id":109,"employee_id":"128592509-2","first_name":"Alvina","last_name":"Robiou","email":"arobiou30@meetup.com","phone":"276-927-2841","gender":"Female","department":"Services","address":"3709 Sunfield Alley","hire_date":"7/30/2017","website":"https://state.tx.us","notes":"non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra","status":5,"type":3,"salary":"$2197.02"}, {"id":110,"employee_id":"641762765-9","first_name":"Kimberly","last_name":"Blewmen","email":"kblewmen31@xrea.com","phone":"993-555-5822","gender":"Female","department":"Support","address":"841 Spenser Trail","hire_date":"3/11/2018","website":"http://economist.com","notes":"et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere","status":4,"type":3,"salary":"$1403.80"}, {"id":111,"employee_id":"743230811-X","first_name":"Germain","last_name":"Liddell","email":"gliddell32@usda.gov","phone":"210-527-0995","gender":"Male","department":"Business Development","address":"273 Gale Hill","hire_date":"3/12/2018","website":"https://netscape.com","notes":"ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis","status":4,"type":2,"salary":"$1841.60"}, {"id":112,"employee_id":"280357534-5","first_name":"Wittie","last_name":"Crothers","email":"wcrothers33@bbc.co.uk","phone":"595-268-1541","gender":"Male","department":"Accounting","address":"0615 8th Hill","hire_date":"8/29/2017","website":"https://issuu.com","notes":"quam a odio in hac habitasse platea dictumst maecenas ut massa","status":6,"type":3,"salary":"$2349.82"}, {"id":113,"employee_id":"297744337-1","first_name":"Ruth","last_name":"Moxon","email":"rmoxon34@blog.com","phone":"311-809-6177","gender":"Female","department":"Support","address":"71749 Esker Crossing","hire_date":"9/8/2017","website":"https://tiny.cc","notes":"nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta","status":1,"type":1,"salary":"$2469.12"}, {"id":114,"employee_id":"627965147-9","first_name":"Shaw","last_name":"Jeafferson","email":"sjeafferson35@dedecms.com","phone":"402-419-6081","gender":"Male","department":"Training","address":"28 Kropf Lane","hire_date":"9/16/2017","website":"https://amazon.co.jp","notes":"urna ut tellus nulla ut erat id mauris vulputate elementum nullam","status":2,"type":1,"salary":"$725.96"}, {"id":115,"employee_id":"200221976-1","first_name":"Stern","last_name":"Newbery","email":"snewbery36@berkeley.edu","phone":"592-100-2732","gender":"Male","department":"Product Management","address":"64762 Luster Street","hire_date":"3/7/2018","website":"http://simplemachines.org","notes":"ipsum dolor sit amet consectetuer adipiscing elit proin risus praesent lectus","status":1,"type":2,"salary":"$2391.21"}, {"id":116,"employee_id":"683010400-9","first_name":"Jeffry","last_name":"Chessil","email":"jchessil37@sogou.com","phone":"350-222-1842","gender":"Male","department":"Human Resources","address":"499 Nelson Lane","hire_date":"8/24/2017","website":"https://marketwatch.com","notes":"sapien placerat ante nulla justo aliquam quis turpis eget elit","status":5,"type":2,"salary":"$1186.46"}, {"id":117,"employee_id":"492536862-1","first_name":"Darla","last_name":"Letson","email":"dletson38@squarespace.com","phone":"576-354-3003","gender":"Female","department":"Product Management","address":"5237 Division Plaza","hire_date":"10/2/2017","website":"http://networkadvertising.org","notes":"suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris","status":1,"type":2,"salary":"$771.69"}, {"id":118,"employee_id":"471683625-8","first_name":"Gavra","last_name":"Backhurst","email":"gbackhurst39@tripadvisor.com","phone":"196-599-4507","gender":"Female","department":"Research and Development","address":"07263 Buhler Crossing","hire_date":"6/23/2018","website":"http://altervista.org","notes":"aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse","status":4,"type":3,"salary":"$263.67"}, {"id":119,"employee_id":"348201330-6","first_name":"Adam","last_name":"Bavridge","email":"abavridge3a@typepad.com","phone":"867-811-3866","gender":"Male","department":"Legal","address":"00 Katie Crossing","hire_date":"7/24/2017","website":"http://friendfeed.com","notes":"maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras","status":2,"type":1,"salary":"$958.84"}, {"id":120,"employee_id":"738568347-9","first_name":"Hillard","last_name":"Khomich","email":"hkhomich3b@mtv.com","phone":"567-127-1119","gender":"Male","department":"Legal","address":"188 Steensland Point","hire_date":"4/23/2018","website":"http://bloomberg.com","notes":"et commodo vulputate justo in blandit ultrices enim lorem ipsum","status":4,"type":3,"salary":"$314.28"}, {"id":121,"employee_id":"025483363-2","first_name":"Fiona","last_name":"Bingell","email":"fbingell3c@360.cn","phone":"331-537-3139","gender":"Female","department":"Legal","address":"96 Talisman Park","hire_date":"5/20/2018","website":"http://canalblog.com","notes":"augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id","status":5,"type":3,"salary":"$2374.45"}, {"id":122,"employee_id":"960974875-9","first_name":"Sigmund","last_name":"Crampsy","email":"scrampsy3d@opera.com","phone":"152-487-2700","gender":"Male","department":"Human Resources","address":"7 Sutherland Street","hire_date":"12/9/2017","website":"https://washingtonpost.com","notes":"montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis","status":5,"type":2,"salary":"$332.45"}, {"id":123,"employee_id":"926752427-5","first_name":"Rasla","last_name":"Middell","email":"rmiddell3e@columbia.edu","phone":"868-976-3698","gender":"Female","department":"Services","address":"2 Gina Hill","hire_date":"11/23/2017","website":"http://timesonline.co.uk","notes":"pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut","status":2,"type":2,"salary":"$1018.57"}, {"id":124,"employee_id":"806699807-4","first_name":"Iorgo","last_name":"Rigmond","email":"irigmond3f@google.it","phone":"746-546-5211","gender":"Male","department":"Accounting","address":"842 Pearson Pass","hire_date":"9/7/2017","website":"http://digg.com","notes":"luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend","status":3,"type":1,"salary":"$2010.96"}, {"id":125,"employee_id":"155788341-6","first_name":"Tessa","last_name":"Rohan","email":"trohan3g@cbslocal.com","phone":"630-293-4519","gender":"Female","department":"Product Management","address":"1 Reinke Crossing","hire_date":"12/10/2017","website":"http://google.com","notes":"vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl","status":3,"type":3,"salary":"$1384.49"}, {"id":126,"employee_id":"682416426-7","first_name":"Solly","last_name":"Kellet","email":"skellet3h@google.fr","phone":"377-570-8318","gender":"Male","department":"Support","address":"468 Marquette Pass","hire_date":"11/24/2017","website":"https://china.com.cn","notes":"nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum","status":5,"type":1,"salary":"$956.94"}, {"id":127,"employee_id":"612351588-8","first_name":"Jarret","last_name":"O\'Halloran","email":"johalloran3i@indiatimes.com","phone":"154-312-7232","gender":"Male","department":"Support","address":"199 Orin Road","hire_date":"10/20/2017","website":"http://nytimes.com","notes":"elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium","status":5,"type":2,"salary":"$2463.22"}, {"id":128,"employee_id":"655867342-8","first_name":"Annnora","last_name":"Soles","email":"asoles3j@cafepress.com","phone":"158-251-8502","gender":"Female","department":"Human Resources","address":"59 Fordem Lane","hire_date":"12/15/2017","website":"http://loc.gov","notes":"odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet","status":5,"type":2,"salary":"$859.89"}, {"id":129,"employee_id":"373591806-9","first_name":"Flory","last_name":"Dabinett","email":"fdabinett3k@cmu.edu","phone":"809-718-7259","gender":"Female","department":"Human Resources","address":"5711 Maywood Parkway","hire_date":"10/28/2017","website":"http://apple.com","notes":"diam in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere","status":6,"type":3,"salary":"$2060.00"}, {"id":130,"employee_id":"959199127-4","first_name":"Brigham","last_name":"Winch","email":"bwinch3l@prweb.com","phone":"942-871-6319","gender":"Male","department":"Sales","address":"641 Kings Trail","hire_date":"3/17/2018","website":"http://topsy.com","notes":"non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis","status":4,"type":1,"salary":"$1022.05"}, {"id":131,"employee_id":"961903930-0","first_name":"Siusan","last_name":"Megahey","email":"smegahey3m@myspace.com","phone":"357-588-1304","gender":"Female","department":"Human Resources","address":"5 Ludington Road","hire_date":"6/22/2018","website":"http://shareasale.com","notes":"tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis","status":2,"type":3,"salary":"$1406.53"}, {"id":132,"employee_id":"900687666-6","first_name":"Ax","last_name":"Kores","email":"akores3n@tripadvisor.com","phone":"439-825-2783","gender":"Male","department":"Business Development","address":"63271 Pierstorff Crossing","hire_date":"5/14/2018","website":"http://hibu.com","notes":"tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum","status":2,"type":2,"salary":"$1135.64"}, {"id":133,"employee_id":"466975330-4","first_name":"Sander","last_name":"Chinnick","email":"schinnick3o@cbslocal.com","phone":"374-645-5030","gender":"Male","department":"Accounting","address":"37 Darwin Circle","hire_date":"2/7/2018","website":"http://histats.com","notes":"mi nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis","status":1,"type":3,"salary":"$381.91"}, {"id":134,"employee_id":"408416234-5","first_name":"Keir","last_name":"Coulling","email":"kcoulling3p@usa.gov","phone":"118-443-0247","gender":"Male","department":"Legal","address":"4376 Kings Center","hire_date":"10/3/2017","website":"http://omniture.com","notes":"lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id","status":5,"type":2,"salary":"$2378.33"}, {"id":135,"employee_id":"531987885-0","first_name":"Sid","last_name":"Tenaunt","email":"stenaunt3q@phpbb.com","phone":"295-386-3775","gender":"Male","department":"Sales","address":"222 Blaine Terrace","hire_date":"6/27/2018","website":"http://nationalgeographic.com","notes":"justo etiam pretium iaculis justo in hac habitasse platea dictumst","status":5,"type":1,"salary":"$927.08"}, {"id":136,"employee_id":"010876438-9","first_name":"Hunfredo","last_name":"Bastone","email":"hbastone3r@gmpg.org","phone":"509-962-4856","gender":"Male","department":"Services","address":"2 Cambridge Terrace","hire_date":"11/22/2017","website":"http://hc360.com","notes":"condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet","status":1,"type":2,"salary":"$1542.99"}, {"id":137,"employee_id":"673641606-X","first_name":"Virgil","last_name":"Mallabon","email":"vmallabon3s@mysql.com","phone":"412-268-6506","gender":"Male","department":"Business Development","address":"9 Havey Trail","hire_date":"3/26/2018","website":"https://fc2.com","notes":"non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis","status":1,"type":2,"salary":"$533.91"}, {"id":138,"employee_id":"674583602-5","first_name":"Raimund","last_name":"Garthshore","email":"rgarthshore3t@i2i.jp","phone":"690-495-5929","gender":"Male","department":"Support","address":"9 Toban Pass","hire_date":"7/4/2018","website":"https://icq.com","notes":"cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum","status":4,"type":3,"salary":"$1455.67"}, {"id":139,"employee_id":"669103553-4","first_name":"Velvet","last_name":"Chaffey","email":"vchaffey3u@mit.edu","phone":"751-664-7048","gender":"Female","department":"Human Resources","address":"24 Dexter Avenue","hire_date":"6/29/2018","website":"https://eepurl.com","notes":"sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed","status":6,"type":2,"salary":"$1608.14"}, {"id":140,"employee_id":"603845266-4","first_name":"Warren","last_name":"Course","email":"wcourse3v@who.int","phone":"714-691-0830","gender":"Male","department":"Research and Development","address":"1 Stoughton Trail","hire_date":"12/7/2017","website":"http://dedecms.com","notes":"ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent","status":2,"type":3,"salary":"$1183.79"}, {"id":141,"employee_id":"653433959-5","first_name":"Bobina","last_name":"Stroyan","email":"bstroyan3w@spotify.com","phone":"247-343-7540","gender":"Female","department":"Product Management","address":"127 Westerfield Way","hire_date":"8/20/2017","website":"https://unicef.org","notes":"pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo","status":2,"type":2,"salary":"$1289.19"}, {"id":142,"employee_id":"713131534-6","first_name":"Ulrich","last_name":"Monsey","email":"umonsey3x@google.co.jp","phone":"585-711-5479","gender":"Male","department":"Business Development","address":"638 Birchwood Pass","hire_date":"7/2/2018","website":"http://earthlink.net","notes":"at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet","status":3,"type":3,"salary":"$1350.77"}, {"id":143,"employee_id":"411238844-6","first_name":"Darrell","last_name":"Kelson","email":"dkelson3y@aol.com","phone":"755-795-2495","gender":"Male","department":"Support","address":"2 Eagan Center","hire_date":"11/1/2017","website":"http://cpanel.net","notes":"vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi","status":6,"type":3,"salary":"$543.19"}, {"id":144,"employee_id":"341336740-4","first_name":"Brook","last_name":"Temblett","email":"btemblett3z@unesco.org","phone":"985-734-8064","gender":"Male","department":"Marketing","address":"370 Garrison Street","hire_date":"1/16/2018","website":"https://devhub.com","notes":"rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed","status":3,"type":1,"salary":"$354.44"}, {"id":145,"employee_id":"387002802-5","first_name":"Portia","last_name":"Wybern","email":"pwybern40@example.com","phone":"239-713-0899","gender":"Female","department":"Services","address":"7 Tennessee Point","hire_date":"5/28/2018","website":"http://163.com","notes":"rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis","status":2,"type":1,"salary":"$2208.41"}, {"id":146,"employee_id":"595244490-3","first_name":"Debi","last_name":"Grady","email":"dgrady41@icio.us","phone":"959-988-3108","gender":"Female","department":"Business Development","address":"18955 Doe Crossing Place","hire_date":"3/10/2018","website":"http://cam.ac.uk","notes":"in felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat ut","status":4,"type":2,"salary":"$1167.37"}, {"id":147,"employee_id":"877613651-5","first_name":"Moise","last_name":"Garnson","email":"mgarnson42@dailymail.co.uk","phone":"402-162-8313","gender":"Male","department":"Training","address":"14 Grayhawk Way","hire_date":"2/3/2018","website":"http://t.co","notes":"nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras non velit nec nisi","status":5,"type":2,"salary":"$2274.95"}, {"id":148,"employee_id":"057397050-5","first_name":"Val","last_name":"Berthomier","email":"vberthomier43@mozilla.com","phone":"952-537-2739","gender":"Male","department":"Engineering","address":"0 Hanson Junction","hire_date":"2/23/2018","website":"http://smh.com.au","notes":"quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in","status":3,"type":1,"salary":"$2268.10"}, {"id":149,"employee_id":"594276612-6","first_name":"Brynn","last_name":"Cosgry","email":"bcosgry44@wikimedia.org","phone":"897-152-4927","gender":"Female","department":"Legal","address":"68483 Bowman Pass","hire_date":"6/11/2018","website":"http://unblog.fr","notes":"elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie","status":2,"type":1,"salary":"$304.63"}, {"id":150,"employee_id":"353613312-6","first_name":"Vitoria","last_name":"Crickmoor","email":"vcrickmoor45@taobao.com","phone":"607-928-5380","gender":"Female","department":"Human Resources","address":"77 Browning Avenue","hire_date":"11/20/2017","website":"http://e-recht24.de","notes":"enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis","status":5,"type":3,"salary":"$924.79"}, {"id":151,"employee_id":"291902769-7","first_name":"Carrissa","last_name":"Brownell","email":"cbrownell46@answers.com","phone":"128-824-6498","gender":"Female","department":"Services","address":"32386 Di Loreto Park","hire_date":"1/14/2018","website":"https://cbslocal.com","notes":"praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in","status":4,"type":2,"salary":"$2130.86"}, {"id":152,"employee_id":"842513206-1","first_name":"Dyann","last_name":"Pentecost","email":"dpentecost47@scientificamerican.com","phone":"558-509-9826","gender":"Female","department":"Human Resources","address":"9 Ridgeview Lane","hire_date":"3/25/2018","website":"https://irs.gov","notes":"vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non","status":6,"type":3,"salary":"$954.81"}, {"id":153,"employee_id":"878064554-2","first_name":"Waldo","last_name":"Bessey","email":"wbessey48@auda.org.au","phone":"986-291-1320","gender":"Male","department":"Business Development","address":"18 Roxbury Lane","hire_date":"4/2/2018","website":"https://biglobe.ne.jp","notes":"sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in","status":5,"type":3,"salary":"$2452.02"}, {"id":154,"employee_id":"845261853-0","first_name":"Jaymee","last_name":"Longstaffe","email":"jlongstaffe49@comsenz.com","phone":"986-707-1097","gender":"Female","department":"Human Resources","address":"4998 Dakota Drive","hire_date":"7/2/2018","website":"http://comcast.net","notes":"morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl","status":1,"type":1,"salary":"$2401.60"}, {"id":155,"employee_id":"133467041-2","first_name":"Gui","last_name":"Treuge","email":"gtreuge4a@eventbrite.com","phone":"446-433-2464","gender":"Female","department":"Accounting","address":"44 Meadow Ridge Parkway","hire_date":"2/19/2018","website":"http://amazon.com","notes":"vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget","status":3,"type":2,"salary":"$1260.96"}, {"id":156,"employee_id":"430655033-8","first_name":"Robinet","last_name":"Pilpovic","email":"rpilpovic4b@clickbank.net","phone":"719-201-5508","gender":"Female","department":"Business Development","address":"73 Talmadge Terrace","hire_date":"12/14/2017","website":"http://fda.gov","notes":"tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus","status":3,"type":3,"salary":"$996.17"}, {"id":157,"employee_id":"273670127-5","first_name":"Dominique","last_name":"Pinnion","email":"dpinnion4c@myspace.com","phone":"588-678-9990","gender":"Male","department":"Accounting","address":"0 Columbus Parkway","hire_date":"1/16/2018","website":"http://fastcompany.com","notes":"nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla","status":6,"type":1,"salary":"$2052.55"}, {"id":158,"employee_id":"514667447-7","first_name":"Nichole","last_name":"Sneesby","email":"nsneesby4d@google.com.hk","phone":"535-321-5685","gender":"Female","department":"Services","address":"84 Forest Run Trail","hire_date":"6/2/2018","website":"http://ibm.com","notes":"mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean","status":6,"type":3,"salary":"$517.69"}, {"id":159,"employee_id":"959381289-X","first_name":"Evvie","last_name":"Jurek","email":"ejurek4e@dailymail.co.uk","phone":"933-940-5953","gender":"Female","department":"Legal","address":"9807 Hagan Road","hire_date":"1/30/2018","website":"http://jigsy.com","notes":"dui proin leo odio porttitor id consequat in consequat ut","status":6,"type":3,"salary":"$475.90"}, {"id":160,"employee_id":"997401253-8","first_name":"Susana","last_name":"Tessier","email":"stessier4f@ox.ac.uk","phone":"723-896-2166","gender":"Female","department":"Sales","address":"9 Chive Place","hire_date":"4/3/2018","website":"https://google.com.br","notes":"orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum","status":3,"type":3,"salary":"$579.03"}, {"id":161,"employee_id":"252276663-5","first_name":"Kellyann","last_name":"Mangham","email":"kmangham4g@mtv.com","phone":"688-720-2536","gender":"Female","department":"Marketing","address":"70 Muir Court","hire_date":"7/31/2017","website":"https://baidu.com","notes":"non quam nec dui luctus rutrum nulla tellus in sagittis","status":6,"type":1,"salary":"$1833.96"}, {"id":162,"employee_id":"684537562-3","first_name":"Reta","last_name":"Downham","email":"rdownham4h@columbia.edu","phone":"805-542-6622","gender":"Female","department":"Training","address":"3 Sage Hill","hire_date":"10/7/2017","website":"https://cloudflare.com","notes":"erat id mauris vulputate elementum nullam varius nulla facilisi cras non velit nec nisi","status":2,"type":1,"salary":"$254.59"}, {"id":163,"employee_id":"755134881-6","first_name":"Abbe","last_name":"Didsbury","email":"adidsbury4i@usda.gov","phone":"911-906-3632","gender":"Female","department":"Support","address":"3527 Scofield Drive","hire_date":"3/27/2018","website":"http://webs.com","notes":"maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie","status":1,"type":2,"salary":"$1163.39"}, {"id":164,"employee_id":"983150152-7","first_name":"Bobbe","last_name":"Le Frank","email":"blefrank4j@youtube.com","phone":"777-324-7190","gender":"Female","department":"Accounting","address":"56607 Oneill Hill","hire_date":"8/18/2017","website":"http://salon.com","notes":"erat tortor sollicitudin mi sit amet lobortis sapien sapien non mi integer ac neque duis bibendum","status":1,"type":2,"salary":"$2173.86"}, {"id":165,"employee_id":"204907720-3","first_name":"Cal","last_name":"Scothorn","email":"cscothorn4k@miibeian.gov.cn","phone":"194-212-1904","gender":"Male","department":"Training","address":"468 Grim Street","hire_date":"5/19/2018","website":"https://ftc.gov","notes":"vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id","status":4,"type":2,"salary":"$2034.27"}, {"id":166,"employee_id":"697540250-7","first_name":"Lolly","last_name":"Treneman","email":"ltreneman4l@paypal.com","phone":"632-859-5314","gender":"Female","department":"Marketing","address":"72009 Riverside Lane","hire_date":"5/29/2018","website":"https://va.gov","notes":"in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt","status":5,"type":3,"salary":"$753.35"}, {"id":167,"employee_id":"115690768-3","first_name":"Cecilla","last_name":"Lapenna","email":"clapenna4m@123-reg.co.uk","phone":"628-961-1692","gender":"Female","department":"Human Resources","address":"9280 Kings Junction","hire_date":"9/29/2017","website":"https://desdev.cn","notes":"accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor","status":1,"type":1,"salary":"$2311.77"}, {"id":168,"employee_id":"571951854-1","first_name":"Dulcia","last_name":"Salthouse","email":"dsalthouse4n@woothemes.com","phone":"908-491-4688","gender":"Female","department":"Accounting","address":"46165 Lukken Plaza","hire_date":"11/12/2017","website":"https://hostgator.com","notes":"vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non","status":6,"type":1,"salary":"$822.82"}, {"id":169,"employee_id":"977337629-X","first_name":"Terrijo","last_name":"Creegan","email":"tcreegan4o@sogou.com","phone":"482-913-3726","gender":"Female","department":"Product Management","address":"4717 Hayes Hill","hire_date":"7/26/2017","website":"https://google.fr","notes":"nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et","status":6,"type":1,"salary":"$484.63"}, {"id":170,"employee_id":"027232140-0","first_name":"Edsel","last_name":"Coward","email":"ecoward4p@hatena.ne.jp","phone":"612-293-5449","gender":"Male","department":"Product Management","address":"3 Westerfield Plaza","hire_date":"8/8/2017","website":"http://prweb.com","notes":"suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus","status":1,"type":3,"salary":"$592.46"}, {"id":171,"employee_id":"263088468-6","first_name":"Ansel","last_name":"Monteith","email":"amonteith4q@deliciousdays.com","phone":"570-559-5834","gender":"Male","department":"Marketing","address":"3596 Elka Alley","hire_date":"12/15/2017","website":"http://paypal.com","notes":"luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a","status":3,"type":3,"salary":"$1449.66"}, {"id":172,"employee_id":"530835369-7","first_name":"Adler","last_name":"Medford","email":"amedford4r@ucsd.edu","phone":"595-468-9382","gender":"Male","department":"Training","address":"87 Namekagon Road","hire_date":"3/13/2018","website":"http://princeton.edu","notes":"sit amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla","status":2,"type":1,"salary":"$399.65"}, {"id":173,"employee_id":"607099253-9","first_name":"Kira","last_name":"Berford","email":"kberford4s@lulu.com","phone":"572-891-2967","gender":"Female","department":"Accounting","address":"414 Ruskin Terrace","hire_date":"1/16/2018","website":"http://instagram.com","notes":"et tempus semper est quam pharetra magna ac consequat metus sapien","status":1,"type":3,"salary":"$1928.81"}, {"id":174,"employee_id":"798630883-4","first_name":"Vivyanne","last_name":"Furzey","email":"vfurzey4t@ca.gov","phone":"278-121-5340","gender":"Female","department":"Human Resources","address":"94 Esch Park","hire_date":"5/17/2018","website":"https://amazon.de","notes":"faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices","status":6,"type":2,"salary":"$2375.11"}, {"id":175,"employee_id":"681999959-3","first_name":"Nikoletta","last_name":"Robelow","email":"nrobelow4u@smugmug.com","phone":"360-351-4307","gender":"Female","department":"Engineering","address":"5 Starling Trail","hire_date":"8/20/2017","website":"https://barnesandnoble.com","notes":"odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi","status":4,"type":2,"salary":"$250.80"}, {"id":176,"employee_id":"011864426-2","first_name":"Mathew","last_name":"Battyll","email":"mbattyll4v@over-blog.com","phone":"321-386-3766","gender":"Male","department":"Research and Development","address":"65072 Carey Crossing","hire_date":"5/15/2018","website":"http://ibm.com","notes":"vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat","status":2,"type":2,"salary":"$636.70"}, {"id":177,"employee_id":"570137655-9","first_name":"Forrest","last_name":"Cowderoy","email":"fcowderoy4w@ask.com","phone":"618-278-7932","gender":"Male","department":"Sales","address":"351 Buell Hill","hire_date":"12/26/2017","website":"https://123-reg.co.uk","notes":"magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien non mi","status":5,"type":3,"salary":"$699.94"}, {"id":178,"employee_id":"418945567-9","first_name":"Ax","last_name":"Brum","email":"abrum4x@ox.ac.uk","phone":"850-631-2124","gender":"Male","department":"Product Management","address":"261 Evergreen Parkway","hire_date":"8/31/2017","website":"http://narod.ru","notes":"non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in","status":1,"type":2,"salary":"$257.02"}, {"id":179,"employee_id":"848896179-0","first_name":"Travers","last_name":"Francecione","email":"tfrancecione4y@yelp.com","phone":"812-741-5424","gender":"Male","department":"Business Development","address":"425 Redwing Street","hire_date":"10/18/2017","website":"https://examiner.com","notes":"nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse","status":6,"type":3,"salary":"$2117.44"}, {"id":180,"employee_id":"819724851-6","first_name":"Eamon","last_name":"McGarrie","email":"emcgarrie4z@upenn.edu","phone":"778-137-8339","gender":"Male","department":"Accounting","address":"1045 Crest Line Way","hire_date":"8/18/2017","website":"http://whitehouse.gov","notes":"justo eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea","status":2,"type":1,"salary":"$493.98"}, {"id":181,"employee_id":"194192430-1","first_name":"Jenda","last_name":"Butts","email":"jbutts50@privacy.gov.au","phone":"396-649-0972","gender":"Female","department":"Research and Development","address":"25264 Sugar Alley","hire_date":"10/16/2017","website":"https://adobe.com","notes":"pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi","status":1,"type":2,"salary":"$957.15"}, {"id":182,"employee_id":"750517497-5","first_name":"Batsheva","last_name":"O\'Hoey","email":"bohoey51@linkedin.com","phone":"545-981-9250","gender":"Female","department":"Services","address":"83 Swallow Circle","hire_date":"10/20/2017","website":"https://army.mil","notes":"duis at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id","status":1,"type":1,"salary":"$1379.67"}, {"id":183,"employee_id":"222948193-2","first_name":"Garrick","last_name":"Coale","email":"gcoale52@blogspot.com","phone":"891-244-1372","gender":"Male","department":"Research and Development","address":"8 Lien Circle","hire_date":"10/14/2017","website":"https://qq.com","notes":"ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras in","status":4,"type":2,"salary":"$1818.60"}, {"id":184,"employee_id":"006801712-X","first_name":"Cody","last_name":"Myhan","email":"cmyhan53@hc360.com","phone":"271-326-1892","gender":"Male","department":"Sales","address":"1993 Forest Run Pass","hire_date":"3/23/2018","website":"http://vinaora.com","notes":"orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi","status":6,"type":3,"salary":"$1057.20"}, {"id":185,"employee_id":"093515326-8","first_name":"Osbert","last_name":"Musla","email":"omusla54@eventbrite.com","phone":"480-152-0632","gender":"Male","department":"Product Management","address":"032 Annamark Terrace","hire_date":"3/26/2018","website":"http://bbc.co.uk","notes":"neque libero convallis eget eleifend luctus ultricies eu nibh quisque","status":4,"type":2,"salary":"$1241.07"}, {"id":186,"employee_id":"532269185-5","first_name":"Ranice","last_name":"Lebond","email":"rlebond55@google.co.jp","phone":"157-709-4371","gender":"Female","department":"Legal","address":"2 Randy Junction","hire_date":"7/10/2018","website":"https://diigo.com","notes":"ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit","status":3,"type":1,"salary":"$1139.94"}, {"id":187,"employee_id":"820600310-X","first_name":"Guthrie","last_name":"Bandey","email":"gbandey56@studiopress.com","phone":"543-161-2237","gender":"Male","department":"Research and Development","address":"0 Pine View Circle","hire_date":"6/28/2018","website":"https://auda.org.au","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae","status":5,"type":2,"salary":"$2236.51"}, {"id":188,"employee_id":"665284501-6","first_name":"Launce","last_name":"Geldard","email":"lgeldard57@yandex.ru","phone":"506-333-2822","gender":"Male","department":"Accounting","address":"17 Haas Center","hire_date":"12/9/2017","website":"https://newsvine.com","notes":"ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam congue","status":4,"type":1,"salary":"$1815.94"}, {"id":189,"employee_id":"782377092-X","first_name":"Connie","last_name":"Toope","email":"ctoope58@mediafire.com","phone":"651-464-3542","gender":"Female","department":"Training","address":"3 Russell Center","hire_date":"12/14/2017","website":"https://unblog.fr","notes":"eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt","status":5,"type":2,"salary":"$1736.72"}, {"id":190,"employee_id":"251188287-6","first_name":"Lawton","last_name":"Prigmore","email":"lprigmore59@cnet.com","phone":"738-575-3587","gender":"Male","department":"Legal","address":"050 Eastlawn Avenue","hire_date":"9/4/2017","website":"http://uol.com.br","notes":"adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu","status":1,"type":1,"salary":"$1670.77"}, {"id":191,"employee_id":"219193763-2","first_name":"Barbara","last_name":"Aleksankin","email":"baleksankin5a@tiny.cc","phone":"224-597-1015","gender":"Female","department":"Engineering","address":"1 Gerald Crossing","hire_date":"6/14/2018","website":"http://soundcloud.com","notes":"imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere","status":3,"type":1,"salary":"$2209.41"}, {"id":192,"employee_id":"643523768-9","first_name":"Bab","last_name":"Vallack","email":"bvallack5b@slashdot.org","phone":"900-188-1943","gender":"Female","department":"Marketing","address":"43013 Rutledge Avenue","hire_date":"5/14/2018","website":"http://addtoany.com","notes":"sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget","status":3,"type":1,"salary":"$975.83"}, {"id":193,"employee_id":"524396310-0","first_name":"Billi","last_name":"Palia","email":"bpalia5c@google.de","phone":"328-700-9101","gender":"Female","department":"Marketing","address":"66 Pearson Court","hire_date":"3/5/2018","website":"http://trellian.com","notes":"pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est","status":3,"type":2,"salary":"$1311.25"}, {"id":194,"employee_id":"666722147-1","first_name":"Gallard","last_name":"Gough","email":"ggough5d@comcast.net","phone":"943-155-0838","gender":"Male","department":"Marketing","address":"742 Eliot Street","hire_date":"11/2/2017","website":"http://latimes.com","notes":"consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo","status":6,"type":3,"salary":"$1869.81"}, {"id":195,"employee_id":"433807272-5","first_name":"Matty","last_name":"Lante","email":"mlante5e@netscape.com","phone":"423-832-1948","gender":"Male","department":"Product Management","address":"33278 Northport Center","hire_date":"4/14/2018","website":"https://cornell.edu","notes":"quisque ut erat curabitur gravida nisi at nibh in hac habitasse","status":6,"type":3,"salary":"$1511.57"}, {"id":196,"employee_id":"082774740-3","first_name":"Niki","last_name":"Surgen","email":"nsurgen5f@unc.edu","phone":"235-964-4962","gender":"Female","department":"Sales","address":"477 Maryland Park","hire_date":"6/3/2018","website":"https://stumbleupon.com","notes":"posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel","status":6,"type":3,"salary":"$1742.42"}, {"id":197,"employee_id":"496412396-0","first_name":"Erek","last_name":"Devereu","email":"edevereu5g@nydailynews.com","phone":"988-854-5635","gender":"Male","department":"Marketing","address":"4222 Gateway Junction","hire_date":"12/2/2017","website":"http://purevolume.com","notes":"posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin","status":3,"type":1,"salary":"$2213.58"}, {"id":198,"employee_id":"815701353-4","first_name":"Ange","last_name":"Bassill","email":"abassill5h@odnoklassniki.ru","phone":"573-589-2234","gender":"Female","department":"Business Development","address":"7450 Maywood Crossing","hire_date":"12/18/2017","website":"http://time.com","notes":"a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis","status":2,"type":3,"salary":"$2381.50"}, {"id":199,"employee_id":"079850265-7","first_name":"Robena","last_name":"Jiggins","email":"rjiggins5i@comcast.net","phone":"202-269-3768","gender":"Female","department":"Accounting","address":"81 Golf View Circle","hire_date":"7/28/2017","website":"http://constantcontact.com","notes":"lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et","status":6,"type":1,"salary":"$2227.40"}, {"id":200,"employee_id":"710192734-3","first_name":"Lari","last_name":"Sweetenham","email":"lsweetenham5j@amazon.co.jp","phone":"838-858-2584","gender":"Female","department":"Business Development","address":"1021 Mesta Hill","hire_date":"8/11/2017","website":"https://typepad.com","notes":"sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in","status":1,"type":1,"salary":"$1540.09"}, {"id":201,"employee_id":"651581571-9","first_name":"Gaelan","last_name":"Schuh","email":"gschuh5k@1688.com","phone":"745-173-2305","gender":"Male","department":"Support","address":"1 Pennsylvania Parkway","hire_date":"7/10/2018","website":"http://vk.com","notes":"interdum in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus","status":6,"type":2,"salary":"$621.44"}, {"id":202,"employee_id":"396937197-X","first_name":"Valentino","last_name":"Vela","email":"vvela5l@t-online.de","phone":"549-694-5062","gender":"Male","department":"Support","address":"132 Mosinee Court","hire_date":"10/13/2017","website":"http://theglobeandmail.com","notes":"ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae","status":6,"type":2,"salary":"$1570.87"}, {"id":203,"employee_id":"455201347-5","first_name":"Paxton","last_name":"Westwood","email":"pwestwood5m@mashable.com","phone":"404-552-2652","gender":"Male","department":"Research and Development","address":"13644 Pepper Wood Road","hire_date":"4/14/2018","website":"http://amazon.co.uk","notes":"non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque","status":6,"type":1,"salary":"$307.42"}, {"id":204,"employee_id":"963542216-4","first_name":"Gianina","last_name":"Dragon","email":"gdragon5n@cmu.edu","phone":"478-617-0604","gender":"Female","department":"Legal","address":"30 Golf Course Court","hire_date":"10/20/2017","website":"http://taobao.com","notes":"amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum","status":1,"type":2,"salary":"$2042.72"}, {"id":205,"employee_id":"005186075-9","first_name":"Patricio","last_name":"Jentges","email":"pjentges5o@cyberchimps.com","phone":"632-971-4495","gender":"Male","department":"Sales","address":"68 Clemons Alley","hire_date":"5/14/2018","website":"http://squidoo.com","notes":"ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam","status":1,"type":3,"salary":"$1983.72"}, {"id":206,"employee_id":"596930988-5","first_name":"Bogey","last_name":"Heisler","email":"bheisler5p@mashable.com","phone":"731-748-1811","gender":"Male","department":"Business Development","address":"58943 Meadow Valley Alley","hire_date":"5/11/2018","website":"http://economist.com","notes":"ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem","status":1,"type":1,"salary":"$1040.61"}, {"id":207,"employee_id":"499909156-9","first_name":"Spenser","last_name":"Pyle","email":"spyle5q@plala.or.jp","phone":"566-843-7913","gender":"Male","department":"Support","address":"900 Fordem Plaza","hire_date":"2/10/2018","website":"https://tinyurl.com","notes":"luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci","status":3,"type":3,"salary":"$2133.09"}, {"id":208,"employee_id":"401266959-1","first_name":"Rayna","last_name":"Crepin","email":"rcrepin5r@webeden.co.uk","phone":"592-304-8987","gender":"Female","department":"Training","address":"469 Dovetail Plaza","hire_date":"7/3/2018","website":"https://ezinearticles.com","notes":"rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus","status":5,"type":3,"salary":"$1671.45"}, {"id":209,"employee_id":"166602922-X","first_name":"Nathalie","last_name":"Gall","email":"ngall5s@is.gd","phone":"801-654-6290","gender":"Female","department":"Human Resources","address":"4719 Stuart Plaza","hire_date":"3/22/2018","website":"http://blogspot.com","notes":"sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et","status":6,"type":1,"salary":"$1524.49"}, {"id":210,"employee_id":"284177230-6","first_name":"Ransell","last_name":"Ammer","email":"rammer5t@cnet.com","phone":"610-711-4680","gender":"Male","department":"Business Development","address":"48 Thierer Center","hire_date":"2/3/2018","website":"https://e-recht24.de","notes":"ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis","status":1,"type":2,"salary":"$892.45"}, {"id":211,"employee_id":"741216645-X","first_name":"Chrissie","last_name":"Devereu","email":"cdevereu5u@chron.com","phone":"763-146-3697","gender":"Male","department":"Research and Development","address":"90 Hansons Point","hire_date":"5/7/2018","website":"https://ebay.co.uk","notes":"sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula","status":2,"type":3,"salary":"$391.22"}, {"id":212,"employee_id":"837406761-6","first_name":"Odell","last_name":"Sherwood","email":"osherwood5v@umich.edu","phone":"959-550-4031","gender":"Male","department":"Sales","address":"04 Talmadge Lane","hire_date":"2/27/2018","website":"https://slideshare.net","notes":"in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum","status":4,"type":3,"salary":"$857.07"}, {"id":213,"employee_id":"411808497-X","first_name":"Baudoin","last_name":"Cesco","email":"bcesco5w@linkedin.com","phone":"416-193-4592","gender":"Male","department":"Legal","address":"1510 Michigan Point","hire_date":"8/1/2017","website":"http://simplemachines.org","notes":"vestibulum quam sapien varius ut blandit non interdum in ante vestibulum","status":1,"type":2,"salary":"$1358.70"}, {"id":214,"employee_id":"261229472-4","first_name":"Carree","last_name":"Edlington","email":"cedlington5x@ebay.com","phone":"194-150-1659","gender":"Female","department":"Research and Development","address":"30 Grayhawk Park","hire_date":"10/14/2017","website":"http://fc2.com","notes":"rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui proin leo","status":4,"type":3,"salary":"$1284.88"}, {"id":215,"employee_id":"929963538-2","first_name":"Mordecai","last_name":"Hatherley","email":"mhatherley5y@amazon.de","phone":"858-490-5169","gender":"Male","department":"Research and Development","address":"13854 Independence Court","hire_date":"8/24/2017","website":"https://sciencedaily.com","notes":"convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in","status":4,"type":2,"salary":"$2417.62"}, {"id":216,"employee_id":"037752030-6","first_name":"Melosa","last_name":"Overstone","email":"moverstone5z@canalblog.com","phone":"318-948-9174","gender":"Female","department":"Product Management","address":"61986 Emmet Avenue","hire_date":"4/19/2018","website":"http://blogspot.com","notes":"fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet","status":1,"type":2,"salary":"$2259.01"}, {"id":217,"employee_id":"532713055-X","first_name":"Shelden","last_name":"Dinnis","email":"sdinnis60@tinypic.com","phone":"333-186-8762","gender":"Male","department":"Accounting","address":"7255 Utah Way","hire_date":"3/14/2018","website":"https://4shared.com","notes":"libero rutrum ac lobortis vel dapibus at diam nam tristique tortor eu pede","status":3,"type":3,"salary":"$1840.38"}, {"id":218,"employee_id":"967102811-X","first_name":"Loydie","last_name":"Pavese","email":"lpavese61@a8.net","phone":"434-133-4789","gender":"Male","department":"Human Resources","address":"02602 Lien Point","hire_date":"1/4/2018","website":"https://jalbum.net","notes":"donec dapibus duis at velit eu est congue elementum in","status":6,"type":3,"salary":"$434.26"}, {"id":219,"employee_id":"460645399-0","first_name":"Alasteir","last_name":"Swetland","email":"aswetland62@amazon.co.jp","phone":"361-389-4622","gender":"Male","department":"Human Resources","address":"65 Basil Parkway","hire_date":"6/16/2018","website":"https://wikimedia.org","notes":"tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat","status":5,"type":2,"salary":"$1861.28"}, {"id":220,"employee_id":"099453213-X","first_name":"Gabbie","last_name":"McGroarty","email":"gmcgroarty63@ox.ac.uk","phone":"322-282-2538","gender":"Male","department":"Training","address":"686 Hudson Court","hire_date":"7/20/2017","website":"https://telegraph.co.uk","notes":"tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim","status":2,"type":3,"salary":"$1303.59"}, {"id":221,"employee_id":"697803051-1","first_name":"Maryanna","last_name":"McCrossan","email":"mmccrossan64@wsj.com","phone":"830-955-6927","gender":"Female","department":"Services","address":"3 Monument Lane","hire_date":"2/16/2018","website":"https://usda.gov","notes":"suscipit a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare","status":3,"type":2,"salary":"$1091.51"}, {"id":222,"employee_id":"808718144-1","first_name":"Doreen","last_name":"Hutt","email":"dhutt65@jugem.jp","phone":"374-621-0333","gender":"Female","department":"Product Management","address":"198 Sherman Alley","hire_date":"1/16/2018","website":"http://goo.gl","notes":"platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia","status":4,"type":1,"salary":"$1640.43"}, {"id":223,"employee_id":"749600110-4","first_name":"Valle","last_name":"Toulamain","email":"vtoulamain66@mail.ru","phone":"179-127-8460","gender":"Male","department":"Human Resources","address":"305 North Plaza","hire_date":"10/25/2017","website":"http://blogtalkradio.com","notes":"erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi","status":5,"type":1,"salary":"$2476.02"}, {"id":224,"employee_id":"897432026-6","first_name":"Tymon","last_name":"Melody","email":"tmelody67@discovery.com","phone":"864-587-4461","gender":"Male","department":"Support","address":"9 Pine View Avenue","hire_date":"6/27/2018","website":"http://harvard.edu","notes":"nec sem duis aliquam convallis nunc proin at turpis a pede posuere nonummy integer","status":2,"type":1,"salary":"$722.08"}, {"id":225,"employee_id":"091778125-2","first_name":"Kent","last_name":"Erridge","email":"kerridge68@usnews.com","phone":"608-307-1349","gender":"Male","department":"Marketing","address":"939 Cardinal Street","hire_date":"12/19/2017","website":"http://prlog.org","notes":"curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla","status":6,"type":2,"salary":"$333.09"}, {"id":226,"employee_id":"344788325-1","first_name":"Pincus","last_name":"Bartolomeu","email":"pbartolomeu69@ft.com","phone":"880-734-9013","gender":"Male","department":"Legal","address":"99645 Darwin Terrace","hire_date":"10/7/2017","website":"https://shutterfly.com","notes":"cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec","status":5,"type":2,"salary":"$1874.99"}, {"id":227,"employee_id":"278130480-8","first_name":"Leonardo","last_name":"Gilluley","email":"lgilluley6a@csmonitor.com","phone":"849-982-1955","gender":"Male","department":"Engineering","address":"27 Independence Lane","hire_date":"12/24/2017","website":"https://sitemeter.com","notes":"neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac","status":1,"type":1,"salary":"$805.37"}, {"id":228,"employee_id":"457121251-8","first_name":"Kordula","last_name":"Ebbitt","email":"kebbitt6b@cdc.gov","phone":"683-473-0530","gender":"Female","department":"Support","address":"615 Summerview Street","hire_date":"7/15/2018","website":"http://independent.co.uk","notes":"est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo","status":6,"type":3,"salary":"$1696.80"}, {"id":229,"employee_id":"235196309-1","first_name":"Odey","last_name":"Antonelli","email":"oantonelli6c@reddit.com","phone":"454-671-7595","gender":"Male","department":"Engineering","address":"01219 Ronald Regan Parkway","hire_date":"6/11/2018","website":"http://hud.gov","notes":"ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien","status":4,"type":3,"salary":"$1566.40"}, {"id":230,"employee_id":"741630871-2","first_name":"Terrance","last_name":"Southers","email":"tsouthers6d@aol.com","phone":"892-170-8181","gender":"Male","department":"Research and Development","address":"08453 Jay Junction","hire_date":"9/21/2017","website":"https://cbslocal.com","notes":"odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet","status":2,"type":2,"salary":"$491.31"}, {"id":231,"employee_id":"075615199-6","first_name":"Dina","last_name":"Hazell","email":"dhazell6e@sogou.com","phone":"457-105-6727","gender":"Female","department":"Services","address":"7666 Dovetail Crossing","hire_date":"12/6/2017","website":"http://google.com.br","notes":"vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget","status":3,"type":1,"salary":"$1164.56"}, {"id":232,"employee_id":"331046072-X","first_name":"Blake","last_name":"Dove","email":"bdove6f@sphinn.com","phone":"829-670-5501","gender":"Male","department":"Accounting","address":"3 Meadow Ridge Way","hire_date":"1/19/2018","website":"http://nymag.com","notes":"quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a","status":4,"type":2,"salary":"$395.04"}, {"id":233,"employee_id":"211173290-7","first_name":"Chanda","last_name":"Ramsby","email":"cramsby6g@mail.ru","phone":"708-724-7807","gender":"Female","department":"Marketing","address":"21160 Superior Drive","hire_date":"8/24/2017","website":"https://rakuten.co.jp","notes":"habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam varius","status":6,"type":3,"salary":"$1579.73"}, {"id":234,"employee_id":"581993169-6","first_name":"Kristoforo","last_name":"Palin","email":"kpalin6h@google.fr","phone":"650-336-9896","gender":"Male","department":"Support","address":"7 Mandrake Drive","hire_date":"6/21/2018","website":"http://amazonaws.com","notes":"vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus etiam vel augue","status":5,"type":2,"salary":"$2428.10"}, {"id":235,"employee_id":"508052012-4","first_name":"Dorene","last_name":"Sedman","email":"dsedman6i@squidoo.com","phone":"816-321-8528","gender":"Female","department":"Accounting","address":"34650 Packers Place","hire_date":"7/21/2017","website":"http://fastcompany.com","notes":"suspendisse ornare consequat lectus in est risus auctor sed tristique in","status":2,"type":3,"salary":"$428.63"}, {"id":236,"employee_id":"086709374-9","first_name":"Britney","last_name":"Lefwich","email":"blefwich6j@cyberchimps.com","phone":"924-496-7148","gender":"Female","department":"Human Resources","address":"58387 Waubesa Way","hire_date":"8/15/2017","website":"http://bing.com","notes":"neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel","status":1,"type":1,"salary":"$832.43"}, {"id":237,"employee_id":"826923163-0","first_name":"Dulcea","last_name":"Butchart","email":"dbutchart6k@gnu.org","phone":"644-248-4778","gender":"Female","department":"Product Management","address":"29 Atwood Avenue","hire_date":"2/20/2018","website":"http://boston.com","notes":"nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat","status":2,"type":2,"salary":"$1885.23"}, {"id":238,"employee_id":"161696725-0","first_name":"Rance","last_name":"Moorey","email":"rmoorey6l@wiley.com","phone":"800-827-1401","gender":"Male","department":"Accounting","address":"957 Oak Pass","hire_date":"2/26/2018","website":"https://usda.gov","notes":"viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis","status":1,"type":1,"salary":"$822.53"}, {"id":239,"employee_id":"902700180-4","first_name":"Dody","last_name":"Bissiker","email":"dbissiker6m@ezinearticles.com","phone":"557-955-0252","gender":"Female","department":"Product Management","address":"41 Main Court","hire_date":"11/23/2017","website":"http://theatlantic.com","notes":"sit amet sem fusce consequat nulla nisl nunc nisl duis","status":5,"type":3,"salary":"$1749.03"}, {"id":240,"employee_id":"599787707-8","first_name":"Borden","last_name":"Pagram","email":"bpagram6n@bluehost.com","phone":"612-878-1566","gender":"Male","department":"Support","address":"66497 Longview Court","hire_date":"10/2/2017","website":"https://cocolog-nifty.com","notes":"vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in","status":1,"type":1,"salary":"$1261.51"}, {"id":241,"employee_id":"448140376-4","first_name":"Gill","last_name":"Scotson","email":"gscotson6o@wisc.edu","phone":"111-522-6972","gender":"Female","department":"Engineering","address":"3 Katie Place","hire_date":"6/2/2018","website":"https://jimdo.com","notes":"velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus","status":1,"type":2,"salary":"$2332.46"}, {"id":242,"employee_id":"615821017-X","first_name":"Colan","last_name":"Beardsdale","email":"cbeardsdale6p@shutterfly.com","phone":"392-912-6568","gender":"Male","department":"Legal","address":"2 Maple Wood Trail","hire_date":"5/29/2018","website":"http://networksolutions.com","notes":"arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse","status":4,"type":2,"salary":"$1949.49"}, {"id":243,"employee_id":"154724310-4","first_name":"Shane","last_name":"Worgen","email":"sworgen6q@prweb.com","phone":"827-972-7207","gender":"Male","department":"Training","address":"4 Meadow Ridge Center","hire_date":"4/14/2018","website":"http://wordpress.com","notes":"posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus","status":2,"type":2,"salary":"$1464.06"}, {"id":244,"employee_id":"026255598-0","first_name":"Kennie","last_name":"Verrier","email":"kverrier6r@reddit.com","phone":"857-439-9419","gender":"Male","department":"Training","address":"1009 Burrows Hill","hire_date":"6/18/2018","website":"https://homestead.com","notes":"a feugiat et eros vestibulum ac est lacinia nisi venenatis","status":4,"type":1,"salary":"$710.71"}, {"id":245,"employee_id":"617423589-0","first_name":"Nora","last_name":"Tiuit","email":"ntiuit6s@opensource.org","phone":"516-119-9392","gender":"Female","department":"Product Management","address":"611 Amoth Trail","hire_date":"2/12/2018","website":"http://redcross.org","notes":"nisl nunc rhoncus dui vel sem sed sagittis nam congue risus","status":6,"type":1,"salary":"$341.28"}, {"id":246,"employee_id":"376249049-X","first_name":"Corbet","last_name":"Glassford","email":"cglassford6t@ycombinator.com","phone":"907-225-7304","gender":"Male","department":"Support","address":"88954 Scott Crossing","hire_date":"1/16/2018","website":"http://simplemachines.org","notes":"nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia","status":6,"type":1,"salary":"$900.01"}, {"id":247,"employee_id":"361459129-8","first_name":"Michele","last_name":"Brand","email":"mbrand6u@eventbrite.com","phone":"720-375-5170","gender":"Female","department":"Business Development","address":"83 Caliangt Way","hire_date":"6/21/2018","website":"http://fema.gov","notes":"ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras in","status":2,"type":3,"salary":"$1936.51"}, {"id":248,"employee_id":"550893256-9","first_name":"Nev","last_name":"Poskitt","email":"nposkitt6v@amazon.co.uk","phone":"190-312-7807","gender":"Male","department":"Accounting","address":"51 Bartillon Hill","hire_date":"4/9/2018","website":"http://sina.com.cn","notes":"sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci","status":6,"type":3,"salary":"$1977.42"}, {"id":249,"employee_id":"266123172-2","first_name":"Charmian","last_name":"Dionisio","email":"cdionisio6w@sbwire.com","phone":"508-658-4985","gender":"Female","department":"Research and Development","address":"69125 Hoepker Avenue","hire_date":"11/26/2017","website":"http://nasa.gov","notes":"sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque ultrices","status":4,"type":2,"salary":"$1139.03"}, {"id":250,"employee_id":"901898152-4","first_name":"Waly","last_name":"Braddon","email":"wbraddon6x@etsy.com","phone":"678-859-9650","gender":"Female","department":"Product Management","address":"088 Pennsylvania Parkway","hire_date":"1/1/2018","website":"https://jiathis.com","notes":"enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac","status":5,"type":3,"salary":"$807.26"}, {"id":251,"employee_id":"852226432-5","first_name":"Stanford","last_name":"Stopp","email":"sstopp6y@addthis.com","phone":"637-731-1621","gender":"Male","department":"Human Resources","address":"3338 Fieldstone Terrace","hire_date":"4/5/2018","website":"http://plala.or.jp","notes":"aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in","status":4,"type":1,"salary":"$615.82"}, {"id":252,"employee_id":"164816950-3","first_name":"Hieronymus","last_name":"Klimczak","email":"hklimczak6z@marketwatch.com","phone":"553-166-4570","gender":"Male","department":"Support","address":"52161 Thierer Pass","hire_date":"7/5/2018","website":"http://webeden.co.uk","notes":"vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient","status":5,"type":3,"salary":"$899.14"}, {"id":253,"employee_id":"618243263-2","first_name":"Nicolais","last_name":"Rodgier","email":"nrodgier70@123-reg.co.uk","phone":"479-784-1857","gender":"Male","department":"Accounting","address":"603 Amoth Place","hire_date":"1/14/2018","website":"http://columbia.edu","notes":"fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in","status":4,"type":1,"salary":"$1382.76"}, {"id":254,"employee_id":"602289169-8","first_name":"Tiphany","last_name":"Hammant","email":"thammant71@usgs.gov","phone":"123-624-2612","gender":"Female","department":"Human Resources","address":"0908 Stephen Plaza","hire_date":"2/26/2018","website":"https://ucoz.ru","notes":"eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium","status":5,"type":3,"salary":"$1594.78"}, {"id":255,"employee_id":"916979999-7","first_name":"Hermie","last_name":"Reggler","email":"hreggler72@house.gov","phone":"760-890-0698","gender":"Male","department":"Sales","address":"77322 Gateway Circle","hire_date":"9/11/2017","website":"http://seattletimes.com","notes":"orci pede venenatis non sodales sed tincidunt eu felis fusce","status":2,"type":1,"salary":"$433.44"}, {"id":256,"employee_id":"774356728-1","first_name":"Mason","last_name":"Shingles","email":"mshingles73@jalbum.net","phone":"478-125-6198","gender":"Male","department":"Sales","address":"721 Havey Center","hire_date":"4/13/2018","website":"https://ehow.com","notes":"integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent","status":6,"type":3,"salary":"$566.23"}, {"id":257,"employee_id":"469749753-8","first_name":"Jonah","last_name":"McLugish","email":"jmclugish74@si.edu","phone":"450-313-4218","gender":"Male","department":"Sales","address":"9 Kingsford Drive","hire_date":"2/1/2018","website":"https://businessweek.com","notes":"lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer","status":2,"type":1,"salary":"$1295.46"}, {"id":258,"employee_id":"891738289-4","first_name":"Fonz","last_name":"De\'Vere - Hunt","email":"fdeverehunt75@domainmarket.com","phone":"251-524-2806","gender":"Male","department":"Sales","address":"5 Sauthoff Street","hire_date":"6/12/2018","website":"https://bizjournals.com","notes":"erat curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin","status":2,"type":2,"salary":"$1604.49"}, {"id":259,"employee_id":"087978435-0","first_name":"Agnola","last_name":"Francescone","email":"afrancescone76@phpbb.com","phone":"535-996-2880","gender":"Female","department":"Accounting","address":"21092 Forster Drive","hire_date":"11/17/2017","website":"http://abc.net.au","notes":"arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor eu pede","status":3,"type":3,"salary":"$537.10"}, {"id":260,"employee_id":"735651281-5","first_name":"Jo-ann","last_name":"Moon","email":"jmoon77@home.pl","phone":"971-838-3777","gender":"Female","department":"Support","address":"016 Grim Road","hire_date":"8/29/2017","website":"http://pen.io","notes":"quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec","status":6,"type":2,"salary":"$2178.02"}, {"id":261,"employee_id":"405615507-0","first_name":"Christye","last_name":"Ramage","email":"cramage78@twitter.com","phone":"179-607-0154","gender":"Female","department":"Engineering","address":"71 Kenwood Street","hire_date":"7/2/2018","website":"http://harvard.edu","notes":"amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac","status":2,"type":3,"salary":"$2018.25"}, {"id":262,"employee_id":"254124619-6","first_name":"Say","last_name":"Everix","email":"severix79@eepurl.com","phone":"822-477-7882","gender":"Male","department":"Legal","address":"4601 Straubel Center","hire_date":"7/1/2018","website":"http://so-net.ne.jp","notes":"morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo","status":5,"type":2,"salary":"$979.62"}, {"id":263,"employee_id":"714870821-4","first_name":"Mildrid","last_name":"Colliford","email":"mcolliford7a@cpanel.net","phone":"335-841-0402","gender":"Female","department":"Research and Development","address":"7525 Dawn Hill","hire_date":"6/8/2018","website":"http://rambler.ru","notes":"turpis enim blandit mi in porttitor pede justo eu massa donec dapibus duis at velit eu est congue elementum","status":5,"type":1,"salary":"$2332.05"}, {"id":264,"employee_id":"444226998-X","first_name":"Horton","last_name":"Viant","email":"hviant7b@hostgator.com","phone":"522-897-3684","gender":"Male","department":"Engineering","address":"8008 Twin Pines Circle","hire_date":"12/28/2017","website":"http://mozilla.org","notes":"ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis","status":2,"type":3,"salary":"$332.53"}, {"id":265,"employee_id":"638057551-0","first_name":"Shanon","last_name":"Beckley","email":"sbeckley7c@oaic.gov.au","phone":"981-758-8017","gender":"Female","department":"Marketing","address":"49336 Ridgeview Pass","hire_date":"9/22/2017","website":"https://baidu.com","notes":"habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis","status":5,"type":1,"salary":"$1342.00"}, {"id":266,"employee_id":"264528256-3","first_name":"Frasco","last_name":"Doddrell","email":"fdoddrell7d@cisco.com","phone":"953-588-9799","gender":"Male","department":"Accounting","address":"031 Spohn Place","hire_date":"4/29/2018","website":"http://intel.com","notes":"odio porttitor id consequat in consequat ut nulla sed accumsan felis ut at","status":2,"type":3,"salary":"$1821.71"}, {"id":267,"employee_id":"620037444-9","first_name":"Efren","last_name":"Ozelton","email":"eozelton7e@shop-pro.jp","phone":"182-274-8460","gender":"Male","department":"Training","address":"5 Glacier Hill Place","hire_date":"1/11/2018","website":"https://cloudflare.com","notes":"condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit","status":3,"type":3,"salary":"$2446.18"}, {"id":268,"employee_id":"747007151-2","first_name":"Jeremias","last_name":"Ansteys","email":"jansteys7f@pagesperso-orange.fr","phone":"121-687-9691","gender":"Male","department":"Support","address":"206 Waubesa Lane","hire_date":"9/10/2017","website":"http://vistaprint.com","notes":"justo nec condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet","status":3,"type":2,"salary":"$1862.76"}, {"id":269,"employee_id":"633719786-0","first_name":"Had","last_name":"Larmor","email":"hlarmor7g@who.int","phone":"792-815-5244","gender":"Male","department":"Engineering","address":"21479 Lakewood Gardens Terrace","hire_date":"2/2/2018","website":"http://elpais.com","notes":"sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum","status":3,"type":1,"salary":"$754.10"}, {"id":270,"employee_id":"150900253-7","first_name":"Ring","last_name":"Dockerty","email":"rdockerty7h@patch.com","phone":"370-832-2897","gender":"Male","department":"Accounting","address":"6920 Nancy Pass","hire_date":"3/16/2018","website":"http://foxnews.com","notes":"vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia","status":6,"type":3,"salary":"$1398.74"}, {"id":271,"employee_id":"308867780-2","first_name":"Torrance","last_name":"De Beauchemp","email":"tdebeauchemp7i@dyndns.org","phone":"131-659-2943","gender":"Male","department":"Legal","address":"99517 Brown Pass","hire_date":"6/19/2018","website":"https://seesaa.net","notes":"amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel","status":1,"type":1,"salary":"$642.34"}, {"id":272,"employee_id":"465210678-5","first_name":"Gerda","last_name":"Kilban","email":"gkilban7j@wordpress.com","phone":"127-861-0265","gender":"Female","department":"Services","address":"953 Corscot Way","hire_date":"4/11/2018","website":"https://bloglines.com","notes":"eget tincidunt eget tempus vel pede morbi porttitor lorem id","status":5,"type":2,"salary":"$1243.66"}, {"id":273,"employee_id":"107092987-5","first_name":"Charin","last_name":"Mityashin","email":"cmityashin7k@theglobeandmail.com","phone":"423-805-4825","gender":"Female","department":"Legal","address":"2 Muir Junction","hire_date":"5/24/2018","website":"http://acquirethisname.com","notes":"augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida","status":6,"type":2,"salary":"$539.31"}, {"id":274,"employee_id":"310707991-X","first_name":"Carmelle","last_name":"Pache","email":"cpache7l@disqus.com","phone":"729-123-0155","gender":"Female","department":"Research and Development","address":"758 Continental Center","hire_date":"11/20/2017","website":"http://usa.gov","notes":"id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla","status":6,"type":1,"salary":"$1876.22"}, {"id":275,"employee_id":"309278497-9","first_name":"Cloe","last_name":"Grono","email":"cgrono7m@rambler.ru","phone":"381-473-5768","gender":"Female","department":"Research and Development","address":"643 Calypso Alley","hire_date":"2/10/2018","website":"http://intel.com","notes":"lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in libero ut massa","status":2,"type":2,"salary":"$328.72"}, {"id":276,"employee_id":"163670883-8","first_name":"Nye","last_name":"Caseborne","email":"ncaseborne7n@nhs.uk","phone":"822-569-2084","gender":"Male","department":"Support","address":"81557 Packers Circle","hire_date":"12/3/2017","website":"https://1688.com","notes":"arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget nunc","status":4,"type":2,"salary":"$1951.41"}, {"id":277,"employee_id":"807982530-0","first_name":"Calv","last_name":"Griffe","email":"cgriffe7o@mail.ru","phone":"309-457-7174","gender":"Male","department":"Legal","address":"8980 Jenna Pass","hire_date":"7/30/2017","website":"http://ft.com","notes":"etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat","status":6,"type":3,"salary":"$1857.21"}, {"id":278,"employee_id":"598513541-1","first_name":"Theodoric","last_name":"Wallicker","email":"twallicker7p@e-recht24.de","phone":"266-387-9797","gender":"Male","department":"Business Development","address":"22 Graceland Crossing","hire_date":"2/3/2018","website":"http://army.mil","notes":"et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere","status":3,"type":1,"salary":"$301.36"}, {"id":279,"employee_id":"181306384-2","first_name":"Linn","last_name":"Antonio","email":"lantonio7q@gravatar.com","phone":"462-885-7094","gender":"Male","department":"Human Resources","address":"2 Mockingbird Junction","hire_date":"11/3/2017","website":"https://zimbio.com","notes":"semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero","status":4,"type":1,"salary":"$2085.32"}, {"id":280,"employee_id":"277706165-3","first_name":"Gaylor","last_name":"Suatt","email":"gsuatt7r@hp.com","phone":"684-356-9857","gender":"Male","department":"Business Development","address":"9 Mesta Drive","hire_date":"12/5/2017","website":"http://google.com.hk","notes":"in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim","status":2,"type":1,"salary":"$982.05"}, {"id":281,"employee_id":"301639900-8","first_name":"Nanny","last_name":"Haylock","email":"nhaylock7s@acquirethisname.com","phone":"669-313-8347","gender":"Female","department":"Engineering","address":"269 Fulton Place","hire_date":"6/27/2018","website":"http://sbwire.com","notes":"ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante","status":2,"type":2,"salary":"$292.09"}, {"id":282,"employee_id":"053888448-7","first_name":"Berrie","last_name":"Abbots","email":"babbots7t@lycos.com","phone":"480-456-3043","gender":"Female","department":"Support","address":"7 Luster Circle","hire_date":"8/16/2017","website":"http://slideshare.net","notes":"fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed","status":1,"type":2,"salary":"$685.82"}, {"id":283,"employee_id":"098482265-8","first_name":"Nathaniel","last_name":"Pauls","email":"npauls7u@home.pl","phone":"657-584-6210","gender":"Male","department":"Services","address":"867 Menomonie Road","hire_date":"3/14/2018","website":"https://hubpages.com","notes":"dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium","status":4,"type":1,"salary":"$355.30"}, {"id":284,"employee_id":"087586302-7","first_name":"Hesther","last_name":"Laughlan","email":"hlaughlan7v@jiathis.com","phone":"960-473-6262","gender":"Female","department":"Research and Development","address":"1696 Twin Pines Point","hire_date":"3/23/2018","website":"https://unesco.org","notes":"vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien non mi","status":2,"type":2,"salary":"$2275.59"}, {"id":285,"employee_id":"237086376-5","first_name":"Darill","last_name":"Milne","email":"dmilne7w@bizjournals.com","phone":"450-941-7221","gender":"Male","department":"Engineering","address":"20 Mitchell Park","hire_date":"2/7/2018","website":"https://omniture.com","notes":"congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut","status":6,"type":2,"salary":"$1506.88"}, {"id":286,"employee_id":"490608835-X","first_name":"Shawnee","last_name":"Hasselby","email":"shasselby7x@prlog.org","phone":"153-202-4950","gender":"Female","department":"Engineering","address":"8 Scoville Court","hire_date":"4/14/2018","website":"https://ifeng.com","notes":"nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu","status":3,"type":2,"salary":"$1316.01"}, {"id":287,"employee_id":"412504905-X","first_name":"Bidget","last_name":"Yerrington","email":"byerrington7y@home.pl","phone":"224-835-3319","gender":"Female","department":"Marketing","address":"45 Sherman Plaza","hire_date":"10/27/2017","website":"http://whitehouse.gov","notes":"nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus","status":5,"type":2,"salary":"$1501.27"}, {"id":288,"employee_id":"223859497-3","first_name":"Sasha","last_name":"Zorzin","email":"szorzin7z@dion.ne.jp","phone":"291-899-2406","gender":"Female","department":"Accounting","address":"2819 Towne Alley","hire_date":"8/8/2017","website":"https://pcworld.com","notes":"pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices","status":1,"type":2,"salary":"$2248.19"}, {"id":289,"employee_id":"403340559-3","first_name":"Dareen","last_name":"Lopez","email":"dlopez80@dion.ne.jp","phone":"368-310-7343","gender":"Female","department":"Legal","address":"8 Anzinger Place","hire_date":"11/23/2017","website":"https://howstuffworks.com","notes":"vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent","status":1,"type":3,"salary":"$1451.44"}, {"id":290,"employee_id":"809667453-6","first_name":"Ericha","last_name":"Mayhew","email":"emayhew81@google.it","phone":"923-107-5382","gender":"Female","department":"Legal","address":"15 Dovetail Point","hire_date":"4/5/2018","website":"http://netlog.com","notes":"mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac","status":4,"type":2,"salary":"$571.91"}, {"id":291,"employee_id":"996544982-1","first_name":"Joana","last_name":"Hurch","email":"jhurch82@blinklist.com","phone":"323-570-3104","gender":"Female","department":"Product Management","address":"6 Gina Junction","hire_date":"9/25/2017","website":"http://51.la","notes":"lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer pede justo","status":4,"type":1,"salary":"$1845.68"}, {"id":292,"employee_id":"215493075-1","first_name":"Pollyanna","last_name":"le Keux","email":"plekeux83@gravatar.com","phone":"572-731-3140","gender":"Female","department":"Accounting","address":"6 Ridgeway Place","hire_date":"8/5/2017","website":"https://free.fr","notes":"leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac","status":2,"type":3,"salary":"$252.49"}, {"id":293,"employee_id":"037036201-2","first_name":"Nicola","last_name":"Gymlett","email":"ngymlett84@artisteer.com","phone":"574-535-6890","gender":"Female","department":"Engineering","address":"30945 Namekagon Trail","hire_date":"6/2/2018","website":"https://noaa.gov","notes":"quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci","status":2,"type":1,"salary":"$2458.19"}, {"id":294,"employee_id":"315397200-1","first_name":"Kacy","last_name":"Danilowicz","email":"kdanilowicz85@sakura.ne.jp","phone":"799-523-5840","gender":"Female","department":"Services","address":"110 Oneill Alley","hire_date":"5/8/2018","website":"http://plala.or.jp","notes":"sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus","status":4,"type":3,"salary":"$2190.39"}, {"id":295,"employee_id":"070718246-8","first_name":"Annemarie","last_name":"Duffyn","email":"aduffyn86@hp.com","phone":"778-883-9811","gender":"Female","department":"Product Management","address":"268 Grasskamp Crossing","hire_date":"3/18/2018","website":"https://cam.ac.uk","notes":"mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere nonummy integer","status":6,"type":2,"salary":"$898.77"}, {"id":296,"employee_id":"167312550-6","first_name":"Rebecka","last_name":"Brenard","email":"rbrenard87@tinyurl.com","phone":"499-787-5753","gender":"Female","department":"Services","address":"3 1st Alley","hire_date":"12/30/2017","website":"http://lulu.com","notes":"sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien","status":1,"type":1,"salary":"$873.75"}, {"id":297,"employee_id":"725923240-4","first_name":"Betteanne","last_name":"Fiennes","email":"bfiennes88@free.fr","phone":"827-200-8963","gender":"Female","department":"Accounting","address":"074 Sullivan Plaza","hire_date":"10/8/2017","website":"https://bizjournals.com","notes":"pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut","status":3,"type":1,"salary":"$434.06"}, {"id":298,"employee_id":"150162788-0","first_name":"Devin","last_name":"Scamel","email":"dscamel89@a8.net","phone":"424-569-9626","gender":"Female","department":"Marketing","address":"532 Kings Way","hire_date":"6/2/2018","website":"https://tinyurl.com","notes":"aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce","status":3,"type":3,"salary":"$1799.64"}, {"id":299,"employee_id":"424818371-4","first_name":"Lavinie","last_name":"Collumbell","email":"lcollumbell8a@issuu.com","phone":"202-877-4681","gender":"Female","department":"Sales","address":"069 Tony Alley","hire_date":"10/23/2017","website":"https://ebay.co.uk","notes":"eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer","status":6,"type":1,"salary":"$1350.61"}, {"id":300,"employee_id":"334187692-8","first_name":"Israel","last_name":"Greening","email":"igreening8b@howstuffworks.com","phone":"870-777-0048","gender":"Male","department":"Legal","address":"16 Crownhardt Trail","hire_date":"7/10/2018","website":"https://ycombinator.com","notes":"justo eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst","status":5,"type":3,"salary":"$899.15"}, {"id":301,"employee_id":"578611988-2","first_name":"Constanta","last_name":"Moro","email":"cmoro8c@yahoo.com","phone":"996-690-8094","gender":"Female","department":"Accounting","address":"59779 Kim Parkway","hire_date":"1/14/2018","website":"https://studiopress.com","notes":"odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam","status":5,"type":1,"salary":"$1689.71"}, {"id":302,"employee_id":"414540897-7","first_name":"Whit","last_name":"Cawdron","email":"wcawdron8d@walmart.com","phone":"610-570-2993","gender":"Male","department":"Training","address":"5 Cherokee Park","hire_date":"3/9/2018","website":"https://altervista.org","notes":"urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam","status":3,"type":3,"salary":"$1301.25"}, {"id":303,"employee_id":"610644395-5","first_name":"Josephine","last_name":"Hustler","email":"jhustler8e@home.pl","phone":"754-290-5586","gender":"Female","department":"Sales","address":"1 Columbus Center","hire_date":"7/8/2018","website":"https://apache.org","notes":"est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum","status":1,"type":3,"salary":"$737.25"}, {"id":304,"employee_id":"247568457-7","first_name":"Padgett","last_name":"Petkovic","email":"ppetkovic8f@sciencedaily.com","phone":"706-883-1715","gender":"Male","department":"Training","address":"7562 Elmside Avenue","hire_date":"8/25/2017","website":"https://dot.gov","notes":"eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio","status":3,"type":1,"salary":"$315.46"}, {"id":305,"employee_id":"284294417-8","first_name":"Hermine","last_name":"Gorick","email":"hgorick8g@deviantart.com","phone":"445-925-1000","gender":"Female","department":"Business Development","address":"018 Lerdahl Alley","hire_date":"7/1/2018","website":"http://spotify.com","notes":"dapibus nulla suscipit ligula in lacus curabitur at ipsum ac","status":2,"type":3,"salary":"$1639.32"}, {"id":306,"employee_id":"165433796-X","first_name":"Solomon","last_name":"Hargess","email":"shargess8h@360.cn","phone":"478-786-0363","gender":"Male","department":"Human Resources","address":"773 Redwing Trail","hire_date":"4/1/2018","website":"https://wunderground.com","notes":"id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam","status":3,"type":2,"salary":"$1006.12"}, {"id":307,"employee_id":"509293137-X","first_name":"Ilaire","last_name":"De Atta","email":"ideatta8i@weather.com","phone":"397-577-1997","gender":"Male","department":"Sales","address":"390 Prairie Rose Street","hire_date":"10/20/2017","website":"http://un.org","notes":"penatibus et magnis dis parturient montes nascetur ridiculus mus etiam vel augue","status":5,"type":3,"salary":"$1657.60"}, {"id":308,"employee_id":"809256679-8","first_name":"Nanny","last_name":"Yakobovitz","email":"nyakobovitz8j@1688.com","phone":"614-500-9492","gender":"Female","department":"Research and Development","address":"341 Cherokee Terrace","hire_date":"1/5/2018","website":"https://census.gov","notes":"cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes","status":5,"type":3,"salary":"$957.73"}, {"id":309,"employee_id":"923853518-3","first_name":"Amelie","last_name":"Swindle","email":"aswindle8k@google.com.hk","phone":"728-901-9623","gender":"Female","department":"Research and Development","address":"6 Clove Road","hire_date":"11/26/2017","website":"https://marketplace.net","notes":"arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget","status":3,"type":3,"salary":"$873.12"}, {"id":310,"employee_id":"940525921-0","first_name":"Petunia","last_name":"Tiler","email":"ptiler8l@scientificamerican.com","phone":"225-162-6754","gender":"Female","department":"Business Development","address":"811 Norway Maple Hill","hire_date":"7/22/2017","website":"http://cyberchimps.com","notes":"euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin","status":1,"type":1,"salary":"$1918.35"}, {"id":311,"employee_id":"623711021-6","first_name":"Sonya","last_name":"Yepiskopov","email":"syepiskopov8m@yellowpages.com","phone":"991-193-4740","gender":"Female","department":"Marketing","address":"531 Manitowish Park","hire_date":"7/17/2018","website":"http://surveymonkey.com","notes":"donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum","status":2,"type":3,"salary":"$1770.66"}, {"id":312,"employee_id":"860056745-9","first_name":"Peter","last_name":"Mustard","email":"pmustard8n@topsy.com","phone":"914-359-1940","gender":"Male","department":"Services","address":"7851 Ridgeview Pass","hire_date":"8/5/2017","website":"http://ycombinator.com","notes":"pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique","status":1,"type":2,"salary":"$962.75"}, {"id":313,"employee_id":"692365562-5","first_name":"Alvy","last_name":"Chiommienti","email":"achiommienti8o@ameblo.jp","phone":"142-797-2774","gender":"Male","department":"Legal","address":"030 Eagan Avenue","hire_date":"3/2/2018","website":"http://hc360.com","notes":"mauris eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque","status":5,"type":1,"salary":"$2481.85"}, {"id":314,"employee_id":"175423636-7","first_name":"Vitoria","last_name":"Glanton","email":"vglanton8p@phoca.cz","phone":"903-826-9993","gender":"Female","department":"Human Resources","address":"811 Pond Road","hire_date":"8/8/2017","website":"http://cornell.edu","notes":"eget orci vehicula condimentum curabitur in libero ut massa volutpat","status":1,"type":3,"salary":"$1908.59"}, {"id":315,"employee_id":"034637767-6","first_name":"Lizbeth","last_name":"McIndrew","email":"lmcindrew8q@washington.edu","phone":"982-226-5817","gender":"Female","department":"Business Development","address":"3625 Charing Cross Avenue","hire_date":"8/18/2017","website":"http://usa.gov","notes":"a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla","status":6,"type":3,"salary":"$2025.44"}, {"id":316,"employee_id":"274398934-3","first_name":"Briana","last_name":"Somes","email":"bsomes8r@yelp.com","phone":"221-769-2932","gender":"Female","department":"Training","address":"528 Old Gate Road","hire_date":"7/23/2017","website":"https://jimdo.com","notes":"donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet","status":1,"type":3,"salary":"$1720.83"}, {"id":317,"employee_id":"129990272-3","first_name":"Artus","last_name":"Balentyne","email":"abalentyne8s@opera.com","phone":"439-249-5582","gender":"Male","department":"Sales","address":"564 Weeping Birch Junction","hire_date":"3/14/2018","website":"https://photobucket.com","notes":"consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue","status":2,"type":1,"salary":"$2115.08"}, {"id":318,"employee_id":"066881048-3","first_name":"Papageno","last_name":"Cosson","email":"pcosson8t@princeton.edu","phone":"443-892-1710","gender":"Male","department":"Business Development","address":"38 Gale Parkway","hire_date":"11/18/2017","website":"http://timesonline.co.uk","notes":"pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus","status":5,"type":1,"salary":"$1177.08"}, {"id":319,"employee_id":"209633838-7","first_name":"Rosalinde","last_name":"Elmar","email":"relmar8u@163.com","phone":"687-330-4390","gender":"Female","department":"Training","address":"89 Ridge Oak Junction","hire_date":"6/19/2018","website":"http://unesco.org","notes":"mi in porttitor pede justo eu massa donec dapibus duis at velit eu est congue elementum in hac","status":3,"type":3,"salary":"$981.78"}, {"id":320,"employee_id":"739849131-X","first_name":"Oralie","last_name":"Walton","email":"owalton8v@upenn.edu","phone":"690-833-6583","gender":"Female","department":"Legal","address":"458 Warner Pass","hire_date":"12/24/2017","website":"https://1688.com","notes":"eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et","status":6,"type":1,"salary":"$344.13"}, {"id":321,"employee_id":"715189385-X","first_name":"Rosemaria","last_name":"Picopp","email":"rpicopp8w@army.mil","phone":"532-931-5965","gender":"Female","department":"Business Development","address":"76 Loeprich Avenue","hire_date":"9/29/2017","website":"http://woothemes.com","notes":"lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit","status":5,"type":2,"salary":"$288.15"}, {"id":322,"employee_id":"166085089-4","first_name":"Carline","last_name":"Pittwood","email":"cpittwood8x@hatena.ne.jp","phone":"422-530-3879","gender":"Female","department":"Engineering","address":"87585 Derek Point","hire_date":"8/27/2017","website":"http://usatoday.com","notes":"hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem","status":3,"type":3,"salary":"$1207.13"}, {"id":323,"employee_id":"157554253-6","first_name":"Jilleen","last_name":"Cropton","email":"jcropton8y@disqus.com","phone":"828-751-3129","gender":"Female","department":"Legal","address":"0 Kings Hill","hire_date":"6/23/2018","website":"http://mediafire.com","notes":"praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet","status":5,"type":2,"salary":"$1868.72"}, {"id":324,"employee_id":"437111358-3","first_name":"Ailey","last_name":"Wandless","email":"awandless8z@fda.gov","phone":"343-563-1843","gender":"Female","department":"Sales","address":"209 Annamark Terrace","hire_date":"11/29/2017","website":"https://g.co","notes":"sed tristique in tempus sit amet sem fusce consequat nulla nisl","status":6,"type":1,"salary":"$700.60"}, {"id":325,"employee_id":"425405666-4","first_name":"Benn","last_name":"Darnody","email":"bdarnody90@forbes.com","phone":"317-671-4370","gender":"Male","department":"Accounting","address":"6 Annamark Trail","hire_date":"8/1/2017","website":"http://sphinn.com","notes":"ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit","status":3,"type":3,"salary":"$1648.12"}, {"id":326,"employee_id":"027147980-9","first_name":"Javier","last_name":"Dobel","email":"jdobel91@ftc.gov","phone":"616-238-3661","gender":"Male","department":"Services","address":"28 Morrow Way","hire_date":"8/28/2017","website":"https://aol.com","notes":"praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer","status":4,"type":2,"salary":"$1671.91"}, {"id":327,"employee_id":"780064513-4","first_name":"Rodolph","last_name":"Raymond","email":"rraymond92@census.gov","phone":"223-105-4656","gender":"Male","department":"Product Management","address":"1 Superior Road","hire_date":"4/24/2018","website":"http://feedburner.com","notes":"nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor","status":3,"type":2,"salary":"$1793.50"}, {"id":328,"employee_id":"099405312-6","first_name":"Orrin","last_name":"Proctor","email":"oproctor93@boston.com","phone":"894-981-4761","gender":"Male","department":"Accounting","address":"4024 Arapahoe Road","hire_date":"1/28/2018","website":"http://tuttocitta.it","notes":"phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean","status":6,"type":1,"salary":"$2362.24"}, {"id":329,"employee_id":"965885138-X","first_name":"Quincey","last_name":"Crofts","email":"qcrofts94@nifty.com","phone":"120-205-1280","gender":"Male","department":"Engineering","address":"607 Ronald Regan Circle","hire_date":"12/2/2017","website":"https://ustream.tv","notes":"nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in","status":1,"type":2,"salary":"$712.06"}, {"id":330,"employee_id":"911951987-7","first_name":"Perri","last_name":"O\'Boyle","email":"poboyle95@sohu.com","phone":"860-677-2496","gender":"Female","department":"Legal","address":"3352 Luster Court","hire_date":"12/11/2017","website":"https://ustream.tv","notes":"venenatis turpis enim blandit mi in porttitor pede justo eu massa donec dapibus","status":4,"type":3,"salary":"$521.69"}, {"id":331,"employee_id":"146914324-0","first_name":"Dante","last_name":"Bolens","email":"dbolens96@bbb.org","phone":"448-274-0240","gender":"Male","department":"Training","address":"63 Oak Valley Terrace","hire_date":"12/12/2017","website":"https://blinklist.com","notes":"a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut","status":1,"type":2,"salary":"$1297.71"}, {"id":332,"employee_id":"699716432-3","first_name":"Tamas","last_name":"Stenning","email":"tstenning97@google.com.br","phone":"953-569-7039","gender":"Male","department":"Marketing","address":"37 Trailsway Hill","hire_date":"3/2/2018","website":"https://smugmug.com","notes":"amet lobortis sapien sapien non mi integer ac neque duis","status":3,"type":1,"salary":"$900.97"}, {"id":333,"employee_id":"426960913-3","first_name":"Leighton","last_name":"Milstead","email":"lmilstead98@aboutads.info","phone":"507-834-7444","gender":"Male","department":"Marketing","address":"6334 Havey Pass","hire_date":"9/8/2017","website":"http://oracle.com","notes":"blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing","status":5,"type":3,"salary":"$921.55"}, {"id":334,"employee_id":"333636015-3","first_name":"Marty","last_name":"Filan","email":"mfilan99@guardian.co.uk","phone":"813-841-7462","gender":"Male","department":"Product Management","address":"4 Mesta Circle","hire_date":"11/9/2017","website":"https://jimdo.com","notes":"pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet","status":5,"type":3,"salary":"$2229.49"}, {"id":335,"employee_id":"380151527-3","first_name":"Daffi","last_name":"Outlaw","email":"doutlaw9a@last.fm","phone":"797-403-3462","gender":"Female","department":"Legal","address":"66927 Eggendart Point","hire_date":"4/13/2018","website":"https://apple.com","notes":"enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus","status":3,"type":1,"salary":"$2463.68"}, {"id":336,"employee_id":"744312874-6","first_name":"Marcy","last_name":"Ritson","email":"mritson9b@examiner.com","phone":"362-495-5706","gender":"Female","department":"Legal","address":"03854 Acker Alley","hire_date":"9/18/2017","website":"http://google.it","notes":"faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse","status":4,"type":1,"salary":"$385.52"}, {"id":337,"employee_id":"254761989-X","first_name":"Stepha","last_name":"Clutten","email":"sclutten9c@adobe.com","phone":"227-882-3037","gender":"Female","department":"Research and Development","address":"259 Bowman Lane","hire_date":"4/24/2018","website":"http://cnn.com","notes":"sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat","status":4,"type":3,"salary":"$576.12"}, {"id":338,"employee_id":"413122637-5","first_name":"Manda","last_name":"Duerdin","email":"mduerdin9d@huffingtonpost.com","phone":"654-685-2155","gender":"Female","department":"Support","address":"84 Golden Leaf Place","hire_date":"9/16/2017","website":"http://state.tx.us","notes":"feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna","status":2,"type":2,"salary":"$2102.59"}, {"id":339,"employee_id":"216718181-7","first_name":"Koral","last_name":"Rampton","email":"krampton9e@timesonline.co.uk","phone":"126-699-4471","gender":"Female","department":"Business Development","address":"04894 Sunbrook Alley","hire_date":"7/4/2018","website":"http://mtv.com","notes":"vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris","status":3,"type":3,"salary":"$2066.99"}, {"id":340,"employee_id":"002830020-3","first_name":"Beltran","last_name":"Matteau","email":"bmatteau9f@timesonline.co.uk","phone":"845-424-7176","gender":"Male","department":"Legal","address":"317 Alpine Plaza","hire_date":"4/5/2018","website":"https://issuu.com","notes":"vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et","status":6,"type":3,"salary":"$1375.13"}, {"id":341,"employee_id":"617967669-0","first_name":"Bob","last_name":"Adolphine","email":"badolphine9g@senate.gov","phone":"778-173-9919","gender":"Male","department":"Product Management","address":"57744 Dahle Hill","hire_date":"1/9/2018","website":"http://dailymotion.com","notes":"nulla suspendisse potenti cras in purus eu magna vulputate luctus cum","status":5,"type":1,"salary":"$2399.60"}, {"id":342,"employee_id":"042033829-2","first_name":"Nikolos","last_name":"Luckes","email":"nluckes9h@youku.com","phone":"389-276-9301","gender":"Male","department":"Engineering","address":"678 Almo Circle","hire_date":"11/14/2017","website":"https://csmonitor.com","notes":"pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra","status":4,"type":3,"salary":"$2225.58"}, {"id":343,"employee_id":"012562374-7","first_name":"Melisent","last_name":"Mannock","email":"mmannock9i@google.nl","phone":"664-642-1888","gender":"Female","department":"Product Management","address":"447 Petterle Alley","hire_date":"2/22/2018","website":"http://scribd.com","notes":"sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum","status":6,"type":3,"salary":"$1622.20"}, {"id":344,"employee_id":"527652057-7","first_name":"Rickie","last_name":"McKerron","email":"rmckerron9j@imgur.com","phone":"455-420-1680","gender":"Male","department":"Support","address":"289 Mitchell Plaza","hire_date":"10/5/2017","website":"https://springer.com","notes":"quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse","status":3,"type":2,"salary":"$2196.49"}, {"id":345,"employee_id":"018785785-7","first_name":"Rutledge","last_name":"Airds","email":"rairds9k@engadget.com","phone":"482-847-4841","gender":"Male","department":"Marketing","address":"295 Glendale Center","hire_date":"6/14/2018","website":"https://dmoz.org","notes":"ut erat id mauris vulputate elementum nullam varius nulla facilisi","status":6,"type":3,"salary":"$378.04"}, {"id":346,"employee_id":"466489704-9","first_name":"Denice","last_name":"Wattins","email":"dwattins9l@ustream.tv","phone":"160-530-4641","gender":"Female","department":"Marketing","address":"47 Summerview Center","hire_date":"7/24/2017","website":"https://foxnews.com","notes":"eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst","status":1,"type":2,"salary":"$2297.89"}, {"id":347,"employee_id":"456501961-2","first_name":"Becki","last_name":"Dace","email":"bdace9m@globo.com","phone":"353-384-3408","gender":"Female","department":"Product Management","address":"1342 Shelley Park","hire_date":"2/3/2018","website":"https://ow.ly","notes":"phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus","status":3,"type":3,"salary":"$1806.53"}, {"id":348,"employee_id":"828200940-7","first_name":"Debi","last_name":"Padilla","email":"dpadilla9n@google.pl","phone":"147-413-1467","gender":"Female","department":"Product Management","address":"93 Blaine Avenue","hire_date":"3/16/2018","website":"http://tiny.cc","notes":"vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit","status":2,"type":2,"salary":"$660.15"}, {"id":349,"employee_id":"932799687-9","first_name":"Luella","last_name":"Babington","email":"lbabington9o@nifty.com","phone":"166-814-0072","gender":"Female","department":"Legal","address":"923 Lerdahl Avenue","hire_date":"6/22/2018","website":"https://spotify.com","notes":"dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices","status":3,"type":3,"salary":"$1588.19"}, {"id":350,"employee_id":"773863877-X","first_name":"Michail","last_name":"Alleway","email":"malleway9p@oaic.gov.au","phone":"314-689-0592","gender":"Male","department":"Training","address":"97197 Meadow Vale Place","hire_date":"7/22/2017","website":"http://sbwire.com","notes":"quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida nisi at nibh","status":5,"type":1,"salary":"$710.96"}, {"id":351,"employee_id":"401969383-8","first_name":"Fedora","last_name":"Vescovini","email":"fvescovini9q@mozilla.org","phone":"570-561-0130","gender":"Female","department":"Human Resources","address":"56856 Autumn Leaf Court","hire_date":"3/19/2018","website":"http://lycos.com","notes":"parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et","status":2,"type":2,"salary":"$1640.69"}, {"id":352,"employee_id":"057897886-5","first_name":"Dorisa","last_name":"Truesdale","email":"dtruesdale9r@barnesandnoble.com","phone":"965-618-9058","gender":"Female","department":"Human Resources","address":"96511 Rockefeller Pass","hire_date":"4/16/2018","website":"http://washingtonpost.com","notes":"lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in libero ut","status":2,"type":2,"salary":"$1079.89"}, {"id":353,"employee_id":"667151110-1","first_name":"Wilhelm","last_name":"Sooley","email":"wsooley9s@nature.com","phone":"163-681-8501","gender":"Male","department":"Legal","address":"94 2nd Center","hire_date":"4/10/2018","website":"http://goo.gl","notes":"felis ut at dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi","status":1,"type":1,"salary":"$1200.11"}, {"id":354,"employee_id":"885975098-9","first_name":"Marcus","last_name":"Lambirth","email":"mlambirth9t@odnoklassniki.ru","phone":"908-536-3150","gender":"Male","department":"Services","address":"5410 Armistice Court","hire_date":"6/20/2018","website":"https://tiny.cc","notes":"imperdiet et commodo vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet","status":4,"type":3,"salary":"$482.93"}, {"id":355,"employee_id":"948554103-1","first_name":"Edd","last_name":"Longman","email":"elongman9u@people.com.cn","phone":"896-348-2679","gender":"Male","department":"Support","address":"14 Clemons Parkway","hire_date":"8/15/2017","website":"http://t-online.de","notes":"elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in","status":4,"type":3,"salary":"$1724.68"}, {"id":356,"employee_id":"886135245-6","first_name":"Dion","last_name":"Slimm","email":"dslimm9v@cargocollective.com","phone":"552-796-4713","gender":"Male","department":"Engineering","address":"99800 Sundown Road","hire_date":"2/11/2018","website":"http://over-blog.com","notes":"quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices","status":3,"type":2,"salary":"$261.88"}, {"id":357,"employee_id":"409704042-1","first_name":"Umberto","last_name":"Parkin","email":"uparkin9w@unc.edu","phone":"530-116-4741","gender":"Male","department":"Human Resources","address":"7 Little Fleur Center","hire_date":"7/12/2018","website":"http://nih.gov","notes":"potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis","status":6,"type":3,"salary":"$1385.79"}, {"id":358,"employee_id":"422286342-4","first_name":"Alexia","last_name":"Hunn","email":"ahunn9x@scientificamerican.com","phone":"312-944-0388","gender":"Female","department":"Training","address":"1292 Mifflin Lane","hire_date":"5/5/2018","website":"https://friendfeed.com","notes":"mauris morbi non lectus aliquam sit amet diam in magna bibendum","status":2,"type":2,"salary":"$877.72"}, {"id":359,"employee_id":"375751241-3","first_name":"Sharyl","last_name":"Bewshaw","email":"sbewshaw9y@amazon.com","phone":"453-777-3783","gender":"Female","department":"Research and Development","address":"6147 Scoville Hill","hire_date":"12/20/2017","website":"https://shop-pro.jp","notes":"eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in","status":3,"type":1,"salary":"$2136.63"}, {"id":360,"employee_id":"140406564-4","first_name":"Alfonso","last_name":"Baudy","email":"abaudy9z@artisteer.com","phone":"827-327-0355","gender":"Male","department":"Support","address":"8 Haas Parkway","hire_date":"1/19/2018","website":"http://state.tx.us","notes":"commodo placerat praesent blandit nam nulla integer pede justo lacinia eget","status":5,"type":3,"salary":"$1029.48"}, {"id":361,"employee_id":"696796090-3","first_name":"Ravi","last_name":"Teape","email":"rteapea0@etsy.com","phone":"424-943-6381","gender":"Male","department":"Business Development","address":"37 Kennedy Street","hire_date":"2/6/2018","website":"https://dell.com","notes":"mollis molestie lorem quisque ut erat curabitur gravida nisi at nibh in","status":3,"type":1,"salary":"$372.63"}, {"id":362,"employee_id":"692676315-1","first_name":"Raye","last_name":"Peacop","email":"rpeacopa1@java.com","phone":"119-830-8805","gender":"Female","department":"Human Resources","address":"94868 Darwin Drive","hire_date":"12/22/2017","website":"https://joomla.org","notes":"donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum","status":4,"type":1,"salary":"$1540.19"}, {"id":363,"employee_id":"782871623-0","first_name":"Horten","last_name":"Ridder","email":"hriddera2@newyorker.com","phone":"805-680-9964","gender":"Male","department":"Services","address":"74641 Marcy Park","hire_date":"4/30/2018","website":"http://chronoengine.com","notes":"pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in","status":4,"type":2,"salary":"$643.01"}, {"id":364,"employee_id":"886175718-9","first_name":"Raffaello","last_name":"Mixer","email":"rmixera3@sogou.com","phone":"437-698-1834","gender":"Male","department":"Research and Development","address":"3735 Crowley Crossing","hire_date":"10/27/2017","website":"http://time.com","notes":"nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum","status":6,"type":3,"salary":"$1573.55"}, {"id":365,"employee_id":"491303919-9","first_name":"Elsa","last_name":"Haccleton","email":"ehaccletona4@mysql.com","phone":"425-783-0366","gender":"Female","department":"Sales","address":"466 Ilene Avenue","hire_date":"12/27/2017","website":"https://bizjournals.com","notes":"tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum","status":1,"type":2,"salary":"$488.18"}, {"id":366,"employee_id":"871525779-7","first_name":"Scarface","last_name":"Mayho","email":"smayhoa5@last.fm","phone":"338-818-7650","gender":"Male","department":"Research and Development","address":"54 Morning Hill","hire_date":"9/24/2017","website":"http://tripod.com","notes":"ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut","status":1,"type":1,"salary":"$502.06"}, {"id":367,"employee_id":"482843443-7","first_name":"Bentley","last_name":"Caulder","email":"bcauldera6@goo.ne.jp","phone":"607-353-8589","gender":"Male","department":"Legal","address":"2143 Springview Plaza","hire_date":"2/12/2018","website":"http://loc.gov","notes":"vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec","status":4,"type":2,"salary":"$1107.93"}, {"id":368,"employee_id":"410934604-5","first_name":"Casper","last_name":"Hirjak","email":"chirjaka7@europa.eu","phone":"249-837-2403","gender":"Male","department":"Product Management","address":"337 Carpenter Plaza","hire_date":"3/28/2018","website":"http://tinypic.com","notes":"dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida","status":5,"type":3,"salary":"$1080.93"}, {"id":369,"employee_id":"521192163-1","first_name":"Sharai","last_name":"Rainger","email":"sraingera8@godaddy.com","phone":"899-215-8141","gender":"Female","department":"Training","address":"05 Little Fleur Terrace","hire_date":"11/3/2017","website":"https://bloglovin.com","notes":"sapien urna pretium nisl ut volutpat sapien arcu sed augue","status":3,"type":2,"salary":"$2165.31"}, {"id":370,"employee_id":"540010511-4","first_name":"Kelsi","last_name":"Deporte","email":"kdeportea9@cdbaby.com","phone":"823-268-3114","gender":"Female","department":"Sales","address":"2 Crest Line Center","hire_date":"12/16/2017","website":"http://liveinternet.ru","notes":"vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est","status":6,"type":1,"salary":"$2155.92"}, {"id":371,"employee_id":"533771297-7","first_name":"Luigi","last_name":"Beddow","email":"lbeddowaa@issuu.com","phone":"355-329-4187","gender":"Male","department":"Business Development","address":"148 Macpherson Plaza","hire_date":"6/12/2018","website":"http://baidu.com","notes":"sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus","status":2,"type":3,"salary":"$348.10"}, {"id":372,"employee_id":"726780645-7","first_name":"Selig","last_name":"Landeg","email":"slandegab@dailymail.co.uk","phone":"488-197-2573","gender":"Male","department":"Business Development","address":"02 Ridge Oak Terrace","hire_date":"9/16/2017","website":"https://cbslocal.com","notes":"vestibulum sit amet cursus id turpis integer aliquet massa id lobortis","status":5,"type":1,"salary":"$949.25"}, {"id":373,"employee_id":"433933429-4","first_name":"Killian","last_name":"Foxten","email":"kfoxtenac@nih.gov","phone":"806-666-7844","gender":"Male","department":"Legal","address":"2672 Paget Street","hire_date":"4/29/2018","website":"https://irs.gov","notes":"lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula","status":2,"type":3,"salary":"$842.87"}, {"id":374,"employee_id":"169871789-X","first_name":"Lorant","last_name":"Deschlein","email":"ldeschleinad@fda.gov","phone":"266-596-1401","gender":"Male","department":"Services","address":"48451 East Pass","hire_date":"9/28/2017","website":"https://github.io","notes":"integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla","status":5,"type":3,"salary":"$1401.91"}, {"id":375,"employee_id":"486771991-9","first_name":"Nydia","last_name":"Hovy","email":"nhovyae@umich.edu","phone":"180-866-4707","gender":"Female","department":"Marketing","address":"71405 Packers Parkway","hire_date":"8/14/2017","website":"http://economist.com","notes":"nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur","status":6,"type":3,"salary":"$537.67"}, {"id":376,"employee_id":"794891441-2","first_name":"Pammy","last_name":"Fronks","email":"pfronksaf@netvibes.com","phone":"549-969-9376","gender":"Female","department":"Marketing","address":"2 Anhalt Pass","hire_date":"4/11/2018","website":"http://hc360.com","notes":"blandit mi in porttitor pede justo eu massa donec dapibus duis at velit eu est congue elementum","status":5,"type":3,"salary":"$834.07"}, {"id":377,"employee_id":"950462922-9","first_name":"Colene","last_name":"Gayforth","email":"cgayforthag@yellowbook.com","phone":"401-816-4281","gender":"Female","department":"Marketing","address":"1877 Fair Oaks Road","hire_date":"3/27/2018","website":"https://epa.gov","notes":"at velit vivamus vel nulla eget eros elementum pellentesque quisque","status":6,"type":2,"salary":"$605.34"}, {"id":378,"employee_id":"654524555-4","first_name":"Percival","last_name":"Sooper","email":"psooperah@cnet.com","phone":"316-921-4227","gender":"Male","department":"Business Development","address":"3931 Veith Circle","hire_date":"12/18/2017","website":"http://bravesites.com","notes":"congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede","status":2,"type":3,"salary":"$2124.14"}, {"id":379,"employee_id":"594683672-2","first_name":"Allan","last_name":"Bysh","email":"abyshai@blinklist.com","phone":"437-275-0839","gender":"Male","department":"Research and Development","address":"0763 Sunbrook Way","hire_date":"4/4/2018","website":"http://arizona.edu","notes":"consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere","status":3,"type":3,"salary":"$301.25"}, {"id":380,"employee_id":"250023659-5","first_name":"Evvy","last_name":"Pottes","email":"epottesaj@epa.gov","phone":"294-798-3537","gender":"Female","department":"Research and Development","address":"68 Londonderry Hill","hire_date":"5/24/2018","website":"http://tamu.edu","notes":"ligula vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam","status":5,"type":3,"salary":"$1492.20"}, {"id":381,"employee_id":"235445053-2","first_name":"Antoinette","last_name":"Wyant","email":"awyantak@squarespace.com","phone":"183-115-5357","gender":"Female","department":"Accounting","address":"1 Maple Alley","hire_date":"8/16/2017","website":"http://microsoft.com","notes":"luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum","status":6,"type":1,"salary":"$1136.98"}, {"id":382,"employee_id":"889752343-9","first_name":"Audrie","last_name":"Belamy","email":"abelamyal@indiatimes.com","phone":"111-820-5489","gender":"Female","department":"Support","address":"2859 Acker Court","hire_date":"6/25/2018","website":"http://jalbum.net","notes":"viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a","status":5,"type":2,"salary":"$905.68"}, {"id":383,"employee_id":"622648370-9","first_name":"Rhodia","last_name":"Cosgry","email":"rcosgryam@goo.ne.jp","phone":"350-490-2533","gender":"Female","department":"Engineering","address":"7 Esch Alley","hire_date":"9/2/2017","website":"https://vkontakte.ru","notes":"aliquam erat volutpat in congue etiam justo etiam pretium iaculis","status":1,"type":3,"salary":"$2334.99"}, {"id":384,"employee_id":"803014574-8","first_name":"Fabian","last_name":"Hullyer","email":"fhullyeran@t.co","phone":"127-957-1000","gender":"Male","department":"Training","address":"889 Warbler Pass","hire_date":"7/26/2017","website":"https://mozilla.com","notes":"rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat","status":5,"type":3,"salary":"$266.82"}, {"id":385,"employee_id":"847189830-6","first_name":"Pippa","last_name":"Skatcher","email":"pskatcherao@last.fm","phone":"929-459-4415","gender":"Female","department":"Services","address":"5 Novick Way","hire_date":"4/27/2018","website":"http://uol.com.br","notes":"platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem","status":6,"type":2,"salary":"$1044.65"}, {"id":386,"employee_id":"263904965-8","first_name":"Sayers","last_name":"Balmforth","email":"sbalmforthap@de.vu","phone":"358-989-1332","gender":"Male","department":"Services","address":"3 Northwestern Plaza","hire_date":"7/31/2017","website":"https://economist.com","notes":"magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient","status":6,"type":1,"salary":"$1316.51"}, {"id":387,"employee_id":"428252571-1","first_name":"Vinson","last_name":"Saenz","email":"vsaenzaq@sfgate.com","phone":"250-815-8178","gender":"Male","department":"Sales","address":"21 Karstens Place","hire_date":"2/6/2018","website":"http://geocities.jp","notes":"aliquam convallis nunc proin at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut","status":1,"type":3,"salary":"$2236.61"}, {"id":388,"employee_id":"161994026-4","first_name":"Genevra","last_name":"Ochiltree","email":"gochiltreear@google.co.jp","phone":"714-600-8674","gender":"Female","department":"Engineering","address":"1 Garrison Crossing","hire_date":"10/8/2017","website":"http://zimbio.com","notes":"orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis","status":2,"type":1,"salary":"$1088.97"}, {"id":389,"employee_id":"835257032-3","first_name":"Dale","last_name":"Sottell","email":"dsottellas@google.co.jp","phone":"740-537-9773","gender":"Male","department":"Research and Development","address":"08 Anniversary Plaza","hire_date":"4/17/2018","website":"https://wordpress.com","notes":"ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum","status":2,"type":2,"salary":"$1064.50"}, {"id":390,"employee_id":"107313260-9","first_name":"Lida","last_name":"Huxstep","email":"lhuxstepat@ted.com","phone":"889-948-5199","gender":"Female","department":"Legal","address":"4149 Bluejay Street","hire_date":"8/20/2017","website":"https://ask.com","notes":"est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum","status":3,"type":2,"salary":"$2371.16"}, {"id":391,"employee_id":"985451751-9","first_name":"Friedrich","last_name":"Stratz","email":"fstratzau@telegraph.co.uk","phone":"186-112-9915","gender":"Male","department":"Sales","address":"0 Dryden Court","hire_date":"8/9/2017","website":"http://berkeley.edu","notes":"ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","status":2,"type":3,"salary":"$1988.89"}, {"id":392,"employee_id":"092254097-7","first_name":"Dominik","last_name":"Bartolozzi","email":"dbartolozziav@noaa.gov","phone":"957-324-8100","gender":"Male","department":"Human Resources","address":"991 Onsgard Crossing","hire_date":"3/3/2018","website":"https://ucsd.edu","notes":"libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed vel enim sit amet","status":5,"type":1,"salary":"$2429.00"}, {"id":393,"employee_id":"830741061-4","first_name":"Sioux","last_name":"Lease","email":"sleaseaw@hhs.gov","phone":"549-636-6532","gender":"Female","department":"Business Development","address":"4 Jackson Point","hire_date":"1/21/2018","website":"http://vk.com","notes":"nascetur ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean","status":6,"type":2,"salary":"$2212.91"}, {"id":394,"employee_id":"877010064-0","first_name":"Neall","last_name":"Cronchey","email":"ncroncheyax@nyu.edu","phone":"739-585-7518","gender":"Male","department":"Legal","address":"7 Hintze Road","hire_date":"6/5/2018","website":"http://wunderground.com","notes":"nam congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie","status":1,"type":2,"salary":"$2317.04"}, {"id":395,"employee_id":"499456882-0","first_name":"Berget","last_name":"Matton","email":"bmattonay@answers.com","phone":"619-882-9196","gender":"Female","department":"Marketing","address":"4 Leroy Place","hire_date":"11/8/2017","website":"http://nifty.com","notes":"mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl","status":5,"type":3,"salary":"$1580.67"}, {"id":396,"employee_id":"488959067-6","first_name":"Emelita","last_name":"Robertelli","email":"erobertelliaz@umich.edu","phone":"204-696-0674","gender":"Female","department":"Accounting","address":"95 Lake View Point","hire_date":"6/27/2018","website":"https://paypal.com","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum","status":6,"type":1,"salary":"$1226.25"}, {"id":397,"employee_id":"551305144-3","first_name":"Cindelyn","last_name":"Eveleigh","email":"ceveleighb0@github.com","phone":"176-952-7360","gender":"Female","department":"Product Management","address":"28 Kinsman Place","hire_date":"9/22/2017","website":"https://npr.org","notes":"orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a","status":4,"type":3,"salary":"$1897.98"}, {"id":398,"employee_id":"810440645-0","first_name":"Lorna","last_name":"Kingzett","email":"lkingzettb1@fastcompany.com","phone":"832-292-1374","gender":"Female","department":"Human Resources","address":"48232 Debra Pass","hire_date":"12/21/2017","website":"https://goo.ne.jp","notes":"ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor convallis nulla neque","status":5,"type":3,"salary":"$1026.49"}, {"id":399,"employee_id":"080183001-X","first_name":"Abramo","last_name":"Oakenford","email":"aoakenfordb2@amazon.co.uk","phone":"450-581-3259","gender":"Male","department":"Research and Development","address":"46724 Merchant Crossing","hire_date":"12/13/2017","website":"https://elpais.com","notes":"vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien","status":1,"type":1,"salary":"$1572.74"}, {"id":400,"employee_id":"833852337-2","first_name":"Gabriele","last_name":"Meffan","email":"gmeffanb3@stanford.edu","phone":"944-595-0107","gender":"Male","department":"Product Management","address":"40073 Quincy Plaza","hire_date":"12/19/2017","website":"http://spiegel.de","notes":"justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula","status":5,"type":1,"salary":"$914.07"}, {"id":401,"employee_id":"998052226-7","first_name":"Tabbie","last_name":"Sebrook","email":"tsebrookb4@cocolog-nifty.com","phone":"947-266-9947","gender":"Female","department":"Human Resources","address":"34699 Kingsford Lane","hire_date":"11/4/2017","website":"https://microsoft.com","notes":"bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis","status":5,"type":3,"salary":"$1686.77"}, {"id":402,"employee_id":"133779813-4","first_name":"Edmund","last_name":"Hanlon","email":"ehanlonb5@networksolutions.com","phone":"173-176-9011","gender":"Male","department":"Legal","address":"8340 Continental Point","hire_date":"10/7/2017","website":"https://freewebs.com","notes":"blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula","status":2,"type":1,"salary":"$844.65"}, {"id":403,"employee_id":"613889123-6","first_name":"Terence","last_name":"O\'Beirne","email":"tobeirneb6@cornell.edu","phone":"905-462-3351","gender":"Male","department":"Support","address":"3 Bonner Alley","hire_date":"12/13/2017","website":"http://un.org","notes":"mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac","status":6,"type":2,"salary":"$1577.22"}, {"id":404,"employee_id":"647413403-8","first_name":"Oliviero","last_name":"Sinnatt","email":"osinnattb7@symantec.com","phone":"729-265-7257","gender":"Male","department":"Marketing","address":"1888 Shopko Drive","hire_date":"3/10/2018","website":"https://nsw.gov.au","notes":"cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis","status":5,"type":1,"salary":"$324.89"}, {"id":405,"employee_id":"389069925-1","first_name":"Rochell","last_name":"Ivanenko","email":"rivanenkob8@wunderground.com","phone":"742-462-3688","gender":"Female","department":"Marketing","address":"259 Lawn Junction","hire_date":"11/17/2017","website":"http://desdev.cn","notes":"consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices","status":4,"type":1,"salary":"$2059.09"}, {"id":406,"employee_id":"796375921-X","first_name":"Zelma","last_name":"Cochrane","email":"zcochraneb9@comsenz.com","phone":"872-855-5401","gender":"Female","department":"Training","address":"5 Westridge Junction","hire_date":"5/14/2018","website":"https://blogtalkradio.com","notes":"enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id","status":1,"type":1,"salary":"$2120.66"}, {"id":407,"employee_id":"841989729-9","first_name":"Chauncey","last_name":"Heather","email":"cheatherba@uiuc.edu","phone":"600-700-7118","gender":"Male","department":"Accounting","address":"942 Debs Lane","hire_date":"11/5/2017","website":"https://cmu.edu","notes":"ut volutpat sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam","status":5,"type":3,"salary":"$1866.02"}, {"id":408,"employee_id":"260368664-X","first_name":"Jacqueline","last_name":"Meininking","email":"jmeininkingbb@ustream.tv","phone":"403-605-5221","gender":"Female","department":"Sales","address":"34807 Lillian Hill","hire_date":"1/22/2018","website":"https://slideshare.net","notes":"ut mauris eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo","status":6,"type":2,"salary":"$1897.36"}, {"id":409,"employee_id":"905913948-8","first_name":"Levin","last_name":"Mynett","email":"lmynettbc@tripod.com","phone":"562-364-1414","gender":"Male","department":"Accounting","address":"8270 Artisan Avenue","hire_date":"10/6/2017","website":"https://mlb.com","notes":"orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae","status":4,"type":1,"salary":"$2322.53"}, {"id":410,"employee_id":"650442677-5","first_name":"Enriqueta","last_name":"Pencost","email":"epencostbd@weibo.com","phone":"267-901-5489","gender":"Female","department":"Human Resources","address":"598 Arizona Place","hire_date":"3/21/2018","website":"https://webmd.com","notes":"phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing","status":3,"type":2,"salary":"$1008.64"}, {"id":411,"employee_id":"421313005-3","first_name":"Cornelius","last_name":"Lazare","email":"clazarebe@w3.org","phone":"564-686-3591","gender":"Male","department":"Research and Development","address":"3048 Sutherland Road","hire_date":"3/2/2018","website":"http://weibo.com","notes":"rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non","status":2,"type":3,"salary":"$1325.42"}, {"id":412,"employee_id":"983822460-X","first_name":"Quincy","last_name":"Grahlmans","email":"qgrahlmansbf@theatlantic.com","phone":"866-507-8470","gender":"Male","department":"Engineering","address":"86 Anthes Way","hire_date":"3/2/2018","website":"http://wikia.com","notes":"lacus at turpis donec posuere metus vitae ipsum aliquam non mauris","status":3,"type":1,"salary":"$363.47"}, {"id":413,"employee_id":"117391982-1","first_name":"Cirilo","last_name":"Clynmans","email":"cclynmansbg@umich.edu","phone":"395-209-8577","gender":"Male","department":"Legal","address":"0069 Towne Parkway","hire_date":"4/3/2018","website":"https://paginegialle.it","notes":"congue risus semper porta volutpat quam pede lobortis ligula sit","status":3,"type":1,"salary":"$2046.10"}, {"id":414,"employee_id":"123040897-5","first_name":"Leola","last_name":"Olive","email":"lolivebh@usda.gov","phone":"255-399-7211","gender":"Female","department":"Training","address":"8 Dexter Street","hire_date":"9/13/2017","website":"https://prlog.org","notes":"at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra","status":1,"type":2,"salary":"$2179.76"}, {"id":415,"employee_id":"048982860-4","first_name":"Bessy","last_name":"Lisett","email":"blisettbi@auda.org.au","phone":"141-333-0171","gender":"Female","department":"Research and Development","address":"5 Myrtle Plaza","hire_date":"9/14/2017","website":"https://wikimedia.org","notes":"nibh in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna","status":1,"type":1,"salary":"$703.89"}, {"id":416,"employee_id":"582613143-8","first_name":"Donella","last_name":"Vanns","email":"dvannsbj@wisc.edu","phone":"970-218-4877","gender":"Female","department":"Services","address":"6848 Huxley Plaza","hire_date":"2/13/2018","website":"https://state.tx.us","notes":"lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus","status":6,"type":1,"salary":"$1145.45"}, {"id":417,"employee_id":"081845515-2","first_name":"Roch","last_name":"McCourt","email":"rmccourtbk@addtoany.com","phone":"882-177-9493","gender":"Female","department":"Research and Development","address":"20412 Merry Hill","hire_date":"1/7/2018","website":"http://cocolog-nifty.com","notes":"integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus","status":4,"type":3,"salary":"$817.33"}, {"id":418,"employee_id":"036363287-5","first_name":"Gratiana","last_name":"Burgwin","email":"gburgwinbl@joomla.org","phone":"494-479-3075","gender":"Female","department":"Training","address":"9 Cherokee Lane","hire_date":"6/9/2018","website":"http://seesaa.net","notes":"in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus","status":1,"type":3,"salary":"$2007.48"}, {"id":419,"employee_id":"033776599-5","first_name":"Danita","last_name":"Whitney","email":"dwhitneybm@columbia.edu","phone":"910-138-5581","gender":"Female","department":"Engineering","address":"695 Nancy Street","hire_date":"12/8/2017","website":"http://imgur.com","notes":"at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in hac","status":4,"type":1,"salary":"$2237.53"}, {"id":420,"employee_id":"778275184-5","first_name":"Christoffer","last_name":"Poller","email":"cpollerbn@liveinternet.ru","phone":"509-133-8807","gender":"Male","department":"Marketing","address":"5 Arapahoe Pass","hire_date":"10/15/2017","website":"http://google.co.uk","notes":"arcu libero rutrum ac lobortis vel dapibus at diam nam","status":6,"type":1,"salary":"$1722.57"}, {"id":421,"employee_id":"095854373-9","first_name":"Ericha","last_name":"Physic","email":"ephysicbo@dot.gov","phone":"828-235-6456","gender":"Female","department":"Human Resources","address":"1 Shelley Plaza","hire_date":"5/3/2018","website":"https://comcast.net","notes":"id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris","status":5,"type":1,"salary":"$2094.79"}, {"id":422,"employee_id":"954333375-0","first_name":"Adelle","last_name":"Northedge","email":"anorthedgebp@digg.com","phone":"369-954-3928","gender":"Female","department":"Human Resources","address":"132 Debs Parkway","hire_date":"9/8/2017","website":"http://timesonline.co.uk","notes":"auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis","status":2,"type":1,"salary":"$436.40"}, {"id":423,"employee_id":"407584814-0","first_name":"Phedra","last_name":"Gynn","email":"pgynnbq@quantcast.com","phone":"511-999-5539","gender":"Female","department":"Business Development","address":"965 Portage Alley","hire_date":"8/2/2017","website":"https://myspace.com","notes":"platea dictumst maecenas ut massa quis augue luctus tincidunt nulla","status":3,"type":3,"salary":"$1684.71"}, {"id":424,"employee_id":"812940375-7","first_name":"Erv","last_name":"Mawne","email":"emawnebr@umich.edu","phone":"680-716-0959","gender":"Male","department":"Legal","address":"2 Glacier Hill Place","hire_date":"6/17/2018","website":"https://salon.com","notes":"quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum","status":1,"type":3,"salary":"$544.33"}, {"id":425,"employee_id":"064808940-1","first_name":"Portie","last_name":"Tremblett","email":"ptremblettbs@sitemeter.com","phone":"529-659-3946","gender":"Male","department":"Research and Development","address":"14 Sachs Drive","hire_date":"4/22/2018","website":"http://acquirethisname.com","notes":"quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida","status":5,"type":1,"salary":"$689.76"}, {"id":426,"employee_id":"151407990-9","first_name":"Jaime","last_name":"Bygraves","email":"jbygravesbt@google.cn","phone":"812-900-3571","gender":"Female","department":"Business Development","address":"25 Del Sol Avenue","hire_date":"10/24/2017","website":"http://indiegogo.com","notes":"mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam","status":4,"type":1,"salary":"$280.64"}, {"id":427,"employee_id":"252278282-7","first_name":"Elle","last_name":"Sellack","email":"esellackbu@imgur.com","phone":"142-859-9709","gender":"Female","department":"Legal","address":"41421 Hooker Plaza","hire_date":"10/29/2017","website":"https://woothemes.com","notes":"feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa","status":3,"type":2,"salary":"$507.42"}, {"id":428,"employee_id":"109983946-7","first_name":"Roma","last_name":"Kienlein","email":"rkienleinbv@indiatimes.com","phone":"356-265-5875","gender":"Male","department":"Services","address":"65 Warrior Parkway","hire_date":"8/26/2017","website":"https://rakuten.co.jp","notes":"at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut","status":6,"type":1,"salary":"$914.01"}, {"id":429,"employee_id":"454856453-5","first_name":"Margarita","last_name":"Wedge","email":"mwedgebw@discuz.net","phone":"745-912-2962","gender":"Female","department":"Training","address":"73167 Farragut Terrace","hire_date":"12/25/2017","website":"http://flickr.com","notes":"luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque","status":1,"type":2,"salary":"$280.02"}, {"id":430,"employee_id":"839482313-0","first_name":"Franciskus","last_name":"Teresia","email":"fteresiabx@nymag.com","phone":"993-710-8153","gender":"Male","department":"Research and Development","address":"78 Valley Edge Alley","hire_date":"10/27/2017","website":"http://accuweather.com","notes":"potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt","status":4,"type":1,"salary":"$699.50"}, {"id":431,"employee_id":"760810405-8","first_name":"Christophorus","last_name":"Enderlein","email":"cenderleinby@hexun.com","phone":"320-344-3696","gender":"Male","department":"Legal","address":"1832 Kings Junction","hire_date":"4/6/2018","website":"http://blogtalkradio.com","notes":"at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id","status":3,"type":1,"salary":"$1994.40"}, {"id":432,"employee_id":"182653883-6","first_name":"Maggi","last_name":"Blofield","email":"mblofieldbz@hao123.com","phone":"382-195-4044","gender":"Female","department":"Marketing","address":"21 Carioca Court","hire_date":"10/29/2017","website":"http://opensource.org","notes":"luctus ultricies eu nibh quisque id justo sit amet sapien dignissim","status":5,"type":2,"salary":"$825.43"}, {"id":433,"employee_id":"966678917-5","first_name":"Ag","last_name":"Wearing","email":"awearingc0@gnu.org","phone":"674-999-6239","gender":"Female","department":"Accounting","address":"4 Carey Court","hire_date":"7/9/2018","website":"https://techcrunch.com","notes":"a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio","status":6,"type":2,"salary":"$2049.80"}, {"id":434,"employee_id":"244727837-3","first_name":"Prentiss","last_name":"Kerman","email":"pkermanc1@adobe.com","phone":"783-187-8171","gender":"Male","department":"Marketing","address":"06910 Aberg Road","hire_date":"5/20/2018","website":"https://webmd.com","notes":"eu interdum eu tincidunt in leo maecenas pulvinar lobortis est","status":1,"type":3,"salary":"$1134.24"}, {"id":435,"employee_id":"018330941-3","first_name":"Laureen","last_name":"Lanon","email":"llanonc2@unc.edu","phone":"611-782-3718","gender":"Female","department":"Services","address":"36 Westend Plaza","hire_date":"11/2/2017","website":"https://e-recht24.de","notes":"accumsan tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum","status":1,"type":3,"salary":"$1568.91"}, {"id":436,"employee_id":"081790270-8","first_name":"Larissa","last_name":"Cowill","email":"lcowillc3@go.com","phone":"172-352-8279","gender":"Female","department":"Business Development","address":"1 Onsgard Circle","hire_date":"4/17/2018","website":"http://unblog.fr","notes":"odio consequat varius integer ac leo pellentesque ultrices mattis odio donec","status":4,"type":3,"salary":"$2035.66"}, {"id":437,"employee_id":"767401913-6","first_name":"Arny","last_name":"Mossdale","email":"amossdalec4@ucoz.ru","phone":"859-929-0052","gender":"Male","department":"Accounting","address":"2 Buena Vista Point","hire_date":"4/19/2018","website":"https://umn.edu","notes":"ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna","status":2,"type":1,"salary":"$512.76"}, {"id":438,"employee_id":"086425835-6","first_name":"Deena","last_name":"Kryszkiecicz","email":"dkryszkieciczc5@sitemeter.com","phone":"317-630-8147","gender":"Female","department":"Marketing","address":"9174 Crest Line Junction","hire_date":"7/1/2018","website":"http://microsoft.com","notes":"odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac","status":4,"type":1,"salary":"$491.47"}, {"id":439,"employee_id":"883721633-5","first_name":"Casar","last_name":"Mozzetti","email":"cmozzettic6@pcworld.com","phone":"736-647-0293","gender":"Male","department":"Sales","address":"4147 Bonner Center","hire_date":"1/16/2018","website":"http://nymag.com","notes":"non mi integer ac neque duis bibendum morbi non quam nec dui","status":6,"type":1,"salary":"$1244.14"}, {"id":440,"employee_id":"434650054-4","first_name":"Darice","last_name":"Scripps","email":"dscrippsc7@wix.com","phone":"699-549-7625","gender":"Female","department":"Accounting","address":"4 Daystar Place","hire_date":"9/18/2017","website":"https://wikispaces.com","notes":"in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate","status":4,"type":1,"salary":"$1786.65"}, {"id":441,"employee_id":"076235846-7","first_name":"Kelsi","last_name":"Cancellieri","email":"kcancellieric8@salon.com","phone":"563-608-6571","gender":"Female","department":"Product Management","address":"470 Holmberg Place","hire_date":"8/4/2017","website":"http://ftc.gov","notes":"velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante","status":5,"type":3,"salary":"$513.44"}, {"id":442,"employee_id":"569952107-0","first_name":"Curt","last_name":"Tunmore","email":"ctunmorec9@wisc.edu","phone":"782-762-3868","gender":"Male","department":"Legal","address":"16506 Westend Junction","hire_date":"5/16/2018","website":"https://sakura.ne.jp","notes":"sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl","status":2,"type":3,"salary":"$1213.96"}, {"id":443,"employee_id":"383633966-8","first_name":"Fay","last_name":"Kinnerk","email":"fkinnerkca@macromedia.com","phone":"215-422-3554","gender":"Female","department":"Business Development","address":"02657 Lake View Junction","hire_date":"8/2/2017","website":"http://angelfire.com","notes":"posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue","status":4,"type":2,"salary":"$407.95"}, {"id":444,"employee_id":"729346815-6","first_name":"Kelbee","last_name":"Dumbleton","email":"kdumbletoncb@behance.net","phone":"749-679-4798","gender":"Male","department":"Training","address":"5 Mariners Cove Street","hire_date":"1/24/2018","website":"https://cyberchimps.com","notes":"nascetur ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id","status":5,"type":1,"salary":"$696.08"}, {"id":445,"employee_id":"747521861-9","first_name":"Davin","last_name":"Merricks","email":"dmerrickscc@ask.com","phone":"785-747-6250","gender":"Male","department":"Research and Development","address":"5142 Montana Way","hire_date":"7/13/2018","website":"https://google.pl","notes":"dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in","status":4,"type":2,"salary":"$642.15"}, {"id":446,"employee_id":"216019302-X","first_name":"Garner","last_name":"Dwyr","email":"gdwyrcd@samsung.com","phone":"385-543-7297","gender":"Male","department":"Research and Development","address":"4 Linden Park","hire_date":"8/25/2017","website":"http://nsw.gov.au","notes":"eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien","status":6,"type":2,"salary":"$1391.05"}, {"id":447,"employee_id":"555101167-4","first_name":"Loella","last_name":"Bartosinski","email":"lbartosinskice@topsy.com","phone":"181-493-0626","gender":"Female","department":"Product Management","address":"4498 Loeprich Trail","hire_date":"5/26/2018","website":"http://about.me","notes":"ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor","status":2,"type":3,"salary":"$917.71"}, {"id":448,"employee_id":"970348373-9","first_name":"Zaccaria","last_name":"Cliff","email":"zcliffcf@goodreads.com","phone":"452-781-4791","gender":"Male","department":"Product Management","address":"27100 8th Trail","hire_date":"9/11/2017","website":"https://i2i.jp","notes":"pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus","status":2,"type":3,"salary":"$2137.89"}, {"id":449,"employee_id":"561313066-3","first_name":"Lizabeth","last_name":"Darell","email":"ldarellcg@army.mil","phone":"178-691-2018","gender":"Female","department":"Support","address":"3028 Sunbrook Drive","hire_date":"6/20/2018","website":"https://pagesperso-orange.fr","notes":"nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id","status":3,"type":2,"salary":"$548.39"}, {"id":450,"employee_id":"475249315-2","first_name":"Karole","last_name":"Moorhouse","email":"kmoorhousech@ask.com","phone":"971-402-0509","gender":"Female","department":"Human Resources","address":"83274 Blue Bill Park Center","hire_date":"12/31/2017","website":"https://seattletimes.com","notes":"non mauris morbi non lectus aliquam sit amet diam in magna bibendum","status":1,"type":3,"salary":"$1469.00"}, {"id":451,"employee_id":"890740322-8","first_name":"Tyne","last_name":"Carbine","email":"tcarbineci@illinois.edu","phone":"988-771-6510","gender":"Female","department":"Human Resources","address":"8568 American Crossing","hire_date":"12/15/2017","website":"https://apple.com","notes":"nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros","status":3,"type":1,"salary":"$662.93"}, {"id":452,"employee_id":"737691319-X","first_name":"Pattie","last_name":"Ben-Aharon","email":"pbenaharoncj@sciencedirect.com","phone":"261-507-6937","gender":"Male","department":"Research and Development","address":"671 Walton Point","hire_date":"5/8/2018","website":"http://blinklist.com","notes":"vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget","status":5,"type":3,"salary":"$882.17"}, {"id":453,"employee_id":"622434271-7","first_name":"Alberik","last_name":"O\'Regan","email":"aoreganck@gmpg.org","phone":"282-555-1049","gender":"Male","department":"Training","address":"2298 Summer Ridge Way","hire_date":"12/3/2017","website":"https://arstechnica.com","notes":"in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque","status":3,"type":1,"salary":"$1495.86"}, {"id":454,"employee_id":"024409622-8","first_name":"Melessa","last_name":"Jennery","email":"mjennerycl@army.mil","phone":"163-199-2858","gender":"Female","department":"Training","address":"14485 Mandrake Street","hire_date":"10/1/2017","website":"https://macromedia.com","notes":"ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer pede","status":4,"type":1,"salary":"$1533.74"}, {"id":455,"employee_id":"681357341-1","first_name":"Pablo","last_name":"Kearns","email":"pkearnscm@wunderground.com","phone":"859-351-4526","gender":"Male","department":"Engineering","address":"26982 8th Terrace","hire_date":"11/9/2017","website":"http://huffingtonpost.com","notes":"montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient","status":1,"type":3,"salary":"$1783.68"}, {"id":456,"employee_id":"964951088-5","first_name":"Kyle","last_name":"Shallow","email":"kshallowcn@shop-pro.jp","phone":"328-483-0063","gender":"Male","department":"Support","address":"3 Transport Parkway","hire_date":"11/28/2017","website":"http://guardian.co.uk","notes":"amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed","status":6,"type":2,"salary":"$460.54"}, {"id":457,"employee_id":"312016021-0","first_name":"Gunter","last_name":"Hammatt","email":"ghammattco@slashdot.org","phone":"708-848-5471","gender":"Male","department":"Sales","address":"9 Springview Circle","hire_date":"9/19/2017","website":"http://ucoz.ru","notes":"quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor","status":1,"type":1,"salary":"$982.54"}, {"id":458,"employee_id":"851918413-8","first_name":"Justis","last_name":"Libby","email":"jlibbycp@answers.com","phone":"142-806-3092","gender":"Male","department":"Accounting","address":"0 Boyd Street","hire_date":"2/21/2018","website":"https://lycos.com","notes":"elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue","status":2,"type":2,"salary":"$641.35"}, {"id":459,"employee_id":"213358260-6","first_name":"Aldus","last_name":"McClintock","email":"amcclintockcq@nydailynews.com","phone":"332-699-9611","gender":"Male","department":"Legal","address":"84181 Westend Way","hire_date":"9/25/2017","website":"http://free.fr","notes":"tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo","status":2,"type":2,"salary":"$1369.07"}, {"id":460,"employee_id":"672487599-4","first_name":"Luce","last_name":"Sculley","email":"lsculleycr@myspace.com","phone":"121-950-8814","gender":"Female","department":"Support","address":"008 Fairfield Pass","hire_date":"12/21/2017","website":"http://buzzfeed.com","notes":"dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero","status":5,"type":1,"salary":"$1348.05"}, {"id":461,"employee_id":"647304520-1","first_name":"Guilbert","last_name":"Denty","email":"gdentycs@cbsnews.com","phone":"574-982-6460","gender":"Male","department":"Training","address":"37882 Thierer Crossing","hire_date":"10/28/2017","website":"https://gnu.org","notes":"lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam","status":6,"type":2,"salary":"$296.09"}, {"id":462,"employee_id":"189235750-X","first_name":"Erika","last_name":"Eldred","email":"eeldredct@icio.us","phone":"733-760-3435","gender":"Female","department":"Research and Development","address":"94826 Logan Place","hire_date":"2/18/2018","website":"https://freewebs.com","notes":"ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis","status":2,"type":2,"salary":"$741.69"}, {"id":463,"employee_id":"419696894-5","first_name":"Jo","last_name":"Copeman","email":"jcopemancu@geocities.com","phone":"173-702-0656","gender":"Male","department":"Business Development","address":"4949 Kennedy Lane","hire_date":"7/14/2018","website":"https://ed.gov","notes":"nulla facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros","status":6,"type":2,"salary":"$1835.35"}, {"id":464,"employee_id":"015027493-9","first_name":"Peyter","last_name":"Hellmore","email":"phellmorecv@digg.com","phone":"632-582-9736","gender":"Male","department":"Engineering","address":"3121 Waywood Hill","hire_date":"9/6/2017","website":"https://imdb.com","notes":"nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc","status":6,"type":2,"salary":"$2212.66"}, {"id":465,"employee_id":"832937399-1","first_name":"Orin","last_name":"Barbie","email":"obarbiecw@huffingtonpost.com","phone":"256-215-8770","gender":"Male","department":"Marketing","address":"32669 Iowa Parkway","hire_date":"2/18/2018","website":"http://artisteer.com","notes":"pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a","status":1,"type":1,"salary":"$1866.77"}, {"id":466,"employee_id":"072281813-0","first_name":"Orelee","last_name":"Copsey","email":"ocopseycx@utexas.edu","phone":"394-385-8452","gender":"Female","department":"Support","address":"8 Drewry Point","hire_date":"10/4/2017","website":"https://constantcontact.com","notes":"enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id","status":4,"type":2,"salary":"$1230.46"}, {"id":467,"employee_id":"606044235-8","first_name":"Sigismondo","last_name":"Ofen","email":"sofency@mapquest.com","phone":"341-819-8669","gender":"Male","department":"Research and Development","address":"77396 Doe Crossing Alley","hire_date":"8/11/2017","website":"http://princeton.edu","notes":"pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim lorem","status":6,"type":2,"salary":"$1765.19"}, {"id":468,"employee_id":"821273689-X","first_name":"Jedediah","last_name":"MacLaig","email":"jmaclaigcz@360.cn","phone":"534-631-5874","gender":"Male","department":"Services","address":"4 Comanche Parkway","hire_date":"1/12/2018","website":"https://squarespace.com","notes":"curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel","status":4,"type":1,"salary":"$1215.24"}, {"id":469,"employee_id":"066207236-7","first_name":"Beverlee","last_name":"O\' Loughran","email":"boloughrand0@cyberchimps.com","phone":"127-755-5606","gender":"Female","department":"Marketing","address":"74 Lotheville Parkway","hire_date":"12/11/2017","website":"https://nsw.gov.au","notes":"vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis","status":6,"type":3,"salary":"$2307.28"}, {"id":470,"employee_id":"844898553-2","first_name":"Martica","last_name":"Matteoli","email":"mmatteolid1@pen.io","phone":"672-519-4332","gender":"Female","department":"Engineering","address":"2 Badeau Junction","hire_date":"4/12/2018","website":"https://npr.org","notes":"consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue","status":6,"type":3,"salary":"$984.27"}, {"id":471,"employee_id":"311719965-9","first_name":"Huberto","last_name":"Potte","email":"hpotted2@princeton.edu","phone":"863-788-5617","gender":"Male","department":"Marketing","address":"87 Ridge Oak Parkway","hire_date":"4/19/2018","website":"http://washington.edu","notes":"faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec","status":1,"type":3,"salary":"$878.14"}, {"id":472,"employee_id":"582143417-3","first_name":"Cliff","last_name":"Packer","email":"cpackerd3@kickstarter.com","phone":"508-822-7087","gender":"Male","department":"Services","address":"5595 Burrows Point","hire_date":"6/24/2018","website":"https://techcrunch.com","notes":"curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a","status":6,"type":3,"salary":"$381.41"}, {"id":473,"employee_id":"855235495-0","first_name":"Ross","last_name":"Ladley","email":"rladleyd4@cnn.com","phone":"198-656-5423","gender":"Male","department":"Product Management","address":"1 Northport Road","hire_date":"6/15/2018","website":"http://bluehost.com","notes":"dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus","status":2,"type":2,"salary":"$2146.81"}, {"id":474,"employee_id":"404159862-1","first_name":"Alyce","last_name":"McCleod","email":"amccleodd5@redcross.org","phone":"880-580-5700","gender":"Female","department":"Human Resources","address":"925 Bultman Parkway","hire_date":"2/25/2018","website":"https://com.com","notes":"fusce congue diam id ornare imperdiet sapien urna pretium nisl ut","status":6,"type":3,"salary":"$1903.25"}, {"id":475,"employee_id":"589835155-8","first_name":"Verina","last_name":"Courvert","email":"vcourvertd6@cafepress.com","phone":"172-360-9828","gender":"Female","department":"Accounting","address":"8974 Spaight Street","hire_date":"7/16/2018","website":"https://google.fr","notes":"duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam","status":6,"type":1,"salary":"$1561.79"}, {"id":476,"employee_id":"972641382-6","first_name":"Culver","last_name":"Marchant","email":"cmarchantd7@hhs.gov","phone":"554-336-4806","gender":"Male","department":"Support","address":"399 Loomis Way","hire_date":"3/27/2018","website":"https://simplemachines.org","notes":"dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium","status":4,"type":1,"salary":"$654.68"}, {"id":477,"employee_id":"500316478-5","first_name":"Caye","last_name":"Vogl","email":"cvogld8@weibo.com","phone":"185-256-5198","gender":"Female","department":"Research and Development","address":"96853 Homewood Pass","hire_date":"4/5/2018","website":"https://intel.com","notes":"mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl","status":3,"type":1,"salary":"$1814.29"}, {"id":478,"employee_id":"907436177-3","first_name":"Clerc","last_name":"Ramalhete","email":"cramalheted9@slate.com","phone":"830-908-1520","gender":"Male","department":"Legal","address":"93 Almo Hill","hire_date":"1/1/2018","website":"http://wufoo.com","notes":"sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices","status":5,"type":2,"salary":"$1579.44"}, {"id":479,"employee_id":"995025649-6","first_name":"Tomkin","last_name":"Hasluck","email":"thasluckda@fema.gov","phone":"978-887-7805","gender":"Male","department":"Services","address":"8482 Lindbergh Place","hire_date":"2/16/2018","website":"http://pcworld.com","notes":"vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam","status":3,"type":1,"salary":"$953.22"}, {"id":480,"employee_id":"066615751-0","first_name":"Odette","last_name":"Giabuzzi","email":"ogiabuzzidb@posterous.com","phone":"489-723-2878","gender":"Female","department":"Business Development","address":"45078 Burning Wood Court","hire_date":"3/10/2018","website":"https://oaic.gov.au","notes":"in congue etiam justo etiam pretium iaculis justo in hac habitasse platea","status":3,"type":2,"salary":"$254.89"}, {"id":481,"employee_id":"702181810-6","first_name":"Jervis","last_name":"Agdahl","email":"jagdahldc@typepad.com","phone":"912-890-8348","gender":"Male","department":"Marketing","address":"44161 Trailsway Crossing","hire_date":"11/25/2017","website":"https://furl.net","notes":"nisl nunc rhoncus dui vel sem sed sagittis nam congue risus","status":6,"type":1,"salary":"$1736.06"}, {"id":482,"employee_id":"718527178-9","first_name":"Selby","last_name":"Dore","email":"sdoredd@sogou.com","phone":"273-822-7706","gender":"Male","department":"Sales","address":"9855 Aberg Alley","hire_date":"4/26/2018","website":"http://hp.com","notes":"a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis","status":2,"type":1,"salary":"$665.95"}, {"id":483,"employee_id":"194704747-7","first_name":"Peyter","last_name":"Simonsson","email":"psimonssonde@theguardian.com","phone":"745-367-5082","gender":"Male","department":"Research and Development","address":"26 Donald Avenue","hire_date":"1/17/2018","website":"http://netvibes.com","notes":"sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit","status":4,"type":3,"salary":"$648.55"}, {"id":484,"employee_id":"546275328-4","first_name":"Tarrah","last_name":"Badrick","email":"tbadrickdf@geocities.jp","phone":"197-873-5702","gender":"Female","department":"Support","address":"8 Farmco Hill","hire_date":"4/23/2018","website":"http://hao123.com","notes":"quam nec dui luctus rutrum nulla tellus in sagittis dui","status":2,"type":2,"salary":"$505.63"}, {"id":485,"employee_id":"161723623-3","first_name":"Eduino","last_name":"Trengrouse","email":"etrengrousedg@hao123.com","phone":"225-234-9800","gender":"Male","department":"Business Development","address":"76471 Spaight Drive","hire_date":"5/22/2018","website":"https://ovh.net","notes":"mauris eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu","status":1,"type":2,"salary":"$1731.67"}, {"id":486,"employee_id":"070034175-7","first_name":"Shir","last_name":"Capper","email":"scapperdh@multiply.com","phone":"537-286-9052","gender":"Female","department":"Research and Development","address":"8 Troy Place","hire_date":"4/5/2018","website":"http://cnet.com","notes":"lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed","status":2,"type":1,"salary":"$494.21"}, {"id":487,"employee_id":"767827536-6","first_name":"Tani","last_name":"Cuxson","email":"tcuxsondi@yahoo.com","phone":"880-339-2128","gender":"Female","department":"Support","address":"8250 Eagan Terrace","hire_date":"4/5/2018","website":"http://howstuffworks.com","notes":"morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet","status":6,"type":2,"salary":"$959.94"}, {"id":488,"employee_id":"902168185-4","first_name":"Rand","last_name":"MacQueen","email":"rmacqueendj@bravesites.com","phone":"617-715-8951","gender":"Male","department":"Accounting","address":"08228 Pawling Court","hire_date":"3/14/2018","website":"https://state.tx.us","notes":"vulputate elementum nullam varius nulla facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus","status":6,"type":2,"salary":"$1160.93"}, {"id":489,"employee_id":"040879291-4","first_name":"Talyah","last_name":"Shernock","email":"tshernockdk@state.tx.us","phone":"741-423-4538","gender":"Female","department":"Sales","address":"20 Melby Avenue","hire_date":"2/25/2018","website":"http://e-recht24.de","notes":"pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc","status":2,"type":1,"salary":"$572.13"}, {"id":490,"employee_id":"474259442-8","first_name":"Jacquelin","last_name":"Santello","email":"jsantellodl@geocities.com","phone":"537-411-8619","gender":"Female","department":"Support","address":"57889 Manitowish Alley","hire_date":"8/20/2017","website":"https://i2i.jp","notes":"sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris","status":3,"type":1,"salary":"$332.58"}, {"id":491,"employee_id":"450169658-3","first_name":"Bell","last_name":"Beckley","email":"bbeckleydm@cloudflare.com","phone":"217-894-3996","gender":"Female","department":"Support","address":"77 Mosinee Drive","hire_date":"6/24/2018","website":"http://sogou.com","notes":"vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat","status":2,"type":2,"salary":"$1353.02"}, {"id":492,"employee_id":"086726928-6","first_name":"Ivory","last_name":"Likly","email":"iliklydn@scientificamerican.com","phone":"609-525-5539","gender":"Female","department":"Training","address":"661 Daystar Pass","hire_date":"8/27/2017","website":"http://sfgate.com","notes":"iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat","status":1,"type":2,"salary":"$1809.00"}, {"id":493,"employee_id":"711819703-3","first_name":"Fae","last_name":"Wiggall","email":"fwiggalldo@columbia.edu","phone":"437-540-3973","gender":"Female","department":"Marketing","address":"36 Forest Dale Circle","hire_date":"9/24/2017","website":"http://newsvine.com","notes":"dui proin leo odio porttitor id consequat in consequat ut","status":4,"type":3,"salary":"$2403.80"}, {"id":494,"employee_id":"290349600-5","first_name":"Ernestine","last_name":"Goalby","email":"egoalbydp@digg.com","phone":"180-831-1929","gender":"Female","department":"Engineering","address":"7 Del Mar Point","hire_date":"10/19/2017","website":"https://tiny.cc","notes":"quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere","status":6,"type":3,"salary":"$2336.08"}, {"id":495,"employee_id":"538385022-8","first_name":"Jessie","last_name":"Impey","email":"jimpeydq@washingtonpost.com","phone":"422-805-3725","gender":"Female","department":"Business Development","address":"287 Ryan Point","hire_date":"3/31/2018","website":"https://go.com","notes":"eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor","status":5,"type":2,"salary":"$611.44"}, {"id":496,"employee_id":"143360510-4","first_name":"Yanaton","last_name":"Camplejohn","email":"ycamplejohndr@nhs.uk","phone":"936-368-9176","gender":"Male","department":"Marketing","address":"99 Northland Pass","hire_date":"9/3/2017","website":"https://is.gd","notes":"enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet","status":4,"type":1,"salary":"$2245.39"}, {"id":497,"employee_id":"750684578-4","first_name":"Trudi","last_name":"Overington","email":"toveringtonds@prlog.org","phone":"270-552-8062","gender":"Female","department":"Marketing","address":"7427 Blaine Place","hire_date":"10/17/2017","website":"http://dion.ne.jp","notes":"mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris","status":1,"type":2,"salary":"$1073.92"}, {"id":498,"employee_id":"221179228-6","first_name":"Clemmie","last_name":"Durek","email":"cdurekdt@whitehouse.gov","phone":"692-244-6198","gender":"Male","department":"Human Resources","address":"58886 Alpine Terrace","hire_date":"4/12/2018","website":"https://senate.gov","notes":"nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula","status":6,"type":2,"salary":"$1969.24"}, {"id":499,"employee_id":"568206519-0","first_name":"Saunder","last_name":"Pain","email":"spaindu@de.vu","phone":"473-272-7672","gender":"Male","department":"Business Development","address":"57956 Packers Trail","hire_date":"9/14/2017","website":"https://wp.com","notes":"amet eleifend pede libero quis orci nullam molestie nibh in","status":3,"type":1,"salary":"$377.29"}, {"id":500,"employee_id":"425526429-5","first_name":"Sam","last_name":"Thomann","email":"sthomanndv@vimeo.com","phone":"614-882-2312","gender":"Female","department":"Human Resources","address":"5 Red Cloud Trail","hire_date":"5/11/2018","website":"http://mtv.com","notes":"purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio","status":1,"type":3,"salary":"$1111.96"}, {"id":501,"employee_id":"117610162-5","first_name":"Lindsay","last_name":"Kraut","email":"lkrautdw@cnet.com","phone":"425-547-6447","gender":"Female","department":"Engineering","address":"5672 Clemons Lane","hire_date":"6/8/2018","website":"https://fastcompany.com","notes":"id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede","status":2,"type":1,"salary":"$760.65"}, {"id":502,"employee_id":"984428955-6","first_name":"Sholom","last_name":"Shipman","email":"sshipmandx@networkadvertising.org","phone":"471-320-6739","gender":"Male","department":"Research and Development","address":"10 Sutteridge Crossing","hire_date":"6/10/2018","website":"http://comsenz.com","notes":"adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum","status":3,"type":1,"salary":"$1776.23"}, {"id":503,"employee_id":"410067431-7","first_name":"Josefa","last_name":"Wynn","email":"jwynndy@cnet.com","phone":"498-617-3001","gender":"Female","department":"Legal","address":"626 Muir Circle","hire_date":"11/10/2017","website":"http://arizona.edu","notes":"integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse","status":1,"type":3,"salary":"$1226.60"}, {"id":504,"employee_id":"028594067-8","first_name":"Gae","last_name":"McKane","email":"gmckanedz@washington.edu","phone":"206-954-8266","gender":"Female","department":"Research and Development","address":"29777 Sommers Alley","hire_date":"9/20/2017","website":"http://adobe.com","notes":"porta volutpat quam pede lobortis ligula sit amet eleifend pede libero","status":2,"type":2,"salary":"$407.96"}, {"id":505,"employee_id":"326426622-9","first_name":"Lorinda","last_name":"Tomowicz","email":"ltomowicze0@msu.edu","phone":"328-817-3161","gender":"Female","department":"Product Management","address":"712 Mallard Drive","hire_date":"10/5/2017","website":"https://un.org","notes":"sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat","status":4,"type":1,"salary":"$2408.57"}, {"id":506,"employee_id":"270468637-8","first_name":"Rafi","last_name":"Mc Harg","email":"rmcharge1@gnu.org","phone":"499-665-2017","gender":"Male","department":"Marketing","address":"355 Milwaukee Pass","hire_date":"9/2/2017","website":"https://apple.com","notes":"sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim","status":2,"type":1,"salary":"$2260.97"}, {"id":507,"employee_id":"383508689-8","first_name":"Perceval","last_name":"Apark","email":"paparke2@ow.ly","phone":"917-150-4444","gender":"Male","department":"Business Development","address":"369 East Point","hire_date":"10/1/2017","website":"http://icq.com","notes":"integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula","status":5,"type":1,"salary":"$1344.27"}, {"id":508,"employee_id":"195865159-1","first_name":"Dyann","last_name":"Iacobo","email":"diacoboe3@rediff.com","phone":"699-728-7247","gender":"Female","department":"Legal","address":"709 High Crossing Junction","hire_date":"2/20/2018","website":"https://yellowpages.com","notes":"ultrices mattis odio donec vitae nisi nam ultrices libero non mattis","status":6,"type":1,"salary":"$1111.05"}, {"id":509,"employee_id":"981494545-5","first_name":"Cornall","last_name":"Arnfield","email":"carnfielde4@ebay.co.uk","phone":"731-176-4240","gender":"Male","department":"Research and Development","address":"71 Lakewood Way","hire_date":"5/17/2018","website":"http://vk.com","notes":"mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor","status":3,"type":2,"salary":"$821.90"}, {"id":510,"employee_id":"088408667-4","first_name":"Wendall","last_name":"Langmaid","email":"wlangmaide5@sourceforge.net","phone":"335-490-0227","gender":"Male","department":"Product Management","address":"20191 Katie Street","hire_date":"9/23/2017","website":"http://dyndns.org","notes":"lorem quisque ut erat curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer","status":1,"type":3,"salary":"$557.72"}, {"id":511,"employee_id":"725959027-0","first_name":"Gustavo","last_name":"Frowde","email":"gfrowdee6@sciencedaily.com","phone":"226-885-7445","gender":"Male","department":"Marketing","address":"91 Westerfield Park","hire_date":"4/24/2018","website":"http://reddit.com","notes":"ligula sit amet eleifend pede libero quis orci nullam molestie nibh in","status":6,"type":2,"salary":"$795.00"}, {"id":512,"employee_id":"065409990-1","first_name":"Dyann","last_name":"Rousell","email":"drouselle7@so-net.ne.jp","phone":"296-840-4065","gender":"Female","department":"Marketing","address":"82161 Jay Road","hire_date":"9/25/2017","website":"https://blogspot.com","notes":"ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia","status":2,"type":3,"salary":"$765.07"}, {"id":513,"employee_id":"285010494-9","first_name":"Lucienne","last_name":"Castello","email":"lcastelloe8@exblog.jp","phone":"680-565-2679","gender":"Female","department":"Business Development","address":"32620 Sutherland Lane","hire_date":"11/19/2017","website":"http://squidoo.com","notes":"sed tristique in tempus sit amet sem fusce consequat nulla","status":6,"type":2,"salary":"$1540.86"}, {"id":514,"employee_id":"595628191-X","first_name":"Jacquie","last_name":"Millsom","email":"jmillsome9@stanford.edu","phone":"732-658-4644","gender":"Female","department":"Sales","address":"5 West Drive","hire_date":"7/22/2017","website":"http://edublogs.org","notes":"sit amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum","status":4,"type":2,"salary":"$1071.47"}, {"id":515,"employee_id":"067222722-3","first_name":"Agretha","last_name":"Kevern","email":"akevernea@pbs.org","phone":"678-329-6733","gender":"Female","department":"Sales","address":"7099 Prentice Drive","hire_date":"9/22/2017","website":"http://pbs.org","notes":"condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan","status":3,"type":2,"salary":"$335.98"}, {"id":516,"employee_id":"054554550-1","first_name":"Cybill","last_name":"Maddison","email":"cmaddisoneb@angelfire.com","phone":"964-989-9152","gender":"Female","department":"Accounting","address":"87630 Mockingbird Place","hire_date":"5/24/2018","website":"http://unesco.org","notes":"iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque","status":6,"type":1,"salary":"$821.01"}, {"id":517,"employee_id":"817006907-6","first_name":"Abe","last_name":"Barme","email":"abarmeec@yellowbook.com","phone":"767-754-0994","gender":"Male","department":"Human Resources","address":"96 Service Circle","hire_date":"1/14/2018","website":"https://nature.com","notes":"tortor risus dapibus augue vel accumsan tellus nisi eu orci","status":3,"type":3,"salary":"$1875.92"}, {"id":518,"employee_id":"743717134-1","first_name":"Sallee","last_name":"Ephgrave","email":"sephgraveed@usda.gov","phone":"959-505-3973","gender":"Female","department":"Research and Development","address":"913 Laurel Place","hire_date":"3/28/2018","website":"https://bloglovin.com","notes":"dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie","status":5,"type":2,"salary":"$1313.62"}, {"id":519,"employee_id":"385122785-9","first_name":"Vlad","last_name":"Kasbye","email":"vkasbyeee@ycombinator.com","phone":"270-122-0315","gender":"Male","department":"Research and Development","address":"77 Cambridge Crossing","hire_date":"3/23/2018","website":"http://123-reg.co.uk","notes":"sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum","status":1,"type":1,"salary":"$2258.49"}, {"id":520,"employee_id":"891359762-4","first_name":"Aluino","last_name":"Thoresbie","email":"athoresbieef@yellowbook.com","phone":"406-945-8430","gender":"Male","department":"Accounting","address":"08556 Chinook Center","hire_date":"2/7/2018","website":"https://163.com","notes":"diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci","status":5,"type":1,"salary":"$1746.72"}, {"id":521,"employee_id":"009979810-7","first_name":"Pansy","last_name":"Meco","email":"pmecoeg@newsvine.com","phone":"577-321-5002","gender":"Female","department":"Training","address":"2 Anhalt Plaza","hire_date":"6/9/2018","website":"http://godaddy.com","notes":"lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh","status":4,"type":2,"salary":"$996.08"}, {"id":522,"employee_id":"817438242-9","first_name":"Tyrus","last_name":"Jameson","email":"tjamesoneh@example.com","phone":"942-794-5383","gender":"Male","department":"Marketing","address":"1159 Quincy Park","hire_date":"2/16/2018","website":"https://tinypic.com","notes":"non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla","status":1,"type":2,"salary":"$683.93"}, {"id":523,"employee_id":"425717013-1","first_name":"Gasper","last_name":"Casin","email":"gcasinei@bbb.org","phone":"924-594-2762","gender":"Male","department":"Services","address":"54 Butternut Junction","hire_date":"3/6/2018","website":"http://imgur.com","notes":"nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis ligula sit amet","status":6,"type":2,"salary":"$360.97"}, {"id":524,"employee_id":"309675188-9","first_name":"Thatch","last_name":"Crinkley","email":"tcrinkleyej@artisteer.com","phone":"166-901-1673","gender":"Male","department":"Product Management","address":"241 Lighthouse Bay Plaza","hire_date":"10/17/2017","website":"http://mlb.com","notes":"augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea","status":5,"type":2,"salary":"$1397.54"}, {"id":525,"employee_id":"578154346-5","first_name":"Dukey","last_name":"Hacun","email":"dhacunek@timesonline.co.uk","phone":"288-708-4115","gender":"Male","department":"Accounting","address":"52824 Transport Place","hire_date":"12/27/2017","website":"https://pcworld.com","notes":"posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui","status":3,"type":3,"salary":"$2376.40"}, {"id":526,"employee_id":"379738361-4","first_name":"Lindy","last_name":"Billo","email":"lbilloel@macromedia.com","phone":"801-573-9373","gender":"Female","department":"Research and Development","address":"54404 Hermina Terrace","hire_date":"10/1/2017","website":"http://nsw.gov.au","notes":"semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat ut nulla","status":6,"type":3,"salary":"$2158.48"}, {"id":527,"employee_id":"466883586-2","first_name":"Dalston","last_name":"Bogace","email":"dbogaceem@vk.com","phone":"295-805-9785","gender":"Male","department":"Product Management","address":"38 Becker Street","hire_date":"9/15/2017","website":"http://tumblr.com","notes":"etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat","status":1,"type":1,"salary":"$1911.79"}, {"id":528,"employee_id":"540218312-0","first_name":"Millard","last_name":"Florentine","email":"mflorentineen@washingtonpost.com","phone":"922-496-0342","gender":"Male","department":"Research and Development","address":"5 Forest Run Street","hire_date":"10/4/2017","website":"https://pen.io","notes":"semper rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui","status":6,"type":2,"salary":"$1686.38"}, {"id":529,"employee_id":"471433513-8","first_name":"Tove","last_name":"Gagan","email":"tgaganeo@google.com.hk","phone":"674-360-2542","gender":"Female","department":"Accounting","address":"12 Dayton Pass","hire_date":"12/20/2017","website":"http://google.com.hk","notes":"donec quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum","status":2,"type":3,"salary":"$560.97"}, {"id":530,"employee_id":"896500909-X","first_name":"Veda","last_name":"Palfrey","email":"vpalfreyep@youku.com","phone":"332-927-5840","gender":"Female","department":"Support","address":"38 Packers Road","hire_date":"12/2/2017","website":"https://dion.ne.jp","notes":"lectus suspendisse potenti in eleifend quam a odio in hac habitasse","status":6,"type":2,"salary":"$1058.94"}, {"id":531,"employee_id":"864412579-6","first_name":"Suellen","last_name":"Canavan","email":"scanavaneq@scientificamerican.com","phone":"576-969-0877","gender":"Female","department":"Accounting","address":"2 Manley Trail","hire_date":"3/22/2018","website":"http://un.org","notes":"etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus","status":6,"type":1,"salary":"$2336.14"}, {"id":532,"employee_id":"361106781-4","first_name":"Hallie","last_name":"Vannoni","email":"hvannonier@flickr.com","phone":"260-478-2440","gender":"Female","department":"Accounting","address":"2567 Lillian Hill","hire_date":"8/16/2017","website":"https://cloudflare.com","notes":"ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi","status":4,"type":3,"salary":"$1386.77"}, {"id":533,"employee_id":"319328011-9","first_name":"Mersey","last_name":"Schwieso","email":"mschwiesoes@chron.com","phone":"132-552-8514","gender":"Female","department":"Business Development","address":"5 Nelson Point","hire_date":"6/10/2018","website":"http://shutterfly.com","notes":"sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et","status":3,"type":1,"salary":"$824.84"}, {"id":534,"employee_id":"713956296-2","first_name":"Lefty","last_name":"Clute","email":"lcluteet@rambler.ru","phone":"449-868-4056","gender":"Male","department":"Training","address":"7763 Sunnyside Plaza","hire_date":"11/7/2017","website":"http://storify.com","notes":"id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit","status":2,"type":1,"salary":"$1307.33"}, {"id":535,"employee_id":"069730721-2","first_name":"Roxine","last_name":"Shakelady","email":"rshakeladyeu@live.com","phone":"399-312-9948","gender":"Female","department":"Sales","address":"357 Shopko Lane","hire_date":"1/3/2018","website":"http://freewebs.com","notes":"maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum","status":3,"type":2,"salary":"$2481.79"}, {"id":536,"employee_id":"074201811-3","first_name":"Noam","last_name":"Rowlinson","email":"nrowlinsonev@gov.uk","phone":"117-590-9070","gender":"Male","department":"Training","address":"5 Katie Pass","hire_date":"4/11/2018","website":"https://gravatar.com","notes":"pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper","status":1,"type":3,"salary":"$293.52"}, {"id":537,"employee_id":"048139754-X","first_name":"Frasier","last_name":"Prall","email":"fprallew@eventbrite.com","phone":"258-309-4486","gender":"Male","department":"Research and Development","address":"032 Coleman Road","hire_date":"2/12/2018","website":"https://prlog.org","notes":"consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero","status":4,"type":3,"salary":"$1068.17"}, {"id":538,"employee_id":"006004879-4","first_name":"Woodman","last_name":"Walas","email":"wwalasex@virginia.edu","phone":"169-283-0001","gender":"Male","department":"Support","address":"1669 Dennis Pass","hire_date":"11/2/2017","website":"https://mapquest.com","notes":"vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient","status":1,"type":2,"salary":"$1803.38"}, {"id":539,"employee_id":"668179309-6","first_name":"Trenton","last_name":"Raatz","email":"traatzey@goo.ne.jp","phone":"338-986-6038","gender":"Male","department":"Legal","address":"46 International Street","hire_date":"10/16/2017","website":"http://bbb.org","notes":"risus dapibus augue vel accumsan tellus nisi eu orci mauris","status":5,"type":1,"salary":"$309.70"}, {"id":540,"employee_id":"169561284-1","first_name":"Herculie","last_name":"Mainstone","email":"hmainstoneez@abc.net.au","phone":"719-667-5959","gender":"Male","department":"Human Resources","address":"76598 Old Shore Hill","hire_date":"1/27/2018","website":"https://squidoo.com","notes":"adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante ipsum primis","status":2,"type":1,"salary":"$719.96"}, {"id":541,"employee_id":"188941104-3","first_name":"Myrtie","last_name":"Dybald","email":"mdybaldf0@stumbleupon.com","phone":"455-883-9262","gender":"Female","department":"Engineering","address":"27 Continental Trail","hire_date":"9/11/2017","website":"http://photobucket.com","notes":"integer ac leo pellentesque ultrices mattis odio donec vitae nisi","status":2,"type":2,"salary":"$1509.79"}, {"id":542,"employee_id":"672328549-2","first_name":"Mozelle","last_name":"Parrett","email":"mparrettf1@alexa.com","phone":"520-187-8950","gender":"Female","department":"Marketing","address":"7 Kennedy Plaza","hire_date":"5/11/2018","website":"https://ibm.com","notes":"ullamcorper purus sit amet nulla quisque arcu libero rutrum ac","status":4,"type":1,"salary":"$1112.79"}, {"id":543,"employee_id":"233524722-0","first_name":"Winny","last_name":"Rizzelli","email":"wrizzellif2@liveinternet.ru","phone":"638-553-1453","gender":"Female","department":"Legal","address":"64226 Rigney Plaza","hire_date":"7/3/2018","website":"https://globo.com","notes":"magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus","status":4,"type":2,"salary":"$511.39"}, {"id":544,"employee_id":"980292964-6","first_name":"Rubetta","last_name":"Roberts","email":"rrobertsf3@vimeo.com","phone":"320-783-0613","gender":"Female","department":"Product Management","address":"77 Center Hill","hire_date":"7/11/2018","website":"http://google.com.br","notes":"faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur","status":2,"type":3,"salary":"$2439.32"}, {"id":545,"employee_id":"546244510-5","first_name":"Duffie","last_name":"Coley","email":"dcoleyf4@google.co.jp","phone":"802-258-2354","gender":"Male","department":"Marketing","address":"4960 Portage Way","hire_date":"10/15/2017","website":"http://sphinn.com","notes":"mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent","status":5,"type":1,"salary":"$1205.36"}, {"id":546,"employee_id":"056298206-X","first_name":"Marianna","last_name":"Laxston","email":"mlaxstonf5@issuu.com","phone":"784-812-7862","gender":"Female","department":"Accounting","address":"03 Morningstar Crossing","hire_date":"3/27/2018","website":"http://sohu.com","notes":"orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam","status":4,"type":3,"salary":"$2091.54"}, {"id":547,"employee_id":"854997068-9","first_name":"Leonard","last_name":"Ghilks","email":"lghilksf6@google.com.hk","phone":"344-427-1979","gender":"Male","department":"Business Development","address":"8 Mandrake Trail","hire_date":"9/9/2017","website":"https://gnu.org","notes":"dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat","status":1,"type":1,"salary":"$2360.29"}, {"id":548,"employee_id":"374005192-2","first_name":"Delcine","last_name":"Gibard","email":"dgibardf7@feedburner.com","phone":"486-769-5871","gender":"Female","department":"Engineering","address":"07365 Almo Avenue","hire_date":"1/20/2018","website":"http://telegraph.co.uk","notes":"sollicitudin mi sit amet lobortis sapien sapien non mi integer ac","status":3,"type":1,"salary":"$2194.72"}, {"id":549,"employee_id":"981938694-2","first_name":"Jasen","last_name":"Penella","email":"jpenellaf8@unc.edu","phone":"946-137-4880","gender":"Male","department":"Sales","address":"8245 Lyons Way","hire_date":"7/30/2017","website":"https://alibaba.com","notes":"curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat","status":6,"type":2,"salary":"$2175.16"}, {"id":550,"employee_id":"184850704-6","first_name":"Claresta","last_name":"Lanahan","email":"clanahanf9@redcross.org","phone":"421-926-4102","gender":"Female","department":"Product Management","address":"16627 Glendale Crossing","hire_date":"5/29/2018","website":"https://dailymail.co.uk","notes":"ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor","status":4,"type":1,"salary":"$1947.50"}, {"id":551,"employee_id":"147962271-0","first_name":"Wilbur","last_name":"Bourrel","email":"wbourrelfa@cisco.com","phone":"111-829-9008","gender":"Male","department":"Sales","address":"2 Bay Junction","hire_date":"1/23/2018","website":"http://skype.com","notes":"quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus","status":5,"type":1,"salary":"$2126.19"}, {"id":552,"employee_id":"229215988-0","first_name":"Roseann","last_name":"Hapke","email":"rhapkefb@amazon.co.jp","phone":"253-634-1559","gender":"Female","department":"Training","address":"3 Ilene Way","hire_date":"5/18/2018","website":"https://imdb.com","notes":"in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam","status":2,"type":3,"salary":"$692.93"}, {"id":553,"employee_id":"751330939-6","first_name":"Tabby","last_name":"Potter","email":"tpotterfc@discuz.net","phone":"798-581-9705","gender":"Male","department":"Research and Development","address":"30 Karstens Trail","hire_date":"10/18/2017","website":"http://ihg.com","notes":"consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce","status":5,"type":3,"salary":"$1811.07"}, {"id":554,"employee_id":"319386525-7","first_name":"Delmar","last_name":"Maffin","email":"dmaffinfd@go.com","phone":"949-706-8947","gender":"Male","department":"Engineering","address":"7237 Lerdahl Hill","hire_date":"11/23/2017","website":"https://intel.com","notes":"sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam","status":5,"type":2,"salary":"$1440.38"}, {"id":555,"employee_id":"180320571-7","first_name":"Mord","last_name":"Plaskett","email":"mplaskettfe@dedecms.com","phone":"428-505-2974","gender":"Male","department":"Marketing","address":"5635 Northridge Alley","hire_date":"10/16/2017","website":"https://goo.gl","notes":"condimentum neque sapien placerat ante nulla justo aliquam quis turpis","status":6,"type":3,"salary":"$870.49"}, {"id":556,"employee_id":"844696576-3","first_name":"Bil","last_name":"Maple","email":"bmapleff@ning.com","phone":"884-552-0647","gender":"Male","department":"Support","address":"6 Sunnyside Court","hire_date":"6/7/2018","website":"https://cdbaby.com","notes":"nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula","status":5,"type":1,"salary":"$391.64"}, {"id":557,"employee_id":"073155412-4","first_name":"Padraic","last_name":"Ambrogetti","email":"pambrogettifg@answers.com","phone":"945-772-9655","gender":"Male","department":"Legal","address":"262 Canary Court","hire_date":"5/4/2018","website":"https://w3.org","notes":"odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero","status":6,"type":1,"salary":"$1676.16"}, {"id":558,"employee_id":"445618451-5","first_name":"Genia","last_name":"Bonehill","email":"gbonehillfh@aol.com","phone":"514-971-7446","gender":"Female","department":"Accounting","address":"1 Oneill Park","hire_date":"2/1/2018","website":"http://theglobeandmail.com","notes":"augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc","status":3,"type":1,"salary":"$867.46"}, {"id":559,"employee_id":"748640207-6","first_name":"Sly","last_name":"Flacke","email":"sflackefi@youku.com","phone":"190-966-7454","gender":"Male","department":"Business Development","address":"2 Straubel Center","hire_date":"4/10/2018","website":"http://yahoo.com","notes":"amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu","status":4,"type":3,"salary":"$1797.09"}, {"id":560,"employee_id":"520331874-3","first_name":"Bennett","last_name":"Clampton","email":"bclamptonfj@goo.ne.jp","phone":"435-279-5530","gender":"Male","department":"Accounting","address":"56741 Warner Terrace","hire_date":"10/28/2017","website":"http://google.cn","notes":"justo etiam pretium iaculis justo in hac habitasse platea dictumst","status":3,"type":2,"salary":"$861.37"}, {"id":561,"employee_id":"377676559-3","first_name":"Ophelie","last_name":"Cregeen","email":"ocregeenfk@cisco.com","phone":"614-728-9664","gender":"Female","department":"Product Management","address":"0 Utah Trail","hire_date":"7/9/2018","website":"http://statcounter.com","notes":"nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus","status":5,"type":2,"salary":"$2121.34"}, {"id":562,"employee_id":"833683302-1","first_name":"Daffy","last_name":"Trotter","email":"dtrotterfl@w3.org","phone":"881-221-5716","gender":"Female","department":"Sales","address":"9617 Oak Terrace","hire_date":"9/14/2017","website":"https://msn.com","notes":"ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla","status":1,"type":2,"salary":"$982.48"}, {"id":563,"employee_id":"297416391-2","first_name":"Rollin","last_name":"Schulke","email":"rschulkefm@blogtalkradio.com","phone":"693-773-2895","gender":"Male","department":"Engineering","address":"0717 Merry Trail","hire_date":"12/10/2017","website":"https://pinterest.com","notes":"sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at","status":5,"type":1,"salary":"$897.96"}, {"id":564,"employee_id":"329686914-X","first_name":"Nanice","last_name":"Sempill","email":"nsempillfn@amazon.de","phone":"360-950-5204","gender":"Female","department":"Engineering","address":"310 Straubel Park","hire_date":"6/12/2018","website":"http://ow.ly","notes":"venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet","status":1,"type":1,"salary":"$2266.13"}, {"id":565,"employee_id":"987885496-5","first_name":"Loleta","last_name":"Berard","email":"lberardfo@kickstarter.com","phone":"385-848-2662","gender":"Female","department":"Marketing","address":"49148 Knutson Road","hire_date":"5/30/2018","website":"https://freewebs.com","notes":"habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt","status":2,"type":1,"salary":"$1899.36"}, {"id":566,"employee_id":"026111923-0","first_name":"Simmonds","last_name":"Herculeson","email":"sherculesonfp@digg.com","phone":"177-792-9992","gender":"Male","department":"Research and Development","address":"09 Derek Junction","hire_date":"10/6/2017","website":"http://google.ru","notes":"iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id","status":4,"type":1,"salary":"$2458.36"}, {"id":567,"employee_id":"738580768-2","first_name":"Isidoro","last_name":"Carluccio","email":"icarlucciofq@ifeng.com","phone":"477-980-2970","gender":"Male","department":"Product Management","address":"32 Lien Junction","hire_date":"2/18/2018","website":"http://a8.net","notes":"vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id","status":6,"type":1,"salary":"$1606.68"}, {"id":568,"employee_id":"451895226-X","first_name":"Dickie","last_name":"Morcombe","email":"dmorcombefr@yellowbook.com","phone":"213-676-7361","gender":"Male","department":"Engineering","address":"94 Blaine Drive","hire_date":"2/28/2018","website":"http://quantcast.com","notes":"faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat","status":3,"type":1,"salary":"$1795.94"}, {"id":569,"employee_id":"120806965-9","first_name":"Garwood","last_name":"Adcock","email":"gadcockfs@europa.eu","phone":"794-670-6493","gender":"Male","department":"Accounting","address":"900 Texas Plaza","hire_date":"5/8/2018","website":"https://wikia.com","notes":"aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio","status":5,"type":1,"salary":"$565.32"}, {"id":570,"employee_id":"056294117-7","first_name":"Lemar","last_name":"Halegarth","email":"lhalegarthft@sfgate.com","phone":"942-570-9030","gender":"Male","department":"Support","address":"37138 Forest Dale Drive","hire_date":"9/14/2017","website":"http://bloomberg.com","notes":"ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus","status":3,"type":3,"salary":"$2046.86"}, {"id":571,"employee_id":"892461613-7","first_name":"Irvine","last_name":"Ruselin","email":"iruselinfu@answers.com","phone":"908-342-9993","gender":"Male","department":"Human Resources","address":"9859 Brickson Park Pass","hire_date":"12/27/2017","website":"http://discuz.net","notes":"porttitor lacus at turpis donec posuere metus vitae ipsum aliquam","status":1,"type":1,"salary":"$1719.02"}, {"id":572,"employee_id":"467294167-1","first_name":"Ingram","last_name":"Maiklem","email":"imaiklemfv@xinhuanet.com","phone":"774-570-3815","gender":"Male","department":"Human Resources","address":"956 Jenifer Alley","hire_date":"8/15/2017","website":"https://bandcamp.com","notes":"cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam","status":1,"type":2,"salary":"$1208.99"}, {"id":573,"employee_id":"078731029-8","first_name":"Pasquale","last_name":"Carnow","email":"pcarnowfw@over-blog.com","phone":"823-672-5601","gender":"Male","department":"Research and Development","address":"99 Merchant Parkway","hire_date":"4/26/2018","website":"https://ustream.tv","notes":"vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec","status":3,"type":1,"salary":"$1848.12"}, {"id":574,"employee_id":"026664954-8","first_name":"Hermy","last_name":"Paiton","email":"hpaitonfx@digg.com","phone":"764-229-1805","gender":"Male","department":"Product Management","address":"698 Thackeray Way","hire_date":"1/11/2018","website":"http://imdb.com","notes":"in hac habitasse platea dictumst etiam faucibus cursus urna ut","status":1,"type":2,"salary":"$1518.69"}, {"id":575,"employee_id":"672706698-1","first_name":"Ruby","last_name":"Barritt","email":"rbarrittfy@reuters.com","phone":"272-671-6978","gender":"Female","department":"Business Development","address":"0 Ilene Pass","hire_date":"7/26/2017","website":"http://samsung.com","notes":"in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante","status":5,"type":2,"salary":"$2404.07"}, {"id":576,"employee_id":"959234324-1","first_name":"Reinwald","last_name":"Connolly","email":"rconnollyfz@unc.edu","phone":"256-757-8941","gender":"Male","department":"Support","address":"176 Cardinal Hill","hire_date":"9/18/2017","website":"http://constantcontact.com","notes":"hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien","status":6,"type":2,"salary":"$2121.45"}, {"id":577,"employee_id":"032000879-7","first_name":"Ferdie","last_name":"Paydon","email":"fpaydong0@businesswire.com","phone":"760-201-4090","gender":"Male","department":"Marketing","address":"84 Eastwood Road","hire_date":"12/5/2017","website":"https://nba.com","notes":"gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem","status":2,"type":3,"salary":"$2155.61"}, {"id":578,"employee_id":"265514291-8","first_name":"Jozef","last_name":"Lafranconi","email":"jlafranconig1@mediafire.com","phone":"306-419-6170","gender":"Male","department":"Human Resources","address":"904 Holy Cross Alley","hire_date":"1/5/2018","website":"http://google.es","notes":"volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis","status":1,"type":3,"salary":"$817.24"}, {"id":579,"employee_id":"213313648-7","first_name":"Dennison","last_name":"Corryer","email":"dcorryerg2@biblegateway.com","phone":"267-774-3581","gender":"Male","department":"Product Management","address":"99154 Red Cloud Way","hire_date":"6/4/2018","website":"http://cpanel.net","notes":"nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo","status":6,"type":3,"salary":"$1341.78"}, {"id":580,"employee_id":"473015388-X","first_name":"Englebert","last_name":"Fulleylove","email":"efulleyloveg3@photobucket.com","phone":"398-931-0902","gender":"Male","department":"Marketing","address":"32500 Amoth Plaza","hire_date":"2/23/2018","website":"https://netscape.com","notes":"justo eu massa donec dapibus duis at velit eu est","status":5,"type":3,"salary":"$325.00"}, {"id":581,"employee_id":"143330915-7","first_name":"Allyn","last_name":"Kill","email":"akillg4@timesonline.co.uk","phone":"842-460-7843","gender":"Female","department":"Training","address":"419 Utah Road","hire_date":"4/10/2018","website":"http://google.co.uk","notes":"rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie","status":6,"type":2,"salary":"$1613.53"}, {"id":582,"employee_id":"282580938-1","first_name":"Lynett","last_name":"Bayford","email":"lbayfordg5@vistaprint.com","phone":"132-193-4754","gender":"Female","department":"Sales","address":"2330 Summit Way","hire_date":"5/4/2018","website":"http://marketplace.net","notes":"justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing","status":2,"type":1,"salary":"$326.91"}, {"id":583,"employee_id":"617313819-0","first_name":"Hazlett","last_name":"Baroch","email":"hbarochg6@geocities.jp","phone":"985-965-6967","gender":"Male","department":"Accounting","address":"605 Golden Leaf Plaza","hire_date":"2/18/2018","website":"https://google.ca","notes":"quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida nisi at","status":6,"type":3,"salary":"$1988.10"}, {"id":584,"employee_id":"708172793-X","first_name":"Bertrand","last_name":"Enrigo","email":"benrigog7@blinklist.com","phone":"582-769-9744","gender":"Male","department":"Support","address":"39527 Kim Alley","hire_date":"7/10/2018","website":"https://eepurl.com","notes":"suspendisse potenti in eleifend quam a odio in hac habitasse","status":2,"type":3,"salary":"$1834.97"}, {"id":585,"employee_id":"275070512-6","first_name":"Tess","last_name":"Pagen","email":"tpageng8@mit.edu","phone":"942-433-3855","gender":"Female","department":"Training","address":"06 Loftsgordon Avenue","hire_date":"3/8/2018","website":"https://java.com","notes":"mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices","status":6,"type":3,"salary":"$1516.81"}, {"id":586,"employee_id":"689460094-5","first_name":"Jeramie","last_name":"Stanlock","email":"jstanlockg9@epa.gov","phone":"304-355-0889","gender":"Male","department":"Research and Development","address":"92 Marquette Court","hire_date":"9/7/2017","website":"http://bandcamp.com","notes":"elit ac nulla sed vel enim sit amet nunc viverra dapibus","status":3,"type":1,"salary":"$502.42"}, {"id":587,"employee_id":"806406122-9","first_name":"Giovanni","last_name":"Garmons","email":"ggarmonsga@ustream.tv","phone":"230-839-9491","gender":"Male","department":"Business Development","address":"06 Grim Parkway","hire_date":"4/8/2018","website":"http://nifty.com","notes":"enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","status":1,"type":1,"salary":"$2256.86"}, {"id":588,"employee_id":"739999179-0","first_name":"Hanan","last_name":"Maudsley","email":"hmaudsleygb@so-net.ne.jp","phone":"175-280-1081","gender":"Male","department":"Engineering","address":"79 Muir Avenue","hire_date":"6/12/2018","website":"http://icio.us","notes":"posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut","status":5,"type":1,"salary":"$1049.23"}, {"id":589,"employee_id":"706661556-5","first_name":"Elliott","last_name":"Scoone","email":"escoonegc@ted.com","phone":"609-922-2496","gender":"Male","department":"Human Resources","address":"531 Sunbrook Crossing","hire_date":"5/21/2018","website":"https://businessweek.com","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae duis","status":5,"type":1,"salary":"$1289.79"}, {"id":590,"employee_id":"647600560-X","first_name":"Caressa","last_name":"Haylands","email":"chaylandsgd@deliciousdays.com","phone":"330-761-2112","gender":"Female","department":"Business Development","address":"41 Ludington Point","hire_date":"2/2/2018","website":"http://ovh.net","notes":"orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi","status":3,"type":3,"salary":"$836.63"}, {"id":591,"employee_id":"205991586-4","first_name":"Hollie","last_name":"Salt","email":"hsaltge@imageshack.us","phone":"273-911-3845","gender":"Female","department":"Marketing","address":"1 Pepper Wood Pass","hire_date":"7/11/2018","website":"https://china.com.cn","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi","status":5,"type":3,"salary":"$1099.82"}, {"id":592,"employee_id":"965356355-6","first_name":"Darcy","last_name":"Hanington","email":"dhaningtongf@deliciousdays.com","phone":"574-882-0980","gender":"Male","department":"Business Development","address":"63 Evergreen Terrace","hire_date":"3/9/2018","website":"https://elpais.com","notes":"in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt","status":1,"type":2,"salary":"$735.59"}, {"id":593,"employee_id":"764631584-2","first_name":"Norby","last_name":"Dearsley","email":"ndearsleygg@umich.edu","phone":"502-882-6268","gender":"Male","department":"Training","address":"53903 Weeping Birch Junction","hire_date":"12/15/2017","website":"https://fda.gov","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti","status":4,"type":2,"salary":"$1928.30"}, {"id":594,"employee_id":"714591085-3","first_name":"Justino","last_name":"Kernes","email":"jkernesgh@gravatar.com","phone":"978-345-2401","gender":"Male","department":"Research and Development","address":"728 Emmet Pass","hire_date":"2/1/2018","website":"https://timesonline.co.uk","notes":"adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis","status":1,"type":3,"salary":"$2298.11"}, {"id":595,"employee_id":"742011723-3","first_name":"Orly","last_name":"Eunson","email":"oeunsongi@discovery.com","phone":"264-270-5870","gender":"Female","department":"Sales","address":"61373 Arizona Way","hire_date":"12/21/2017","website":"http://hud.gov","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae donec","status":1,"type":3,"salary":"$1270.96"}, {"id":596,"employee_id":"659860506-7","first_name":"Denny","last_name":"Medhurst","email":"dmedhurstgj@salon.com","phone":"415-409-9800","gender":"Male","department":"Human Resources","address":"57516 Summerview Point","hire_date":"9/24/2017","website":"https://smugmug.com","notes":"donec ut mauris eget massa tempor convallis nulla neque libero convallis eget eleifend","status":3,"type":3,"salary":"$473.45"}, {"id":597,"employee_id":"280034283-8","first_name":"Sheree","last_name":"Milward","email":"smilwardgk@java.com","phone":"924-677-2252","gender":"Female","department":"Services","address":"6 Mifflin Way","hire_date":"1/9/2018","website":"http://deviantart.com","notes":"gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer","status":2,"type":1,"salary":"$598.68"}, {"id":598,"employee_id":"708571091-8","first_name":"Evvy","last_name":"Blyth","email":"eblythgl@theglobeandmail.com","phone":"578-126-0856","gender":"Female","department":"Services","address":"9270 Di Loreto Court","hire_date":"6/7/2018","website":"https://livejournal.com","notes":"nunc purus phasellus in felis donec semper sapien a libero nam dui","status":1,"type":3,"salary":"$348.86"}, {"id":599,"employee_id":"349704535-7","first_name":"Zaria","last_name":"McEntagart","email":"zmcentagartgm@barnesandnoble.com","phone":"395-247-3033","gender":"Female","department":"Services","address":"2 Dahle Parkway","hire_date":"11/9/2017","website":"https://ted.com","notes":"et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in","status":5,"type":1,"salary":"$1690.86"}, {"id":600,"employee_id":"696865945-X","first_name":"Rania","last_name":"Joll","email":"rjollgn@flickr.com","phone":"896-350-6175","gender":"Female","department":"Marketing","address":"53 Wayridge Road","hire_date":"7/18/2018","website":"https://toplist.cz","notes":"nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis sed","status":5,"type":3,"salary":"$2093.20"}, {"id":601,"employee_id":"991762911-4","first_name":"Viv","last_name":"Benn","email":"vbenngo@ning.com","phone":"312-736-0023","gender":"Female","department":"Marketing","address":"07 Derek Crossing","hire_date":"5/21/2018","website":"http://alibaba.com","notes":"amet eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec","status":2,"type":1,"salary":"$1872.12"}, {"id":602,"employee_id":"382390348-9","first_name":"Ilaire","last_name":"Wasling","email":"iwaslinggp@scientificamerican.com","phone":"173-493-6304","gender":"Male","department":"Human Resources","address":"12922 Mandrake Crossing","hire_date":"8/27/2017","website":"http://facebook.com","notes":"a libero nam dui proin leo odio porttitor id consequat","status":5,"type":3,"salary":"$1725.89"}, {"id":603,"employee_id":"552719023-8","first_name":"Burke","last_name":"Monkhouse","email":"bmonkhousegq@oakley.com","phone":"905-500-1112","gender":"Male","department":"Product Management","address":"94 Loftsgordon Junction","hire_date":"5/28/2018","website":"http://timesonline.co.uk","notes":"ut erat id mauris vulputate elementum nullam varius nulla facilisi","status":2,"type":3,"salary":"$1893.79"}, {"id":604,"employee_id":"798859457-5","first_name":"Chrissie","last_name":"Kordes","email":"ckordesgr@unc.edu","phone":"892-349-2152","gender":"Female","department":"Human Resources","address":"2262 Kedzie Drive","hire_date":"1/29/2018","website":"https://admin.ch","notes":"magna at nunc commodo placerat praesent blandit nam nulla integer pede justo lacinia","status":2,"type":2,"salary":"$1612.86"}, {"id":605,"employee_id":"790837382-8","first_name":"Lawry","last_name":"Mussen","email":"lmussengs@w3.org","phone":"218-185-0171","gender":"Male","department":"Support","address":"7846 Randy Parkway","hire_date":"8/4/2017","website":"https://boston.com","notes":"id luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et","status":3,"type":3,"salary":"$1954.32"}, {"id":606,"employee_id":"699240792-9","first_name":"Poul","last_name":"Goggins","email":"pgogginsgt@linkedin.com","phone":"293-675-2005","gender":"Male","department":"Sales","address":"530 Butternut Alley","hire_date":"12/26/2017","website":"https://facebook.com","notes":"aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in","status":3,"type":1,"salary":"$2373.61"}, {"id":607,"employee_id":"751445107-2","first_name":"Cleon","last_name":"MacDirmid","email":"cmacdirmidgu@squarespace.com","phone":"614-981-7314","gender":"Male","department":"Marketing","address":"2037 Oak Road","hire_date":"12/7/2017","website":"https://apple.com","notes":"mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci","status":6,"type":1,"salary":"$2126.42"}, {"id":608,"employee_id":"377293929-5","first_name":"Aristotle","last_name":"Kenna","email":"akennagv@usda.gov","phone":"937-264-8841","gender":"Male","department":"Human Resources","address":"7054 Nancy Street","hire_date":"6/8/2018","website":"https://bizjournals.com","notes":"euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis","status":2,"type":1,"salary":"$1552.69"}, {"id":609,"employee_id":"572760268-8","first_name":"Loise","last_name":"Jewster","email":"ljewstergw@paypal.com","phone":"750-588-5224","gender":"Female","department":"Sales","address":"65006 La Follette Hill","hire_date":"3/28/2018","website":"https://etsy.com","notes":"vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante ipsum primis","status":2,"type":2,"salary":"$1714.69"}, {"id":610,"employee_id":"286782603-9","first_name":"Derril","last_name":"Gildersleeve","email":"dgildersleevegx@360.cn","phone":"980-730-4259","gender":"Male","department":"Sales","address":"344 Maple Wood Drive","hire_date":"6/5/2018","website":"https://nps.gov","notes":"justo eu massa donec dapibus duis at velit eu est congue elementum","status":6,"type":3,"salary":"$1941.04"}, {"id":611,"employee_id":"060727167-1","first_name":"Carny","last_name":"Kid","email":"ckidgy@ebay.co.uk","phone":"223-113-6069","gender":"Male","department":"Training","address":"39 Blaine Lane","hire_date":"11/12/2017","website":"https://typepad.com","notes":"tristique est et tempus semper est quam pharetra magna ac consequat metus","status":2,"type":2,"salary":"$1198.62"}, {"id":612,"employee_id":"887378830-0","first_name":"Cymbre","last_name":"Yewdale","email":"cyewdalegz@xinhuanet.com","phone":"420-452-2167","gender":"Female","department":"Training","address":"47 Bunker Hill Plaza","hire_date":"9/14/2017","website":"https://hc360.com","notes":"felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec","status":3,"type":2,"salary":"$938.61"}, {"id":613,"employee_id":"839681912-2","first_name":"Stan","last_name":"Liccardo","email":"sliccardoh0@omniture.com","phone":"587-732-3349","gender":"Male","department":"Research and Development","address":"2 Vahlen Pass","hire_date":"5/18/2018","website":"https://sun.com","notes":"porttitor pede justo eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst","status":3,"type":2,"salary":"$1151.20"}, {"id":614,"employee_id":"049388805-5","first_name":"Dorry","last_name":"Chinn","email":"dchinnh1@mtv.com","phone":"327-579-7951","gender":"Female","department":"Services","address":"695 Gina Hill","hire_date":"2/6/2018","website":"http://163.com","notes":"tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus","status":2,"type":2,"salary":"$2293.47"}, {"id":615,"employee_id":"261839282-5","first_name":"Homere","last_name":"Caughtry","email":"hcaughtryh2@marketwatch.com","phone":"251-532-7745","gender":"Male","department":"Business Development","address":"42 Clarendon Trail","hire_date":"1/2/2018","website":"http://princeton.edu","notes":"lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id","status":1,"type":2,"salary":"$778.37"}, {"id":616,"employee_id":"063355832-X","first_name":"Tresa","last_name":"Stert","email":"tsterth3@bigcartel.com","phone":"918-850-0143","gender":"Female","department":"Product Management","address":"50 Jenifer Plaza","hire_date":"1/6/2018","website":"http://jalbum.net","notes":"libero nam dui proin leo odio porttitor id consequat in consequat ut nulla sed accumsan felis","status":6,"type":2,"salary":"$1409.15"}, {"id":617,"employee_id":"227188136-6","first_name":"Megan","last_name":"Roles","email":"mrolesh4@fastcompany.com","phone":"987-824-9818","gender":"Female","department":"Accounting","address":"6317 Anderson Alley","hire_date":"9/27/2017","website":"https://cyberchimps.com","notes":"in ante vestibulum ante ipsum primis in faucibus orci luctus","status":4,"type":2,"salary":"$2235.13"}, {"id":618,"employee_id":"797674915-3","first_name":"Alexa","last_name":"MacElroy","email":"amacelroyh5@naver.com","phone":"702-634-3451","gender":"Female","department":"Training","address":"9 Hanover Center","hire_date":"9/9/2017","website":"http://tinypic.com","notes":"sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum","status":5,"type":1,"salary":"$330.74"}, {"id":619,"employee_id":"176850987-5","first_name":"Binny","last_name":"Warfield","email":"bwarfieldh6@skyrock.com","phone":"728-172-7160","gender":"Female","department":"Research and Development","address":"2 Tony Hill","hire_date":"1/23/2018","website":"https://ucsd.edu","notes":"tristique est et tempus semper est quam pharetra magna ac consequat","status":6,"type":1,"salary":"$2051.56"}, {"id":620,"employee_id":"347858539-2","first_name":"Sallee","last_name":"Joder","email":"sjoderh7@plala.or.jp","phone":"906-345-0526","gender":"Female","department":"Product Management","address":"7 Pennsylvania Junction","hire_date":"6/15/2018","website":"http://ning.com","notes":"scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin","status":1,"type":2,"salary":"$2256.31"}, {"id":621,"employee_id":"059946664-2","first_name":"Stacee","last_name":"Noar","email":"snoarh8@wired.com","phone":"460-477-6620","gender":"Male","department":"Services","address":"5601 Waywood Circle","hire_date":"11/4/2017","website":"https://google.cn","notes":"id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in","status":5,"type":3,"salary":"$933.67"}, {"id":622,"employee_id":"594411543-2","first_name":"Carroll","last_name":"Challiss","email":"cchallissh9@mozilla.org","phone":"880-420-7393","gender":"Male","department":"Legal","address":"0618 Delladonna Street","hire_date":"4/12/2018","website":"https://vinaora.com","notes":"nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie","status":4,"type":3,"salary":"$2495.94"}, {"id":623,"employee_id":"879915683-0","first_name":"Merrie","last_name":"Mundford","email":"mmundfordha@instagram.com","phone":"229-802-1367","gender":"Female","department":"Business Development","address":"2 Amoth Trail","hire_date":"9/20/2017","website":"http://theatlantic.com","notes":"tempus semper est quam pharetra magna ac consequat metus sapien ut","status":4,"type":3,"salary":"$1461.98"}, {"id":624,"employee_id":"137646308-3","first_name":"Alwyn","last_name":"Von Brook","email":"avonbrookhb@cafepress.com","phone":"871-592-1630","gender":"Male","department":"Engineering","address":"70212 Novick Circle","hire_date":"5/9/2018","website":"http://wikipedia.org","notes":"quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor","status":4,"type":3,"salary":"$2106.64"}, {"id":625,"employee_id":"787463921-9","first_name":"Brock","last_name":"Snasdell","email":"bsnasdellhc@rediff.com","phone":"935-728-8645","gender":"Male","department":"Sales","address":"3 Larry Terrace","hire_date":"4/18/2018","website":"http://ucoz.ru","notes":"aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed","status":5,"type":3,"salary":"$2363.71"}, {"id":626,"employee_id":"867263586-8","first_name":"Camilla","last_name":"Rainsden","email":"crainsdenhd@diigo.com","phone":"509-638-6802","gender":"Female","department":"Human Resources","address":"75896 Hallows Avenue","hire_date":"3/6/2018","website":"https://statcounter.com","notes":"integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio","status":5,"type":1,"salary":"$2310.38"}, {"id":627,"employee_id":"364771698-7","first_name":"Magnum","last_name":"Leiden","email":"mleidenhe@cam.ac.uk","phone":"599-231-2724","gender":"Male","department":"Training","address":"91705 Merry Alley","hire_date":"1/18/2018","website":"https://tiny.cc","notes":"ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl","status":4,"type":1,"salary":"$2273.73"}, {"id":628,"employee_id":"764688429-4","first_name":"Letisha","last_name":"Norbury","email":"lnorburyhf@posterous.com","phone":"205-259-8870","gender":"Female","department":"Services","address":"3 Pawling Park","hire_date":"1/27/2018","website":"https://networkadvertising.org","notes":"integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas","status":4,"type":3,"salary":"$1816.51"}, {"id":629,"employee_id":"442460799-2","first_name":"Amble","last_name":"Eplate","email":"aeplatehg@de.vu","phone":"701-264-7714","gender":"Male","department":"Engineering","address":"454 Cambridge Alley","hire_date":"8/12/2017","website":"http://sohu.com","notes":"donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique","status":2,"type":1,"salary":"$1681.54"}, {"id":630,"employee_id":"474911199-6","first_name":"Josefa","last_name":"Mourant","email":"jmouranthh@hao123.com","phone":"298-448-8394","gender":"Female","department":"Research and Development","address":"93255 Red Cloud Crossing","hire_date":"7/14/2018","website":"http://indiegogo.com","notes":"ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis","status":1,"type":3,"salary":"$1833.27"}, {"id":631,"employee_id":"695137935-1","first_name":"Ransom","last_name":"Elliff","email":"relliffhi@lycos.com","phone":"920-413-1926","gender":"Male","department":"Marketing","address":"24358 Bultman Point","hire_date":"4/5/2018","website":"http://addtoany.com","notes":"aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas","status":2,"type":3,"salary":"$1861.24"}, {"id":632,"employee_id":"568146198-X","first_name":"Anne","last_name":"Fratson","email":"afratsonhj@techcrunch.com","phone":"922-130-4570","gender":"Female","department":"Training","address":"9324 Fordem Trail","hire_date":"12/30/2017","website":"http://homestead.com","notes":"feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse","status":5,"type":1,"salary":"$1365.92"}, {"id":633,"employee_id":"429529294-X","first_name":"Raina","last_name":"Dorre","email":"rdorrehk@addtoany.com","phone":"953-229-7547","gender":"Female","department":"Accounting","address":"1 Elgar Alley","hire_date":"10/31/2017","website":"https://ox.ac.uk","notes":"duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor","status":1,"type":2,"salary":"$1956.17"}, {"id":634,"employee_id":"107889117-6","first_name":"Wiley","last_name":"Iddy","email":"widdyhl@sourceforge.net","phone":"386-571-8918","gender":"Male","department":"Accounting","address":"0 Coolidge Avenue","hire_date":"3/19/2018","website":"https://reverbnation.com","notes":"tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis","status":1,"type":1,"salary":"$1932.76"}, {"id":635,"employee_id":"924614982-3","first_name":"Kimberly","last_name":"Lethem","email":"klethemhm@google.nl","phone":"297-178-9058","gender":"Female","department":"Sales","address":"07496 Derek Avenue","hire_date":"10/23/2017","website":"http://feedburner.com","notes":"at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at","status":2,"type":2,"salary":"$538.26"}, {"id":636,"employee_id":"308444064-6","first_name":"Arabele","last_name":"Abden","email":"aabdenhn@china.com.cn","phone":"624-843-4335","gender":"Female","department":"Services","address":"095 Service Center","hire_date":"12/25/2017","website":"http://webnode.com","notes":"est phasellus sit amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla","status":5,"type":2,"salary":"$592.81"}, {"id":637,"employee_id":"523748690-8","first_name":"Ophelia","last_name":"Le Count","email":"olecountho@sitemeter.com","phone":"205-789-9629","gender":"Female","department":"Marketing","address":"01 Dryden Pass","hire_date":"3/22/2018","website":"http://flavors.me","notes":"parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient","status":2,"type":3,"salary":"$1696.76"}, {"id":638,"employee_id":"584599054-8","first_name":"Veronique","last_name":"Stobbie","email":"vstobbiehp@bizjournals.com","phone":"136-411-6967","gender":"Female","department":"Business Development","address":"284 Macpherson Drive","hire_date":"12/6/2017","website":"https://tamu.edu","notes":"fermentum justo nec condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque","status":3,"type":2,"salary":"$2113.44"}, {"id":639,"employee_id":"767407623-7","first_name":"Carry","last_name":"Kloska","email":"ckloskahq@cargocollective.com","phone":"141-900-2603","gender":"Female","department":"Business Development","address":"910 Graceland Lane","hire_date":"8/5/2017","website":"https://hud.gov","notes":"morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum","status":2,"type":1,"salary":"$779.14"}, {"id":640,"employee_id":"544682250-1","first_name":"Raff","last_name":"Elven","email":"relvenhr@scribd.com","phone":"502-507-5023","gender":"Male","department":"Training","address":"0069 Raven Circle","hire_date":"8/18/2017","website":"http://creativecommons.org","notes":"molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas","status":6,"type":3,"salary":"$2217.71"}, {"id":641,"employee_id":"468714743-7","first_name":"Walsh","last_name":"Kenwell","email":"wkenwellhs@shinystat.com","phone":"238-899-2487","gender":"Male","department":"Human Resources","address":"5 Mesta Alley","hire_date":"5/26/2018","website":"https://nydailynews.com","notes":"ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce","status":4,"type":1,"salary":"$1185.95"}, {"id":642,"employee_id":"032700633-1","first_name":"Fonzie","last_name":"Peter","email":"fpeterht@google.cn","phone":"499-539-6881","gender":"Male","department":"Engineering","address":"463 Summit Way","hire_date":"10/3/2017","website":"http://soundcloud.com","notes":"in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl","status":2,"type":1,"salary":"$1990.65"}, {"id":643,"employee_id":"726333865-3","first_name":"Keen","last_name":"Getcliffe","email":"kgetcliffehu@youku.com","phone":"287-632-1636","gender":"Male","department":"Accounting","address":"52 Buena Vista Trail","hire_date":"1/1/2018","website":"http://paypal.com","notes":"at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id","status":5,"type":3,"salary":"$846.62"}, {"id":644,"employee_id":"873252076-X","first_name":"Charin","last_name":"Oldfield","email":"coldfieldhv@xrea.com","phone":"653-485-6635","gender":"Female","department":"Training","address":"5 Dapin Street","hire_date":"6/17/2018","website":"http://archive.org","notes":"ligula sit amet eleifend pede libero quis orci nullam molestie","status":2,"type":2,"salary":"$771.23"}, {"id":645,"employee_id":"337248013-9","first_name":"Durward","last_name":"Scarsbrick","email":"dscarsbrickhw@adobe.com","phone":"108-243-8896","gender":"Male","department":"Research and Development","address":"2 Beilfuss Road","hire_date":"11/4/2017","website":"https://creativecommons.org","notes":"iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id","status":6,"type":1,"salary":"$947.17"}, {"id":646,"employee_id":"575139382-1","first_name":"Fredek","last_name":"Leckie","email":"fleckiehx@unblog.fr","phone":"548-937-3036","gender":"Male","department":"Marketing","address":"4 Dunning Plaza","hire_date":"12/24/2017","website":"http://bluehost.com","notes":"lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit","status":4,"type":1,"salary":"$2121.82"}, {"id":647,"employee_id":"217054904-8","first_name":"Jakob","last_name":"Muddle","email":"jmuddlehy@digg.com","phone":"341-109-8160","gender":"Male","department":"Marketing","address":"69879 Clyde Gallagher Park","hire_date":"11/24/2017","website":"http://pbs.org","notes":"posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec","status":4,"type":2,"salary":"$949.75"}, {"id":648,"employee_id":"749343103-5","first_name":"Janek","last_name":"Archbould","email":"jarchbouldhz@ca.gov","phone":"430-705-0254","gender":"Male","department":"Marketing","address":"554 Eastlawn Street","hire_date":"6/2/2018","website":"http://cmu.edu","notes":"luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti","status":3,"type":1,"salary":"$2090.48"}, {"id":649,"employee_id":"443501439-4","first_name":"Dorise","last_name":"Beevis","email":"dbeevisi0@com.com","phone":"608-666-7708","gender":"Female","department":"Support","address":"510 Huxley Trail","hire_date":"10/6/2017","website":"https://creativecommons.org","notes":"id consequat in consequat ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer","status":4,"type":3,"salary":"$2093.86"}, {"id":650,"employee_id":"993540218-5","first_name":"Damiano","last_name":"Rutherforth","email":"drutherforthi1@macromedia.com","phone":"894-812-9541","gender":"Male","department":"Business Development","address":"0 Hayes Hill","hire_date":"1/3/2018","website":"https://usa.gov","notes":"pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat","status":5,"type":3,"salary":"$1610.28"}, {"id":651,"employee_id":"186912282-8","first_name":"Kitty","last_name":"Dorney","email":"kdorneyi2@shareasale.com","phone":"979-945-0835","gender":"Female","department":"Training","address":"169 Daystar Lane","hire_date":"7/21/2017","website":"https://chron.com","notes":"sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh","status":6,"type":3,"salary":"$684.03"}, {"id":652,"employee_id":"936661876-6","first_name":"Krishnah","last_name":"Swancock","email":"kswancocki3@cpanel.net","phone":"846-389-6298","gender":"Male","department":"Engineering","address":"49291 Sutteridge Point","hire_date":"2/18/2018","website":"https://nydailynews.com","notes":"at dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae","status":4,"type":2,"salary":"$2342.65"}, {"id":653,"employee_id":"378446883-7","first_name":"Crin","last_name":"Hatry","email":"chatryi4@sun.com","phone":"375-283-4304","gender":"Female","department":"Marketing","address":"24657 Golden Leaf Street","hire_date":"10/9/2017","website":"http://sciencedirect.com","notes":"mattis egestas metus aenean fermentum donec ut mauris eget massa tempor convallis nulla neque","status":4,"type":2,"salary":"$1152.71"}, {"id":654,"employee_id":"725816535-5","first_name":"Josephine","last_name":"Bocke","email":"jbockei5@dedecms.com","phone":"709-218-2121","gender":"Female","department":"Engineering","address":"73 Eastwood Pass","hire_date":"5/1/2018","website":"http://discovery.com","notes":"amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere","status":1,"type":1,"salary":"$610.57"}, {"id":655,"employee_id":"655537935-9","first_name":"Munmro","last_name":"McCudden","email":"mmccuddeni6@dedecms.com","phone":"527-809-4175","gender":"Male","department":"Accounting","address":"84 Lakeland Way","hire_date":"1/15/2018","website":"https://sciencedirect.com","notes":"dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id","status":5,"type":3,"salary":"$2472.25"}, {"id":656,"employee_id":"534384518-5","first_name":"Peta","last_name":"Grouvel","email":"pgrouveli7@businessweek.com","phone":"677-920-9635","gender":"Female","department":"Research and Development","address":"2 Sloan Way","hire_date":"12/19/2017","website":"https://mapy.cz","notes":"duis at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis","status":6,"type":2,"salary":"$1952.65"}, {"id":657,"employee_id":"932900385-0","first_name":"Estell","last_name":"Rex","email":"erexi8@instagram.com","phone":"469-507-4629","gender":"Female","department":"Accounting","address":"7544 Eastlawn Pass","hire_date":"12/6/2017","website":"https://hao123.com","notes":"est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est","status":6,"type":1,"salary":"$1383.51"}, {"id":658,"employee_id":"470307437-0","first_name":"Mitzi","last_name":"Gyurkovics","email":"mgyurkovicsi9@over-blog.com","phone":"715-681-1395","gender":"Female","department":"Services","address":"4438 Service Hill","hire_date":"2/9/2018","website":"http://aboutads.info","notes":"a suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula","status":6,"type":3,"salary":"$1117.55"}, {"id":659,"employee_id":"353982188-0","first_name":"Livy","last_name":"Cowlam","email":"lcowlamia@is.gd","phone":"164-158-3762","gender":"Female","department":"Legal","address":"0 Washington Road","hire_date":"4/23/2018","website":"https://indiatimes.com","notes":"duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis","status":1,"type":3,"salary":"$1251.71"}, {"id":660,"employee_id":"993200248-8","first_name":"Myrtice","last_name":"Edes","email":"medesib@usnews.com","phone":"855-416-8542","gender":"Female","department":"Sales","address":"6 Lotheville Avenue","hire_date":"10/20/2017","website":"http://wikispaces.com","notes":"magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt","status":4,"type":3,"salary":"$1997.01"}, {"id":661,"employee_id":"599617941-5","first_name":"Tommie","last_name":"Deakan","email":"tdeakanic@github.io","phone":"561-829-3186","gender":"Male","department":"Legal","address":"58 Bashford Alley","hire_date":"1/31/2018","website":"https://ebay.co.uk","notes":"ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a","status":4,"type":1,"salary":"$2022.04"}, {"id":662,"employee_id":"799194014-4","first_name":"Kellie","last_name":"Marquot","email":"kmarquotid@behance.net","phone":"258-367-6848","gender":"Female","department":"Sales","address":"6 Ohio Point","hire_date":"2/2/2018","website":"https://plala.or.jp","notes":"faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut","status":1,"type":2,"salary":"$336.28"}, {"id":663,"employee_id":"647492770-4","first_name":"Alfredo","last_name":"Huygen","email":"ahuygenie@usnews.com","phone":"552-673-7436","gender":"Male","department":"Engineering","address":"32 Saint Paul Hill","hire_date":"3/19/2018","website":"http://bloglovin.com","notes":"vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque","status":5,"type":3,"salary":"$912.19"}, {"id":664,"employee_id":"636062781-7","first_name":"Dulcinea","last_name":"Molyneaux","email":"dmolyneauxif@dropbox.com","phone":"438-696-8082","gender":"Female","department":"Business Development","address":"443 Drewry Plaza","hire_date":"8/5/2017","website":"https://arizona.edu","notes":"fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti","status":2,"type":2,"salary":"$910.29"}, {"id":665,"employee_id":"389443969-6","first_name":"Giff","last_name":"Kettel","email":"gkettelig@shop-pro.jp","phone":"446-416-7541","gender":"Male","department":"Human Resources","address":"06149 Shelley Park","hire_date":"2/27/2018","website":"http://stumbleupon.com","notes":"dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante","status":1,"type":3,"salary":"$917.04"}, {"id":666,"employee_id":"413322681-X","first_name":"Elmore","last_name":"Fitzharris","email":"efitzharrisih@google.cn","phone":"989-524-4294","gender":"Male","department":"Legal","address":"66860 Ridgeway Plaza","hire_date":"6/22/2018","website":"https://instagram.com","notes":"mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit","status":5,"type":3,"salary":"$2186.02"}, {"id":667,"employee_id":"815407726-4","first_name":"Angy","last_name":"Durban","email":"adurbanii@wikia.com","phone":"897-122-5541","gender":"Female","department":"Training","address":"457 Glendale Pass","hire_date":"1/19/2018","website":"http://usatoday.com","notes":"massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et","status":4,"type":3,"salary":"$1943.00"}, {"id":668,"employee_id":"593533936-6","first_name":"Cinda","last_name":"Eisak","email":"ceisakij@gov.uk","phone":"364-878-8239","gender":"Female","department":"Marketing","address":"72410 Tomscot Hill","hire_date":"6/13/2018","website":"https://ask.com","notes":"leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper","status":1,"type":1,"salary":"$477.81"}, {"id":669,"employee_id":"386431667-7","first_name":"Ilsa","last_name":"Lergan","email":"ilerganik@epa.gov","phone":"363-773-1838","gender":"Female","department":"Legal","address":"627 Bluejay Alley","hire_date":"4/5/2018","website":"http://nba.com","notes":"tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat","status":3,"type":2,"salary":"$864.59"}, {"id":670,"employee_id":"327529124-6","first_name":"Joana","last_name":"Tilliard","email":"jtilliardil@icio.us","phone":"317-579-8921","gender":"Female","department":"Sales","address":"83056 Killdeer Drive","hire_date":"1/24/2018","website":"https://sina.com.cn","notes":"porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit","status":1,"type":3,"salary":"$826.57"}, {"id":671,"employee_id":"716488501-X","first_name":"Dorri","last_name":"Spaughton","email":"dspaughtonim@diigo.com","phone":"775-248-9772","gender":"Female","department":"Engineering","address":"17 Charing Cross Pass","hire_date":"11/9/2017","website":"http://naver.com","notes":"lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl","status":1,"type":1,"salary":"$2058.08"}, {"id":672,"employee_id":"815967924-6","first_name":"Livvyy","last_name":"Reaveley","email":"lreaveleyin@newyorker.com","phone":"470-922-5582","gender":"Female","department":"Human Resources","address":"507 Granby Court","hire_date":"7/6/2018","website":"https://abc.net.au","notes":"in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus","status":3,"type":3,"salary":"$2390.00"}, {"id":673,"employee_id":"353903060-3","first_name":"Doris","last_name":"Piscopo","email":"dpiscopoio@reverbnation.com","phone":"709-930-1076","gender":"Female","department":"Training","address":"64 Annamark Center","hire_date":"12/10/2017","website":"http://bluehost.com","notes":"luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis","status":3,"type":1,"salary":"$2146.37"}, {"id":674,"employee_id":"985746807-1","first_name":"Massimo","last_name":"Breche","email":"mbrecheip@rediff.com","phone":"154-869-4732","gender":"Male","department":"Research and Development","address":"34443 Sheridan Junction","hire_date":"12/24/2017","website":"https://posterous.com","notes":"blandit non interdum in ante vestibulum ante ipsum primis in faucibus","status":1,"type":3,"salary":"$747.93"}, {"id":675,"employee_id":"138241196-0","first_name":"Marc","last_name":"Sowden","email":"msowdeniq@ovh.net","phone":"989-224-4253","gender":"Male","department":"Training","address":"6 Maple Wood Park","hire_date":"4/12/2018","website":"https://foxnews.com","notes":"eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio","status":3,"type":3,"salary":"$1227.61"}, {"id":676,"employee_id":"448198510-0","first_name":"Miguelita","last_name":"Clinning","email":"mclinningir@google.it","phone":"723-381-2446","gender":"Female","department":"Engineering","address":"48121 Roth Way","hire_date":"11/15/2017","website":"http://washingtonpost.com","notes":"adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante","status":6,"type":1,"salary":"$389.30"}, {"id":677,"employee_id":"638949538-2","first_name":"Cletus","last_name":"Gerlack","email":"cgerlackis@networksolutions.com","phone":"269-695-5505","gender":"Male","department":"Product Management","address":"4602 Northland Way","hire_date":"4/27/2018","website":"http://a8.net","notes":"aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac","status":2,"type":3,"salary":"$918.72"}, {"id":678,"employee_id":"252449741-0","first_name":"Zackariah","last_name":"Crowson","email":"zcrowsonit@google.fr","phone":"522-425-6878","gender":"Male","department":"Research and Development","address":"25 La Follette Street","hire_date":"7/26/2017","website":"http://bbc.co.uk","notes":"fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat","status":2,"type":2,"salary":"$716.93"}, {"id":679,"employee_id":"840831888-8","first_name":"Papageno","last_name":"Maslin","email":"pmasliniu@usda.gov","phone":"552-899-5637","gender":"Male","department":"Business Development","address":"499 Ridgeway Alley","hire_date":"7/29/2017","website":"https://geocities.jp","notes":"placerat praesent blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede","status":1,"type":3,"salary":"$299.08"}, {"id":680,"employee_id":"602937124-X","first_name":"Carmel","last_name":"St. Ledger","email":"cstledgeriv@harvard.edu","phone":"634-788-2799","gender":"Female","department":"Sales","address":"87 Lakeland Place","hire_date":"8/15/2017","website":"http://bluehost.com","notes":"maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi","status":2,"type":2,"salary":"$2452.58"}, {"id":681,"employee_id":"166132011-2","first_name":"Sara-ann","last_name":"Whitticks","email":"swhitticksiw@google.com.au","phone":"712-132-0455","gender":"Female","department":"Marketing","address":"499 Prentice Road","hire_date":"7/25/2017","website":"https://uol.com.br","notes":"quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus","status":6,"type":1,"salary":"$1604.40"}, {"id":682,"employee_id":"820641726-5","first_name":"Marji","last_name":"Scupham","email":"mscuphamix@patch.com","phone":"889-178-4698","gender":"Female","department":"Research and Development","address":"254 Brown Street","hire_date":"3/29/2018","website":"http://fema.gov","notes":"felis fusce posuere felis sed lacus morbi sem mauris laoreet ut","status":4,"type":1,"salary":"$1060.14"}, {"id":683,"employee_id":"513253217-9","first_name":"Lisha","last_name":"Cossor","email":"lcossoriy@typepad.com","phone":"286-473-6032","gender":"Female","department":"Marketing","address":"49694 Stephen Trail","hire_date":"8/7/2017","website":"https://nps.gov","notes":"iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate","status":3,"type":2,"salary":"$2378.68"}, {"id":684,"employee_id":"249557946-9","first_name":"Rancell","last_name":"Sowten","email":"rsowteniz@github.com","phone":"875-923-2726","gender":"Male","department":"Accounting","address":"66514 Eliot Drive","hire_date":"11/2/2017","website":"http://etsy.com","notes":"ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor","status":4,"type":2,"salary":"$1318.09"}, {"id":685,"employee_id":"049179644-7","first_name":"Nicolea","last_name":"Ehlerding","email":"nehlerdingj0@stanford.edu","phone":"406-593-6125","gender":"Female","department":"Services","address":"70 Hayes Parkway","hire_date":"2/10/2018","website":"https://wordpress.org","notes":"quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor convallis nulla","status":1,"type":3,"salary":"$545.73"}, {"id":686,"employee_id":"063656962-4","first_name":"Madalena","last_name":"Simonian","email":"msimonianj1@psu.edu","phone":"989-634-8212","gender":"Female","department":"Research and Development","address":"9486 Kinsman Court","hire_date":"9/1/2017","website":"https://cnn.com","notes":"sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel","status":4,"type":2,"salary":"$394.67"}, {"id":687,"employee_id":"221473129-6","first_name":"Flss","last_name":"Duro","email":"fduroj2@mayoclinic.com","phone":"654-676-9069","gender":"Female","department":"Training","address":"6 Moland Park","hire_date":"6/24/2018","website":"https://squidoo.com","notes":"sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper","status":4,"type":2,"salary":"$300.04"}, {"id":688,"employee_id":"672662135-3","first_name":"Sidonnie","last_name":"Bisp","email":"sbispj3@eventbrite.com","phone":"592-258-0085","gender":"Female","department":"Legal","address":"164 Fieldstone Alley","hire_date":"12/25/2017","website":"https://fema.gov","notes":"vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac","status":3,"type":3,"salary":"$2405.89"}, {"id":689,"employee_id":"932752723-2","first_name":"Mack","last_name":"Sirr","email":"msirrj4@jigsy.com","phone":"678-932-0326","gender":"Male","department":"Training","address":"71 Del Sol Lane","hire_date":"1/21/2018","website":"http://about.me","notes":"massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet","status":5,"type":1,"salary":"$522.47"}, {"id":690,"employee_id":"158019071-5","first_name":"Zola","last_name":"Beirne","email":"zbeirnej5@qq.com","phone":"338-170-4611","gender":"Female","department":"Training","address":"4 Doe Crossing Junction","hire_date":"9/29/2017","website":"http://skype.com","notes":"neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros","status":3,"type":3,"salary":"$1334.49"}, {"id":691,"employee_id":"893906095-4","first_name":"Roxane","last_name":"Stares","email":"rstaresj6@scientificamerican.com","phone":"371-437-8341","gender":"Female","department":"Marketing","address":"9740 Mcbride Court","hire_date":"5/10/2018","website":"http://odnoklassniki.ru","notes":"fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo","status":2,"type":1,"salary":"$2296.43"}, {"id":692,"employee_id":"601370084-2","first_name":"Nicole","last_name":"MacMickan","email":"nmacmickanj7@google.cn","phone":"193-701-1820","gender":"Female","department":"Product Management","address":"26025 Pawling Terrace","hire_date":"8/26/2017","website":"https://ca.gov","notes":"felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu massa donec","status":3,"type":1,"salary":"$1509.18"}, {"id":693,"employee_id":"356952132-X","first_name":"Norry","last_name":"Bruce","email":"nbrucej8@ocn.ne.jp","phone":"343-447-0594","gender":"Male","department":"Training","address":"37 Thierer Pass","hire_date":"6/19/2018","website":"https://fc2.com","notes":"mauris vulputate elementum nullam varius nulla facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus","status":3,"type":3,"salary":"$2334.36"}, {"id":694,"employee_id":"650802152-4","first_name":"Maxie","last_name":"Macvain","email":"mmacvainj9@edublogs.org","phone":"915-723-4900","gender":"Male","department":"Product Management","address":"8058 Sheridan Drive","hire_date":"6/7/2018","website":"http://theatlantic.com","notes":"curabitur gravida nisi at nibh in hac habitasse platea dictumst","status":6,"type":1,"salary":"$1063.50"}, {"id":695,"employee_id":"330548767-4","first_name":"Octavia","last_name":"Blas","email":"oblasja@aboutads.info","phone":"453-949-8257","gender":"Female","department":"Sales","address":"916 Bunker Hill Lane","hire_date":"3/8/2018","website":"http://wiley.com","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec","status":4,"type":1,"salary":"$2255.72"}, {"id":696,"employee_id":"504533227-9","first_name":"Fidelia","last_name":"Lowten","email":"flowtenjb@china.com.cn","phone":"985-183-9461","gender":"Female","department":"Marketing","address":"533 Arizona Way","hire_date":"1/2/2018","website":"http://theguardian.com","notes":"eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper","status":5,"type":2,"salary":"$2173.91"}, {"id":697,"employee_id":"286438381-0","first_name":"Cordie","last_name":"Dear","email":"cdearjc@prweb.com","phone":"305-150-9917","gender":"Male","department":"Sales","address":"86801 Pine View Way","hire_date":"11/1/2017","website":"http://toplist.cz","notes":"adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere","status":3,"type":3,"salary":"$943.97"}, {"id":698,"employee_id":"651996975-3","first_name":"Ambros","last_name":"Hagan","email":"ahaganjd@sciencedaily.com","phone":"137-312-6328","gender":"Male","department":"Business Development","address":"37 Bowman Hill","hire_date":"4/17/2018","website":"http://indiatimes.com","notes":"sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce","status":6,"type":2,"salary":"$1508.52"}, {"id":699,"employee_id":"090524267-X","first_name":"Paige","last_name":"Poulett","email":"ppoulettje@guardian.co.uk","phone":"919-567-9670","gender":"Female","department":"Sales","address":"56 Kingsford Hill","hire_date":"3/22/2018","website":"https://alibaba.com","notes":"vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur","status":2,"type":1,"salary":"$1217.96"}, {"id":700,"employee_id":"645400820-7","first_name":"Merrile","last_name":"Gullifant","email":"mgullifantjf@ft.com","phone":"222-616-8973","gender":"Female","department":"Training","address":"88 Parkside Pass","hire_date":"12/26/2017","website":"http://europa.eu","notes":"in est risus auctor sed tristique in tempus sit amet sem","status":3,"type":1,"salary":"$408.05"}, {"id":701,"employee_id":"894005173-4","first_name":"Cletus","last_name":"Khoter","email":"ckhoterjg@mlb.com","phone":"319-165-9067","gender":"Male","department":"Sales","address":"02019 Mendota Plaza","hire_date":"1/22/2018","website":"http://slate.com","notes":"vel nisl duis ac nibh fusce lacus purus aliquet at feugiat","status":5,"type":3,"salary":"$1554.16"}, {"id":702,"employee_id":"213179655-2","first_name":"Jeannette","last_name":"Ipgrave","email":"jipgravejh@timesonline.co.uk","phone":"725-413-1695","gender":"Female","department":"Legal","address":"1925 Onsgard Road","hire_date":"1/5/2018","website":"http://ihg.com","notes":"vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus","status":1,"type":3,"salary":"$2083.56"}, {"id":703,"employee_id":"810266120-8","first_name":"Dotty","last_name":"Andreini","email":"dandreiniji@cbc.ca","phone":"679-249-9520","gender":"Female","department":"Sales","address":"9563 Cherokee Crossing","hire_date":"1/18/2018","website":"https://seesaa.net","notes":"suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam","status":6,"type":1,"salary":"$1521.92"}, {"id":704,"employee_id":"493468147-7","first_name":"Serene","last_name":"Ricket","email":"sricketjj@tinypic.com","phone":"502-419-3371","gender":"Female","department":"Product Management","address":"025 Iowa Parkway","hire_date":"11/18/2017","website":"http://xinhuanet.com","notes":"eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur","status":6,"type":2,"salary":"$1404.60"}, {"id":705,"employee_id":"570931159-6","first_name":"Rip","last_name":"Aldiss","email":"raldissjk@cnet.com","phone":"507-836-2057","gender":"Male","department":"Engineering","address":"19144 Columbus Pass","hire_date":"10/12/2017","website":"http://ow.ly","notes":"non ligula pellentesque ultrices phasellus id sapien in sapien iaculis","status":6,"type":3,"salary":"$1030.97"}, {"id":706,"employee_id":"855788471-0","first_name":"Forbes","last_name":"Heaslip","email":"fheaslipjl@nymag.com","phone":"669-963-3068","gender":"Male","department":"Human Resources","address":"83 Dawn Terrace","hire_date":"2/22/2018","website":"http://histats.com","notes":"gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio","status":5,"type":1,"salary":"$1071.79"}, {"id":707,"employee_id":"063855246-X","first_name":"Anette","last_name":"Issit","email":"aissitjm@trellian.com","phone":"488-677-2177","gender":"Female","department":"Engineering","address":"86 Westerfield Plaza","hire_date":"4/14/2018","website":"https://usatoday.com","notes":"amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus","status":3,"type":1,"salary":"$655.17"}, {"id":708,"employee_id":"113037184-0","first_name":"Joseito","last_name":"Darrel","email":"jdarreljn@senate.gov","phone":"572-615-9650","gender":"Male","department":"Human Resources","address":"94 Delaware Avenue","hire_date":"11/14/2017","website":"http://sbwire.com","notes":"eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a","status":6,"type":2,"salary":"$2420.09"}, {"id":709,"employee_id":"067166587-1","first_name":"Clayton","last_name":"Coventry","email":"ccoventryjo@state.tx.us","phone":"996-796-8145","gender":"Male","department":"Business Development","address":"7715 Blaine Trail","hire_date":"7/18/2018","website":"http://washington.edu","notes":"ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices","status":1,"type":1,"salary":"$1149.72"}, {"id":710,"employee_id":"502322291-8","first_name":"Ashleigh","last_name":"Cook","email":"acookjp@wunderground.com","phone":"578-756-0819","gender":"Female","department":"Research and Development","address":"0 Bunting Crossing","hire_date":"2/7/2018","website":"http://google.ca","notes":"quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis","status":4,"type":3,"salary":"$2396.14"}, {"id":711,"employee_id":"964219398-1","first_name":"Gregorius","last_name":"Whaplington","email":"gwhaplingtonjq@who.int","phone":"867-493-5512","gender":"Male","department":"Services","address":"9 Anhalt Avenue","hire_date":"7/22/2017","website":"https://msu.edu","notes":"leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede","status":5,"type":3,"salary":"$780.84"}, {"id":712,"employee_id":"857753635-1","first_name":"Jaymie","last_name":"Saterthwait","email":"jsaterthwaitjr@slashdot.org","phone":"584-535-3130","gender":"Male","department":"Support","address":"993 Anthes Junction","hire_date":"9/19/2017","website":"https://friendfeed.com","notes":"donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo","status":6,"type":2,"salary":"$1582.30"}, {"id":713,"employee_id":"110435325-3","first_name":"Chas","last_name":"Liepina","email":"cliepinajs@home.pl","phone":"118-369-7905","gender":"Male","department":"Support","address":"43 Dixon Center","hire_date":"12/15/2017","website":"http://sciencedirect.com","notes":"amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus","status":1,"type":1,"salary":"$1048.75"}, {"id":714,"employee_id":"858122083-5","first_name":"Montgomery","last_name":"Fairlaw","email":"mfairlawjt@sciencedirect.com","phone":"922-490-3988","gender":"Male","department":"Research and Development","address":"360 Katie Alley","hire_date":"10/27/2017","website":"http://surveymonkey.com","notes":"mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis","status":5,"type":1,"salary":"$1218.41"}, {"id":715,"employee_id":"953911433-0","first_name":"Abraham","last_name":"Cowie","email":"acowieju@4shared.com","phone":"239-800-8947","gender":"Male","department":"Human Resources","address":"8315 Stoughton Junction","hire_date":"2/18/2018","website":"https://wufoo.com","notes":"libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus","status":2,"type":2,"salary":"$1431.58"}, {"id":716,"employee_id":"980188704-4","first_name":"Ryann","last_name":"Nutkins","email":"rnutkinsjv@qq.com","phone":"986-164-8594","gender":"Female","department":"Sales","address":"92 Vahlen Lane","hire_date":"9/8/2017","website":"https://skype.com","notes":"nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque","status":2,"type":2,"salary":"$2320.72"}, {"id":717,"employee_id":"496180526-2","first_name":"Catina","last_name":"Baser","email":"cbaserjw@businessweek.com","phone":"532-723-4330","gender":"Female","department":"Services","address":"4199 Hanson Hill","hire_date":"9/21/2017","website":"http://reddit.com","notes":"vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed","status":4,"type":1,"salary":"$704.47"}, {"id":718,"employee_id":"569821610-X","first_name":"Adrea","last_name":"Thrussell","email":"athrusselljx@wikipedia.org","phone":"121-272-3387","gender":"Female","department":"Sales","address":"97263 Riverside Junction","hire_date":"12/11/2017","website":"http://jalbum.net","notes":"sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse","status":1,"type":1,"salary":"$1502.79"}, {"id":719,"employee_id":"635471406-1","first_name":"Harry","last_name":"O\'Corr","email":"hocorrjy@globo.com","phone":"628-461-4876","gender":"Male","department":"Support","address":"5 Crownhardt Drive","hire_date":"12/28/2017","website":"https://wix.com","notes":"diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus","status":3,"type":3,"salary":"$1743.03"}, {"id":720,"employee_id":"357220718-5","first_name":"Nance","last_name":"Corness","email":"ncornessjz@about.com","phone":"506-196-3218","gender":"Female","department":"Sales","address":"41697 Springview Circle","hire_date":"10/17/2017","website":"http://angelfire.com","notes":"pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac","status":6,"type":2,"salary":"$766.20"}, {"id":721,"employee_id":"288703491-X","first_name":"Andrus","last_name":"Thomerson","email":"athomersonk0@abc.net.au","phone":"473-877-4517","gender":"Male","department":"Training","address":"8 Cherokee Court","hire_date":"10/24/2017","website":"http://fema.gov","notes":"ligula nec sem duis aliquam convallis nunc proin at turpis a pede","status":3,"type":1,"salary":"$1700.61"}, {"id":722,"employee_id":"139646871-4","first_name":"Roxanne","last_name":"Hecks","email":"rhecksk1@google.es","phone":"679-836-5987","gender":"Female","department":"Sales","address":"79 Main Center","hire_date":"10/31/2017","website":"http://naver.com","notes":"diam cras pellentesque volutpat dui maecenas tristique est et tempus","status":5,"type":2,"salary":"$2165.50"}, {"id":723,"employee_id":"106514862-3","first_name":"Tremayne","last_name":"Proffitt","email":"tproffittk2@dailymotion.com","phone":"212-607-7025","gender":"Male","department":"Engineering","address":"4 Sunnyside Road","hire_date":"1/23/2018","website":"http://pbs.org","notes":"amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec","status":3,"type":3,"salary":"$618.28"}, {"id":724,"employee_id":"979600546-8","first_name":"Lannie","last_name":"Ettels","email":"lettelsk3@sina.com.cn","phone":"110-670-1034","gender":"Male","department":"Business Development","address":"50733 Farmco Avenue","hire_date":"7/27/2017","website":"https://washingtonpost.com","notes":"rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum","status":1,"type":1,"salary":"$2157.28"}, {"id":725,"employee_id":"455215314-5","first_name":"Simon","last_name":"Kimblen","email":"skimblenk4@nature.com","phone":"632-400-5992","gender":"Male","department":"Support","address":"5100 Atwood Street","hire_date":"10/12/2017","website":"https://cisco.com","notes":"ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere","status":6,"type":3,"salary":"$841.35"}, {"id":726,"employee_id":"244157015-3","first_name":"Bing","last_name":"Lytell","email":"blytellk5@zdnet.com","phone":"104-793-5468","gender":"Male","department":"Legal","address":"194 Continental Way","hire_date":"4/4/2018","website":"https://weibo.com","notes":"justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus","status":6,"type":3,"salary":"$797.43"}, {"id":727,"employee_id":"918765161-0","first_name":"Shell","last_name":"Salvadori","email":"ssalvadorik6@addthis.com","phone":"608-475-2435","gender":"Female","department":"Services","address":"009 Walton Parkway","hire_date":"11/8/2017","website":"https://oracle.com","notes":"tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede","status":2,"type":1,"salary":"$369.19"}, {"id":728,"employee_id":"297398731-8","first_name":"Carey","last_name":"Vockings","email":"cvockingsk7@163.com","phone":"714-839-9140","gender":"Male","department":"Human Resources","address":"389 Calypso Park","hire_date":"3/4/2018","website":"http://admin.ch","notes":"natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum","status":4,"type":1,"salary":"$433.80"}, {"id":729,"employee_id":"547893183-7","first_name":"Pernell","last_name":"Frontczak","email":"pfrontczakk8@gizmodo.com","phone":"263-776-3928","gender":"Male","department":"Services","address":"9682 Barnett Place","hire_date":"11/6/2017","website":"http://shinystat.com","notes":"nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit amet","status":5,"type":2,"salary":"$1877.01"}, {"id":730,"employee_id":"871014844-2","first_name":"Mahmoud","last_name":"Smelley","email":"msmelleyk9@hibu.com","phone":"971-916-0272","gender":"Male","department":"Human Resources","address":"263 John Wall Avenue","hire_date":"10/24/2017","website":"https://yandex.ru","notes":"nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula","status":2,"type":1,"salary":"$1653.35"}, {"id":731,"employee_id":"601496906-3","first_name":"Joshia","last_name":"Camerana","email":"jcameranaka@soup.io","phone":"512-287-9399","gender":"Male","department":"Support","address":"53310 Corben Center","hire_date":"4/22/2018","website":"http://wired.com","notes":"rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet","status":1,"type":2,"salary":"$1489.98"}, {"id":732,"employee_id":"051552235-X","first_name":"Gus","last_name":"Killingback","email":"gkillingbackkb@webnode.com","phone":"394-825-4059","gender":"Female","department":"Business Development","address":"6275 Vidon Avenue","hire_date":"3/19/2018","website":"https://fotki.com","notes":"turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor","status":4,"type":2,"salary":"$310.68"}, {"id":733,"employee_id":"464520984-1","first_name":"Beckie","last_name":"Lorentz","email":"blorentzkc@lycos.com","phone":"345-121-8865","gender":"Female","department":"Sales","address":"36832 Delaware Pass","hire_date":"2/20/2018","website":"https://dion.ne.jp","notes":"dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh","status":3,"type":1,"salary":"$1055.28"}, {"id":734,"employee_id":"227389953-X","first_name":"Hal","last_name":"Bearman","email":"hbearmankd@purevolume.com","phone":"557-110-4474","gender":"Male","department":"Research and Development","address":"81 Rutledge Drive","hire_date":"9/25/2017","website":"http://time.com","notes":"maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus vivamus in felis","status":2,"type":1,"salary":"$2126.72"}, {"id":735,"employee_id":"953650773-0","first_name":"Lianna","last_name":"Utton","email":"luttonke@i2i.jp","phone":"176-288-4750","gender":"Female","department":"Services","address":"147 Harbort Pass","hire_date":"6/13/2018","website":"https://reference.com","notes":"lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a","status":3,"type":3,"salary":"$1122.12"}, {"id":736,"employee_id":"086191597-6","first_name":"Field","last_name":"Speight","email":"fspeightkf@bandcamp.com","phone":"555-358-8933","gender":"Male","department":"Sales","address":"88302 Express Circle","hire_date":"4/1/2018","website":"https://homestead.com","notes":"sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien","status":5,"type":3,"salary":"$393.67"}, {"id":737,"employee_id":"169320493-2","first_name":"Frayda","last_name":"McNeachtain","email":"fmcneachtainkg@sbwire.com","phone":"118-638-1568","gender":"Female","department":"Engineering","address":"36649 Mandrake Avenue","hire_date":"2/17/2018","website":"http://blog.com","notes":"tempus sit amet sem fusce consequat nulla nisl nunc nisl","status":4,"type":1,"salary":"$619.57"}, {"id":738,"employee_id":"612245514-8","first_name":"Daisey","last_name":"Neath","email":"dneathkh@foxnews.com","phone":"698-436-9176","gender":"Female","department":"Training","address":"9715 Knutson Place","hire_date":"5/26/2018","website":"http://tamu.edu","notes":"ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin","status":2,"type":2,"salary":"$1674.16"}, {"id":739,"employee_id":"233363217-8","first_name":"Philip","last_name":"Wedmore.","email":"pwedmoreki@alexa.com","phone":"820-745-6102","gender":"Male","department":"Human Resources","address":"6969 Hudson Drive","hire_date":"2/6/2018","website":"https://php.net","notes":"felis eu sapien cursus vestibulum proin eu mi nulla ac enim in","status":1,"type":1,"salary":"$2421.30"}, {"id":740,"employee_id":"388586195-X","first_name":"Kessiah","last_name":"Farrens","email":"kfarrenskj@cloudflare.com","phone":"195-961-2704","gender":"Female","department":"Engineering","address":"7001 Bashford Plaza","hire_date":"7/30/2017","website":"https://google.de","notes":"pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus","status":3,"type":3,"salary":"$1148.86"}, {"id":741,"employee_id":"577264956-6","first_name":"Devan","last_name":"Mancer","email":"dmancerkk@nasa.gov","phone":"527-727-0360","gender":"Female","department":"Services","address":"715 Alpine Point","hire_date":"10/10/2017","website":"http://prlog.org","notes":"facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus","status":4,"type":1,"salary":"$483.23"}, {"id":742,"employee_id":"906086622-3","first_name":"Jessa","last_name":"Chadwyck","email":"jchadwyckkl@skype.com","phone":"380-842-5113","gender":"Female","department":"Support","address":"6 Kingsford Pass","hire_date":"5/8/2018","website":"https://lycos.com","notes":"pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed","status":1,"type":3,"salary":"$559.83"}, {"id":743,"employee_id":"291832829-4","first_name":"Etta","last_name":"Cubbin","email":"ecubbinkm@360.cn","phone":"524-585-7456","gender":"Female","department":"Marketing","address":"6 Steensland Park","hire_date":"3/22/2018","website":"http://phoca.cz","notes":"duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu","status":1,"type":3,"salary":"$1759.01"}, {"id":744,"employee_id":"884673346-0","first_name":"Goldarina","last_name":"Hallick","email":"ghallickkn@cornell.edu","phone":"735-265-4985","gender":"Female","department":"Business Development","address":"77046 Anthes Park","hire_date":"8/15/2017","website":"http://youku.com","notes":"proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum","status":3,"type":2,"salary":"$1702.89"}, {"id":745,"employee_id":"929468064-9","first_name":"Dru","last_name":"Fearon","email":"dfearonko@toplist.cz","phone":"792-396-1723","gender":"Female","department":"Product Management","address":"752 Florence Center","hire_date":"8/1/2017","website":"https://homestead.com","notes":"porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce","status":3,"type":2,"salary":"$1664.47"}, {"id":746,"employee_id":"451339697-0","first_name":"Ashla","last_name":"Marder","email":"amarderkp@free.fr","phone":"125-745-4335","gender":"Female","department":"Marketing","address":"77260 Annamark Way","hire_date":"1/28/2018","website":"http://cyberchimps.com","notes":"ornare consequat lectus in est risus auctor sed tristique in tempus sit","status":2,"type":1,"salary":"$1727.85"}, {"id":747,"employee_id":"302964454-5","first_name":"Suzanne","last_name":"Maltman","email":"smaltmankq@businessweek.com","phone":"161-281-1125","gender":"Female","department":"Marketing","address":"2 Thackeray Point","hire_date":"12/3/2017","website":"https://indiatimes.com","notes":"eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id","status":1,"type":2,"salary":"$2094.54"}, {"id":748,"employee_id":"575721334-5","first_name":"Bevan","last_name":"Hatt","email":"bhattkr@youku.com","phone":"183-692-4271","gender":"Male","department":"Sales","address":"47 Lake View Terrace","hire_date":"6/28/2018","website":"https://arizona.edu","notes":"donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit","status":2,"type":3,"salary":"$2187.91"}, {"id":749,"employee_id":"476712324-0","first_name":"Penni","last_name":"Swiffin","email":"pswiffinks@ustream.tv","phone":"508-193-8676","gender":"Female","department":"Sales","address":"33 Coleman Crossing","hire_date":"10/5/2017","website":"http://issuu.com","notes":"placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet","status":5,"type":2,"salary":"$1052.26"}, {"id":750,"employee_id":"330191798-4","first_name":"Janis","last_name":"Clery","email":"jclerykt@addtoany.com","phone":"507-351-2373","gender":"Female","department":"Legal","address":"73 Lakewood Junction","hire_date":"8/20/2017","website":"https://auda.org.au","notes":"consequat dui nec nisi volutpat eleifend donec ut dolor morbi","status":4,"type":3,"salary":"$1817.49"}, {"id":751,"employee_id":"851528476-6","first_name":"Lyndy","last_name":"Balasin","email":"lbalasinku@sohu.com","phone":"732-480-2676","gender":"Female","department":"Product Management","address":"2 Straubel Pass","hire_date":"8/16/2017","website":"https://hp.com","notes":"nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros","status":4,"type":1,"salary":"$1810.39"}, {"id":752,"employee_id":"775182812-9","first_name":"Ingemar","last_name":"Feuell","email":"ifeuellkv@sina.com.cn","phone":"464-180-8449","gender":"Male","department":"Legal","address":"046 Magdeline Road","hire_date":"1/27/2018","website":"https://sphinn.com","notes":"quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus","status":4,"type":2,"salary":"$566.88"}, {"id":753,"employee_id":"522465201-4","first_name":"Roderic","last_name":"Danielsky","email":"rdanielskykw@goo.ne.jp","phone":"648-156-2583","gender":"Male","department":"Training","address":"5 Kim Junction","hire_date":"12/9/2017","website":"https://dailymotion.com","notes":"lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium","status":2,"type":2,"salary":"$1915.96"}, {"id":754,"employee_id":"506203118-4","first_name":"Mohandis","last_name":"Neubigging","email":"mneubiggingkx@zimbio.com","phone":"813-421-1638","gender":"Male","department":"Legal","address":"301 Elka Terrace","hire_date":"4/3/2018","website":"https://1688.com","notes":"venenatis turpis enim blandit mi in porttitor pede justo eu massa donec dapibus duis at","status":6,"type":2,"salary":"$1446.16"}, {"id":755,"employee_id":"837202041-8","first_name":"Egor","last_name":"Baus","email":"ebausky@myspace.com","phone":"973-860-4459","gender":"Male","department":"Legal","address":"1 Meadow Ridge Circle","hire_date":"7/10/2018","website":"http://reverbnation.com","notes":"justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris","status":6,"type":3,"salary":"$1402.85"}, {"id":756,"employee_id":"851990157-3","first_name":"Elias","last_name":"Buckthorp","email":"ebuckthorpkz@sourceforge.net","phone":"383-782-5504","gender":"Male","department":"Accounting","address":"17 Maple Circle","hire_date":"6/10/2018","website":"http://cbc.ca","notes":"in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor","status":6,"type":2,"salary":"$1628.69"}, {"id":757,"employee_id":"136037018-8","first_name":"Annemarie","last_name":"Klarzynski","email":"aklarzynskil0@un.org","phone":"606-347-7535","gender":"Female","department":"Research and Development","address":"47457 Oxford Terrace","hire_date":"4/18/2018","website":"http://toplist.cz","notes":"turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in","status":2,"type":2,"salary":"$1318.80"}, {"id":758,"employee_id":"819408506-3","first_name":"Elladine","last_name":"Luckie","email":"eluckiel1@oaic.gov.au","phone":"958-846-3367","gender":"Female","department":"Engineering","address":"45089 Hallows Plaza","hire_date":"12/18/2017","website":"https://msn.com","notes":"suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula","status":4,"type":3,"salary":"$372.14"}, {"id":759,"employee_id":"998636425-6","first_name":"Denise","last_name":"Grundon","email":"dgrundonl2@berkeley.edu","phone":"526-336-1234","gender":"Female","department":"Sales","address":"8988 Welch Crossing","hire_date":"7/17/2018","website":"https://weibo.com","notes":"congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in","status":2,"type":1,"salary":"$489.95"}, {"id":760,"employee_id":"184019292-5","first_name":"Ludovika","last_name":"Yewen","email":"lyewenl3@google.com","phone":"131-144-1624","gender":"Female","department":"Engineering","address":"88 Cardinal Hill","hire_date":"9/26/2017","website":"https://weibo.com","notes":"fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo","status":4,"type":1,"salary":"$1651.19"}, {"id":761,"employee_id":"998923606-2","first_name":"Giffy","last_name":"Florentine","email":"gflorentinel4@marketwatch.com","phone":"631-489-6012","gender":"Male","department":"Marketing","address":"431 Hagan Place","hire_date":"10/27/2017","website":"http://disqus.com","notes":"sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit","status":5,"type":3,"salary":"$1174.22"}, {"id":762,"employee_id":"141148008-2","first_name":"Levy","last_name":"Edmott","email":"ledmottl5@topsy.com","phone":"278-821-2455","gender":"Male","department":"Research and Development","address":"98566 Barnett Trail","hire_date":"4/15/2018","website":"https://wordpress.com","notes":"eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio","status":6,"type":1,"salary":"$1988.62"}, {"id":763,"employee_id":"049603703-X","first_name":"Tarrah","last_name":"Borlease","email":"tborleasel6@merriam-webster.com","phone":"933-263-6101","gender":"Female","department":"Product Management","address":"5853 Eastwood Plaza","hire_date":"10/28/2017","website":"https://ft.com","notes":"morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor","status":3,"type":1,"salary":"$1958.92"}, {"id":764,"employee_id":"708787705-4","first_name":"Chrystel","last_name":"Bendik","email":"cbendikl7@hhs.gov","phone":"587-253-8983","gender":"Female","department":"Services","address":"1 Oxford Terrace","hire_date":"5/3/2018","website":"http://fda.gov","notes":"consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis","status":1,"type":2,"salary":"$1453.37"}, {"id":765,"employee_id":"138485319-7","first_name":"Hershel","last_name":"Grelak","email":"hgrelakl8@cnbc.com","phone":"203-361-3308","gender":"Male","department":"Legal","address":"54057 Scoville Lane","hire_date":"11/10/2017","website":"https://pagesperso-orange.fr","notes":"eget nunc donec quis orci eget orci vehicula condimentum curabitur in libero ut","status":6,"type":2,"salary":"$721.76"}, {"id":766,"employee_id":"556654694-3","first_name":"Joni","last_name":"Saunt","email":"jsauntl9@auda.org.au","phone":"964-566-0479","gender":"Female","department":"Legal","address":"8993 Meadow Vale Place","hire_date":"9/25/2017","website":"http://bandcamp.com","notes":"posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam","status":5,"type":2,"salary":"$1489.95"}, {"id":767,"employee_id":"352383808-8","first_name":"Vanda","last_name":"Jindrak","email":"vjindrakla@army.mil","phone":"592-225-3910","gender":"Female","department":"Accounting","address":"55577 Texas Circle","hire_date":"4/15/2018","website":"https://qq.com","notes":"vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna","status":5,"type":2,"salary":"$1262.62"}, {"id":768,"employee_id":"024565800-9","first_name":"Zaccaria","last_name":"Kornel","email":"zkornellb@ihg.com","phone":"650-254-6349","gender":"Male","department":"Business Development","address":"11874 Atwood Park","hire_date":"5/11/2018","website":"https://tripadvisor.com","notes":"felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus","status":2,"type":3,"salary":"$715.65"}, {"id":769,"employee_id":"751780558-4","first_name":"Carlene","last_name":"Chatenet","email":"cchatenetlc@paginegialle.it","phone":"646-191-7557","gender":"Female","department":"Product Management","address":"914 Pierstorff Way","hire_date":"5/9/2018","website":"https://amazonaws.com","notes":"felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec","status":2,"type":3,"salary":"$425.29"}, {"id":770,"employee_id":"680798737-4","first_name":"Hyacinthe","last_name":"Gulvin","email":"hgulvinld@time.com","phone":"766-455-2185","gender":"Female","department":"Research and Development","address":"52032 Crescent Oaks Trail","hire_date":"4/5/2018","website":"http://about.com","notes":"consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices","status":2,"type":1,"salary":"$433.74"}, {"id":771,"employee_id":"020830472-X","first_name":"Jacklin","last_name":"Kezor","email":"jkezorle@123-reg.co.uk","phone":"533-153-5896","gender":"Female","department":"Human Resources","address":"95187 Comanche Road","hire_date":"10/30/2017","website":"https://goo.ne.jp","notes":"turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris","status":4,"type":3,"salary":"$541.46"}, {"id":772,"employee_id":"384837986-4","first_name":"Farley","last_name":"Keggin","email":"fkegginlf@uiuc.edu","phone":"256-957-5424","gender":"Male","department":"Accounting","address":"0 Rockefeller Drive","hire_date":"9/17/2017","website":"https://umn.edu","notes":"vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac","status":5,"type":2,"salary":"$2489.99"}, {"id":773,"employee_id":"217698341-6","first_name":"Karry","last_name":"Mussalli","email":"kmussallilg@shinystat.com","phone":"604-426-4935","gender":"Female","department":"Research and Development","address":"5 Steensland Alley","hire_date":"12/30/2017","website":"https://princeton.edu","notes":"sit amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac","status":4,"type":2,"salary":"$1972.87"}, {"id":774,"employee_id":"337028137-6","first_name":"Kiersten","last_name":"Trimble","email":"ktrimblelh@angelfire.com","phone":"482-420-7278","gender":"Female","department":"Marketing","address":"3 Parkside Street","hire_date":"10/28/2017","website":"https://amazonaws.com","notes":"morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante nulla","status":2,"type":1,"salary":"$1741.59"}, {"id":775,"employee_id":"971844527-7","first_name":"Marget","last_name":"Sizland","email":"msizlandli@vistaprint.com","phone":"492-485-1277","gender":"Female","department":"Marketing","address":"51041 Toban Avenue","hire_date":"1/17/2018","website":"http://google.com.hk","notes":"cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc","status":5,"type":3,"salary":"$2434.08"}, {"id":776,"employee_id":"610098778-3","first_name":"Nanine","last_name":"Doohey","email":"ndooheylj@devhub.com","phone":"772-873-6018","gender":"Female","department":"Engineering","address":"0294 Ludington Circle","hire_date":"1/24/2018","website":"https://tinyurl.com","notes":"morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante","status":5,"type":2,"salary":"$1397.82"}, {"id":777,"employee_id":"226237088-5","first_name":"Victor","last_name":"Street","email":"vstreetlk@sitemeter.com","phone":"795-451-0197","gender":"Male","department":"Business Development","address":"07520 Hagan Lane","hire_date":"11/14/2017","website":"http://europa.eu","notes":"nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum","status":1,"type":3,"salary":"$462.01"}, {"id":778,"employee_id":"271193556-6","first_name":"Koren","last_name":"Allicock","email":"kallicockll@taobao.com","phone":"437-920-3466","gender":"Female","department":"Services","address":"6 6th Point","hire_date":"8/20/2017","website":"http://icio.us","notes":"semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum","status":2,"type":3,"salary":"$1589.23"}, {"id":779,"employee_id":"263513301-8","first_name":"Zoe","last_name":"Woodall","email":"zwoodalllm@surveymonkey.com","phone":"518-192-1416","gender":"Female","department":"Accounting","address":"37384 Steensland Court","hire_date":"2/8/2018","website":"http://washingtonpost.com","notes":"justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim","status":1,"type":1,"salary":"$740.26"}, {"id":780,"employee_id":"733220236-0","first_name":"Gregorio","last_name":"O\'Hannen","email":"gohannenln@smugmug.com","phone":"292-651-6749","gender":"Male","department":"Business Development","address":"1 Dapin Hill","hire_date":"1/27/2018","website":"http://reddit.com","notes":"ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero","status":6,"type":3,"salary":"$688.37"}, {"id":781,"employee_id":"436266716-4","first_name":"Cchaddie","last_name":"Awmack","email":"cawmacklo@bigcartel.com","phone":"725-885-3599","gender":"Male","department":"Engineering","address":"18 Coolidge Terrace","hire_date":"10/27/2017","website":"https://va.gov","notes":"tempus sit amet sem fusce consequat nulla nisl nunc nisl","status":6,"type":1,"salary":"$727.41"}, {"id":782,"employee_id":"311545185-7","first_name":"Sandro","last_name":"Dixsee","email":"sdixseelp@privacy.gov.au","phone":"536-788-8629","gender":"Male","department":"Research and Development","address":"96 Meadow Ridge Junction","hire_date":"5/3/2018","website":"http://nationalgeographic.com","notes":"amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor","status":4,"type":1,"salary":"$1884.62"}, {"id":783,"employee_id":"417867865-5","first_name":"Reilly","last_name":"Hourahan","email":"rhourahanlq@goodreads.com","phone":"487-266-9652","gender":"Male","department":"Sales","address":"71 Talmadge Terrace","hire_date":"3/28/2018","website":"http://gravatar.com","notes":"integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices","status":2,"type":2,"salary":"$887.30"}, {"id":784,"employee_id":"959654095-5","first_name":"Perla","last_name":"Bielby","email":"pbielbylr@cbc.ca","phone":"942-335-0976","gender":"Female","department":"Marketing","address":"225 7th Way","hire_date":"1/3/2018","website":"https://odnoklassniki.ru","notes":"congue risus semper porta volutpat quam pede lobortis ligula sit amet","status":4,"type":2,"salary":"$2415.35"}, {"id":785,"employee_id":"463941874-4","first_name":"Jecho","last_name":"Ganniclifft","email":"jganniclifftls@de.vu","phone":"587-690-5131","gender":"Male","department":"Services","address":"1 Glendale Lane","hire_date":"1/1/2018","website":"https://walmart.com","notes":"lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed","status":1,"type":1,"salary":"$1052.20"}, {"id":786,"employee_id":"668177772-4","first_name":"Corie","last_name":"Stenett","email":"cstenettlt@mail.ru","phone":"410-118-0485","gender":"Female","department":"Support","address":"8770 Monument Park","hire_date":"1/2/2018","website":"http://ycombinator.com","notes":"diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat","status":2,"type":1,"salary":"$302.53"}, {"id":787,"employee_id":"750892159-3","first_name":"Marya","last_name":"Renachowski","email":"mrenachowskilu@archive.org","phone":"234-917-9091","gender":"Female","department":"Services","address":"73 Bay Circle","hire_date":"10/8/2017","website":"http://usa.gov","notes":"nec sem duis aliquam convallis nunc proin at turpis a pede posuere","status":2,"type":2,"salary":"$1001.15"}, {"id":788,"employee_id":"546260319-3","first_name":"Chandler","last_name":"Pardue","email":"cparduelv@godaddy.com","phone":"253-709-1935","gender":"Male","department":"Accounting","address":"5 North Place","hire_date":"2/24/2018","website":"http://umn.edu","notes":"pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel","status":6,"type":3,"salary":"$1052.23"}, {"id":789,"employee_id":"791728813-7","first_name":"Almeda","last_name":"Illsley","email":"aillsleylw@posterous.com","phone":"202-999-4761","gender":"Female","department":"Marketing","address":"6626 Truax Trail","hire_date":"1/23/2018","website":"http://com.com","notes":"lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea","status":4,"type":2,"salary":"$2053.46"}, {"id":790,"employee_id":"640790420-X","first_name":"Kerri","last_name":"Costard","email":"kcostardlx@utexas.edu","phone":"466-313-3400","gender":"Female","department":"Product Management","address":"66 Loeprich Terrace","hire_date":"10/12/2017","website":"http://flickr.com","notes":"dui maecenas tristique est et tempus semper est quam pharetra","status":6,"type":3,"salary":"$397.40"}, {"id":791,"employee_id":"213817571-5","first_name":"Opal","last_name":"Attack","email":"oattackly@discuz.net","phone":"364-997-1710","gender":"Female","department":"Legal","address":"40 Melby Drive","hire_date":"7/27/2017","website":"https://mozilla.com","notes":"in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan","status":4,"type":2,"salary":"$1947.19"}, {"id":792,"employee_id":"855588374-1","first_name":"Kerrie","last_name":"Spens","email":"kspenslz@whitehouse.gov","phone":"206-606-4566","gender":"Female","department":"Legal","address":"61689 Nelson Alley","hire_date":"2/4/2018","website":"https://usnews.com","notes":"odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet erat nulla","status":4,"type":3,"salary":"$309.33"}, {"id":793,"employee_id":"408276383-X","first_name":"Alexi","last_name":"Lownes","email":"alownesm0@census.gov","phone":"249-263-4112","gender":"Female","department":"Legal","address":"6 Randy Lane","hire_date":"9/3/2017","website":"https://naver.com","notes":"congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend","status":6,"type":2,"salary":"$2030.25"}, {"id":794,"employee_id":"121098905-0","first_name":"Korrie","last_name":"Balaam","email":"kbalaamm1@umich.edu","phone":"841-183-3396","gender":"Female","department":"Research and Development","address":"7 Pankratz Park","hire_date":"6/23/2018","website":"http://tinypic.com","notes":"eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst","status":2,"type":3,"salary":"$1815.21"}, {"id":795,"employee_id":"732280161-X","first_name":"Abbye","last_name":"Lisle","email":"alislem2@cafepress.com","phone":"811-214-0555","gender":"Female","department":"Business Development","address":"0665 Knutson Park","hire_date":"10/7/2017","website":"https://nyu.edu","notes":"tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum","status":6,"type":2,"salary":"$1745.97"}, {"id":796,"employee_id":"939143806-7","first_name":"Letizia","last_name":"Burgwin","email":"lburgwinm3@hostgator.com","phone":"314-217-7762","gender":"Female","department":"Human Resources","address":"68 Meadow Ridge Center","hire_date":"3/24/2018","website":"https://canalblog.com","notes":"quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero","status":2,"type":1,"salary":"$622.82"}, {"id":797,"employee_id":"931230824-6","first_name":"Hazel","last_name":"Micheu","email":"hmicheum4@scribd.com","phone":"415-802-8407","gender":"Male","department":"Business Development","address":"353 Ludington Hill","hire_date":"8/5/2017","website":"http://hexun.com","notes":"erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer pede justo lacinia eget tincidunt","status":4,"type":3,"salary":"$494.96"}, {"id":798,"employee_id":"507962072-2","first_name":"Les","last_name":"Sloam","email":"lsloamm5@wikia.com","phone":"785-126-0550","gender":"Male","department":"Product Management","address":"09330 Spohn Circle","hire_date":"6/6/2018","website":"http://timesonline.co.uk","notes":"et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam","status":6,"type":2,"salary":"$1118.02"}, {"id":799,"employee_id":"212703331-0","first_name":"Giorgia","last_name":"Guidera","email":"gguideram6@theguardian.com","phone":"327-880-9189","gender":"Female","department":"Engineering","address":"2 Corry Point","hire_date":"4/5/2018","website":"https://merriam-webster.com","notes":"donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit","status":1,"type":3,"salary":"$2303.44"}, {"id":800,"employee_id":"576570473-5","first_name":"Baudoin","last_name":"Ffrench","email":"bffrenchm7@irs.gov","phone":"562-970-6433","gender":"Male","department":"Sales","address":"56 4th Court","hire_date":"11/24/2017","website":"https://tinyurl.com","notes":"sapien varius ut blandit non interdum in ante vestibulum ante ipsum primis in","status":1,"type":2,"salary":"$1587.82"}, {"id":801,"employee_id":"181943676-4","first_name":"Cordell","last_name":"Jantet","email":"cjantetm8@seattletimes.com","phone":"597-880-5051","gender":"Male","department":"Support","address":"1 Warrior Avenue","hire_date":"5/6/2018","website":"http://who.int","notes":"venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et commodo","status":1,"type":2,"salary":"$1580.06"}, {"id":802,"employee_id":"857791408-9","first_name":"Rochella","last_name":"Deavin","email":"rdeavinm9@yellowbook.com","phone":"157-458-3422","gender":"Female","department":"Business Development","address":"99155 Forest Trail","hire_date":"12/27/2017","website":"https://twitpic.com","notes":"luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet","status":6,"type":2,"salary":"$1138.03"}, {"id":803,"employee_id":"673618968-3","first_name":"Em","last_name":"Empson","email":"eempsonma@answers.com","phone":"250-516-4358","gender":"Male","department":"Legal","address":"0329 Village Green Avenue","hire_date":"2/17/2018","website":"http://wufoo.com","notes":"tellus nisi eu orci mauris lacinia sapien quis libero nullam","status":3,"type":2,"salary":"$1999.72"}, {"id":804,"employee_id":"043477209-7","first_name":"Ty","last_name":"Bulfit","email":"tbulfitmb@businessweek.com","phone":"381-955-9639","gender":"Male","department":"Training","address":"60213 Longview Circle","hire_date":"4/8/2018","website":"https://phoca.cz","notes":"placerat ante nulla justo aliquam quis turpis eget elit sodales","status":3,"type":2,"salary":"$1438.39"}, {"id":805,"employee_id":"167345466-6","first_name":"Loretta","last_name":"Jackett","email":"ljackettmc@pinterest.com","phone":"543-716-4727","gender":"Female","department":"Human Resources","address":"95 Swallow Avenue","hire_date":"10/10/2017","website":"https://cocolog-nifty.com","notes":"vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus","status":5,"type":2,"salary":"$1322.57"}, {"id":806,"employee_id":"844767394-4","first_name":"Amabel","last_name":"Lestrange","email":"alestrangemd@cargocollective.com","phone":"755-174-7238","gender":"Female","department":"Marketing","address":"0 Prairieview Place","hire_date":"1/28/2018","website":"https://storify.com","notes":"platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum","status":1,"type":1,"salary":"$1288.32"}, {"id":807,"employee_id":"716764899-X","first_name":"Gerald","last_name":"Heberden","email":"gheberdenme@slideshare.net","phone":"196-441-8295","gender":"Male","department":"Business Development","address":"88 Schlimgen Point","hire_date":"7/27/2017","website":"http://posterous.com","notes":"amet diam in magna bibendum imperdiet nullam orci pede venenatis non","status":1,"type":3,"salary":"$2228.42"}, {"id":808,"employee_id":"607496737-7","first_name":"Symon","last_name":"Veart","email":"sveartmf@google.co.uk","phone":"442-410-1960","gender":"Male","department":"Sales","address":"0 Maple Wood Court","hire_date":"11/7/2017","website":"http://hatena.ne.jp","notes":"suspendisse accumsan tortor quis turpis sed ante vivamus tortor duis","status":2,"type":3,"salary":"$1510.75"}, {"id":809,"employee_id":"864135592-8","first_name":"Rolfe","last_name":"Cleare","email":"rclearemg@fema.gov","phone":"102-452-1227","gender":"Male","department":"Engineering","address":"137 Florence Hill","hire_date":"4/23/2018","website":"http://mysql.com","notes":"volutpat erat quisque erat eros viverra eget congue eget semper rutrum","status":3,"type":3,"salary":"$1341.99"}, {"id":810,"employee_id":"342600434-8","first_name":"Callean","last_name":"Jerrolt","email":"cjerroltmh@g.co","phone":"795-810-1691","gender":"Male","department":"Product Management","address":"30693 Burrows Road","hire_date":"1/24/2018","website":"https://cbslocal.com","notes":"praesent blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede","status":2,"type":3,"salary":"$796.65"}, {"id":811,"employee_id":"205902301-7","first_name":"Shawna","last_name":"Rosborough","email":"srosboroughmi@opera.com","phone":"209-749-1562","gender":"Female","department":"Marketing","address":"039 Ludington Way","hire_date":"5/31/2018","website":"https://delicious.com","notes":"eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus","status":4,"type":1,"salary":"$301.37"}, {"id":812,"employee_id":"301219263-8","first_name":"Noelyn","last_name":"McEnteggart","email":"nmcenteggartmj@ow.ly","phone":"539-327-6367","gender":"Female","department":"Marketing","address":"0022 Lukken Drive","hire_date":"9/18/2017","website":"http://canalblog.com","notes":"pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra","status":2,"type":3,"salary":"$432.49"}, {"id":813,"employee_id":"718416820-8","first_name":"Bart","last_name":"Dyneley","email":"bdyneleymk@google.com.au","phone":"231-398-0202","gender":"Male","department":"Product Management","address":"9421 Green Street","hire_date":"11/20/2017","website":"http://dot.gov","notes":"nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis","status":6,"type":3,"salary":"$539.57"}, {"id":814,"employee_id":"632205591-7","first_name":"Correy","last_name":"Colquete","email":"ccolqueteml@google.co.jp","phone":"300-874-9684","gender":"Male","department":"Legal","address":"08 Garrison Alley","hire_date":"6/24/2018","website":"http://who.int","notes":"pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet","status":2,"type":2,"salary":"$2303.71"}, {"id":815,"employee_id":"426716297-2","first_name":"Rodge","last_name":"Hourston","email":"rhourstonmm@newsvine.com","phone":"492-284-8794","gender":"Male","department":"Business Development","address":"62 Brown Place","hire_date":"3/10/2018","website":"http://washington.edu","notes":"elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam","status":4,"type":1,"salary":"$1139.65"}, {"id":816,"employee_id":"638277031-0","first_name":"Kesley","last_name":"Liff","email":"kliffmn@fda.gov","phone":"279-346-8257","gender":"Female","department":"Services","address":"33317 Golden Leaf Alley","hire_date":"3/18/2018","website":"http://feedburner.com","notes":"erat curabitur gravida nisi at nibh in hac habitasse platea","status":1,"type":3,"salary":"$1721.96"}, {"id":817,"employee_id":"180232918-8","first_name":"Peirce","last_name":"Cluley","email":"pcluleymo@dailymail.co.uk","phone":"742-672-2952","gender":"Male","department":"Legal","address":"9209 Merchant Lane","hire_date":"10/15/2017","website":"https://cornell.edu","notes":"in est risus auctor sed tristique in tempus sit amet sem fusce consequat","status":5,"type":3,"salary":"$1636.79"}, {"id":818,"employee_id":"863979892-3","first_name":"Frayda","last_name":"Pickersail","email":"fpickersailmp@123-reg.co.uk","phone":"971-770-7430","gender":"Female","department":"Product Management","address":"0822 Sage Terrace","hire_date":"1/16/2018","website":"https://liveinternet.ru","notes":"ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo","status":6,"type":3,"salary":"$1913.44"}, {"id":819,"employee_id":"192493662-3","first_name":"Anselm","last_name":"Gibbonson","email":"agibbonsonmq@wikia.com","phone":"863-906-7411","gender":"Male","department":"Support","address":"8 Pawling Circle","hire_date":"7/2/2018","website":"http://rambler.ru","notes":"quisque porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis","status":2,"type":2,"salary":"$1742.85"}, {"id":820,"employee_id":"200052209-2","first_name":"Elberta","last_name":"Persicke","email":"epersickemr@blogger.com","phone":"668-943-3372","gender":"Female","department":"Research and Development","address":"8174 6th Crossing","hire_date":"9/27/2017","website":"https://mozilla.com","notes":"at velit eu est congue elementum in hac habitasse platea dictumst","status":2,"type":1,"salary":"$867.17"}, {"id":821,"employee_id":"395194882-5","first_name":"Sandro","last_name":"Marre","email":"smarrems@imdb.com","phone":"406-798-3488","gender":"Male","department":"Sales","address":"9212 Kropf Avenue","hire_date":"3/2/2018","website":"https://sciencedirect.com","notes":"donec ut dolor morbi vel lectus in quam fringilla rhoncus","status":6,"type":1,"salary":"$635.08"}, {"id":822,"employee_id":"855157045-5","first_name":"Mirabelle","last_name":"Varrow","email":"mvarrowmt@jiathis.com","phone":"756-556-9120","gender":"Female","department":"Support","address":"22554 Butternut Point","hire_date":"10/21/2017","website":"https://netvibes.com","notes":"proin at turpis a pede posuere nonummy integer non velit","status":5,"type":3,"salary":"$1613.32"}, {"id":823,"employee_id":"704941465-4","first_name":"Raoul","last_name":"Stuer","email":"rstuermu@cbsnews.com","phone":"189-643-4969","gender":"Male","department":"Services","address":"9 Debra Center","hire_date":"7/8/2018","website":"http://umich.edu","notes":"natoque penatibus et magnis dis parturient montes nascetur ridiculus mus etiam vel augue vestibulum rutrum","status":5,"type":3,"salary":"$2328.21"}, {"id":824,"employee_id":"732581584-0","first_name":"Ned","last_name":"Bru","email":"nbrumv@storify.com","phone":"128-130-4321","gender":"Male","department":"Business Development","address":"557 Gulseth Trail","hire_date":"10/5/2017","website":"https://unblog.fr","notes":"faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras","status":6,"type":3,"salary":"$961.24"}, {"id":825,"employee_id":"091790688-8","first_name":"Rick","last_name":"Ciccone","email":"rcicconemw@imdb.com","phone":"856-504-8970","gender":"Male","department":"Accounting","address":"66255 Westport Alley","hire_date":"8/8/2017","website":"https://infoseek.co.jp","notes":"etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut","status":5,"type":1,"salary":"$1186.43"}, {"id":826,"employee_id":"520293949-3","first_name":"Corinne","last_name":"Fownes","email":"cfownesmx@ehow.com","phone":"440-823-7406","gender":"Female","department":"Support","address":"26742 Debs Lane","hire_date":"1/11/2018","website":"https://baidu.com","notes":"ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend","status":2,"type":2,"salary":"$554.62"}, {"id":827,"employee_id":"365292994-2","first_name":"Cammy","last_name":"Holtaway","email":"choltawaymy@dion.ne.jp","phone":"194-960-1147","gender":"Female","department":"Services","address":"1131 Jay Junction","hire_date":"3/24/2018","website":"http://earthlink.net","notes":"praesent blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede","status":2,"type":3,"salary":"$1863.85"}, {"id":828,"employee_id":"843722533-7","first_name":"Fayth","last_name":"Haill","email":"fhaillmz@disqus.com","phone":"744-567-8110","gender":"Female","department":"Business Development","address":"33 Merrick Circle","hire_date":"3/15/2018","website":"https://cafepress.com","notes":"odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue","status":1,"type":3,"salary":"$2355.13"}, {"id":829,"employee_id":"322169240-4","first_name":"Trixi","last_name":"Pendlenton","email":"tpendlentonn0@taobao.com","phone":"957-310-2126","gender":"Female","department":"Marketing","address":"5 Jenna Avenue","hire_date":"8/29/2017","website":"https://nymag.com","notes":"ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor","status":3,"type":1,"salary":"$652.58"}, {"id":830,"employee_id":"135439312-0","first_name":"Hewe","last_name":"Prisk","email":"hpriskn1@ox.ac.uk","phone":"978-865-1619","gender":"Male","department":"Support","address":"97189 Fair Oaks Trail","hire_date":"12/24/2017","website":"http://sciencedirect.com","notes":"ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem","status":3,"type":1,"salary":"$440.95"}, {"id":831,"employee_id":"349704938-7","first_name":"Ezekiel","last_name":"De Haven","email":"edehavenn2@sbwire.com","phone":"793-431-3934","gender":"Male","department":"Support","address":"73 Tomscot Court","hire_date":"3/28/2018","website":"http://yale.edu","notes":"molestie nibh in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna","status":2,"type":2,"salary":"$307.26"}, {"id":832,"employee_id":"468212952-X","first_name":"Lou","last_name":"Saffell","email":"lsaffelln3@jigsy.com","phone":"635-726-3361","gender":"Female","department":"Business Development","address":"7279 Green Ridge Trail","hire_date":"7/27/2017","website":"http://google.it","notes":"ut nulla sed accumsan felis ut at dolor quis odio consequat varius","status":6,"type":3,"salary":"$2220.38"}, {"id":833,"employee_id":"946703651-7","first_name":"Kinnie","last_name":"Maryin","email":"kmaryinn4@taobao.com","phone":"407-291-2839","gender":"Male","department":"Business Development","address":"689 Reinke Drive","hire_date":"3/31/2018","website":"http://e-recht24.de","notes":"mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue","status":4,"type":3,"salary":"$1743.63"}, {"id":834,"employee_id":"469462469-5","first_name":"Gardie","last_name":"Bernli","email":"gbernlin5@printfriendly.com","phone":"655-626-8380","gender":"Male","department":"Research and Development","address":"05 Reinke Plaza","hire_date":"4/20/2018","website":"http://springer.com","notes":"faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat","status":6,"type":2,"salary":"$2438.74"}, {"id":835,"employee_id":"041162428-8","first_name":"Leticia","last_name":"Josefer","email":"ljosefern6@chronoengine.com","phone":"101-342-0106","gender":"Female","department":"Engineering","address":"3656 Bobwhite Trail","hire_date":"12/17/2017","website":"http://wordpress.org","notes":"orci pede venenatis non sodales sed tincidunt eu felis fusce","status":6,"type":2,"salary":"$1397.56"}, {"id":836,"employee_id":"589695198-1","first_name":"Darrick","last_name":"Granger","email":"dgrangern7@weather.com","phone":"205-150-7029","gender":"Male","department":"Support","address":"2 Roth Center","hire_date":"11/10/2017","website":"http://youku.com","notes":"elementum ligula vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus","status":5,"type":3,"salary":"$2094.14"}, {"id":837,"employee_id":"278485362-4","first_name":"Dyana","last_name":"Digger","email":"ddiggern8@omniture.com","phone":"750-673-1281","gender":"Female","department":"Legal","address":"49619 Graceland Drive","hire_date":"4/26/2018","website":"http://smh.com.au","notes":"aenean fermentum donec ut mauris eget massa tempor convallis nulla neque libero convallis eget eleifend","status":1,"type":1,"salary":"$1973.01"}, {"id":838,"employee_id":"779146008-4","first_name":"Lydon","last_name":"Masdon","email":"lmasdonn9@a8.net","phone":"212-527-6705","gender":"Male","department":"Training","address":"753 Golf Course Crossing","hire_date":"11/13/2017","website":"http://ucsd.edu","notes":"eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien","status":6,"type":3,"salary":"$753.19"}, {"id":839,"employee_id":"547768354-6","first_name":"Angelika","last_name":"Darch","email":"adarchna@tiny.cc","phone":"648-106-0061","gender":"Female","department":"Marketing","address":"5984 Hallows Point","hire_date":"5/13/2018","website":"http://omniture.com","notes":"tellus nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras non","status":5,"type":2,"salary":"$622.00"}, {"id":840,"employee_id":"211575367-4","first_name":"Hilliary","last_name":"Corkel","email":"hcorkelnb@yale.edu","phone":"145-299-6840","gender":"Female","department":"Human Resources","address":"39 Ridgeview Center","hire_date":"5/31/2018","website":"http://sbwire.com","notes":"nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse","status":6,"type":2,"salary":"$2237.81"}, {"id":841,"employee_id":"858981932-9","first_name":"Simeon","last_name":"Hearson","email":"shearsonnc@amazonaws.com","phone":"694-518-1962","gender":"Male","department":"Engineering","address":"8700 Esker Terrace","hire_date":"2/27/2018","website":"http://dedecms.com","notes":"nisi volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed","status":6,"type":2,"salary":"$1122.62"}, {"id":842,"employee_id":"431756926-4","first_name":"Tuck","last_name":"MacInnes","email":"tmacinnesnd@wordpress.org","phone":"783-303-6460","gender":"Male","department":"Support","address":"21 Veith Trail","hire_date":"9/2/2017","website":"https://marketwatch.com","notes":"mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui","status":5,"type":3,"salary":"$719.94"}, {"id":843,"employee_id":"597581423-5","first_name":"Sanders","last_name":"Yantsev","email":"syantsevne@pinterest.com","phone":"163-830-1851","gender":"Male","department":"Support","address":"92682 Stone Corner Court","hire_date":"9/23/2017","website":"http://house.gov","notes":"quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac","status":6,"type":1,"salary":"$1833.46"}, {"id":844,"employee_id":"528020275-4","first_name":"Sissy","last_name":"Innwood","email":"sinnwoodnf@example.com","phone":"340-721-2264","gender":"Female","department":"Product Management","address":"7857 Hayes Park","hire_date":"10/20/2017","website":"http://jigsy.com","notes":"risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis","status":1,"type":3,"salary":"$432.76"}, {"id":845,"employee_id":"717372604-2","first_name":"Saunder","last_name":"Flarity","email":"sflarityng@multiply.com","phone":"816-385-5389","gender":"Male","department":"Legal","address":"11 Hoepker Park","hire_date":"9/15/2017","website":"http://youtube.com","notes":"condimentum id luctus nec molestie sed justo pellentesque viverra pede","status":2,"type":3,"salary":"$2470.02"}, {"id":846,"employee_id":"225292769-0","first_name":"Denney","last_name":"Oakden","email":"doakdennh@bing.com","phone":"920-869-3544","gender":"Male","department":"Human Resources","address":"68494 Maple Alley","hire_date":"2/4/2018","website":"http://usatoday.com","notes":"ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque","status":4,"type":1,"salary":"$2220.67"}, {"id":847,"employee_id":"467850974-7","first_name":"Elita","last_name":"Burthom","email":"eburthomni@hp.com","phone":"335-219-3625","gender":"Female","department":"Accounting","address":"274 Katie Park","hire_date":"2/9/2018","website":"https://de.vu","notes":"ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae","status":4,"type":2,"salary":"$847.49"}, {"id":848,"employee_id":"898160045-7","first_name":"Stacie","last_name":"Hebner","email":"shebnernj@liveinternet.ru","phone":"890-770-6048","gender":"Female","department":"Human Resources","address":"44506 Bayside Drive","hire_date":"4/23/2018","website":"http://freewebs.com","notes":"massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea","status":2,"type":1,"salary":"$356.40"}, {"id":849,"employee_id":"818484277-5","first_name":"Betta","last_name":"Leakner","email":"bleaknernk@hud.gov","phone":"313-659-0867","gender":"Female","department":"Marketing","address":"09485 Dovetail Terrace","hire_date":"7/29/2017","website":"https://123-reg.co.uk","notes":"sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst","status":1,"type":2,"salary":"$1884.90"}, {"id":850,"employee_id":"087125652-5","first_name":"Kyle","last_name":"Wiggington","email":"kwiggingtonnl@latimes.com","phone":"297-144-3797","gender":"Male","department":"Legal","address":"0 Ronald Regan Crossing","hire_date":"4/6/2018","website":"http://csmonitor.com","notes":"eget nunc donec quis orci eget orci vehicula condimentum curabitur","status":5,"type":3,"salary":"$2215.86"}, {"id":851,"employee_id":"377288512-8","first_name":"Nara","last_name":"Resun","email":"nresunnm@mit.edu","phone":"731-180-4173","gender":"Female","department":"Sales","address":"7074 Golf Center","hire_date":"11/5/2017","website":"http://pinterest.com","notes":"vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra","status":5,"type":3,"salary":"$2166.61"}, {"id":852,"employee_id":"918618308-7","first_name":"Allene","last_name":"Gilstoun","email":"agilstounnn@cam.ac.uk","phone":"679-115-5305","gender":"Female","department":"Training","address":"70602 Schiller Trail","hire_date":"5/15/2018","website":"http://google.nl","notes":"nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices","status":1,"type":3,"salary":"$2047.71"}, {"id":853,"employee_id":"171710057-0","first_name":"Jarrett","last_name":"Kareman","email":"jkaremanno@mashable.com","phone":"571-811-3029","gender":"Male","department":"Research and Development","address":"135 Merry Hill","hire_date":"11/7/2017","website":"https://digg.com","notes":"curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae","status":2,"type":2,"salary":"$1898.66"}, {"id":854,"employee_id":"668119849-X","first_name":"Alidia","last_name":"Elias","email":"aeliasnp@hao123.com","phone":"621-868-7561","gender":"Female","department":"Business Development","address":"4467 Basil Circle","hire_date":"3/27/2018","website":"http://illinois.edu","notes":"id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate","status":6,"type":2,"salary":"$700.05"}, {"id":855,"employee_id":"359970386-8","first_name":"Audrey","last_name":"Cassel","email":"acasselnq@feedburner.com","phone":"110-165-9967","gender":"Female","department":"Engineering","address":"652 Dixon Junction","hire_date":"5/9/2018","website":"http://earthlink.net","notes":"suspendisse accumsan tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec","status":5,"type":2,"salary":"$1663.68"}, {"id":856,"employee_id":"853032462-5","first_name":"Gwyn","last_name":"Agiolfinger","email":"gagiolfingernr@fotki.com","phone":"990-944-9334","gender":"Female","department":"Engineering","address":"88005 Delaware Center","hire_date":"4/21/2018","website":"http://marketwatch.com","notes":"velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat","status":6,"type":3,"salary":"$594.90"}, {"id":857,"employee_id":"059215254-5","first_name":"Tuesday","last_name":"Akid","email":"takidns@weibo.com","phone":"673-912-7877","gender":"Female","department":"Marketing","address":"9652 Banding Avenue","hire_date":"8/16/2017","website":"https://samsung.com","notes":"ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor eu","status":4,"type":3,"salary":"$583.68"}, {"id":858,"employee_id":"474123789-3","first_name":"Carmel","last_name":"Morison","email":"cmorisonnt@com.com","phone":"767-605-1813","gender":"Female","department":"Business Development","address":"49 Valley Edge Street","hire_date":"6/29/2018","website":"https://goodreads.com","notes":"maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi","status":1,"type":1,"salary":"$2025.43"}, {"id":859,"employee_id":"626321755-3","first_name":"Salem","last_name":"Tomblings","email":"stomblingsnu@quantcast.com","phone":"841-956-0344","gender":"Male","department":"Product Management","address":"1522 Esch Alley","hire_date":"6/15/2018","website":"https://weibo.com","notes":"ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer","status":3,"type":2,"salary":"$426.68"}, {"id":860,"employee_id":"434074089-6","first_name":"Micky","last_name":"Prester","email":"mpresternv@flickr.com","phone":"934-275-4620","gender":"Female","department":"Marketing","address":"39 Nancy Drive","hire_date":"2/8/2018","website":"http://reference.com","notes":"faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam","status":1,"type":3,"salary":"$1926.90"}, {"id":861,"employee_id":"795857739-7","first_name":"Bernice","last_name":"Swinbourne","email":"bswinbournenw@yale.edu","phone":"936-824-2359","gender":"Female","department":"Sales","address":"216 Crowley Parkway","hire_date":"8/19/2017","website":"http://timesonline.co.uk","notes":"a odio in hac habitasse platea dictumst maecenas ut massa","status":3,"type":2,"salary":"$1384.84"}, {"id":862,"employee_id":"389656737-3","first_name":"Jacqui","last_name":"Fairbank","email":"jfairbanknx@macromedia.com","phone":"835-651-1622","gender":"Female","department":"Marketing","address":"7794 Talisman Park","hire_date":"5/23/2018","website":"https://liveinternet.ru","notes":"sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu massa","status":4,"type":2,"salary":"$363.54"}, {"id":863,"employee_id":"038925263-8","first_name":"Rochelle","last_name":"MacFadin","email":"rmacfadinny@narod.ru","phone":"443-239-8405","gender":"Female","department":"Marketing","address":"26 Shelley Hill","hire_date":"9/22/2017","website":"http://indiatimes.com","notes":"at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget","status":4,"type":2,"salary":"$2179.15"}, {"id":864,"employee_id":"657345006-X","first_name":"Any","last_name":"Heilds","email":"aheildsnz@theatlantic.com","phone":"954-253-2413","gender":"Male","department":"Support","address":"3694 Tomscot Road","hire_date":"2/10/2018","website":"https://huffingtonpost.com","notes":"sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac","status":5,"type":3,"salary":"$1128.45"}, {"id":865,"employee_id":"965469830-7","first_name":"Babbette","last_name":"Patchett","email":"bpatchetto0@usnews.com","phone":"670-691-5401","gender":"Female","department":"Business Development","address":"4 Prentice Park","hire_date":"5/29/2018","website":"http://cisco.com","notes":"in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt","status":5,"type":3,"salary":"$1734.90"}, {"id":866,"employee_id":"330409850-X","first_name":"Norrie","last_name":"Goghin","email":"ngoghino1@baidu.com","phone":"491-790-2918","gender":"Female","department":"Business Development","address":"645 Browning Lane","hire_date":"10/13/2017","website":"https://foxnews.com","notes":"ut blandit non interdum in ante vestibulum ante ipsum primis in faucibus orci","status":2,"type":2,"salary":"$430.97"}, {"id":867,"employee_id":"040434544-1","first_name":"Nichole","last_name":"Russel","email":"nrusselo2@cargocollective.com","phone":"540-530-3814","gender":"Male","department":"Services","address":"90419 Manley Terrace","hire_date":"12/7/2017","website":"http://joomla.org","notes":"pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna","status":3,"type":1,"salary":"$654.35"}, {"id":868,"employee_id":"351531103-3","first_name":"Hatti","last_name":"O\' Lone","email":"holoneo3@cargocollective.com","phone":"795-856-1540","gender":"Female","department":"Marketing","address":"3 Hazelcrest Way","hire_date":"1/22/2018","website":"http://ucla.edu","notes":"blandit mi in porttitor pede justo eu massa donec dapibus duis at","status":6,"type":2,"salary":"$2334.45"}, {"id":869,"employee_id":"353987017-2","first_name":"Vinny","last_name":"Sterland","email":"vsterlando4@vk.com","phone":"169-336-7150","gender":"Female","department":"Business Development","address":"417 Sundown Avenue","hire_date":"8/6/2017","website":"https://telegraph.co.uk","notes":"amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum","status":3,"type":1,"salary":"$1521.90"}, {"id":870,"employee_id":"281066414-5","first_name":"Heather","last_name":"Attwell","email":"hattwello5@ebay.com","phone":"938-751-5370","gender":"Female","department":"Accounting","address":"0 Corscot Parkway","hire_date":"2/28/2018","website":"https://com.com","notes":"tristique est et tempus semper est quam pharetra magna ac consequat metus sapien","status":4,"type":3,"salary":"$2166.56"}, {"id":871,"employee_id":"149270060-6","first_name":"Batsheva","last_name":"O\'Sheilds","email":"bosheildso6@utexas.edu","phone":"894-295-9511","gender":"Female","department":"Training","address":"60564 Orin Park","hire_date":"9/7/2017","website":"http://unesco.org","notes":"tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a","status":6,"type":3,"salary":"$1727.86"}, {"id":872,"employee_id":"643611254-5","first_name":"Willow","last_name":"Deeth","email":"wdeetho7@harvard.edu","phone":"159-925-5389","gender":"Female","department":"Accounting","address":"607 Anthes Lane","hire_date":"7/16/2018","website":"http://eventbrite.com","notes":"augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus","status":5,"type":2,"salary":"$1190.81"}, {"id":873,"employee_id":"058405556-0","first_name":"Mic","last_name":"Dengel","email":"mdengelo8@networksolutions.com","phone":"727-927-8796","gender":"Male","department":"Accounting","address":"785 Dawn Terrace","hire_date":"9/30/2017","website":"https://zimbio.com","notes":"justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus","status":2,"type":1,"salary":"$298.54"}, {"id":874,"employee_id":"549865806-0","first_name":"Hortense","last_name":"Mandell","email":"hmandello9@illinois.edu","phone":"572-206-1688","gender":"Female","department":"Services","address":"7958 Sherman Plaza","hire_date":"12/22/2017","website":"http://cdc.gov","notes":"nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo","status":1,"type":1,"salary":"$1498.34"}, {"id":875,"employee_id":"908338420-9","first_name":"Gilemette","last_name":"Bagenal","email":"gbagenaloa@diigo.com","phone":"475-315-9575","gender":"Female","department":"Engineering","address":"6193 6th Drive","hire_date":"8/29/2017","website":"http://reverbnation.com","notes":"tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula","status":5,"type":1,"salary":"$2230.76"}, {"id":876,"employee_id":"977156817-5","first_name":"Aloisia","last_name":"De Minico","email":"ademinicoob@delicious.com","phone":"120-288-0753","gender":"Female","department":"Accounting","address":"844 Blue Bill Park Avenue","hire_date":"10/14/2017","website":"http://friendfeed.com","notes":"proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque","status":1,"type":1,"salary":"$608.47"}, {"id":877,"employee_id":"885815976-4","first_name":"Reece","last_name":"Slyvester","email":"rslyvesteroc@apple.com","phone":"776-585-2812","gender":"Male","department":"Support","address":"49 Del Sol Park","hire_date":"4/28/2018","website":"http://yale.edu","notes":"dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh","status":6,"type":3,"salary":"$2352.46"}, {"id":878,"employee_id":"577787056-2","first_name":"Kean","last_name":"Venes","email":"kvenesod@forbes.com","phone":"580-228-2393","gender":"Male","department":"Support","address":"7890 Blue Bill Park Parkway","hire_date":"7/9/2018","website":"https://sbwire.com","notes":"quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non","status":4,"type":2,"salary":"$1752.92"}, {"id":879,"employee_id":"070850529-5","first_name":"Cathee","last_name":"Farquar","email":"cfarquaroe@jugem.jp","phone":"427-616-2628","gender":"Female","department":"Research and Development","address":"7849 Anthes Pass","hire_date":"8/11/2017","website":"http://nyu.edu","notes":"dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla","status":6,"type":1,"salary":"$1249.57"}, {"id":880,"employee_id":"573192593-3","first_name":"Koren","last_name":"Grayland","email":"kgraylandof@qq.com","phone":"522-950-3145","gender":"Female","department":"Research and Development","address":"23753 Bay Crossing","hire_date":"7/23/2017","website":"https://pagesperso-orange.fr","notes":"pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus","status":1,"type":1,"salary":"$2393.05"}, {"id":881,"employee_id":"509885019-3","first_name":"Phip","last_name":"Phateplace","email":"pphateplaceog@squidoo.com","phone":"901-708-2027","gender":"Male","department":"Product Management","address":"5966 Gulseth Drive","hire_date":"7/5/2018","website":"https://example.com","notes":"suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque","status":6,"type":2,"salary":"$1635.88"}, {"id":882,"employee_id":"701133697-4","first_name":"Moses","last_name":"Helix","email":"mhelixoh@jugem.jp","phone":"947-652-3546","gender":"Male","department":"Sales","address":"5 Westerfield Way","hire_date":"3/9/2018","website":"https://google.it","notes":"ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer pede","status":4,"type":2,"salary":"$452.06"}, {"id":883,"employee_id":"445368708-7","first_name":"Zebadiah","last_name":"Redington","email":"zredingtonoi@squarespace.com","phone":"106-887-0468","gender":"Male","department":"Training","address":"42 Di Loreto Point","hire_date":"2/17/2018","website":"http://sina.com.cn","notes":"in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod","status":1,"type":3,"salary":"$2018.44"}, {"id":884,"employee_id":"023371746-3","first_name":"Morna","last_name":"Beckwith","email":"mbeckwithoj@usnews.com","phone":"447-925-5378","gender":"Female","department":"Business Development","address":"9836 Browning Park","hire_date":"3/10/2018","website":"http://ihg.com","notes":"sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus","status":2,"type":3,"salary":"$721.52"}, {"id":885,"employee_id":"254571653-7","first_name":"Zorine","last_name":"Shervil","email":"zshervilok@yolasite.com","phone":"203-384-0989","gender":"Female","department":"Product Management","address":"51051 Golden Leaf Avenue","hire_date":"4/25/2018","website":"https://studiopress.com","notes":"sit amet diam in magna bibendum imperdiet nullam orci pede venenatis non sodales","status":2,"type":2,"salary":"$2409.49"}, {"id":886,"employee_id":"960030935-3","first_name":"Cory","last_name":"Ackland","email":"cacklandol@epa.gov","phone":"686-765-5372","gender":"Male","department":"Legal","address":"17 Colorado Circle","hire_date":"6/30/2018","website":"http://dropbox.com","notes":"vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus","status":1,"type":1,"salary":"$1792.46"}, {"id":887,"employee_id":"087598468-1","first_name":"Oona","last_name":"Schriren","email":"oschrirenom@biblegateway.com","phone":"757-810-4691","gender":"Female","department":"Marketing","address":"08 Oxford Plaza","hire_date":"3/7/2018","website":"https://newyorker.com","notes":"cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat","status":1,"type":2,"salary":"$310.95"}, {"id":888,"employee_id":"913978565-3","first_name":"Cary","last_name":"Nutty","email":"cnuttyon@zimbio.com","phone":"906-633-9244","gender":"Male","department":"Support","address":"893 Melrose Circle","hire_date":"4/15/2018","website":"https://businessweek.com","notes":"enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id","status":5,"type":1,"salary":"$1885.07"}, {"id":889,"employee_id":"852709101-1","first_name":"Marys","last_name":"Colling","email":"mcollingoo@weather.com","phone":"953-749-3087","gender":"Female","department":"Training","address":"87987 Duke Lane","hire_date":"9/28/2017","website":"https://blogtalkradio.com","notes":"justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim","status":5,"type":2,"salary":"$2235.04"}, {"id":890,"employee_id":"291123541-X","first_name":"Peggy","last_name":"Flockhart","email":"pflockhartop@bing.com","phone":"415-872-2156","gender":"Female","department":"Support","address":"1 Jay Avenue","hire_date":"4/14/2018","website":"http://fastcompany.com","notes":"nec nisi volutpat eleifend donec ut dolor morbi vel lectus in","status":1,"type":3,"salary":"$1097.99"}, {"id":891,"employee_id":"061820725-2","first_name":"Em","last_name":"Trippett","email":"etrippettoq@reverbnation.com","phone":"838-745-0517","gender":"Male","department":"Accounting","address":"71881 Warrior Circle","hire_date":"11/25/2017","website":"http://marketwatch.com","notes":"leo odio porttitor id consequat in consequat ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer","status":4,"type":1,"salary":"$1944.75"}, {"id":892,"employee_id":"246309066-9","first_name":"Benedikta","last_name":"Anelay","email":"banelayor@wired.com","phone":"402-214-4561","gender":"Female","department":"Legal","address":"6996 Magdeline Trail","hire_date":"9/16/2017","website":"https://spotify.com","notes":"non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit","status":5,"type":1,"salary":"$2424.53"}, {"id":893,"employee_id":"340359317-7","first_name":"Emma","last_name":"Fidoe","email":"efidoeos@nyu.edu","phone":"499-385-6103","gender":"Female","department":"Accounting","address":"1 Springs Junction","hire_date":"1/17/2018","website":"https://bloglines.com","notes":"a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet","status":1,"type":2,"salary":"$1109.61"}, {"id":894,"employee_id":"647906622-7","first_name":"Derwin","last_name":"Cuffe","email":"dcuffeot@washington.edu","phone":"386-529-5089","gender":"Male","department":"Accounting","address":"9404 Kedzie Point","hire_date":"5/8/2018","website":"https://topsy.com","notes":"ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa","status":4,"type":3,"salary":"$784.33"}, {"id":895,"employee_id":"734537898-5","first_name":"Cheston","last_name":"Laherty","email":"clahertyou@sphinn.com","phone":"237-651-6840","gender":"Male","department":"Accounting","address":"136 Bowman Way","hire_date":"6/21/2018","website":"http://last.fm","notes":"massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque id","status":1,"type":3,"salary":"$1384.83"}, {"id":896,"employee_id":"517246133-7","first_name":"Francklyn","last_name":"Tellesson","email":"ftellessonov@sbwire.com","phone":"431-989-9730","gender":"Male","department":"Engineering","address":"8663 Grover Pass","hire_date":"2/10/2018","website":"https://exblog.jp","notes":"id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in","status":1,"type":1,"salary":"$515.07"}, {"id":897,"employee_id":"244720621-6","first_name":"Rossy","last_name":"Rubinowicz","email":"rrubinowiczow@privacy.gov.au","phone":"128-751-6213","gender":"Male","department":"Sales","address":"6 Park Meadow Drive","hire_date":"7/18/2018","website":"http://360.cn","notes":"eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor duis mattis egestas metus","status":5,"type":1,"salary":"$1665.47"}, {"id":898,"employee_id":"239166941-0","first_name":"Whitman","last_name":"Klezmski","email":"wklezmskiox@phpbb.com","phone":"833-785-5590","gender":"Male","department":"Training","address":"2 American Ash Court","hire_date":"5/20/2018","website":"http://mayoclinic.com","notes":"posuere nonummy integer non velit donec diam neque vestibulum eget","status":2,"type":2,"salary":"$2110.09"}, {"id":899,"employee_id":"289033043-5","first_name":"Ivory","last_name":"Witcombe","email":"iwitcombeoy@mysql.com","phone":"195-438-5956","gender":"Female","department":"Support","address":"4652 Maywood Circle","hire_date":"6/10/2018","website":"http://toplist.cz","notes":"orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam","status":4,"type":1,"salary":"$1509.44"}, {"id":900,"employee_id":"735454334-9","first_name":"Marcelia","last_name":"Scrannage","email":"mscrannageoz@phpbb.com","phone":"867-246-0019","gender":"Female","department":"Product Management","address":"798 Gulseth Way","hire_date":"6/16/2018","website":"https://bloglovin.com","notes":"vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus","status":6,"type":3,"salary":"$2235.67"}, {"id":901,"employee_id":"628040894-9","first_name":"Ariel","last_name":"Schiefersten","email":"aschieferstenp0@earthlink.net","phone":"576-850-5308","gender":"Female","department":"Marketing","address":"28 Westend Terrace","hire_date":"8/11/2017","website":"https://cnbc.com","notes":"vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat","status":3,"type":3,"salary":"$1638.83"}, {"id":902,"employee_id":"417689860-7","first_name":"Neala","last_name":"Schofield","email":"nschofieldp1@earthlink.net","phone":"827-705-9400","gender":"Female","department":"Training","address":"4989 Orin Plaza","hire_date":"1/27/2018","website":"http://bloomberg.com","notes":"eget tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in","status":6,"type":3,"salary":"$1248.12"}, {"id":903,"employee_id":"678441197-8","first_name":"Ody","last_name":"Craster","email":"ocrasterp2@histats.com","phone":"982-198-5117","gender":"Male","department":"Accounting","address":"44477 Ridgeview Junction","hire_date":"4/1/2018","website":"http://rambler.ru","notes":"dapibus duis at velit eu est congue elementum in hac habitasse platea","status":2,"type":1,"salary":"$714.64"}, {"id":904,"employee_id":"601468081-0","first_name":"Frazer","last_name":"Joinsey","email":"fjoinseyp3@sogou.com","phone":"826-605-9383","gender":"Male","department":"Sales","address":"5219 Village Green Center","hire_date":"9/20/2017","website":"http://devhub.com","notes":"mi nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem","status":3,"type":3,"salary":"$1477.02"}, {"id":905,"employee_id":"182272871-1","first_name":"Euell","last_name":"Parsand","email":"eparsandp4@answers.com","phone":"695-370-0261","gender":"Male","department":"Accounting","address":"8355 Upham Way","hire_date":"12/7/2017","website":"https://myspace.com","notes":"est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien","status":6,"type":2,"salary":"$1642.29"}, {"id":906,"employee_id":"123091226-6","first_name":"Gloriane","last_name":"Boatswain","email":"gboatswainp5@1688.com","phone":"284-454-8780","gender":"Female","department":"Human Resources","address":"31 Sunnyside Place","hire_date":"4/21/2018","website":"http://acquirethisname.com","notes":"sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere","status":5,"type":1,"salary":"$382.88"}, {"id":907,"employee_id":"910029012-2","first_name":"Cymbre","last_name":"Josefson","email":"cjosefsonp6@dot.gov","phone":"965-996-9224","gender":"Female","department":"Services","address":"678 Sauthoff Circle","hire_date":"10/16/2017","website":"https://mysql.com","notes":"scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at","status":4,"type":2,"salary":"$2055.21"}, {"id":908,"employee_id":"326145281-1","first_name":"Hiram","last_name":"Server","email":"hserverp7@e-recht24.de","phone":"713-883-2136","gender":"Male","department":"Legal","address":"647 Crowley Road","hire_date":"9/7/2017","website":"http://pagesperso-orange.fr","notes":"ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing","status":4,"type":2,"salary":"$1835.86"}, {"id":909,"employee_id":"822859393-7","first_name":"Olin","last_name":"Blanpein","email":"oblanpeinp8@desdev.cn","phone":"330-588-2934","gender":"Male","department":"Sales","address":"2 Merry Avenue","hire_date":"9/28/2017","website":"https://altervista.org","notes":"pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in","status":1,"type":3,"salary":"$1559.85"}, {"id":910,"employee_id":"622152688-4","first_name":"Roderic","last_name":"Goldthorpe","email":"rgoldthorpep9@nba.com","phone":"337-140-9491","gender":"Male","department":"Accounting","address":"462 Talmadge Plaza","hire_date":"9/23/2017","website":"http://webs.com","notes":"ut volutpat sapien arcu sed augue aliquam erat volutpat in","status":5,"type":1,"salary":"$2497.67"}, {"id":911,"employee_id":"081619141-7","first_name":"Dimitri","last_name":"Birkmyre","email":"dbirkmyrepa@surveymonkey.com","phone":"342-895-5184","gender":"Male","department":"Accounting","address":"0 Mcbride Park","hire_date":"8/27/2017","website":"http://ow.ly","notes":"non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus","status":2,"type":3,"salary":"$281.75"}, {"id":912,"employee_id":"782208639-1","first_name":"Riobard","last_name":"Beatey","email":"rbeateypb@blog.com","phone":"162-210-1893","gender":"Male","department":"Accounting","address":"9 Green Ridge Alley","hire_date":"2/22/2018","website":"https://bing.com","notes":"in faucibus orci luctus et ultrices posuere cubilia curae donec","status":1,"type":2,"salary":"$1265.73"}, {"id":913,"employee_id":"660920982-0","first_name":"Natalya","last_name":"Hinze","email":"nhinzepc@angelfire.com","phone":"732-647-5264","gender":"Female","department":"Legal","address":"7 Larry Park","hire_date":"12/1/2017","website":"https://weibo.com","notes":"volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet","status":4,"type":2,"salary":"$1530.93"}, {"id":914,"employee_id":"432319797-7","first_name":"Chickie","last_name":"Mounfield","email":"cmounfieldpd@nba.com","phone":"560-730-2512","gender":"Female","department":"Training","address":"51236 Holy Cross Trail","hire_date":"10/28/2017","website":"https://shutterfly.com","notes":"convallis nunc proin at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices","status":5,"type":1,"salary":"$2235.54"}, {"id":915,"employee_id":"406004760-0","first_name":"See","last_name":"Jeenes","email":"sjeenespe@arizona.edu","phone":"268-712-4165","gender":"Male","department":"Engineering","address":"230 Nova Street","hire_date":"10/20/2017","website":"https://goo.gl","notes":"sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis","status":2,"type":3,"salary":"$1222.20"}, {"id":916,"employee_id":"047059394-6","first_name":"Vassili","last_name":"Capener","email":"vcapenerpf@t.co","phone":"986-924-0785","gender":"Male","department":"Human Resources","address":"61178 Scofield Trail","hire_date":"8/25/2017","website":"https://washingtonpost.com","notes":"cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et","status":5,"type":3,"salary":"$1949.74"}, {"id":917,"employee_id":"180396440-5","first_name":"Bill","last_name":"Larvent","email":"blarventpg@naver.com","phone":"529-947-5325","gender":"Male","department":"Business Development","address":"44 Hansons Park","hire_date":"8/30/2017","website":"https://hud.gov","notes":"eget congue eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui proin","status":4,"type":2,"salary":"$841.10"}, {"id":918,"employee_id":"283546824-2","first_name":"Basile","last_name":"Digges","email":"bdiggesph@myspace.com","phone":"206-710-6581","gender":"Male","department":"Research and Development","address":"083 Hanson Avenue","hire_date":"1/18/2018","website":"http://simplemachines.org","notes":"sed magna at nunc commodo placerat praesent blandit nam nulla integer pede","status":2,"type":2,"salary":"$586.02"}, {"id":919,"employee_id":"347048793-6","first_name":"Nissy","last_name":"Di Boldi","email":"ndiboldipi@state.gov","phone":"166-264-1516","gender":"Female","department":"Legal","address":"92 Dixon Center","hire_date":"8/14/2017","website":"https://domainmarket.com","notes":"duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim","status":2,"type":2,"salary":"$1528.40"}, {"id":920,"employee_id":"954552593-2","first_name":"Fraze","last_name":"Zamora","email":"fzamorapj@google.nl","phone":"149-538-9076","gender":"Male","department":"Human Resources","address":"4 Linden Trail","hire_date":"1/19/2018","website":"http://theglobeandmail.com","notes":"orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi","status":6,"type":2,"salary":"$1091.36"}, {"id":921,"employee_id":"120102828-0","first_name":"Cecilla","last_name":"Gorrie","email":"cgorriepk@auda.org.au","phone":"513-939-0970","gender":"Female","department":"Product Management","address":"384 Clarendon Center","hire_date":"1/20/2018","website":"https://economist.com","notes":"consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel","status":1,"type":1,"salary":"$525.41"}, {"id":922,"employee_id":"920174569-9","first_name":"Annalise","last_name":"Kerins","email":"akerinspl@surveymonkey.com","phone":"545-661-7432","gender":"Female","department":"Marketing","address":"6522 Reindahl Plaza","hire_date":"8/3/2017","website":"https://wordpress.com","notes":"morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet","status":3,"type":3,"salary":"$905.14"}, {"id":923,"employee_id":"784253584-1","first_name":"Lamar","last_name":"Livingston","email":"llivingstonpm@mail.ru","phone":"709-300-9506","gender":"Male","department":"Services","address":"18117 Reindahl Junction","hire_date":"1/13/2018","website":"http://dagondesign.com","notes":"rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa","status":4,"type":3,"salary":"$2443.20"}, {"id":924,"employee_id":"988584613-1","first_name":"Helaina","last_name":"Alenov","email":"halenovpn@4shared.com","phone":"572-441-0032","gender":"Female","department":"Services","address":"469 Manitowish Center","hire_date":"5/10/2018","website":"http://foxnews.com","notes":"placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros","status":4,"type":1,"salary":"$560.67"}, {"id":925,"employee_id":"049938321-4","first_name":"Brocky","last_name":"Tuite","email":"btuitepo@gmpg.org","phone":"512-393-7521","gender":"Male","department":"Services","address":"408 Fairview Hill","hire_date":"7/1/2018","website":"https://myspace.com","notes":"turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","status":3,"type":3,"salary":"$2028.73"}, {"id":926,"employee_id":"902267560-2","first_name":"Urbanus","last_name":"Ambrogi","email":"uambrogipp@dailymotion.com","phone":"232-264-1680","gender":"Male","department":"Engineering","address":"0 Thierer Circle","hire_date":"4/3/2018","website":"https://infoseek.co.jp","notes":"amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor","status":2,"type":2,"salary":"$1764.44"}, {"id":927,"employee_id":"991397372-4","first_name":"Cissy","last_name":"Anmore","email":"canmorepq@cpanel.net","phone":"202-901-2748","gender":"Female","department":"Human Resources","address":"80876 Amoth Place","hire_date":"9/30/2017","website":"https://taobao.com","notes":"cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum","status":2,"type":2,"salary":"$2243.19"}, {"id":928,"employee_id":"102182510-7","first_name":"Gaven","last_name":"MacTrustey","email":"gmactrusteypr@go.com","phone":"654-262-2808","gender":"Male","department":"Legal","address":"04978 Kensington Alley","hire_date":"2/13/2018","website":"https://ask.com","notes":"eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras","status":5,"type":3,"salary":"$2414.43"}, {"id":929,"employee_id":"094556174-1","first_name":"Lawrence","last_name":"Lloyds","email":"llloydsps@sogou.com","phone":"858-645-8381","gender":"Male","department":"Marketing","address":"602 Division Lane","hire_date":"3/2/2018","website":"https://patch.com","notes":"at turpis a pede posuere nonummy integer non velit donec diam","status":2,"type":1,"salary":"$1515.11"}, {"id":930,"employee_id":"391075695-6","first_name":"Kleon","last_name":"Hawket","email":"khawketpt@reference.com","phone":"129-947-4020","gender":"Male","department":"Product Management","address":"4501 Ronald Regan Pass","hire_date":"1/21/2018","website":"http://google.ru","notes":"lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus","status":2,"type":2,"salary":"$1414.43"}, {"id":931,"employee_id":"131408718-5","first_name":"Casar","last_name":"Willers","email":"cwillerspu@example.com","phone":"768-642-6411","gender":"Male","department":"Training","address":"3 Clemons Pass","hire_date":"5/9/2018","website":"https://dyndns.org","notes":"risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien","status":6,"type":1,"salary":"$396.91"}, {"id":932,"employee_id":"555033377-5","first_name":"Marcia","last_name":"Wasling","email":"mwaslingpv@china.com.cn","phone":"337-344-8789","gender":"Female","department":"Research and Development","address":"4 Merrick Alley","hire_date":"4/27/2018","website":"http://paypal.com","notes":"imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce","status":4,"type":2,"salary":"$640.93"}, {"id":933,"employee_id":"581222296-7","first_name":"Samuel","last_name":"Alenov","email":"salenovpw@moonfruit.com","phone":"348-435-6018","gender":"Male","department":"Marketing","address":"0 Carpenter Point","hire_date":"10/11/2017","website":"http://ihg.com","notes":"nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi","status":6,"type":1,"salary":"$1490.27"}, {"id":934,"employee_id":"778142125-6","first_name":"Auberta","last_name":"Scase","email":"ascasepx@imdb.com","phone":"787-786-1888","gender":"Female","department":"Engineering","address":"39926 Hollow Ridge Center","hire_date":"3/17/2018","website":"https://examiner.com","notes":"bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede","status":2,"type":1,"salary":"$937.82"}, {"id":935,"employee_id":"736149611-3","first_name":"Twila","last_name":"Yousef","email":"tyousefpy@discuz.net","phone":"168-625-3515","gender":"Female","department":"Sales","address":"85 Eggendart Lane","hire_date":"8/4/2017","website":"http://feedburner.com","notes":"aenean fermentum donec ut mauris eget massa tempor convallis nulla neque","status":5,"type":1,"salary":"$2163.57"}, {"id":936,"employee_id":"910688087-8","first_name":"Rhona","last_name":"Skate","email":"rskatepz@discovery.com","phone":"865-106-4351","gender":"Female","department":"Engineering","address":"327 Duke Pass","hire_date":"9/17/2017","website":"http://ucoz.com","notes":"ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit","status":3,"type":2,"salary":"$1706.28"}, {"id":937,"employee_id":"248948482-6","first_name":"Hilario","last_name":"Hefford","email":"hheffordq0@list-manage.com","phone":"190-986-6387","gender":"Male","department":"Support","address":"355 Hallows Center","hire_date":"7/25/2017","website":"http://sina.com.cn","notes":"quam a odio in hac habitasse platea dictumst maecenas ut massa quis","status":6,"type":2,"salary":"$791.03"}, {"id":938,"employee_id":"679369811-7","first_name":"Nomi","last_name":"Gascone","email":"ngasconeq1@simplemachines.org","phone":"116-610-1692","gender":"Female","department":"Product Management","address":"58021 Mesta Drive","hire_date":"3/30/2018","website":"http://people.com.cn","notes":"massa donec dapibus duis at velit eu est congue elementum","status":2,"type":1,"salary":"$1925.68"}, {"id":939,"employee_id":"419630112-6","first_name":"Les","last_name":"Vaar","email":"lvaarq2@oakley.com","phone":"278-817-5498","gender":"Male","department":"Marketing","address":"1564 Sage Point","hire_date":"6/29/2018","website":"http://cam.ac.uk","notes":"integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi","status":5,"type":3,"salary":"$2379.48"}, {"id":940,"employee_id":"975095812-8","first_name":"Melicent","last_name":"Hassell","email":"mhassellq3@networksolutions.com","phone":"617-316-4628","gender":"Female","department":"Legal","address":"2845 Barnett Avenue","hire_date":"2/3/2018","website":"http://ucoz.com","notes":"tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit","status":4,"type":2,"salary":"$2427.08"}, {"id":941,"employee_id":"312852638-9","first_name":"Breena","last_name":"Scranney","email":"bscranneyq4@gmpg.org","phone":"103-742-8337","gender":"Female","department":"Support","address":"83 Del Mar Street","hire_date":"5/12/2018","website":"http://parallels.com","notes":"integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem","status":3,"type":2,"salary":"$2473.28"}, {"id":942,"employee_id":"664027710-7","first_name":"Mitchel","last_name":"Ashingden","email":"mashingdenq5@jimdo.com","phone":"680-971-9551","gender":"Male","department":"Services","address":"52259 Tomscot Point","hire_date":"11/17/2017","website":"http://globo.com","notes":"cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus","status":1,"type":2,"salary":"$1456.29"}, {"id":943,"employee_id":"669043116-9","first_name":"Diena","last_name":"Kilroy","email":"dkilroyq6@blog.com","phone":"500-474-5258","gender":"Female","department":"Human Resources","address":"0 Rowland Street","hire_date":"4/14/2018","website":"http://goo.gl","notes":"in lectus pellentesque at nulla suspendisse potenti cras in purus","status":2,"type":2,"salary":"$1964.78"}, {"id":944,"employee_id":"231599768-2","first_name":"Birgitta","last_name":"Creedland","email":"bcreedlandq7@shinystat.com","phone":"885-813-9256","gender":"Female","department":"Research and Development","address":"2604 Eastwood Hill","hire_date":"2/7/2018","website":"https://g.co","notes":"adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a","status":3,"type":3,"salary":"$273.43"}, {"id":945,"employee_id":"718392098-4","first_name":"Chelsie","last_name":"Blazeby","email":"cblazebyq8@myspace.com","phone":"455-370-2509","gender":"Female","department":"Engineering","address":"4488 Pennsylvania Hill","hire_date":"6/1/2018","website":"https://oaic.gov.au","notes":"sagittis nam congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam","status":1,"type":2,"salary":"$1532.30"}, {"id":946,"employee_id":"730262510-7","first_name":"Kip","last_name":"Yglesias","email":"kyglesiasq9@mediafire.com","phone":"744-205-9308","gender":"Male","department":"Services","address":"2618 Sauthoff Circle","hire_date":"1/8/2018","website":"http://sciencedaily.com","notes":"lorem quisque ut erat curabitur gravida nisi at nibh in hac habitasse","status":3,"type":2,"salary":"$2255.08"}, {"id":947,"employee_id":"409668021-4","first_name":"Arte","last_name":"Mityukov","email":"amityukovqa@simplemachines.org","phone":"662-302-6515","gender":"Male","department":"Product Management","address":"2098 Sage Terrace","hire_date":"4/27/2018","website":"http://angelfire.com","notes":"odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim lorem","status":2,"type":3,"salary":"$1715.17"}, {"id":948,"employee_id":"251173974-7","first_name":"Wini","last_name":"Dorian","email":"wdorianqb@netlog.com","phone":"490-887-4082","gender":"Female","department":"Services","address":"93 Milwaukee Parkway","hire_date":"11/10/2017","website":"https://yellowbook.com","notes":"ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel","status":4,"type":2,"salary":"$1795.30"}, {"id":949,"employee_id":"026173862-3","first_name":"Brana","last_name":"Koppes","email":"bkoppesqc@g.co","phone":"968-368-9173","gender":"Female","department":"Human Resources","address":"59 Waubesa Junction","hire_date":"4/9/2018","website":"https://google.es","notes":"curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum ac","status":2,"type":3,"salary":"$679.08"}, {"id":950,"employee_id":"669220838-6","first_name":"Karry","last_name":"Perkins","email":"kperkinsqd@blogspot.com","phone":"484-507-3283","gender":"Female","department":"Business Development","address":"1 Nevada Terrace","hire_date":"7/29/2017","website":"http://issuu.com","notes":"praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer","status":5,"type":3,"salary":"$1679.37"}, {"id":951,"employee_id":"762086972-7","first_name":"Shepperd","last_name":"Hazlewood","email":"shazlewoodqe@g.co","phone":"311-254-3012","gender":"Male","department":"Accounting","address":"5427 Cardinal Plaza","hire_date":"6/21/2018","website":"https://whitehouse.gov","notes":"sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus","status":3,"type":3,"salary":"$1217.62"}, {"id":952,"employee_id":"418422991-3","first_name":"Sergei","last_name":"Juckes","email":"sjuckesqf@technorati.com","phone":"486-896-2040","gender":"Male","department":"Sales","address":"50 Leroy Avenue","hire_date":"8/14/2017","website":"http://zdnet.com","notes":"vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi","status":3,"type":2,"salary":"$2488.72"}, {"id":953,"employee_id":"393004703-9","first_name":"Renaldo","last_name":"Pearson","email":"rpearsonqg@adobe.com","phone":"921-422-0993","gender":"Male","department":"Product Management","address":"9 Lighthouse Bay Street","hire_date":"7/18/2018","website":"http://dion.ne.jp","notes":"aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean","status":6,"type":3,"salary":"$970.25"}, {"id":954,"employee_id":"557626711-7","first_name":"Lucila","last_name":"Carles","email":"lcarlesqh@parallels.com","phone":"793-968-2100","gender":"Female","department":"Services","address":"0263 Oriole Park","hire_date":"7/8/2018","website":"https://wufoo.com","notes":"vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus","status":4,"type":1,"salary":"$960.36"}, {"id":955,"employee_id":"172444633-9","first_name":"Tedie","last_name":"Ginnell","email":"tginnellqi@youtu.be","phone":"589-792-0068","gender":"Male","department":"Services","address":"5772 Division Park","hire_date":"8/22/2017","website":"https://nature.com","notes":"eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque quam","status":2,"type":1,"salary":"$311.19"}, {"id":956,"employee_id":"037254971-3","first_name":"Carce","last_name":"Sheircliffe","email":"csheircliffeqj@craigslist.org","phone":"623-714-6450","gender":"Male","department":"Support","address":"09 Merry Way","hire_date":"12/20/2017","website":"http://exblog.jp","notes":"imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi","status":1,"type":1,"salary":"$1905.11"}, {"id":957,"employee_id":"007863387-7","first_name":"Mellisa","last_name":"Pentland","email":"mpentlandqk@flavors.me","phone":"631-934-5783","gender":"Female","department":"Services","address":"93095 1st Junction","hire_date":"1/5/2018","website":"http://ycombinator.com","notes":"nunc proin at turpis a pede posuere nonummy integer non velit","status":4,"type":1,"salary":"$839.00"}, {"id":958,"employee_id":"610993337-6","first_name":"Wilden","last_name":"Edinborough","email":"wedinboroughql@lulu.com","phone":"903-407-0431","gender":"Male","department":"Training","address":"71371 Kropf Crossing","hire_date":"12/2/2017","website":"https://comsenz.com","notes":"faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras non velit","status":5,"type":1,"salary":"$1278.54"}, {"id":959,"employee_id":"311880498-X","first_name":"Marjie","last_name":"Hanssmann","email":"mhanssmannqm@myspace.com","phone":"718-670-6224","gender":"Female","department":"Marketing","address":"9 Sunbrook Place","hire_date":"8/30/2017","website":"http://ucoz.ru","notes":"convallis nunc proin at turpis a pede posuere nonummy integer non velit donec diam","status":5,"type":3,"salary":"$1962.65"}, {"id":960,"employee_id":"403658203-8","first_name":"Cary","last_name":"Trayford","email":"ctrayfordqn@globo.com","phone":"585-236-7329","gender":"Female","department":"Sales","address":"766 Alpine Avenue","hire_date":"9/27/2017","website":"http://surveymonkey.com","notes":"at nulla suspendisse potenti cras in purus eu magna vulputate","status":2,"type":3,"salary":"$1927.79"}, {"id":961,"employee_id":"871186561-X","first_name":"Dominica","last_name":"Feehely","email":"dfeehelyqo@goo.gl","phone":"418-146-9893","gender":"Female","department":"Product Management","address":"163 Weeping Birch Drive","hire_date":"6/16/2018","website":"http://github.com","notes":"quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum","status":5,"type":3,"salary":"$344.23"}, {"id":962,"employee_id":"464431218-5","first_name":"Ilyssa","last_name":"Van der Hoeven","email":"ivanderhoevenqp@qq.com","phone":"740-535-7157","gender":"Female","department":"Accounting","address":"3 Huxley Point","hire_date":"7/13/2018","website":"https://eventbrite.com","notes":"phasellus id sapien in sapien iaculis congue vivamus metus arcu","status":3,"type":1,"salary":"$2135.61"}, {"id":963,"employee_id":"802727037-5","first_name":"Don","last_name":"Woffinden","email":"dwoffindenqq@kickstarter.com","phone":"815-956-1326","gender":"Male","department":"Marketing","address":"8 Fairview Street","hire_date":"5/3/2018","website":"https://tuttocitta.it","notes":"feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam","status":2,"type":1,"salary":"$1928.24"}, {"id":964,"employee_id":"939154702-8","first_name":"Clovis","last_name":"Leindecker","email":"cleindeckerqr@rakuten.co.jp","phone":"581-992-5821","gender":"Female","department":"Business Development","address":"7003 Nova Parkway","hire_date":"3/31/2018","website":"https://simplemachines.org","notes":"nulla sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio","status":4,"type":1,"salary":"$1101.46"}, {"id":965,"employee_id":"977079512-7","first_name":"Row","last_name":"Curtin","email":"rcurtinqs@pcworld.com","phone":"366-505-1893","gender":"Female","department":"Legal","address":"37626 Butterfield Court","hire_date":"3/12/2018","website":"https://yellowbook.com","notes":"nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis","status":3,"type":2,"salary":"$734.46"}, {"id":966,"employee_id":"056387772-3","first_name":"Lesli","last_name":"Northey","email":"lnortheyqt@mediafire.com","phone":"834-818-7685","gender":"Female","department":"Research and Development","address":"1819 Northwestern Place","hire_date":"4/21/2018","website":"https://pagesperso-orange.fr","notes":"nulla ut erat id mauris vulputate elementum nullam varius nulla","status":2,"type":3,"salary":"$1675.32"}, {"id":967,"employee_id":"605313562-3","first_name":"Lamont","last_name":"Bunn","email":"lbunnqu@java.com","phone":"450-703-5969","gender":"Male","department":"Support","address":"75 Dayton Road","hire_date":"5/29/2018","website":"https://adobe.com","notes":"eu sapien cursus vestibulum proin eu mi nulla ac enim","status":5,"type":3,"salary":"$1506.99"}, {"id":968,"employee_id":"343791568-1","first_name":"Steve","last_name":"Pawellek","email":"spawellekqv@usda.gov","phone":"144-500-5254","gender":"Male","department":"Support","address":"1187 Glacier Hill Hill","hire_date":"8/8/2017","website":"https://netvibes.com","notes":"a ipsum integer a nibh in quis justo maecenas rhoncus aliquam","status":2,"type":1,"salary":"$1337.06"}, {"id":969,"employee_id":"520606017-8","first_name":"Ody","last_name":"Casterton","email":"ocastertonqw@goo.ne.jp","phone":"512-527-3787","gender":"Male","department":"Sales","address":"748 Fallview Drive","hire_date":"5/31/2018","website":"https://smh.com.au","notes":"sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum","status":1,"type":2,"salary":"$2356.26"}, {"id":970,"employee_id":"876243880-8","first_name":"Aldus","last_name":"Scrimgeour","email":"ascrimgeourqx@wufoo.com","phone":"851-634-3915","gender":"Male","department":"Engineering","address":"30579 Bunker Hill Point","hire_date":"11/3/2017","website":"https://bluehost.com","notes":"ligula suspendisse ornare consequat lectus in est risus auctor sed tristique","status":1,"type":3,"salary":"$1699.96"}, {"id":971,"employee_id":"680532532-3","first_name":"Addi","last_name":"Haydon","email":"ahaydonqy@acquirethisname.com","phone":"567-229-6507","gender":"Female","department":"Sales","address":"451 Mayer Trail","hire_date":"7/7/2018","website":"https://addtoany.com","notes":"nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras","status":1,"type":1,"salary":"$804.36"}, {"id":972,"employee_id":"971576765-6","first_name":"Vernen","last_name":"Welbeck","email":"vwelbeckqz@cocolog-nifty.com","phone":"557-652-6455","gender":"Male","department":"Research and Development","address":"02 Pleasure Drive","hire_date":"12/24/2017","website":"https://php.net","notes":"turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a","status":2,"type":1,"salary":"$1893.89"}, {"id":973,"employee_id":"645560109-2","first_name":"Melli","last_name":"Jentzsch","email":"mjentzschr0@livejournal.com","phone":"320-961-5015","gender":"Female","department":"Support","address":"30457 Kings Plaza","hire_date":"7/20/2017","website":"http://yahoo.com","notes":"nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo","status":4,"type":1,"salary":"$601.90"}, {"id":974,"employee_id":"888672351-2","first_name":"Algernon","last_name":"Tweedle","email":"atweedler1@oracle.com","phone":"804-263-5735","gender":"Male","department":"Business Development","address":"978 Dorton Alley","hire_date":"1/31/2018","website":"https://tinyurl.com","notes":"luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis","status":5,"type":1,"salary":"$1415.96"}, {"id":975,"employee_id":"981656239-1","first_name":"Gilly","last_name":"Hallatt","email":"ghallattr2@china.com.cn","phone":"501-263-2764","gender":"Female","department":"Marketing","address":"3836 Anzinger Terrace","hire_date":"4/11/2018","website":"http://taobao.com","notes":"consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum","status":1,"type":2,"salary":"$2471.44"}, {"id":976,"employee_id":"615969001-9","first_name":"Rikki","last_name":"Galley","email":"rgalleyr3@imageshack.us","phone":"130-690-7439","gender":"Female","department":"Business Development","address":"52 Talmadge Hill","hire_date":"10/10/2017","website":"https://jalbum.net","notes":"et ultrices posuere cubilia curae mauris viverra diam vitae quam","status":4,"type":3,"salary":"$1090.85"}, {"id":977,"employee_id":"022321369-1","first_name":"Gaye","last_name":"Ranger","email":"grangerr4@fema.gov","phone":"671-189-2403","gender":"Female","department":"Engineering","address":"35 Donald Junction","hire_date":"2/3/2018","website":"https://g.co","notes":"sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis ligula","status":3,"type":2,"salary":"$1481.67"}, {"id":978,"employee_id":"008938404-0","first_name":"Tommie","last_name":"Reace","email":"treacer5@ucla.edu","phone":"786-291-3851","gender":"Female","department":"Business Development","address":"873 Superior Plaza","hire_date":"2/14/2018","website":"https://amazon.de","notes":"metus aenean fermentum donec ut mauris eget massa tempor convallis nulla neque libero convallis eget","status":6,"type":1,"salary":"$1046.10"}, {"id":979,"employee_id":"080841532-8","first_name":"Patti","last_name":"Sirman","email":"psirmanr6@forbes.com","phone":"332-411-3746","gender":"Female","department":"Marketing","address":"19 Nova Plaza","hire_date":"2/8/2018","website":"http://dell.com","notes":"felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc","status":3,"type":2,"salary":"$1291.83"}, {"id":980,"employee_id":"316441122-7","first_name":"Leo","last_name":"Oloshkin","email":"loloshkinr7@wikimedia.org","phone":"924-235-4010","gender":"Male","department":"Business Development","address":"20344 Columbus Plaza","hire_date":"7/15/2018","website":"http://imageshack.us","notes":"vel augue vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia","status":1,"type":2,"salary":"$1299.64"}, {"id":981,"employee_id":"942913030-7","first_name":"Marco","last_name":"Bezemer","email":"mbezemerr8@blogger.com","phone":"739-838-7322","gender":"Male","department":"Business Development","address":"99 Lien Way","hire_date":"4/16/2018","website":"https://rediff.com","notes":"vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus","status":6,"type":3,"salary":"$2186.06"}, {"id":982,"employee_id":"723635281-0","first_name":"Crissy","last_name":"Shoosmith","email":"cshoosmithr9@mediafire.com","phone":"339-935-3368","gender":"Female","department":"Services","address":"649 Bartelt Hill","hire_date":"2/3/2018","website":"http://cnbc.com","notes":"turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere","status":1,"type":2,"salary":"$560.64"}, {"id":983,"employee_id":"724639902-X","first_name":"Georgiana","last_name":"Chartre","email":"gchartrera@t-online.de","phone":"772-156-4637","gender":"Female","department":"Business Development","address":"12 Derek Lane","hire_date":"11/6/2017","website":"https://miibeian.gov.cn","notes":"a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id","status":1,"type":3,"salary":"$1125.39"}, {"id":984,"employee_id":"539030881-6","first_name":"Ninetta","last_name":"Thorburn","email":"nthorburnrb@acquirethisname.com","phone":"130-745-1755","gender":"Female","department":"Accounting","address":"9373 High Crossing Pass","hire_date":"2/8/2018","website":"https://wix.com","notes":"eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus vivamus","status":5,"type":2,"salary":"$937.40"}, {"id":985,"employee_id":"250191052-4","first_name":"Julietta","last_name":"Canning","email":"jcanningrc@engadget.com","phone":"602-616-3819","gender":"Female","department":"Business Development","address":"6316 Schurz Parkway","hire_date":"6/13/2018","website":"https://reference.com","notes":"quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed","status":2,"type":3,"salary":"$1982.96"}, {"id":986,"employee_id":"090768281-2","first_name":"Cornie","last_name":"Alsop","email":"calsoprd@dropbox.com","phone":"749-584-3743","gender":"Female","department":"Human Resources","address":"02546 Spaight Place","hire_date":"6/24/2018","website":"http://technorati.com","notes":"non mauris morbi non lectus aliquam sit amet diam in magna bibendum","status":4,"type":2,"salary":"$1048.30"}, {"id":987,"employee_id":"438335362-2","first_name":"Linnea","last_name":"Tippin","email":"ltippinre@canalblog.com","phone":"853-711-1666","gender":"Female","department":"Marketing","address":"7331 Emmet Pass","hire_date":"12/30/2017","website":"https://cam.ac.uk","notes":"sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla","status":6,"type":3,"salary":"$1261.24"}, {"id":988,"employee_id":"399525643-0","first_name":"Kathye","last_name":"Vinson","email":"kvinsonrf@rediff.com","phone":"774-672-3524","gender":"Female","department":"Sales","address":"22 Bonner Street","hire_date":"10/7/2017","website":"http://dyndns.org","notes":"integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel","status":5,"type":2,"salary":"$1041.96"}, {"id":989,"employee_id":"425067933-0","first_name":"Kandace","last_name":"Hatter","email":"khatterrg@cafepress.com","phone":"631-169-9684","gender":"Female","department":"Research and Development","address":"709 Lien Road","hire_date":"5/26/2018","website":"https://bloglines.com","notes":"habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec","status":3,"type":3,"salary":"$1450.62"}, {"id":990,"employee_id":"786003350-X","first_name":"Kacie","last_name":"Rowson","email":"krowsonrh@chronoengine.com","phone":"333-530-2269","gender":"Female","department":"Engineering","address":"612 Thackeray Court","hire_date":"7/30/2017","website":"https://odnoklassniki.ru","notes":"nulla integer pede justo lacinia eget tincidunt eget tempus vel pede morbi","status":2,"type":3,"salary":"$552.57"}, {"id":991,"employee_id":"046546123-9","first_name":"Selby","last_name":"Gillimgham","email":"sgillimghamri@house.gov","phone":"469-918-1790","gender":"Male","department":"Accounting","address":"63767 Dwight Avenue","hire_date":"6/20/2018","website":"http://adobe.com","notes":"ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit","status":1,"type":2,"salary":"$1425.75"}, {"id":992,"employee_id":"206309950-2","first_name":"Lyon","last_name":"Gravenor","email":"lgravenorrj@ucsd.edu","phone":"807-329-4234","gender":"Male","department":"Support","address":"51713 Dorton Terrace","hire_date":"1/10/2018","website":"https://list-manage.com","notes":"sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci","status":1,"type":1,"salary":"$1735.57"}, {"id":993,"employee_id":"444851642-3","first_name":"Lynnell","last_name":"Drewes","email":"ldrewesrk@census.gov","phone":"540-267-8327","gender":"Female","department":"Legal","address":"0 Coolidge Drive","hire_date":"11/26/2017","website":"http://weibo.com","notes":"in est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis","status":3,"type":3,"salary":"$539.88"}, {"id":994,"employee_id":"085878174-3","first_name":"Alaric","last_name":"Marczyk","email":"amarczykrl@apple.com","phone":"616-684-3991","gender":"Male","department":"Engineering","address":"06514 Hollow Ridge Circle","hire_date":"8/5/2017","website":"https://ftc.gov","notes":"libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit","status":4,"type":1,"salary":"$2144.32"}, {"id":995,"employee_id":"740945020-7","first_name":"Tallie","last_name":"Keller","email":"tkellerrm@ustream.tv","phone":"678-664-1529","gender":"Male","department":"Product Management","address":"04209 Toban Park","hire_date":"5/20/2018","website":"https://nasa.gov","notes":"libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc","status":4,"type":1,"salary":"$2263.14"}, {"id":996,"employee_id":"796497559-5","first_name":"Buiron","last_name":"Alsina","email":"balsinarn@amazon.de","phone":"643-351-2865","gender":"Male","department":"Accounting","address":"522 Marcy Center","hire_date":"6/2/2018","website":"http://google.es","notes":"ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id","status":3,"type":1,"salary":"$1306.20"}, {"id":997,"employee_id":"057599692-7","first_name":"Hall","last_name":"Cattell","email":"hcattellro@who.int","phone":"609-612-7472","gender":"Male","department":"Training","address":"9 Autumn Leaf Parkway","hire_date":"1/26/2018","website":"https://google.com","notes":"tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean","status":4,"type":2,"salary":"$2065.65"}, {"id":998,"employee_id":"764038753-1","first_name":"Orton","last_name":"Davie","email":"odavierp@sbwire.com","phone":"245-526-0063","gender":"Male","department":"Research and Development","address":"4 Bellgrove Parkway","hire_date":"6/15/2018","website":"https://china.com.cn","notes":"a pede posuere nonummy integer non velit donec diam neque","status":4,"type":1,"salary":"$1616.21"}, {"id":999,"employee_id":"447607191-0","first_name":"Hortense","last_name":"Robez","email":"hrobezrq@tripadvisor.com","phone":"362-207-0143","gender":"Female","department":"Marketing","address":"657 Victoria Drive","hire_date":"3/16/2018","website":"http://eventbrite.com","notes":"ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis","status":3,"type":2,"salary":"$2095.85"}, {"id":1000,"employee_id":"588935146-X","first_name":"Cosette","last_name":"Jonson","email":"cjonsonrr@dailymotion.com","phone":"188-171-1078","gender":"Female","department":"Research and Development","address":"2372 Myrtle Drive","hire_date":"9/22/2017","website":"http://hugedomains.com","notes":"erat volutpat in congue etiam justo etiam pretium iaculis justo","status":5,"type":1,"salary":"$550.38"}]', + ), + a = $('#kt_modal_KTDatatable_local'), + t = $('#modal_datatable_local_source').KTDatatable({ + data: { type: 'local', source: e, pageSize: 10 }, + layout: { scroll: !0, height: 400, footer: !1 }, + sortable: !0, + pagination: !0, + search: { input: a.find('#generalSearch') }, + columns: [ + { + field: 'id', + title: '#', + sortable: !1, + width: 20, + type: 'number', + selector: { class: 'kt-checkbox--solid' }, + textAlign: 'center', + }, + { field: 'employee_id', title: 'Employee ID' }, + { + field: 'name', + title: 'Name', + template: function(e) { + return e.first_name + ' ' + e.last_name; + }, + }, + { field: 'hire_date', title: 'Hire Date', type: 'date', format: 'MM/DD/YYYY' }, + { field: 'gender', title: 'Gender' }, + { + field: 'status', + title: 'Status', + template: function(e) { + var a = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--success' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return ( + '' + + a[e.status].title + + '' + ); + }, + }, + { + field: 'type', + title: 'Type', + autoHide: !1, + template: function(e) { + var a = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'accent' }, + }; + return ( + ' ' + + a[e.type].title + + '' + ); + }, + }, + { + field: 'Actions', + title: 'Actions', + sortable: !1, + width: 110, + overflow: 'visible', + autoHide: !1, + template: function() { + return '\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'; + }, + }, + ], + }); + a.find('#kt_form_status').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'status', + ); + }), + a.find('#kt_form_type').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'type', + ); + }), + a.find('#kt_form_status,#kt_form_type').selectpicker(), + t.hide(); + var s = !1; + a.on('shown.bs.modal', function() { + if (!s) { + var e = $(this).find('.modal-content'); + t.spinnerCallback(!0, e), + t.reload(), + t.on('kt-datatable--on-layout-updated', function() { + t.show(), t.spinnerCallback(!1, e), t.redraw(); + }), + (s = !0); + } + }); + })(), + (a = $('#sub_datatable_ajax_source')), + (t = a.KTDatatable({ + data: { + type: 'remote', + source: { + read: { + url: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/customers.php', + }, + }, + pageSize: 10, + serverPaging: !0, + serverFiltering: !1, + serverSorting: !0, + }, + layout: { theme: 'default', scroll: !1, height: null, footer: !1 }, + sortable: !0, + pagination: !0, + search: { input: a.find('#generalSearch') }, + columns: [ + { field: 'RecordID', title: '', sortable: !1, width: 30, textAlign: 'center' }, + { field: 'FirstName', title: 'First Name', sortable: 'asc' }, + { field: 'LastName', title: 'Last Name' }, + { field: 'Company', title: 'Company' }, + { field: 'Email', title: 'Email' }, + { field: 'Phone', title: 'Phone' }, + { + field: 'Status', + title: 'Status', + template: function(e) { + var a = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--success' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return ( + '' + + a[e.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Type', + autoHide: !1, + template: function(e) { + var a = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'accent' }, + }; + return ( + ' ' + + a[e.Type].title + + '' + ); + }, + }, + { + field: 'Actions', + width: 130, + title: 'Actions', + sortable: !1, + overflow: 'visible', + textAlign: 'left', + autoHide: !1, + template: function(e) { + return ( + '\t\t ' + ); + }, + }, + ], + })), + (s = t.closest('.kt-portlet')).find('#kt_form_status').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Status', + ); + }), + s.find('#kt_form_type').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Type', + ); + }), + s.find('#kt_form_status,#kt_form_type').selectpicker(), + t.on('click', '[data-record-id]', function() { + e($(this).data('record-id')), $('#kt_modal_sub_KTDatatable_remote').modal('show'); + }); + }, + }; +})(); +jQuery(document).ready(function() { + KTDatatableModal.init(); +}); diff --git a/src/assets/app/custom/general/crud/metronic-datatable/advanced/record-selection.js b/src/assets/app/custom/general/crud/metronic-datatable/advanced/record-selection.js index 29572c7..0b4a347 100644 --- a/src/assets/app/custom/general/crud/metronic-datatable/advanced/record-selection.js +++ b/src/assets/app/custom/general/crud/metronic-datatable/advanced/record-selection.js @@ -1 +1,205 @@ -"use strict";var KTDatatableRecordSelectionDemo=function(){var t={data:{type:"remote",source:{read:{url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php"}},pageSize:10,serverPaging:!0,serverFiltering:!0,serverSorting:!0},layout:{scroll:!0,height:350,footer:!1},sortable:!0,pagination:!0,columns:[{field:"RecordID",title:"#",sortable:!1,width:20,selector:{class:"kt-checkbox--solid"},textAlign:"center"},{field:"OrderID",title:"Order ID",template:"{{OrderID}}"},{field:"Country",title:"Country",template:function(t){return t.Country+" "+t.ShipCountry}},{field:"ShipAddress",title:"Ship Address"},{field:"ShipDate",title:"Ship Date",type:"date",format:"MM/DD/YYYY"},{field:"Status",title:"Status",template:function(t){var e={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+e[t.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(t){var e={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return' '+e[t.Type].title+""}},{field:"Actions",title:"Actions",sortable:!1,width:110,overflow:"visible",textAlign:"left",autoHide:!1,template:function(){return' '}}]};return{init:function(){!function(){t.search={input:$("#generalSearch")};var e=$("#local_record_selection").KTDatatable(t);$("#kt_form_status").on("change",function(){e.search($(this).val().toLowerCase(),"Status")}),$("#kt_form_type").on("change",function(){e.search($(this).val().toLowerCase(),"Type")}),$("#kt_form_status,#kt_form_type").selectpicker(),e.on("kt-datatable--on-check kt-datatable--on-uncheck kt-datatable--on-layout-updated",function(t){var a=e.rows(".kt-datatable__row--active").nodes().length;$("#kt_datatable_selected_number").html(a),a>0?$("#kt_datatable_group_action_form").collapse("show"):$("#kt_datatable_group_action_form").collapse("hide")}),$("#kt_modal_fetch_id").on("show.bs.modal",function(t){for(var a=e.rows(".kt-datatable__row--active").nodes().find('.kt-checkbox--single > [type="checkbox"]').map(function(t,e){return $(e).val()}),n=document.createDocumentFragment(),l=0;l0?$("#kt_datatable_group_action_form1").collapse("show"):$("#kt_datatable_group_action_form1").collapse("hide")}),$("#kt_modal_fetch_id_server").on("show.bs.modal",function(t){for(var a=e.checkbox().getSelectedId(),n=document.createDocumentFragment(),l=0;l' + + e[t.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Type', + autoHide: !1, + template: function(t) { + var e = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return ( + ' ' + + e[t.Type].title + + '' + ); + }, + }, + { + field: 'Actions', + title: 'Actions', + sortable: !1, + width: 110, + overflow: 'visible', + textAlign: 'left', + autoHide: !1, + template: function() { + return ' '; + }, + }, + ], + }; + return { + init: function() { + !(function() { + t.search = { input: $('#generalSearch') }; + var e = $('#local_record_selection').KTDatatable(t); + $('#kt_form_status').on('change', function() { + e.search( + $(this) + .val() + .toLowerCase(), + 'Status', + ); + }), + $('#kt_form_type').on('change', function() { + e.search( + $(this) + .val() + .toLowerCase(), + 'Type', + ); + }), + $('#kt_form_status,#kt_form_type').selectpicker(), + e.on('kt-datatable--on-check kt-datatable--on-uncheck kt-datatable--on-layout-updated', function(t) { + var a = e.rows('.kt-datatable__row--active').nodes().length; + $('#kt_datatable_selected_number').html(a), + a > 0 + ? $('#kt_datatable_group_action_form').collapse('show') + : $('#kt_datatable_group_action_form').collapse('hide'); + }), + $('#kt_modal_fetch_id') + .on('show.bs.modal', function(t) { + for ( + var a = e + .rows('.kt-datatable__row--active') + .nodes() + .find('.kt-checkbox--single > [type="checkbox"]') + .map(function(t, e) { + return $(e).val(); + }), + n = document.createDocumentFragment(), + l = 0; + l < a.length; + l++ + ) { + var i = document.createElement('li'); + i.setAttribute('data-id', a[l]), (i.innerHTML = 'Selected record ID: ' + a[l]), n.appendChild(i); + } + $(t.target) + .find('.kt-datatable_selected_ids') + .append(n); + }) + .on('hide.bs.modal', function(t) { + $(t.target) + .find('.kt-datatable_selected_ids') + .empty(); + }); + })(), + (function() { + (t.extensions = { checkbox: {} }), (t.search = { input: $('#generalSearch1') }); + var e = $('#server_record_selection').KTDatatable(t); + $('#kt_form_status1').on('change', function() { + e.search( + $(this) + .val() + .toLowerCase(), + 'Status', + ); + }), + $('#kt_form_type1').on('change', function() { + e.search( + $(this) + .val() + .toLowerCase(), + 'Type', + ); + }), + $('#kt_form_status1,#kt_form_type1').selectpicker(), + e.on('kt-datatable--on-click-checkbox kt-datatable--on-layout-updated', function(t) { + var a = e.checkbox().getSelectedId().length; + $('#kt_datatable_selected_number1').html(a), + a > 0 + ? $('#kt_datatable_group_action_form1').collapse('show') + : $('#kt_datatable_group_action_form1').collapse('hide'); + }), + $('#kt_modal_fetch_id_server') + .on('show.bs.modal', function(t) { + for ( + var a = e.checkbox().getSelectedId(), n = document.createDocumentFragment(), l = 0; + l < a.length; + l++ + ) { + var i = document.createElement('li'); + i.setAttribute('data-id', a[l]), (i.innerHTML = 'Selected record ID: ' + a[l]), n.appendChild(i); + } + $(t.target) + .find('.kt-datatable_selected_ids') + .append(n); + }) + .on('hide.bs.modal', function(t) { + $(t.target) + .find('.kt-datatable_selected_ids') + .empty(); + }); + })(); + }, + }; +})(); +jQuery(document).ready(function() { + KTDatatableRecordSelectionDemo.init(); +}); diff --git a/src/assets/app/custom/general/crud/metronic-datatable/advanced/row-details.js b/src/assets/app/custom/general/crud/metronic-datatable/advanced/row-details.js index ed0bb9e..8c102f3 100644 --- a/src/assets/app/custom/general/crud/metronic-datatable/advanced/row-details.js +++ b/src/assets/app/custom/general/crud/metronic-datatable/advanced/row-details.js @@ -1 +1,116 @@ -"use strict";var KTDatatableAutoColumnHideDemo={init:function(){var t;t=$(".kt-datatable").KTDatatable({data:{type:"remote",source:{read:{url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php"}},pageSize:10,saveState:!1,serverPaging:!0,serverFiltering:!0,serverSorting:!0},layout:{scroll:!0,height:550},sortable:!0,pagination:!0,search:{input:$("#generalSearch")},columns:[{field:"OrderID",title:"Order ID"},{field:"Country",title:"Country",template:function(t){return t.Country+" "+t.ShipCountry}},{field:"CompanyEmail",title:"Email",width:"auto"},{field:"ShipDate",title:"Ship Date",type:"date",format:"MM/DD/YYYY"},{field:"CompanyName",title:"Company Name",width:"auto"},{field:"ShipAddress",title:"Ship Address"},{field:"Website",title:"Website"},{field:"TotalPayment",title:"Payment"},{field:"Notes",title:"Notes",width:"auto"},{field:"Status",title:"Status",template:function(t){var e={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+e[t.Status].title+""}},{field:"Type",title:"Type",template:function(t){var e={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return' '+e[t.Type].title+""}},{field:"Actions",title:"Actions",sortable:!1,width:110,overflow:"visible",autoHide:!1,template:function(){return'\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'}}]}),$("#kt_form_status").on("change",function(){t.search($(this).val().toLowerCase(),"Status")}),$("#kt_form_type").on("change",function(){t.search($(this).val().toLowerCase(),"Type")}),$("#kt_form_status,#kt_form_type").selectpicker()}};jQuery(document).ready(function(){KTDatatableAutoColumnHideDemo.init()}); \ No newline at end of file +'use strict'; +var KTDatatableAutoColumnHideDemo = { + init: function() { + var t; + (t = $('.kt-datatable').KTDatatable({ + data: { + type: 'remote', + source: { + read: { + url: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php', + }, + }, + pageSize: 10, + saveState: !1, + serverPaging: !0, + serverFiltering: !0, + serverSorting: !0, + }, + layout: { scroll: !0, height: 550 }, + sortable: !0, + pagination: !0, + search: { input: $('#generalSearch') }, + columns: [ + { field: 'OrderID', title: 'Order ID' }, + { + field: 'Country', + title: 'Country', + template: function(t) { + return t.Country + ' ' + t.ShipCountry; + }, + }, + { field: 'CompanyEmail', title: 'Email', width: 'auto' }, + { field: 'ShipDate', title: 'Ship Date', type: 'date', format: 'MM/DD/YYYY' }, + { field: 'CompanyName', title: 'Company Name', width: 'auto' }, + { field: 'ShipAddress', title: 'Ship Address' }, + { field: 'Website', title: 'Website' }, + { field: 'TotalPayment', title: 'Payment' }, + { field: 'Notes', title: 'Notes', width: 'auto' }, + { + field: 'Status', + title: 'Status', + template: function(t) { + var e = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return ( + '' + + e[t.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Type', + template: function(t) { + var e = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return ( + ' ' + + e[t.Type].title + + '' + ); + }, + }, + { + field: 'Actions', + title: 'Actions', + sortable: !1, + width: 110, + overflow: 'visible', + autoHide: !1, + template: function() { + return '\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'; + }, + }, + ], + })), + $('#kt_form_status').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Status', + ); + }), + $('#kt_form_type').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Type', + ); + }), + $('#kt_form_status,#kt_form_type').selectpicker(); + }, +}; +jQuery(document).ready(function() { + KTDatatableAutoColumnHideDemo.init(); +}); diff --git a/src/assets/app/custom/general/crud/metronic-datatable/advanced/vertical.js b/src/assets/app/custom/general/crud/metronic-datatable/advanced/vertical.js index 7b82c64..606d7bc 100644 --- a/src/assets/app/custom/general/crud/metronic-datatable/advanced/vertical.js +++ b/src/assets/app/custom/general/crud/metronic-datatable/advanced/vertical.js @@ -1 +1,115 @@ -"use strict";var KTDefaultDatatableDemo={init:function(){var t;t=$(".kt-datatable").KTDatatable({data:{type:"remote",source:{read:{url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php"}},pageSize:20,serverPaging:!0,serverFiltering:!0,serverSorting:!0},layout:{scroll:!0,height:550,footer:!1},sortable:!0,filterable:!1,pagination:!0,search:{input:$("#generalSearch")},columns:[{field:"RecordID",title:"#",sortable:!1,width:20,type:"number",selector:!1,textAlign:"center"},{field:"OrderID",title:"Order ID"},{field:"Country",title:"Country",template:function(t){return t.Country+" "+t.ShipCountry}},{field:"CompanyEmail",width:150,title:"Email"},{field:"ShipAddress",title:"Ship Address"},{field:"ShipDate",title:"Ship Date",type:"date",format:"MM/DD/YYYY"},{field:"CompanyName",title:"Company Name"},{field:"Status",title:"Status",template:function(t){var e={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+e[t.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(t){var e={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return' '+e[t.Type].title+""}},{field:"Actions",title:"Actions",sortable:!1,width:110,overflow:"visible",autoHide:!1,template:function(){return'\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'}}]}),$("#kt_form_status").on("change",function(){t.search($(this).val().toLowerCase(),"Status")}),$("#kt_form_type").on("change",function(){t.search($(this).val().toLowerCase(),"Type")}),$("#kt_form_status,#kt_form_type").selectpicker()}};jQuery(document).ready(function(){KTDefaultDatatableDemo.init()}); \ No newline at end of file +'use strict'; +var KTDefaultDatatableDemo = { + init: function() { + var t; + (t = $('.kt-datatable').KTDatatable({ + data: { + type: 'remote', + source: { + read: { + url: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php', + }, + }, + pageSize: 20, + serverPaging: !0, + serverFiltering: !0, + serverSorting: !0, + }, + layout: { scroll: !0, height: 550, footer: !1 }, + sortable: !0, + filterable: !1, + pagination: !0, + search: { input: $('#generalSearch') }, + columns: [ + { field: 'RecordID', title: '#', sortable: !1, width: 20, type: 'number', selector: !1, textAlign: 'center' }, + { field: 'OrderID', title: 'Order ID' }, + { + field: 'Country', + title: 'Country', + template: function(t) { + return t.Country + ' ' + t.ShipCountry; + }, + }, + { field: 'CompanyEmail', width: 150, title: 'Email' }, + { field: 'ShipAddress', title: 'Ship Address' }, + { field: 'ShipDate', title: 'Ship Date', type: 'date', format: 'MM/DD/YYYY' }, + { field: 'CompanyName', title: 'Company Name' }, + { + field: 'Status', + title: 'Status', + template: function(t) { + var e = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return ( + '' + + e[t.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Type', + autoHide: !1, + template: function(t) { + var e = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return ( + ' ' + + e[t.Type].title + + '' + ); + }, + }, + { + field: 'Actions', + title: 'Actions', + sortable: !1, + width: 110, + overflow: 'visible', + autoHide: !1, + template: function() { + return '\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'; + }, + }, + ], + })), + $('#kt_form_status').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Status', + ); + }), + $('#kt_form_type').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Type', + ); + }), + $('#kt_form_status,#kt_form_type').selectpicker(); + }, +}; +jQuery(document).ready(function() { + KTDefaultDatatableDemo.init(); +}); diff --git a/src/assets/app/custom/general/crud/metronic-datatable/api/events.js b/src/assets/app/custom/general/crud/metronic-datatable/api/events.js index 26670ba..0612ae2 100644 --- a/src/assets/app/custom/general/crud/metronic-datatable/api/events.js +++ b/src/assets/app/custom/general/crud/metronic-datatable/api/events.js @@ -1 +1,147 @@ -"use strict";var KTDefaultDatatableDemo=function(){var t=function(t){var a=$("#kt_datatable_console").append(t+"\t\n");$(a).scrollTop(a[0].scrollHeight-$(a).height())};return{init:function(){var a;a=$(".kt-datatable").KTDatatable({data:{type:"remote",source:{read:{url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php"}},pageSize:5,serverPaging:!0,serverFiltering:!0,serverSorting:!0},layout:{scroll:!0,height:"auto",footer:!1},sortable:!0,toolbar:{placement:["bottom"],items:{pagination:{pageSizeSelect:[5,10,20,30,50]}}},search:{input:$("#generalSearch")},columns:[{field:"RecordID",title:"#",sortable:!1,width:30,type:"number",selector:{class:"kt-checkbox--solid"},textAlign:"center"},{field:"OrderID",title:"Order ID"},{field:"Country",title:"Country",template:function(t){return t.Country+" "+t.ShipCountry}},{field:"ShipDate",title:"Ship Date",type:"date",format:"MM/DD/YYYY"},{field:"CompanyName",title:"Company Name"},{field:"Status",title:"Status",template:function(t){var a={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+a[t.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(t){var a={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return' '+a[t.Type].title+""}},{field:"Actions",title:"Actions",sortable:!1,width:110,overflow:"visible",autoHide:!1,template:function(){return'\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'}}]}),$("#kt_datatable_clear").on("click",function(){$("#kt_datatable_console").html("")}),$("#kt_datatable_reload").on("click",function(){a.reload()}),$("#kt_form_status,#kt_form_type").selectpicker(),$(".kt-datatable").on("kt-datatable--on-init",function(){t("Datatable init")}).on("kt-datatable--on-layout-updated",function(){t("Layout render updated")}).on("kt-datatable--on-ajax-done",function(){t("Ajax data successfully updated")}).on("kt-datatable--on-ajax-fail",function(a,e){t("Ajax error")}).on("kt-datatable--on-goto-page",function(a,e){t("Goto to pagination: "+e.page)}).on("kt-datatable--on-update-perpage",function(a,e){t("Update page size: "+e.perpage)}).on("kt-datatable--on-reloaded",function(a){t("Datatable reloaded")}).on("kt-datatable--on-check",function(a,e){t("Checkbox active: "+e.toString())}).on("kt-datatable--on-uncheck",function(a,e){t("Checkbox inactive: "+e.toString())}).on("kt-datatable--on-sort",function(a,e){t("Datatable sorted by "+e.field+" "+e.sort)})}}}();jQuery(document).ready(function(){KTDefaultDatatableDemo.init()}); \ No newline at end of file +'use strict'; +var KTDefaultDatatableDemo = (function() { + var t = function(t) { + var a = $('#kt_datatable_console').append(t + '\t\n'); + $(a).scrollTop(a[0].scrollHeight - $(a).height()); + }; + return { + init: function() { + var a; + (a = $('.kt-datatable').KTDatatable({ + data: { + type: 'remote', + source: { + read: { + url: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php', + }, + }, + pageSize: 5, + serverPaging: !0, + serverFiltering: !0, + serverSorting: !0, + }, + layout: { scroll: !0, height: 'auto', footer: !1 }, + sortable: !0, + toolbar: { placement: ['bottom'], items: { pagination: { pageSizeSelect: [5, 10, 20, 30, 50] } } }, + search: { input: $('#generalSearch') }, + columns: [ + { + field: 'RecordID', + title: '#', + sortable: !1, + width: 30, + type: 'number', + selector: { class: 'kt-checkbox--solid' }, + textAlign: 'center', + }, + { field: 'OrderID', title: 'Order ID' }, + { + field: 'Country', + title: 'Country', + template: function(t) { + return t.Country + ' ' + t.ShipCountry; + }, + }, + { field: 'ShipDate', title: 'Ship Date', type: 'date', format: 'MM/DD/YYYY' }, + { field: 'CompanyName', title: 'Company Name' }, + { + field: 'Status', + title: 'Status', + template: function(t) { + var a = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return ( + '' + + a[t.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Type', + autoHide: !1, + template: function(t) { + var a = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return ( + ' ' + + a[t.Type].title + + '' + ); + }, + }, + { + field: 'Actions', + title: 'Actions', + sortable: !1, + width: 110, + overflow: 'visible', + autoHide: !1, + template: function() { + return '\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'; + }, + }, + ], + })), + $('#kt_datatable_clear').on('click', function() { + $('#kt_datatable_console').html(''); + }), + $('#kt_datatable_reload').on('click', function() { + a.reload(); + }), + $('#kt_form_status,#kt_form_type').selectpicker(), + $('.kt-datatable') + .on('kt-datatable--on-init', function() { + t('Datatable init'); + }) + .on('kt-datatable--on-layout-updated', function() { + t('Layout render updated'); + }) + .on('kt-datatable--on-ajax-done', function() { + t('Ajax data successfully updated'); + }) + .on('kt-datatable--on-ajax-fail', function(a, e) { + t('Ajax error'); + }) + .on('kt-datatable--on-goto-page', function(a, e) { + t('Goto to pagination: ' + e.page); + }) + .on('kt-datatable--on-update-perpage', function(a, e) { + t('Update page size: ' + e.perpage); + }) + .on('kt-datatable--on-reloaded', function(a) { + t('Datatable reloaded'); + }) + .on('kt-datatable--on-check', function(a, e) { + t('Checkbox active: ' + e.toString()); + }) + .on('kt-datatable--on-uncheck', function(a, e) { + t('Checkbox inactive: ' + e.toString()); + }) + .on('kt-datatable--on-sort', function(a, e) { + t('Datatable sorted by ' + e.field + ' ' + e.sort); + }); + }, + }; +})(); +jQuery(document).ready(function() { + KTDefaultDatatableDemo.init(); +}); diff --git a/src/assets/app/custom/general/crud/metronic-datatable/api/methods.js b/src/assets/app/custom/general/crud/metronic-datatable/api/methods.js index aacde08..836003f 100644 --- a/src/assets/app/custom/general/crud/metronic-datatable/api/methods.js +++ b/src/assets/app/custom/general/crud/metronic-datatable/api/methods.js @@ -1 +1,157 @@ -"use strict";var KTDefaultDatatableDemo={init:function(){var t,a;t={data:{type:"remote",source:{read:{url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php"}},pageSize:20,serverPaging:!0,serverFiltering:!0,serverSorting:!0},layout:{scroll:!0,height:550,footer:!1},sortable:!0,pagination:!0,search:{input:$("#generalSearch")},columns:[{field:"RecordID",title:"#",sortable:!1,width:30,type:"number",selector:{class:"kt-checkbox--solid"},textAlign:"center"},{field:"ID",title:"ID",width:30,type:"number",template:function(t){return t.RecordID}},{field:"OrderID",title:"Order ID"},{field:"Country",title:"Country",template:function(t){return t.Country+" "+t.ShipCountry}},{field:"ShipDate",title:"Ship Date",type:"date",format:"MM/DD/YYYY"},{field:"CompanyName",title:"Company Name"},{field:"Status",title:"Status",template:function(t){var a={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+a[t.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(t){var a={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return' '+a[t.Type].title+""}},{field:"Actions",title:"Actions",sortable:!1,width:110,overflow:"visible",autoHide:!1,template:function(){return'\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'}}]},a=$(".kt-datatable").KTDatatable(t),$("#kt_datatable_destroy").on("click",function(){$(".kt-datatable").KTDatatable("destroy")}),$("#kt_datatable_init").on("click",function(){a=$(".kt-datatable").KTDatatable(t)}),$("#kt_datatable_reload").on("click",function(){$(".kt-datatable").KTDatatable("reload")}),$("#kt_datatable_sort_asc").on("click",function(){a.sort("Status","asc")}),$("#kt_datatable_sort_desc").on("click",function(){a.sort("Status","desc")}),$("#kt_datatable_get").on("click",function(){if(a.rows(".kt-datatable__row--active"),a.nodes().length>0){var t=a.columns("CompanyName").nodes().text();console.log(t)}}),$("#kt_datatable_check").on("click",function(){var t=$("#kt_datatable_check_input").val();a.setActive(t)}),$("#kt_datatable_check_all").on("click",function(){$(".kt-datatable").KTDatatable("setActiveAll",!0)}),$("#kt_datatable_uncheck_all").on("click",function(){$(".kt-datatable").KTDatatable("setActiveAll",!1)}),$("#kt_datatable_hide_column").on("click",function(){a.columns("ShipDate").visible(!1)}),$("#kt_datatable_show_column").on("click",function(){a.columns("ShipDate").visible(!0)}),$("#kt_datatable_remove_row").on("click",function(){a.rows(".kt-datatable__row--active").remove()}),$("#kt_form_status,#kt_form_type").selectpicker()}};jQuery(document).ready(function(){KTDefaultDatatableDemo.init()}); \ No newline at end of file +'use strict'; +var KTDefaultDatatableDemo = { + init: function() { + var t, a; + (t = { + data: { + type: 'remote', + source: { + read: { + url: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php', + }, + }, + pageSize: 20, + serverPaging: !0, + serverFiltering: !0, + serverSorting: !0, + }, + layout: { scroll: !0, height: 550, footer: !1 }, + sortable: !0, + pagination: !0, + search: { input: $('#generalSearch') }, + columns: [ + { + field: 'RecordID', + title: '#', + sortable: !1, + width: 30, + type: 'number', + selector: { class: 'kt-checkbox--solid' }, + textAlign: 'center', + }, + { + field: 'ID', + title: 'ID', + width: 30, + type: 'number', + template: function(t) { + return t.RecordID; + }, + }, + { field: 'OrderID', title: 'Order ID' }, + { + field: 'Country', + title: 'Country', + template: function(t) { + return t.Country + ' ' + t.ShipCountry; + }, + }, + { field: 'ShipDate', title: 'Ship Date', type: 'date', format: 'MM/DD/YYYY' }, + { field: 'CompanyName', title: 'Company Name' }, + { + field: 'Status', + title: 'Status', + template: function(t) { + var a = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return ( + '' + + a[t.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Type', + autoHide: !1, + template: function(t) { + var a = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return ( + ' ' + + a[t.Type].title + + '' + ); + }, + }, + { + field: 'Actions', + title: 'Actions', + sortable: !1, + width: 110, + overflow: 'visible', + autoHide: !1, + template: function() { + return '\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'; + }, + }, + ], + }), + (a = $('.kt-datatable').KTDatatable(t)), + $('#kt_datatable_destroy').on('click', function() { + $('.kt-datatable').KTDatatable('destroy'); + }), + $('#kt_datatable_init').on('click', function() { + a = $('.kt-datatable').KTDatatable(t); + }), + $('#kt_datatable_reload').on('click', function() { + $('.kt-datatable').KTDatatable('reload'); + }), + $('#kt_datatable_sort_asc').on('click', function() { + a.sort('Status', 'asc'); + }), + $('#kt_datatable_sort_desc').on('click', function() { + a.sort('Status', 'desc'); + }), + $('#kt_datatable_get').on('click', function() { + if ((a.rows('.kt-datatable__row--active'), a.nodes().length > 0)) { + var t = a + .columns('CompanyName') + .nodes() + .text(); + console.log(t); + } + }), + $('#kt_datatable_check').on('click', function() { + var t = $('#kt_datatable_check_input').val(); + a.setActive(t); + }), + $('#kt_datatable_check_all').on('click', function() { + $('.kt-datatable').KTDatatable('setActiveAll', !0); + }), + $('#kt_datatable_uncheck_all').on('click', function() { + $('.kt-datatable').KTDatatable('setActiveAll', !1); + }), + $('#kt_datatable_hide_column').on('click', function() { + a.columns('ShipDate').visible(!1); + }), + $('#kt_datatable_show_column').on('click', function() { + a.columns('ShipDate').visible(!0); + }), + $('#kt_datatable_remove_row').on('click', function() { + a.rows('.kt-datatable__row--active').remove(); + }), + $('#kt_form_status,#kt_form_type').selectpicker(); + }, +}; +jQuery(document).ready(function() { + KTDefaultDatatableDemo.init(); +}); diff --git a/src/assets/app/custom/general/crud/metronic-datatable/base/data-ajax.js b/src/assets/app/custom/general/crud/metronic-datatable/base/data-ajax.js index 1993c56..18a9642 100644 --- a/src/assets/app/custom/general/crud/metronic-datatable/base/data-ajax.js +++ b/src/assets/app/custom/general/crud/metronic-datatable/base/data-ajax.js @@ -1 +1,125 @@ -"use strict";var KTDatatableRemoteAjaxDemo={init:function(){var t;t=$(".kt-datatable").KTDatatable({data:{type:"remote",source:{read:{url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php",headers:{"x-my-custokt-header":"some value","x-test-header":"the value"},map:function(t){var e=t;return void 0!==t.data&&(e=t.data),e}}},pageSize:10,serverPaging:!0,serverFiltering:!0,serverSorting:!0},layout:{scroll:!1,footer:!1},sortable:!0,pagination:!0,search:{input:$("#generalSearch")},columns:[{field:"RecordID",title:"#",sortable:"asc",width:30,type:"number",selector:!1,textAlign:"center"},{field:"OrderID",title:"Order ID"},{field:"Country",title:"Country",template:function(t){return t.Country+" "+t.ShipCountry}},{field:"ShipDate",title:"Ship Date",type:"date",format:"MM/DD/YYYY"},{field:"CompanyName",title:"Company Name"},{field:"Status",title:"Status",template:function(t){var e={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+e[t.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(t){var e={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return' '+e[t.Type].title+""}},{field:"Actions",title:"Actions",sortable:!1,width:110,overflow:"visible",autoHide:!1,template:function(){return'\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'}}]}),$("#kt_form_status").on("change",function(){t.search($(this).val().toLowerCase(),"Status")}),$("#kt_form_type").on("change",function(){t.search($(this).val().toLowerCase(),"Type")}),$("#kt_form_status,#kt_form_type").selectpicker()}};jQuery(document).ready(function(){KTDatatableRemoteAjaxDemo.init()}); \ No newline at end of file +'use strict'; +var KTDatatableRemoteAjaxDemo = { + init: function() { + var t; + (t = $('.kt-datatable').KTDatatable({ + data: { + type: 'remote', + source: { + read: { + url: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php', + headers: { 'x-my-custokt-header': 'some value', 'x-test-header': 'the value' }, + map: function(t) { + var e = t; + return void 0 !== t.data && (e = t.data), e; + }, + }, + }, + pageSize: 10, + serverPaging: !0, + serverFiltering: !0, + serverSorting: !0, + }, + layout: { scroll: !1, footer: !1 }, + sortable: !0, + pagination: !0, + search: { input: $('#generalSearch') }, + columns: [ + { + field: 'RecordID', + title: '#', + sortable: 'asc', + width: 30, + type: 'number', + selector: !1, + textAlign: 'center', + }, + { field: 'OrderID', title: 'Order ID' }, + { + field: 'Country', + title: 'Country', + template: function(t) { + return t.Country + ' ' + t.ShipCountry; + }, + }, + { field: 'ShipDate', title: 'Ship Date', type: 'date', format: 'MM/DD/YYYY' }, + { field: 'CompanyName', title: 'Company Name' }, + { + field: 'Status', + title: 'Status', + template: function(t) { + var e = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return ( + '' + + e[t.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Type', + autoHide: !1, + template: function(t) { + var e = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return ( + ' ' + + e[t.Type].title + + '' + ); + }, + }, + { + field: 'Actions', + title: 'Actions', + sortable: !1, + width: 110, + overflow: 'visible', + autoHide: !1, + template: function() { + return '\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'; + }, + }, + ], + })), + $('#kt_form_status').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Status', + ); + }), + $('#kt_form_type').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Type', + ); + }), + $('#kt_form_status,#kt_form_type').selectpicker(); + }, +}; +jQuery(document).ready(function() { + KTDatatableRemoteAjaxDemo.init(); +}); diff --git a/src/assets/app/custom/general/crud/metronic-datatable/base/data-json.js b/src/assets/app/custom/general/crud/metronic-datatable/base/data-json.js index c32b366..608878f 100644 --- a/src/assets/app/custom/general/crud/metronic-datatable/base/data-json.js +++ b/src/assets/app/custom/general/crud/metronic-datatable/base/data-json.js @@ -1 +1,113 @@ -"use strict";var KTDatatableJsonRemoteDemo={init:function(){var t;t=$(".kt-datatable").KTDatatable({data:{type:"remote",source:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/datasource/default.json",pageSize:10},layout:{scroll:!1,footer:!1},sortable:!0,pagination:!0,search:{input:$("#generalSearch")},columns:[{field:"RecordID",title:"#",sortable:!1,width:20,type:"number",selector:{class:"kt-checkbox--solid"},textAlign:"center"},{field:"OrderID",title:"Order ID"},{field:"Country",title:"Country",template:function(t){return t.Country+" "+t.ShipCountry}},{field:"ShipAddress",title:"Ship Address"},{field:"ShipDate",title:"Ship Date",type:"date",format:"MM/DD/YYYY"},{field:"Status",title:"Status",template:function(t){var e={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+e[t.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(t){var e={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return' '+e[t.Type].title+""}},{field:"Actions",title:"Actions",sortable:!1,width:110,autoHide:!1,overflow:"visible",template:function(){return'\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'}}]}),$("#kt_form_status").on("change",function(){t.search($(this).val().toLowerCase(),"Status")}),$("#kt_form_type").on("change",function(){t.search($(this).val().toLowerCase(),"Type")}),$("#kt_form_status,#kt_form_type").selectpicker()}};jQuery(document).ready(function(){KTDatatableJsonRemoteDemo.init()}); \ No newline at end of file +'use strict'; +var KTDatatableJsonRemoteDemo = { + init: function() { + var t; + (t = $('.kt-datatable').KTDatatable({ + data: { + type: 'remote', + source: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/datasource/default.json', + pageSize: 10, + }, + layout: { scroll: !1, footer: !1 }, + sortable: !0, + pagination: !0, + search: { input: $('#generalSearch') }, + columns: [ + { + field: 'RecordID', + title: '#', + sortable: !1, + width: 20, + type: 'number', + selector: { class: 'kt-checkbox--solid' }, + textAlign: 'center', + }, + { field: 'OrderID', title: 'Order ID' }, + { + field: 'Country', + title: 'Country', + template: function(t) { + return t.Country + ' ' + t.ShipCountry; + }, + }, + { field: 'ShipAddress', title: 'Ship Address' }, + { field: 'ShipDate', title: 'Ship Date', type: 'date', format: 'MM/DD/YYYY' }, + { + field: 'Status', + title: 'Status', + template: function(t) { + var e = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return ( + '' + + e[t.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Type', + autoHide: !1, + template: function(t) { + var e = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return ( + ' ' + + e[t.Type].title + + '' + ); + }, + }, + { + field: 'Actions', + title: 'Actions', + sortable: !1, + width: 110, + autoHide: !1, + overflow: 'visible', + template: function() { + return '\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'; + }, + }, + ], + })), + $('#kt_form_status').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Status', + ); + }), + $('#kt_form_type').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Type', + ); + }), + $('#kt_form_status,#kt_form_type').selectpicker(); + }, +}; +jQuery(document).ready(function() { + KTDatatableJsonRemoteDemo.init(); +}); diff --git a/src/assets/app/custom/general/crud/metronic-datatable/base/data-local.js b/src/assets/app/custom/general/crud/metronic-datatable/base/data-local.js index 3211dc1..7897a29 100644 --- a/src/assets/app/custom/general/crud/metronic-datatable/base/data-local.js +++ b/src/assets/app/custom/general/crud/metronic-datatable/base/data-local.js @@ -1 +1,111 @@ -"use strict";var KTDatatableDataLocalDemo={init:function(){var e,t;e=JSON.parse('[{"RecordID":1,"OrderID":"0374-5070","Country":"China","ShipCountry":"CN","ShipCity":"Jiujie","ShipName":"Rempel Inc","ShipAddress":"60310 Schiller Center","CompanyEmail":"cdodman0@wsj.com","CompanyAgent":"Cordi Dodman","CompanyName":"Kris-Wehner","Currency":"CNY","Notes":"sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus","Department":"Kids","Website":"tripadvisor.com","Latitude":39.952319,"Longitude":119.598195,"ShipDate":"8/27/2017","PaymentDate":"2016-09-15 22:18:06","TimeZone":"Asia/Chongqing","TotalPayment":"$336309.10","Status":6,"Type":2,"Actions":null},\n{"RecordID":2,"OrderID":"63868-257","Country":"Philippines","ShipCountry":"PH","ShipCity":"Gibgos","ShipName":"Muller, Leannon and McKenzie","ShipAddress":"26734 Mitchell Drive","CompanyEmail":"kscritch1@google.es","CompanyAgent":"Katrinka Scritch","CompanyName":"Stanton, Friesen and Grant","Currency":"PHP","Notes":"ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur","Department":"Tools","Website":"elpais.com","Latitude":13.8503992,"Longitude":123.7585154,"ShipDate":"9/3/2017","PaymentDate":"2016-09-05 16:27:07","TimeZone":"Asia/Manila","TotalPayment":"$786612.37","Status":1,"Type":2,"Actions":null},\n{"RecordID":3,"OrderID":"49288-0815","Country":"Paraguay","ShipCountry":"PY","ShipCity":"General Elizardo Aquino","ShipName":"Fahey, Rosenbaum and Leannon","ShipAddress":"9 Daystar Center","CompanyEmail":"neberlein2@google.ca","CompanyAgent":"Nevin Eberlein","CompanyName":"Cartwright, Hilpert and Hartmann","Currency":"PYG","Notes":"bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris","Department":"Electronics","Website":"bing.com","Latitude":-24.4436327,"Longitude":-56.9014072,"ShipDate":"4/23/2016","PaymentDate":"2016-01-01 08:03:07","TimeZone":"America/Asuncion","TotalPayment":"$216102.85","Status":5,"Type":1,"Actions":null},\n{"RecordID":4,"OrderID":"49288-0039","Country":"Azerbaijan","ShipCountry":"AZ","ShipCity":"Maştağa","ShipName":"Gaylord-Aufderhar","ShipAddress":"68 Bunker Hill Street","CompanyEmail":"sdenge3@discuz.net","CompanyAgent":"Syd Denge","CompanyName":"Bednar-Grant","Currency":"AZN","Notes":"suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus","Department":"Computers","Website":"nbcnews.com","Latitude":40.5329933,"Longitude":50.0035678,"ShipDate":"9/6/2017","PaymentDate":"2016-08-26 05:27:20","TimeZone":"Asia/Baku","TotalPayment":"$555545.40","Status":1,"Type":2,"Actions":null},\n{"RecordID":5,"OrderID":"59762-0009","Country":"Brazil","ShipCountry":"BR","ShipCity":"Corrego Grande","ShipName":"Zemlak-Ward","ShipAddress":"8 Orin Terrace","CompanyEmail":"mtreanor4@histats.com","CompanyAgent":"Mallory Treanor","CompanyName":"Feeney Inc","Currency":"BRL","Notes":"luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat","Department":"Computers","Website":"rediff.com","Latitude":-27.593609,"Longitude":-48.5027406,"ShipDate":"10/28/2017","PaymentDate":"2017-02-20 12:31:25","TimeZone":"America/Sao_Paulo","TotalPayment":"$968744.59","Status":5,"Type":1,"Actions":null},\n{"RecordID":6,"OrderID":"43419-020","Country":"Honduras","ShipCountry":"HN","ShipCity":"San Juan Pueblo","ShipName":"Marvin-D\'Amore","ShipAddress":"660 Riverside Place","CompanyEmail":"lyankishin5@jiathis.com","CompanyAgent":"Lanae Yankishin","CompanyName":"Bechtelar, Wisoky and Homenick","Currency":"HNL","Notes":"tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","Department":"Beauty","Website":"wordpress.org","Latitude":15.5973118,"Longitude":-87.2145498,"ShipDate":"4/6/2017","PaymentDate":"2017-10-22 02:33:29","TimeZone":"America/Tegucigalpa","TotalPayment":"$1119199.00","Status":5,"Type":3,"Actions":null},\n{"RecordID":7,"OrderID":"33261-641","Country":"China","ShipCountry":"CN","ShipCity":"Yihe","ShipName":"MacGyver, Witting and Gleason","ShipAddress":"757 Daystar Crossing","CompanyEmail":"mmangeot6@harvard.edu","CompanyAgent":"Margy Mangeot","CompanyName":"Towne, MacGyver and Greenholt","Currency":"CNY","Notes":"metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet","Department":"Garden","Website":"huffingtonpost.com","Latitude":23.2196922,"Longitude":113.3138804,"ShipDate":"4/15/2017","PaymentDate":"2016-01-30 06:42:56","TimeZone":"Asia/Chongqing","TotalPayment":"$629781.98","Status":3,"Type":2,"Actions":null},\n{"RecordID":8,"OrderID":"68462-221","Country":"France","ShipCountry":"FR","ShipCity":"Saint-Leu-la-Forêt","ShipName":"Turner-Parisian","ShipAddress":"21390 Golf Course Lane","CompanyEmail":"apolo7@opera.com","CompanyAgent":"Aubree Polo","CompanyName":"Lubowitz Inc","Currency":"EUR","Notes":"blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse","Department":"Clothing","Website":"dell.com","Latitude":49.0301146,"Longitude":2.2509675,"ShipDate":"6/13/2016","PaymentDate":"2017-03-01 14:18:47","TimeZone":"Europe/Paris","TotalPayment":"$1106347.34","Status":6,"Type":2,"Actions":null},\n{"RecordID":9,"OrderID":"68084-555","Country":"Mexico","ShipCountry":"MX","ShipCity":"Hidalgo","ShipName":"O\'Kon, Heller and Flatley","ShipAddress":"960 Vahlen Avenue","CompanyEmail":"lsneddon8@hugedomains.com","CompanyAgent":"Leif Sneddon","CompanyName":"Larson Inc","Currency":"MXN","Notes":"rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut","Department":"Sports","Website":"ifeng.com","Latitude":20.0910963,"Longitude":-98.7623874,"ShipDate":"11/14/2016","PaymentDate":"2016-09-21 23:32:43","TimeZone":"America/Mexico_City","TotalPayment":"$677621.03","Status":4,"Type":2,"Actions":null},\n{"RecordID":10,"OrderID":"10565-013","Country":"Greece","ShipCountry":"GR","ShipCity":"Emporeío","ShipName":"Gutkowski Group","ShipAddress":"42 Reindahl Court","CompanyEmail":"rjerrold9@ucla.edu","CompanyAgent":"Roy Jerrold","CompanyName":"Hoeger-Waelchi","Currency":"EUR","Notes":"tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed","Department":"Toys","Website":"stumbleupon.com","Latitude":36.3573462,"Longitude":25.4459308,"ShipDate":"8/2/2017","PaymentDate":"2016-10-29 23:25:04","TimeZone":"Europe/Athens","TotalPayment":"$910133.41","Status":6,"Type":1,"Actions":null},\n{"RecordID":11,"OrderID":"68026-422","Country":"United States","ShipCountry":"US","ShipCity":"Cleveland","ShipName":"Gaylord-Parker","ShipAddress":"8072 Waywood Crossing","CompanyEmail":"keffnerta@marketwatch.com","CompanyAgent":"Kane Effnert","CompanyName":"Legros, Oberbrunner and Gleason","Currency":"USD","Notes":"enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis","Department":"Tools","Website":"java.com","Latitude":41.451118,"Longitude":-81.6309078,"ShipDate":"3/11/2017","PaymentDate":"2017-03-17 12:57:30","TimeZone":"America/New_York","TotalPayment":"$936141.99","Status":5,"Type":2,"Actions":null},\n{"RecordID":12,"OrderID":"0264-7780","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Amerta","ShipName":"Braun, Spinka and Haley","ShipAddress":"8 Chive Junction","CompanyEmail":"ecavellb@miibeian.gov.cn","CompanyAgent":"Elwyn Cavell","CompanyName":"Kassulke and Sons","Currency":"IDR","Notes":"aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu","Department":"Clothing","Website":"china.com.cn","Latitude":-6.2629253,"Longitude":106.7826245,"ShipDate":"9/29/2016","PaymentDate":"2017-10-31 02:33:49","TimeZone":"Asia/Jakarta","TotalPayment":"$583287.30","Status":4,"Type":1,"Actions":null},\n{"RecordID":13,"OrderID":"50813-0001","Country":"Tunisia","ShipCountry":"TN","ShipCity":"Kairouan","ShipName":"Kirlin LLC","ShipAddress":"26 West Park","CompanyEmail":"pbacherc@independent.co.uk","CompanyAgent":"Pier Bacher","CompanyName":"Cole-Hamill","Currency":"TND","Notes":"quam a odio in hac habitasse platea dictumst maecenas ut massa","Department":"Clothing","Website":"yellowpages.com","Latitude":35.6759137,"Longitude":10.0919243,"ShipDate":"3/4/2016","PaymentDate":"2017-11-24 17:22:53","TimeZone":"Africa/Tunis","TotalPayment":"$1182339.20","Status":3,"Type":2,"Actions":null},\n{"RecordID":14,"OrderID":"21695-353","Country":"Argentina","ShipCountry":"AR","ShipCity":"Unquillo","ShipName":"Rempel and Sons","ShipAddress":"098 Hagan Crossing","CompanyEmail":"smuckiand@is.gd","CompanyAgent":"Spence Muckian","CompanyName":"Frami Inc","Currency":"ARS","Notes":"elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu","Department":"Grocery","Website":"seesaa.net","Latitude":-31.372506,"Longitude":-64.182416,"ShipDate":"10/4/2017","PaymentDate":"2017-06-13 14:50:30","TimeZone":"America/Argentina/Cordoba","TotalPayment":"$658920.05","Status":3,"Type":2,"Actions":null},\n{"RecordID":15,"OrderID":"63304-791","Country":"Poland","ShipCountry":"PL","ShipCity":"Kąty Wrocławskie","ShipName":"Rodriguez, Lindgren and Collier","ShipAddress":"90016 Susan Place","CompanyEmail":"dgervaisee@buzzfeed.com","CompanyAgent":"Darcy Gervaise","CompanyName":"Bauch LLC","Currency":"PLN","Notes":"sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae","Department":"Movies","Website":"mysql.com","Latitude":51.0309199,"Longitude":16.7675963,"ShipDate":"8/3/2016","PaymentDate":"2017-08-15 01:48:22","TimeZone":"Europe/Warsaw","TotalPayment":"$361414.46","Status":1,"Type":2,"Actions":null},\n{"RecordID":16,"OrderID":"42352-1001","Country":"Azerbaijan","ShipCountry":"AZ","ShipCity":"Saray","ShipName":"Raynor and Sons","ShipAddress":"4 4th Drive","CompanyEmail":"epaffordf@prweb.com","CompanyAgent":"Eli Pafford","CompanyName":"Moen, Walsh and Bednar","Currency":"AZN","Notes":"in consequat ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque","Department":"Health","Website":"wordpress.org","Latitude":40.5323093,"Longitude":49.710366,"ShipDate":"6/13/2017","PaymentDate":"2017-09-17 04:40:17","TimeZone":"Asia/Baku","TotalPayment":"$69543.85","Status":3,"Type":2,"Actions":null},\n{"RecordID":17,"OrderID":"68275-320","Country":"Estonia","ShipCountry":"EE","ShipCity":"Narva-Jõesuu","ShipName":"Emard-Von","ShipAddress":"37 Fremont Lane","CompanyEmail":"yjoriozg@icq.com","CompanyAgent":"Yovonnda Jorioz","CompanyName":"Connelly Group","Currency":"EUR","Notes":"lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros","Department":"Sports","Website":"google.ca","Latitude":59.4609192,"Longitude":28.0395999,"ShipDate":"10/13/2016","PaymentDate":"2016-12-26 09:59:48","TimeZone":"Europe/Tallinn","TotalPayment":"$137265.28","Status":4,"Type":1,"Actions":null},\n{"RecordID":18,"OrderID":"41190-308","Country":"Panama","ShipCountry":"PA","ShipCity":"Puerto Obaldía","ShipName":"Howell Inc","ShipAddress":"8751 Lighthouse Bay Terrace","CompanyEmail":"jsollarsh@seattletimes.com","CompanyAgent":"Judy Sollars","CompanyName":"Johns-Lueilwitz","Currency":"PAB","Notes":"rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat","Department":"Movies","Website":"nationalgeographic.com","Latitude":8.6663907,"Longitude":-77.420826,"ShipDate":"8/1/2016","PaymentDate":"2017-10-05 17:04:04","TimeZone":"America/Bogota","TotalPayment":"$827677.19","Status":2,"Type":2,"Actions":null},\n{"RecordID":19,"OrderID":"51655-802","Country":"Iran","ShipCountry":"IR","ShipCity":"Eyvān","ShipName":"Monahan, Pacocha and Effertz","ShipAddress":"1 Anthes Place","CompanyEmail":"cpericoi@springer.com","CompanyAgent":"Cobbie Perico","CompanyName":"Mosciski-Williamson","Currency":"IRR","Notes":"sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at","Department":"Baby","Website":"nymag.com","Latitude":33.8297993,"Longitude":46.3073161,"ShipDate":"11/15/2016","PaymentDate":"2017-12-22 08:07:51","TimeZone":"Asia/Tehran","TotalPayment":"$171018.99","Status":5,"Type":1,"Actions":null},\n{"RecordID":20,"OrderID":"68151-2713","Country":"Costa Rica","ShipCountry":"CR","ShipCity":"Pital","ShipName":"Romaguera-Batz","ShipAddress":"6 Schlimgen Lane","CompanyEmail":"labeauj@mashable.com","CompanyAgent":"Lucretia Abeau","CompanyName":"Vandervort, Lesch and Bins","Currency":"CRC","Notes":"habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque","Department":"Clothing","Website":"naver.com","Latitude":10.4492758,"Longitude":-84.2725621,"ShipDate":"4/22/2017","PaymentDate":"2016-10-31 13:12:03","TimeZone":"America/Costa_Rica","TotalPayment":"$444445.05","Status":1,"Type":1,"Actions":null},\n{"RecordID":21,"OrderID":"68382-161","Country":"Japan","ShipCountry":"JP","ShipCity":"Itoman","ShipName":"Kessler, Boyle and Volkman","ShipAddress":"9 Lawn Point","CompanyEmail":"mlinkletk@wp.com","CompanyAgent":"Mireielle Linklet","CompanyName":"Maggio-Friesen","Currency":"JPY","Notes":"venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet","Department":"Computers","Website":"reference.com","Latitude":26.1288392,"Longitude":127.6681281,"ShipDate":"4/26/2017","PaymentDate":"2016-05-13 03:10:54","TimeZone":"Asia/Tokyo","TotalPayment":"$469295.83","Status":5,"Type":3,"Actions":null},\n{"RecordID":22,"OrderID":"51345-061","Country":"Russia","ShipCountry":"RU","ShipCity":"Mirny","ShipName":"Baumbach Group","ShipAddress":"4649 Clarendon Terrace","CompanyEmail":"bbigmorel@nationalgeographic.com","CompanyAgent":"Belita Bigmore","CompanyName":"Rath Group","Currency":"RUB","Notes":"diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam","Department":"Industrial","Website":"tiny.cc","Latitude":62.5412431,"Longitude":113.9960031,"ShipDate":"6/6/2017","PaymentDate":"2017-04-07 03:26:21","TimeZone":"Asia/Yakutsk","TotalPayment":"$1097247.60","Status":4,"Type":1,"Actions":null},\n{"RecordID":23,"OrderID":"33342-072","Country":"Philippines","ShipCountry":"PH","ShipCity":"Lepanto","ShipName":"VonRueden, Satterfield and Pacocha","ShipAddress":"9 Green Way","CompanyEmail":"fdurramm@themeforest.net","CompanyAgent":"Fabio Durram","CompanyName":"Gutkowski-Bartell","Currency":"PHP","Notes":"posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec","Department":"Beauty","Website":"smugmug.com","Latitude":9.3136403,"Longitude":123.3036704,"ShipDate":"6/14/2017","PaymentDate":"2016-08-01 06:55:55","TimeZone":"Asia/Manila","TotalPayment":"$335706.25","Status":1,"Type":2,"Actions":null},\n{"RecordID":24,"OrderID":"0113-0274","Country":"Philippines","ShipCountry":"PH","ShipCity":"Kolambugan","ShipName":"Grady, Barton and Mosciski","ShipAddress":"832 Loftsgordon Court","CompanyEmail":"hheseyn@bandcamp.com","CompanyAgent":"Haskel Hesey","CompanyName":"Brown, Glover and Bednar","Currency":"PHP","Notes":"diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna","Department":"Movies","Website":"apple.com","Latitude":8.1113884,"Longitude":123.8961588,"ShipDate":"10/6/2017","PaymentDate":"2016-10-15 21:51:09","TimeZone":"Asia/Manila","TotalPayment":"$298650.19","Status":1,"Type":1,"Actions":null},\n{"RecordID":25,"OrderID":"60637-013","Country":"Sweden","ShipCountry":"SE","ShipCity":"Vallentuna","ShipName":"Bednar-Wyman","ShipAddress":"9945 Old Gate Way","CompanyEmail":"gdurringtono@fda.gov","CompanyAgent":"Gregorius Durrington","CompanyName":"Haag Inc","Currency":"SEK","Notes":"potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam","Department":"Jewelery","Website":"sbwire.com","Latitude":59.6535297,"Longitude":18.3648033,"ShipDate":"4/28/2017","PaymentDate":"2017-07-19 06:11:51","TimeZone":"Europe/Stockholm","TotalPayment":"$52391.03","Status":5,"Type":1,"Actions":null},\n{"RecordID":26,"OrderID":"0781-5626","Country":"China","ShipCountry":"CN","ShipCity":"Kertai","ShipName":"Weissnat Group","ShipAddress":"0 Shoshone Hill","CompanyEmail":"bdolbyp@comcast.net","CompanyAgent":"Berky Dolby","CompanyName":"Hodkiewicz-Ledner","Currency":"CNY","Notes":"scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","Department":"Toys","Website":"google.com.hk","Latitude":46.900546,"Longitude":124.214976,"ShipDate":"9/27/2017","PaymentDate":"2016-05-14 03:23:30","TimeZone":"Asia/Harbin","TotalPayment":"$327211.21","Status":2,"Type":2,"Actions":null},\n{"RecordID":27,"OrderID":"10742-8095","Country":"Philippines","ShipCountry":"PH","ShipCity":"Malinta","ShipName":"Powlowski and Sons","ShipAddress":"8569 Laurel Hill","CompanyEmail":"ccollettq@themeforest.net","CompanyAgent":"Cobbie Collett","CompanyName":"Emard Group","Currency":"PHP","Notes":"lobortis sapien sapien non mi integer ac neque duis bibendum morbi non","Department":"Electronics","Website":"newyorker.com","Latitude":14.6925451,"Longitude":120.9653066,"ShipDate":"9/20/2016","PaymentDate":"2016-11-04 21:58:05","TimeZone":"Asia/Manila","TotalPayment":"$111977.88","Status":4,"Type":3,"Actions":null},\n{"RecordID":28,"OrderID":"49288-0426","Country":"Hungary","ShipCountry":"HU","ShipCity":"Budapest","ShipName":"Bahringer-Kautzer","ShipAddress":"532 Donald Street","CompanyEmail":"ssangwiner@bizjournals.com","CompanyAgent":"Sheilakathryn Sangwine","CompanyName":"Morar, Bosco and Rosenbaum","Currency":"HUF","Notes":"in congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus","Department":"Toys","Website":"vkontakte.ru","Latitude":47.53708,"Longitude":19.127509,"ShipDate":"12/5/2017","PaymentDate":"2017-11-17 07:49:20","TimeZone":"Europe/Budapest","TotalPayment":"$808043.78","Status":2,"Type":2,"Actions":null},\n{"RecordID":29,"OrderID":"59091-2001","Country":"Netherlands","ShipCountry":"NL","ShipCity":"Arnhem","ShipName":"Kreiger, Hermiston and Maggio","ShipAddress":"395 Maple Road","CompanyEmail":"blents@goo.ne.jp","CompanyAgent":"Bernadene Lent","CompanyName":"Heathcote-Lueilwitz","Currency":"EUR","Notes":"in lectus pellentesque at nulla suspendisse potenti cras in purus eu","Department":"Computers","Website":"howstuffworks.com","Latitude":51.9489686,"Longitude":5.8564699,"ShipDate":"7/8/2016","PaymentDate":"2016-05-23 20:05:31","TimeZone":"Europe/Amsterdam","TotalPayment":"$940709.22","Status":6,"Type":2,"Actions":null},\n{"RecordID":30,"OrderID":"63629-1299","Country":"Russia","ShipCountry":"RU","ShipCity":"Naro-Fominsk","ShipName":"Klocko Inc","ShipAddress":"8 Mitchell Way","CompanyEmail":"mrivallantt@nyu.edu","CompanyAgent":"Miquela Rivallant","CompanyName":"Harber-Hyatt","Currency":"RUB","Notes":"mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis non","Department":"Health","Website":"yale.edu","Latitude":55.4211657,"Longitude":36.6585689,"ShipDate":"8/10/2017","PaymentDate":"2017-03-22 16:45:31","TimeZone":"Europe/Moscow","TotalPayment":"$1158882.77","Status":5,"Type":1,"Actions":null},\n{"RecordID":31,"OrderID":"49527-022","Country":"French Polynesia","ShipCountry":"PF","ShipCity":"Anau","ShipName":"Renner, Metz and Kuphal","ShipAddress":"3 4th Road","CompanyEmail":"epickersgillu@mapy.cz","CompanyAgent":"Erie Pickersgill","CompanyName":"Hermiston, Stanton and Weissnat","Currency":"XPF","Notes":"elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante ipsum","Department":"Movies","Website":"canalblog.com","Latitude":-17.3878955,"Longitude":-145.582949,"ShipDate":"8/10/2017","PaymentDate":"2016-01-13 22:56:10","TimeZone":"Pacific/Tahiti","TotalPayment":"$865927.89","Status":2,"Type":1,"Actions":null},\n{"RecordID":32,"OrderID":"44523-535","Country":"Argentina","ShipCountry":"AR","ShipCity":"Palpalá","ShipName":"Sanford Inc","ShipAddress":"397 Mendota Lane","CompanyEmail":"htawsev@desdev.cn","CompanyAgent":"Harriett Tawse","CompanyName":"Zboncak, Hickle and McLaughlin","Currency":"ARS","Notes":"ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta","Department":"Games","Website":"theguardian.com","Latitude":-31.4561755,"Longitude":-64.2111608,"ShipDate":"2/16/2017","PaymentDate":"2016-04-21 02:02:40","TimeZone":"America/Argentina/Jujuy","TotalPayment":"$1168618.71","Status":1,"Type":3,"Actions":null},\n{"RecordID":33,"OrderID":"63402-306","Country":"Sweden","ShipCountry":"SE","ShipCity":"Olofström","ShipName":"Zboncak Inc","ShipAddress":"248 Reindahl Alley","CompanyEmail":"rcrafterw@sina.com.cn","CompanyAgent":"Richie Crafter","CompanyName":"Larkin-Armstrong","Currency":"SEK","Notes":"sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam","Department":"Garden","Website":"barnesandnoble.com","Latitude":56.2462038,"Longitude":14.6265298,"ShipDate":"1/29/2016","PaymentDate":"2016-09-30 20:24:13","TimeZone":"Europe/Stockholm","TotalPayment":"$966796.75","Status":3,"Type":1,"Actions":null},\n{"RecordID":34,"OrderID":"63629-3798","Country":"El Salvador","ShipCountry":"SV","ShipCity":"Guaymango","ShipName":"Koelpin-Jast","ShipAddress":"62878 Maple Wood Plaza","CompanyEmail":"yjotchamx@bloglovin.com","CompanyAgent":"Yolanthe Jotcham","CompanyName":"Kohler Inc","Currency":"USD","Notes":"tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus","Department":"Baby","Website":"washington.edu","Latitude":13.748419,"Longitude":-89.8452348,"ShipDate":"11/29/2017","PaymentDate":"2016-05-26 22:12:21","TimeZone":"America/El_Salvador","TotalPayment":"$62449.09","Status":6,"Type":1,"Actions":null},\n{"RecordID":35,"OrderID":"49981-010","Country":"Philippines","ShipCountry":"PH","ShipCity":"Sindangan","ShipName":"Eichmann, Hills and McCullough","ShipAddress":"3201 Katie Street","CompanyEmail":"bwoosnamy@zdnet.com","CompanyAgent":"Barthel Woosnam","CompanyName":"Goodwin and Sons","Currency":"PHP","Notes":"felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel","Department":"Outdoors","Website":"stumbleupon.com","Latitude":8.3104933,"Longitude":122.9938347,"ShipDate":"11/27/2017","PaymentDate":"2016-01-14 10:54:05","TimeZone":"Asia/Manila","TotalPayment":"$320289.72","Status":3,"Type":2,"Actions":null},\n{"RecordID":36,"OrderID":"0023-4383","Country":"Philippines","ShipCountry":"PH","ShipCity":"Tiguha","ShipName":"Schmidt and Sons","ShipAddress":"912 Lyons Street","CompanyEmail":"crayez@kickstarter.com","CompanyAgent":"Christean Raye","CompanyName":"Witting, Lindgren and Kessler","Currency":"PHP","Notes":"non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum","Department":"Books","Website":"ft.com","Latitude":7.7151954,"Longitude":123.2089252,"ShipDate":"1/29/2017","PaymentDate":"2016-12-05 19:36:44","TimeZone":"Asia/Manila","TotalPayment":"$922800.64","Status":4,"Type":1,"Actions":null},\n{"RecordID":37,"OrderID":"50988-254","Country":"Philippines","ShipCountry":"PH","ShipCity":"Manila","ShipName":"Glover Inc","ShipAddress":"661 Mesta Crossing","CompanyEmail":"lfronzek10@addtoany.com","CompanyAgent":"Lida Fronzek","CompanyName":"Yundt-Jacobs","Currency":"PHP","Notes":"dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus","Department":"Jewelery","Website":"elegantthemes.com","Latitude":14.3641338,"Longitude":120.9314495,"ShipDate":"12/12/2016","PaymentDate":"2016-08-16 01:47:41","TimeZone":"Asia/Manila","TotalPayment":"$64883.89","Status":6,"Type":2,"Actions":null},\n{"RecordID":38,"OrderID":"68788-9924","Country":"Norway","ShipCountry":"NO","ShipCity":"Kristiansand S","ShipName":"Treutel, Hirthe and Runolfsson","ShipAddress":"2312 Upham Pass","CompanyEmail":"friehm11@army.mil","CompanyAgent":"Fax Riehm","CompanyName":"Schulist Inc","Currency":"NOK","Notes":"fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet","Department":"Computers","Website":"toplist.cz","Latitude":58.1348867,"Longitude":8.006095,"ShipDate":"9/15/2017","PaymentDate":"2016-01-08 14:30:49","TimeZone":"Europe/Oslo","TotalPayment":"$435466.56","Status":2,"Type":2,"Actions":null},\n{"RecordID":39,"OrderID":"31722-500","Country":"Philippines","ShipCountry":"PH","ShipCity":"Salcedo","ShipName":"Larson-Vandervort","ShipAddress":"8 Red Cloud Plaza","CompanyEmail":"tbowry12@statcounter.com","CompanyAgent":"Taddeusz Bowry","CompanyName":"Koelpin Inc","Currency":"PHP","Notes":"massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida","Department":"Tools","Website":"youtu.be","Latitude":14.5560877,"Longitude":121.0155081,"ShipDate":"5/4/2017","PaymentDate":"2017-04-18 17:53:19","TimeZone":"Asia/Manila","TotalPayment":"$677626.59","Status":3,"Type":1,"Actions":null},\n{"RecordID":40,"OrderID":"50436-7053","Country":"Poland","ShipCountry":"PL","ShipCity":"Iłowo -Osada","ShipName":"Batz LLC","ShipAddress":"9434 Packers Road","CompanyEmail":"kdunmuir13@ucoz.ru","CompanyAgent":"Kayley Dunmuir","CompanyName":"Lockman-Baumbach","Currency":"PLN","Notes":"faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor","Department":"Garden","Website":"theguardian.com","Latitude":53.1664955,"Longitude":20.2914434,"ShipDate":"2/5/2016","PaymentDate":"2016-04-25 10:48:48","TimeZone":"Europe/Warsaw","TotalPayment":"$123550.24","Status":4,"Type":1,"Actions":null},\n{"RecordID":41,"OrderID":"63736-027","Country":"China","ShipCountry":"CN","ShipCity":"Bazi","ShipName":"Stark-Brown","ShipAddress":"3 Gerald Park","CompanyEmail":"tlotte14@histats.com","CompanyAgent":"Tim Lotte","CompanyName":"Larson Inc","Currency":"CNY","Notes":"pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus","Department":"Garden","Website":"salon.com","Latitude":30.7959602,"Longitude":120.6060568,"ShipDate":"10/21/2016","PaymentDate":"2016-07-23 01:21:17","TimeZone":"Asia/Shanghai","TotalPayment":"$326161.60","Status":4,"Type":2,"Actions":null},\n{"RecordID":42,"OrderID":"54575-228","Country":"China","ShipCountry":"CN","ShipCity":"Dongyang","ShipName":"Effertz LLC","ShipAddress":"7311 Hollow Ridge Trail","CompanyEmail":"smcintee15@google.pl","CompanyAgent":"Sterne McIntee","CompanyName":"Robel, Hegmann and Grimes","Currency":"CNY","Notes":"condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar","Department":"Garden","Website":"nbcnews.com","Latitude":29.289648,"Longitude":120.241565,"ShipDate":"11/13/2017","PaymentDate":"2017-10-01 15:42:11","TimeZone":"Asia/Chongqing","TotalPayment":"$875336.96","Status":1,"Type":1,"Actions":null},\n{"RecordID":43,"OrderID":"52125-370","Country":"China","ShipCountry":"CN","ShipCity":"Changzheng","ShipName":"Kozey, Roob and Howell","ShipAddress":"3591 Oxford Plaza","CompanyEmail":"tepperson16@dagondesign.com","CompanyAgent":"Thedrick Epperson","CompanyName":"Armstrong, Shields and Osinski","Currency":"CNY","Notes":"vitae nisi nam ultrices libero non mattis pulvinar nulla pede","Department":"Movies","Website":"cloudflare.com","Latitude":31.23285,"Longitude":121.467218,"ShipDate":"3/25/2016","PaymentDate":"2016-04-05 06:38:33","TimeZone":"Asia/Chongqing","TotalPayment":"$89415.23","Status":5,"Type":1,"Actions":null},\n{"RecordID":44,"OrderID":"36987-3290","Country":"South Africa","ShipCountry":"ZA","ShipCity":"Tugela Ferry","ShipName":"Ward, Little and Flatley","ShipAddress":"7627 Sycamore Crossing","CompanyEmail":"pilsley17@nba.com","CompanyAgent":"Patty Ilsley","CompanyName":"Larson-Kunze","Currency":"ZAR","Notes":"nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula","Department":"Health","Website":"wordpress.com","Latitude":-28.7415512,"Longitude":30.461686,"ShipDate":"7/9/2016","PaymentDate":"2017-08-08 07:23:41","TimeZone":"Africa/Johannesburg","TotalPayment":"$12440.25","Status":3,"Type":2,"Actions":null},\n{"RecordID":45,"OrderID":"68737-236","Country":"Russia","ShipCountry":"RU","ShipCity":"Omutninsk","ShipName":"Wisoky-Huels","ShipAddress":"5647 Vahlen Way","CompanyEmail":"apolding18@domainmarket.com","CompanyAgent":"Amandy Polding","CompanyName":"Cronin-Purdy","Currency":"RUB","Notes":"ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque","Department":"Beauty","Website":"dyndns.org","Latitude":58.6772898,"Longitude":52.190142,"ShipDate":"5/31/2016","PaymentDate":"2016-02-19 06:37:37","TimeZone":"Europe/Volgograd","TotalPayment":"$107259.06","Status":2,"Type":1,"Actions":null},\n{"RecordID":46,"OrderID":"54868-5511","Country":"Portugal","ShipCountry":"PT","ShipCity":"Cabeça Gorda","ShipName":"Kilback Group","ShipAddress":"526 Springview Crossing","CompanyEmail":"eroset19@businessweek.com","CompanyAgent":"Estella Roset","CompanyName":"Skiles-McCullough","Currency":"EUR","Notes":"molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget nunc","Department":"Books","Website":"squarespace.com","Latitude":39.1955731,"Longitude":-9.263539,"ShipDate":"5/16/2017","PaymentDate":"2017-06-16 22:18:36","TimeZone":"Europe/Lisbon","TotalPayment":"$607759.63","Status":2,"Type":1,"Actions":null},\n{"RecordID":47,"OrderID":"51389-112","Country":"Poland","ShipCountry":"PL","ShipCity":"Lubenia","ShipName":"Pacocha-Wolff","ShipAddress":"4 Reindahl Hill","CompanyEmail":"ssanderson1a@sciencedaily.com","CompanyAgent":"Stillman Sanderson","CompanyName":"Kub LLC","Currency":"PLN","Notes":"luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien","Department":"Music","Website":"istockphoto.com","Latitude":49.9409133,"Longitude":21.9374619,"ShipDate":"9/5/2016","PaymentDate":"2016-11-01 20:40:41","TimeZone":"Europe/Warsaw","TotalPayment":"$940344.95","Status":5,"Type":2,"Actions":null},\n{"RecordID":48,"OrderID":"53346-1330","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Wonocolo","ShipName":"Hudson and Sons","ShipAddress":"523 Namekagon Trail","CompanyEmail":"lhoyland1b@sphinn.com","CompanyAgent":"Lynn Hoyland","CompanyName":"Mraz-Spinka","Currency":"IDR","Notes":"volutpat convallis morbi odio odio elementum eu interdum eu tincidunt","Department":"Industrial","Website":"examiner.com","Latitude":-7.3198199,"Longitude":112.7420274,"ShipDate":"5/8/2016","PaymentDate":"2017-12-24 00:13:05","TimeZone":"Asia/Jakarta","TotalPayment":"$612744.04","Status":3,"Type":2,"Actions":null},\n{"RecordID":49,"OrderID":"11410-803","Country":"China","ShipCountry":"CN","ShipCity":"Baimajing","ShipName":"Reynolds, Botsford and MacGyver","ShipAddress":"6 Summit Road","CompanyEmail":"estansfield1c@webs.com","CompanyAgent":"Emmalee Stansfield","CompanyName":"Cartwright-Cole","Currency":"CNY","Notes":"posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam","Department":"Home","Website":"bbc.co.uk","Latitude":19.696407,"Longitude":109.218734,"ShipDate":"12/24/2017","PaymentDate":"2016-03-20 19:34:44","TimeZone":"Asia/Chongqing","TotalPayment":"$427176.05","Status":3,"Type":3,"Actions":null},\n{"RecordID":50,"OrderID":"54473-254","Country":"Australia","ShipCountry":"AU","ShipCity":"Sydney","ShipName":"Schroeder-Schulist","ShipAddress":"84 2nd Place","CompanyEmail":"hleyban1d@cocolog-nifty.com","CompanyAgent":"Henrietta Leyban","CompanyName":"Ankunding-Hudson","Currency":"AUD","Notes":"potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur","Department":"Health","Website":"pinterest.com","Latitude":-33.8688197,"Longitude":151.2092955,"ShipDate":"9/6/2016","PaymentDate":"2017-07-30 00:54:38","TimeZone":"Australia/Sydney","TotalPayment":"$269139.08","Status":2,"Type":1,"Actions":null},\n{"RecordID":51,"OrderID":"49967-106","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Margasari","ShipName":"Watsica and Sons","ShipAddress":"2004 Scofield Drive","CompanyEmail":"uruddlesden1e@meetup.com","CompanyAgent":"Ulrike Ruddlesden","CompanyName":"Koch and Sons","Currency":"IDR","Notes":"dui maecenas tristique est et tempus semper est quam pharetra","Department":"Baby","Website":"angelfire.com","Latitude":-7.0976672,"Longitude":109.0215438,"ShipDate":"12/6/2017","PaymentDate":"2016-03-24 02:22:17","TimeZone":"Asia/Jakarta","TotalPayment":"$511041.28","Status":4,"Type":2,"Actions":null},\n{"RecordID":52,"OrderID":"65649-501","Country":"Philippines","ShipCountry":"PH","ShipCity":"Buenavista","ShipName":"Larkin Inc","ShipAddress":"7 Maple Trail","CompanyEmail":"wmancktelow1f@princeton.edu","CompanyAgent":"Wilone Mancktelow","CompanyName":"Marvin Group","Currency":"PHP","Notes":"erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in","Department":"Health","Website":"tamu.edu","Latitude":8.972681,"Longitude":125.408732,"ShipDate":"8/19/2016","PaymentDate":"2017-06-29 22:18:35","TimeZone":"Asia/Manila","TotalPayment":"$945403.35","Status":5,"Type":2,"Actions":null},\n{"RecordID":53,"OrderID":"11695-1405","Country":"Albania","ShipCountry":"AL","ShipCity":"Rrasa e Sipërme","ShipName":"Smith, Kovacek and Bogan","ShipAddress":"7633 Towne Street","CompanyEmail":"dlees1g@barnesandnoble.com","CompanyAgent":"Deidre Lees","CompanyName":"Sanford, Hoeger and Stanton","Currency":"ALL","Notes":"sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor","Department":"Grocery","Website":"nationalgeographic.com","Latitude":"40.96778","Longitude":"19.82111","ShipDate":"3/14/2017","PaymentDate":"2016-10-10 16:32:23","TimeZone":"Europe/Tirane","TotalPayment":"$455561.49","Status":2,"Type":2,"Actions":null},\n{"RecordID":54,"OrderID":"68788-6760","Country":"China","ShipCountry":"CN","ShipCity":"Xiaping","ShipName":"Dickinson Group","ShipAddress":"2985 Merry Plaza","CompanyEmail":"mbourne1h@macromedia.com","CompanyAgent":"Malorie Bourne","CompanyName":"Blick-Farrell","Currency":"CNY","Notes":"orci vehicula condimentum curabitur in libero ut massa volutpat convallis","Department":"Computers","Website":"1und1.de","Latitude":27.568278,"Longitude":117.562238,"ShipDate":"8/13/2017","PaymentDate":"2016-09-11 19:00:24","TimeZone":"Asia/Chongqing","TotalPayment":"$147162.27","Status":3,"Type":2,"Actions":null},\n{"RecordID":55,"OrderID":"0268-1441","Country":"China","ShipCountry":"CN","ShipCity":"Zhangjiawan","ShipName":"Welch-Gislason","ShipAddress":"31 Mcbride Place","CompanyEmail":"hgammie1i@globo.com","CompanyAgent":"Horton Gammie","CompanyName":"Hegmann-Hettinger","Currency":"CNY","Notes":"rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc","Department":"Music","Website":"yandex.ru","Latitude":31.686188,"Longitude":104.969819,"ShipDate":"5/27/2016","PaymentDate":"2016-08-19 17:30:11","TimeZone":"Asia/Harbin","TotalPayment":"$974736.80","Status":4,"Type":2,"Actions":null},\n{"RecordID":56,"OrderID":"62032-524","Country":"Israel","ShipCountry":"IL","ShipCity":"Ramat Gan","ShipName":"Stokes-Homenick","ShipAddress":"95694 Clove Crossing","CompanyEmail":"fsante1j@php.net","CompanyAgent":"Frannie Sante","CompanyName":"Kerluke, Witting and Zboncak","Currency":"ILS","Notes":"gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam","Department":"Movies","Website":"deliciousdays.com","Latitude":32.068424,"Longitude":34.824785,"ShipDate":"5/6/2017","PaymentDate":"2016-10-29 15:41:43","TimeZone":"Asia/Jerusalem","TotalPayment":"$939821.62","Status":6,"Type":2,"Actions":null},\n{"RecordID":57,"OrderID":"42291-218","Country":"Yemen","ShipCountry":"YE","ShipCity":"Raydah","ShipName":"Pfannerstill LLC","ShipAddress":"4867 Warner Lane","CompanyEmail":"onazer1k@github.com","CompanyAgent":"Orlando Nazer","CompanyName":"Barton-Mann","Currency":"YER","Notes":"consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo","Department":"Automotive","Website":"nytimes.com","Latitude":15.8161032,"Longitude":44.041335,"ShipDate":"12/6/2017","PaymentDate":"2017-07-15 23:15:32","TimeZone":"Asia/Aden","TotalPayment":"$971056.71","Status":1,"Type":1,"Actions":null},\n{"RecordID":58,"OrderID":"0536-3233","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Krajan Srigonco","ShipName":"Torphy, Bosco and Ortiz","ShipAddress":"8379 Shopko Circle","CompanyEmail":"platliff1l@theatlantic.com","CompanyAgent":"Pavel Latliff","CompanyName":"Feil, Mante and Becker","Currency":"IDR","Notes":"sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien","Department":"Garden","Website":"angelfire.com","Latitude":"-8.3418","Longitude":"112.5618","ShipDate":"3/10/2016","PaymentDate":"2017-03-06 12:26:09","TimeZone":"Asia/Jakarta","TotalPayment":"$1176948.84","Status":2,"Type":1,"Actions":null},\n{"RecordID":59,"OrderID":"0143-1265","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Panggungasri","ShipName":"Schiller LLC","ShipAddress":"75 Barnett Crossing","CompanyEmail":"bpackwood1m@salon.com","CompanyAgent":"Benetta Packwood","CompanyName":"Zboncak-Hettinger","Currency":"IDR","Notes":"lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue","Department":"Music","Website":"issuu.com","Latitude":-8.2182795,"Longitude":112.2950314,"ShipDate":"7/7/2017","PaymentDate":"2017-09-23 10:42:52","TimeZone":"Asia/Jakarta","TotalPayment":"$214315.57","Status":3,"Type":2,"Actions":null},\n{"RecordID":60,"OrderID":"64980-119","Country":"Macedonia","ShipCountry":"MK","ShipCity":"Јегуновце","ShipName":"Hyatt, Kovacek and Schulist","ShipAddress":"1562 Mesta Center","CompanyEmail":"mcolliar1n@hugedomains.com","CompanyAgent":"Merilee Colliar","CompanyName":"Moore, Toy and McCullough","Currency":"MKD","Notes":"turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi","Department":"Tools","Website":"craigslist.org","Latitude":42.0733374,"Longitude":21.1202878,"ShipDate":"2/3/2017","PaymentDate":"2016-05-12 12:43:48","TimeZone":"Europe/Skopje","TotalPayment":"$526035.07","Status":2,"Type":2,"Actions":null},\n{"RecordID":61,"OrderID":"0363-0198","Country":"Philippines","ShipCountry":"PH","ShipCity":"Nagrumbuan","ShipName":"Hills-Mayert","ShipAddress":"505 Cardinal Drive","CompanyEmail":"epoyner1o@zimbio.com","CompanyAgent":"Ennis Poyner","CompanyName":"Simonis and Sons","Currency":"PHP","Notes":"odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque","Department":"Tools","Website":"mayoclinic.com","Latitude":16.8991985,"Longitude":121.7075195,"ShipDate":"8/30/2017","PaymentDate":"2017-04-05 11:19:31","TimeZone":"Asia/Manila","TotalPayment":"$925471.01","Status":5,"Type":1,"Actions":null},\n{"RecordID":62,"OrderID":"65862-142","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Leuwipicung","ShipName":"Schultz-Cronin","ShipAddress":"306 Beilfuss Parkway","CompanyEmail":"apetherick1p@hatena.ne.jp","CompanyAgent":"Ailyn Petherick","CompanyName":"Dach-Ernser","Currency":"IDR","Notes":"sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus","Department":"Garden","Website":"house.gov","Latitude":-7.71725,"Longitude":108.07666,"ShipDate":"3/4/2016","PaymentDate":"2017-01-12 13:27:43","TimeZone":"Asia/Jakarta","TotalPayment":"$300684.83","Status":6,"Type":1,"Actions":null},\n{"RecordID":63,"OrderID":"67510-1561","Country":"Peru","ShipCountry":"PE","ShipCity":"Patambuco","ShipName":"Crist and Sons","ShipAddress":"90561 Superior Parkway","CompanyEmail":"sgasking1q@sun.com","CompanyAgent":"Saba Gasking","CompanyName":"Wisozk-Ratke","Currency":"PEN","Notes":"leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede","Department":"Jewelery","Website":"apple.com","Latitude":-14.27079,"Longitude":-69.567879,"ShipDate":"6/27/2017","PaymentDate":"2017-02-14 05:11:52","TimeZone":"America/Lima","TotalPayment":"$296798.64","Status":5,"Type":2,"Actions":null},\n{"RecordID":64,"OrderID":"67877-169","Country":"Brazil","ShipCountry":"BR","ShipCity":"Sananduva","ShipName":"Koss, Yost and Wintheiser","ShipAddress":"76 Di Loreto Place","CompanyEmail":"kmatitiaho1r@networkadvertising.org","CompanyAgent":"Kelly Matitiaho","CompanyName":"Schuster, Flatley and Ledner","Currency":"BRL","Notes":"hendrerit at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget orci","Department":"Automotive","Website":"squidoo.com","Latitude":-27.950568,"Longitude":-51.8148609,"ShipDate":"9/21/2017","PaymentDate":"2016-04-14 15:50:12","TimeZone":"America/Sao_Paulo","TotalPayment":"$683140.08","Status":4,"Type":2,"Actions":null},\n{"RecordID":65,"OrderID":"13537-402","Country":"Uganda","ShipCountry":"UG","ShipCity":"Pader Palwo","ShipName":"Konopelski, Goyette and Borer","ShipAddress":"34 Charing Cross Junction","CompanyEmail":"dgasperi1s@newsvine.com","CompanyAgent":"Daron Gasperi","CompanyName":"Kuphal Inc","Currency":"UGX","Notes":"curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam","Department":"Electronics","Website":"com.com","Latitude":2.7798518,"Longitude":33.0057261,"ShipDate":"7/8/2016","PaymentDate":"2016-12-02 10:21:48","TimeZone":"Africa/Kampala","TotalPayment":"$245786.01","Status":2,"Type":2,"Actions":null},\n{"RecordID":66,"OrderID":"48951-8237","Country":"Portugal","ShipCountry":"PT","ShipCity":"Portela","ShipName":"Marks-Batz","ShipAddress":"114 Barnett Avenue","CompanyEmail":"meustes1t@nsw.gov.au","CompanyAgent":"Marketa Eustes","CompanyName":"Kautzer Inc","Currency":"EUR","Notes":"proin leo odio porttitor id consequat in consequat ut nulla sed accumsan","Department":"Outdoors","Website":"paypal.com","Latitude":41.1604713,"Longitude":-7.7452871,"ShipDate":"12/6/2016","PaymentDate":"2016-01-03 07:39:20","TimeZone":"Europe/Lisbon","TotalPayment":"$148246.67","Status":1,"Type":1,"Actions":null},\n{"RecordID":67,"OrderID":"36987-3279","Country":"Spain","ShipCountry":"ES","ShipCity":"Badajoz","ShipName":"Osinski, Nitzsche and Schaden","ShipAddress":"6 Commercial Center","CompanyEmail":"bshowl1u@lycos.com","CompanyAgent":"Bernita Showl","CompanyName":"Jacobson-Brakus","Currency":"EUR","Notes":"odio porttitor id consequat in consequat ut nulla sed accumsan felis ut at dolor quis odio consequat varius","Department":"Movies","Website":"wikimedia.org","Latitude":38.8794495,"Longitude":-6.9706535,"ShipDate":"11/2/2016","PaymentDate":"2016-09-19 10:42:38","TimeZone":"Europe/Madrid","TotalPayment":"$1145811.38","Status":2,"Type":3,"Actions":null},\n{"RecordID":68,"OrderID":"36987-3092","Country":"Belarus","ShipCountry":"BY","ShipCity":"Hlybokaye","ShipName":"Fahey-Jones","ShipAddress":"43 Scott Lane","CompanyEmail":"dohoey1v@sitemeter.com","CompanyAgent":"Danielle O\'Hoey","CompanyName":"Sipes, Schaden and Larkin","Currency":"BYR","Notes":"nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi","Department":"Toys","Website":"joomla.org","Latitude":55.1391321,"Longitude":27.6842905,"ShipDate":"4/12/2017","PaymentDate":"2017-01-03 22:32:16","TimeZone":"Europe/Minsk","TotalPayment":"$1075453.72","Status":3,"Type":3,"Actions":null},\n{"RecordID":69,"OrderID":"17271-503","Country":"Slovenia","ShipCountry":"SI","ShipCity":"Slovenska Bistrica","ShipName":"Padberg, West and Hoeger","ShipAddress":"48462 Jackson Avenue","CompanyEmail":"sstanistrete1w@samsung.com","CompanyAgent":"Susana Stanistrete","CompanyName":"Reinger Inc","Currency":"EUR","Notes":"tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean","Department":"Clothing","Website":"people.com.cn","Latitude":46.3919813,"Longitude":15.5727869,"ShipDate":"6/26/2017","PaymentDate":"2016-10-01 11:26:13","TimeZone":"Europe/Ljubljana","TotalPayment":"$1113114.34","Status":4,"Type":1,"Actions":null},\n{"RecordID":70,"OrderID":"49288-0206","Country":"France","ShipCountry":"FR","ShipCity":"Aix-en-Provence","ShipName":"Johnson, Beahan and McCullough","ShipAddress":"8 Bartillon Pass","CompanyEmail":"domrod1x@ihg.com","CompanyAgent":"Denys Omrod","CompanyName":"Dicki and Sons","Currency":"EUR","Notes":"vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque quam","Department":"Electronics","Website":"lulu.com","Latitude":43.5190858,"Longitude":5.4431946,"ShipDate":"11/18/2017","PaymentDate":"2016-07-28 12:41:30","TimeZone":"Europe/Paris","TotalPayment":"$264342.99","Status":6,"Type":3,"Actions":null},\n{"RecordID":71,"OrderID":"55312-118","Country":"Belarus","ShipCountry":"BY","ShipCity":"Pyetrykaw","ShipName":"Howell, Swaniawski and Mosciski","ShipAddress":"16514 Glendale Road","CompanyEmail":"pmallall1y@cnet.com","CompanyAgent":"Phillipe Mallall","CompanyName":"Jacobs, Blanda and Dickinson","Currency":"BYR","Notes":"quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst","Department":"Movies","Website":"desdev.cn","Latitude":52.1267722,"Longitude":28.4919521,"ShipDate":"10/13/2017","PaymentDate":"2017-06-17 12:58:28","TimeZone":"Europe/Minsk","TotalPayment":"$366433.13","Status":3,"Type":1,"Actions":null},\n{"RecordID":72,"OrderID":"49035-111","Country":"Brazil","ShipCountry":"BR","ShipCity":"Caieiras","ShipName":"Skiles, Mayert and Huels","ShipAddress":"551 Briar Crest Drive","CompanyEmail":"fmantha1z@usatoday.com","CompanyAgent":"Flinn Mantha","CompanyName":"Zboncak-Dooley","Currency":"BRL","Notes":"justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices","Department":"Beauty","Website":"wired.com","Latitude":-23.3711864,"Longitude":-46.7575221,"ShipDate":"1/18/2016","PaymentDate":"2016-06-28 10:50:05","TimeZone":"America/Sao_Paulo","TotalPayment":"$623396.37","Status":2,"Type":3,"Actions":null},\n{"RecordID":73,"OrderID":"33261-888","Country":"China","ShipCountry":"CN","ShipCity":"Yicheng","ShipName":"Boyer, Koepp and O\'Hara","ShipAddress":"1 Blue Bill Park Way","CompanyEmail":"mgange20@wix.com","CompanyAgent":"Melodie Gange","CompanyName":"Lemke Inc","Currency":"CNY","Notes":"eros elementum pellentesque quisque porta volutpat erat quisque erat eros","Department":"Garden","Website":"yellowpages.com","Latitude":31.719806,"Longitude":112.257788,"ShipDate":"11/24/2016","PaymentDate":"2017-06-17 19:57:08","TimeZone":"Asia/Chongqing","TotalPayment":"$668062.14","Status":5,"Type":2,"Actions":null},\n{"RecordID":74,"OrderID":"60709-105","Country":"Philippines","ShipCountry":"PH","ShipCity":"Babug","ShipName":"Muller-Rosenbaum","ShipAddress":"69 Northview Parkway","CompanyEmail":"rdabner21@indiatimes.com","CompanyAgent":"Randi Dabner","CompanyName":"Schimmel, Mohr and Kutch","Currency":"PHP","Notes":"eu sapien cursus vestibulum proin eu mi nulla ac enim in","Department":"Sports","Website":"wikimedia.org","Latitude":14.8744012,"Longitude":120.8130073,"ShipDate":"5/21/2017","PaymentDate":"2017-09-15 19:14:19","TimeZone":"Asia/Manila","TotalPayment":"$990135.61","Status":5,"Type":1,"Actions":null},\n{"RecordID":75,"OrderID":"63629-2679","Country":"Finland","ShipCountry":"FI","ShipCity":"Koski Tl","ShipName":"Crona, Halvorson and Larkin","ShipAddress":"0 Vernon Center","CompanyEmail":"ggabbat22@newsvine.com","CompanyAgent":"Ginnie Gabbat","CompanyName":"Bergnaum-Kozey","Currency":"EUR","Notes":"donec quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio","Department":"Jewelery","Website":"newyorker.com","Latitude":60.6569706,"Longitude":23.1385333,"ShipDate":"11/20/2016","PaymentDate":"2017-06-21 16:16:24","TimeZone":"Europe/Helsinki","TotalPayment":"$232536.81","Status":4,"Type":1,"Actions":null},\n{"RecordID":76,"OrderID":"36800-277","Country":"Serbia","ShipCountry":"RS","ShipCity":"Radenka","ShipName":"Hahn LLC","ShipAddress":"0 Erie Plaza","CompanyEmail":"jadnett23@about.com","CompanyAgent":"Josi Adnett","CompanyName":"Schulist-Yost","Currency":"RSD","Notes":"ipsum dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non","Department":"Computers","Website":"google.de","Latitude":44.5847556,"Longitude":21.7503934,"ShipDate":"9/19/2017","PaymentDate":"2017-11-09 17:37:52","TimeZone":"Europe/Belgrade","TotalPayment":"$830071.82","Status":1,"Type":3,"Actions":null},\n{"RecordID":77,"OrderID":"52125-910","Country":"Armenia","ShipCountry":"AM","ShipCity":"Gogaran","ShipName":"Will-Dooley","ShipAddress":"57 Arapahoe Way","CompanyEmail":"nyerill24@rediff.com","CompanyAgent":"Nathanial Yerill","CompanyName":"Rosenbaum Inc","Currency":"AMD","Notes":"volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus","Department":"Baby","Website":"webmd.com","Latitude":40.894048,"Longitude":44.1992229,"ShipDate":"5/24/2017","PaymentDate":"2017-04-15 08:51:50","TimeZone":"Asia/Yerevan","TotalPayment":"$97687.69","Status":5,"Type":3,"Actions":null},\n{"RecordID":78,"OrderID":"24236-120","Country":"France","ShipCountry":"FR","ShipCity":"Mâcon","ShipName":"Okuneva, Metz and Stamm","ShipAddress":"40389 Buell Alley","CompanyEmail":"pbrewin25@timesonline.co.uk","CompanyAgent":"Priscilla Brewin","CompanyName":"Witting-Von","Currency":"EUR","Notes":"sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus","Department":"Movies","Website":"hp.com","Latitude":46.2993504,"Longitude":4.8265786,"ShipDate":"2/5/2016","PaymentDate":"2017-07-02 14:21:54","TimeZone":"Europe/Paris","TotalPayment":"$892539.18","Status":6,"Type":1,"Actions":null},\n{"RecordID":79,"OrderID":"76173-1008","Country":"Pakistan","ShipCountry":"PK","ShipCity":"Kandhkot","ShipName":"Quigley-Halvorson","ShipAddress":"9 1st Alley","CompanyEmail":"ballard26@google.ca","CompanyAgent":"Barbabas Allard","CompanyName":"Kunde-Veum","Currency":"PKR","Notes":"cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros","Department":"Music","Website":"trellian.com","Latitude":28.1771009,"Longitude":68.7257945,"ShipDate":"1/29/2016","PaymentDate":"2017-08-08 19:08:11","TimeZone":"Asia/Karachi","TotalPayment":"$64027.72","Status":6,"Type":2,"Actions":null},\n{"RecordID":80,"OrderID":"41163-146","Country":"China","ShipCountry":"CN","ShipCity":"Dadianzi","ShipName":"Hilll Inc","ShipAddress":"4569 Heath Street","CompanyEmail":"mcassie27@canalblog.com","CompanyAgent":"Marshall Cassie","CompanyName":"Brown-Hudson","Currency":"CNY","Notes":"ut erat id mauris vulputate elementum nullam varius nulla facilisi cras","Department":"Toys","Website":"tripadvisor.com","Latitude":43.661922,"Longitude":128.500964,"ShipDate":"3/5/2016","PaymentDate":"2016-02-25 11:11:16","TimeZone":"Asia/Harbin","TotalPayment":"$620902.30","Status":2,"Type":2,"Actions":null},\n{"RecordID":81,"OrderID":"68084-198","Country":"Philippines","ShipCountry":"PH","ShipCity":"Pagatin","ShipName":"Nikolaus, Zulauf and Gutkowski","ShipAddress":"70 Coolidge Hill","CompanyEmail":"wferneley28@studiopress.com","CompanyAgent":"William Ferneley","CompanyName":"Adams, Macejkovic and Little","Currency":"PHP","Notes":"sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor","Department":"Jewelery","Website":"netvibes.com","Latitude":6.7640051,"Longitude":124.3754414,"ShipDate":"10/4/2017","PaymentDate":"2016-10-19 03:43:03","TimeZone":"Asia/Manila","TotalPayment":"$33879.28","Status":2,"Type":3,"Actions":null},\n{"RecordID":82,"OrderID":"60512-1043","Country":"Portugal","ShipCountry":"PT","ShipCity":"Cimo de Vila","ShipName":"Cole-Daniel","ShipAddress":"08329 Marcy Trail","CompanyEmail":"jjallin29@latimes.com","CompanyAgent":"Josy Jallin","CompanyName":"Osinski LLC","Currency":"EUR","Notes":"pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien","Department":"Grocery","Website":"imgur.com","Latitude":41.3389801,"Longitude":-8.1591621,"ShipDate":"8/23/2017","PaymentDate":"2016-11-17 23:27:10","TimeZone":"Europe/Lisbon","TotalPayment":"$45465.01","Status":5,"Type":1,"Actions":null},\n{"RecordID":83,"OrderID":"21695-139","Country":"Slovenia","ShipCountry":"SI","ShipCity":"Kobarid","ShipName":"Wuckert-Corkery","ShipAddress":"9576 Russell Alley","CompanyEmail":"tbuxton2a@seesaa.net","CompanyAgent":"Tomasine Buxton","CompanyName":"Schaefer-Smith","Currency":"EUR","Notes":"in faucibus orci luctus et ultrices posuere cubilia curae duis","Department":"Books","Website":"fda.gov","Latitude":46.2476549,"Longitude":13.5791749,"ShipDate":"4/27/2017","PaymentDate":"2016-02-14 15:10:51","TimeZone":"Europe/Rome","TotalPayment":"$271185.36","Status":3,"Type":3,"Actions":null},\n{"RecordID":84,"OrderID":"0228-3003","Country":"Dominican Republic","ShipCountry":"DO","ShipCity":"Bajos de Haina","ShipName":"Grady-Connelly","ShipAddress":"2079 Larry Way","CompanyEmail":"cpaskerful2b@i2i.jp","CompanyAgent":"Cairistiona Paskerful","CompanyName":"Wiegand and Sons","Currency":"DOP","Notes":"habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo","Department":"Computers","Website":"china.com.cn","Latitude":18.4091399,"Longitude":-70.031039,"ShipDate":"11/14/2016","PaymentDate":"2017-11-01 16:40:06","TimeZone":"America/Santo_Domingo","TotalPayment":"$612602.70","Status":2,"Type":1,"Actions":null},\n{"RecordID":85,"OrderID":"36800-124","Country":"Mexico","ShipCountry":"MX","ShipCity":"El Rosario","ShipName":"Rogahn Group","ShipAddress":"5332 Cambridge Way","CompanyEmail":"gboggis2c@sbwire.com","CompanyAgent":"Godwin Boggis","CompanyName":"Cartwright, Mante and Kris","Currency":"MXN","Notes":"ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur","Department":"Automotive","Website":"flickr.com","Latitude":30.059549,"Longitude":-115.725753,"ShipDate":"1/13/2016","PaymentDate":"2016-01-24 18:48:06","TimeZone":"America/Mexico_City","TotalPayment":"$1014910.05","Status":5,"Type":2,"Actions":null},\n{"RecordID":86,"OrderID":"59746-175","Country":"Philippines","ShipCountry":"PH","ShipCity":"Concepcion","ShipName":"Tromp, Wisozk and Stiedemann","ShipAddress":"74705 Oakridge Point","CompanyEmail":"khayzer2d@marriott.com","CompanyAgent":"Kirbie Hayzer","CompanyName":"Nicolas-Bayer","Currency":"PHP","Notes":"commodo vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing","Department":"Computers","Website":"issuu.com","Latitude":14.6688068,"Longitude":121.1138058,"ShipDate":"5/20/2016","PaymentDate":"2017-03-14 05:05:26","TimeZone":"Asia/Manila","TotalPayment":"$201601.94","Status":2,"Type":1,"Actions":null},\n{"RecordID":87,"OrderID":"0268-1481","Country":"Palestinian Territory","ShipCountry":"PS","ShipCity":"‘Aşīrah al Qiblīyah","ShipName":"Morissette Inc","ShipAddress":"4339 Armistice Circle","CompanyEmail":"cgresley2e@wsj.com","CompanyAgent":"Cherlyn Gresley","CompanyName":"Langosh, Kris and Ernser","Currency":"ILS","Notes":"sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel","Department":"Jewelery","Website":"google.co.uk","Latitude":"32.17842","Longitude":"35.21569","ShipDate":"4/2/2016","PaymentDate":"2017-01-21 06:18:17","TimeZone":"Asia/Hebron","TotalPayment":"$435115.69","Status":3,"Type":3,"Actions":null},\n{"RecordID":88,"OrderID":"58411-157","Country":"China","ShipCountry":"CN","ShipCity":"Baisha","ShipName":"Morissette-Schoen","ShipAddress":"2 Menomonie Terrace","CompanyEmail":"hshorto2f@imdb.com","CompanyAgent":"Horatio Shorto","CompanyName":"Lueilwitz-Cole","Currency":"CNY","Notes":"vestibulum velit id pretium iaculis diam erat fermentum justo nec","Department":"Sports","Website":"about.me","Latitude":26.641315,"Longitude":100.222545,"ShipDate":"9/11/2017","PaymentDate":"2017-03-30 06:17:36","TimeZone":"Asia/Chongqing","TotalPayment":"$428954.11","Status":1,"Type":1,"Actions":null},\n{"RecordID":89,"OrderID":"54569-6438","Country":"Portugal","ShipCountry":"PT","ShipCity":"Brejieira","ShipName":"Nikolaus-Lesch","ShipAddress":"1 Union Park","CompanyEmail":"lcrayden2g@multiply.com","CompanyAgent":"Lorrin Crayden","CompanyName":"Price Group","Currency":"EUR","Notes":"ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et","Department":"Industrial","Website":"csmonitor.com","Latitude":39.764261,"Longitude":-8.7386338,"ShipDate":"9/17/2016","PaymentDate":"2017-05-24 15:56:55","TimeZone":"Europe/Lisbon","TotalPayment":"$101625.67","Status":3,"Type":3,"Actions":null},\n{"RecordID":90,"OrderID":"64720-141","Country":"China","ShipCountry":"CN","ShipCity":"Xiangtan","ShipName":"Wilderman and Sons","ShipAddress":"54779 Talisman Pass","CompanyEmail":"mlilburn2h@fotki.com","CompanyAgent":"Marci Lilburn","CompanyName":"Hackett-Olson","Currency":"CNY","Notes":"hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante","Department":"Electronics","Website":"microsoft.com","Latitude":27.829795,"Longitude":112.944026,"ShipDate":"7/2/2017","PaymentDate":"2016-11-02 16:08:14","TimeZone":"Asia/Chongqing","TotalPayment":"$453268.63","Status":5,"Type":2,"Actions":null},\n{"RecordID":91,"OrderID":"53145-059","Country":"Brazil","ShipCountry":"BR","ShipCity":"Penedo","ShipName":"Torp, Brekke and Mitchell","ShipAddress":"994 Heffernan Alley","CompanyEmail":"gsoaper2i@dailymotion.com","CompanyAgent":"Giavani Soaper","CompanyName":"Pfeffer, Harber and Hintz","Currency":"BRL","Notes":"et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor","Department":"Electronics","Website":"prnewswire.com","Latitude":-10.2735517,"Longitude":-36.5536172,"ShipDate":"6/26/2017","PaymentDate":"2017-08-01 21:21:10","TimeZone":"America/Maceio","TotalPayment":"$461213.42","Status":2,"Type":1,"Actions":null},\n{"RecordID":92,"OrderID":"57520-0396","Country":"China","ShipCountry":"CN","ShipCity":"Wanshi","ShipName":"Lockman-Davis","ShipAddress":"75440 Loftsgordon Avenue","CompanyEmail":"kgowenlock2j@a8.net","CompanyAgent":"Karine Gowenlock","CompanyName":"Kirlin, Goldner and Upton","Currency":"CNY","Notes":"posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed","Department":"Kids","Website":"behance.net","Latitude":31.471686,"Longitude":119.934764,"ShipDate":"9/11/2017","PaymentDate":"2016-05-06 03:36:46","TimeZone":"Asia/Shanghai","TotalPayment":"$290389.01","Status":5,"Type":3,"Actions":null},\n{"RecordID":93,"OrderID":"24236-184","Country":"Azerbaijan","ShipCountry":"AZ","ShipCity":"Lökbatan","ShipName":"Morissette-Gislason","ShipAddress":"8338 Saint Paul Plaza","CompanyEmail":"tsandon2k@trellian.com","CompanyAgent":"Tallie Sandon","CompanyName":"Herman-Erdman","Currency":"AZN","Notes":"at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci","Department":"Games","Website":"ebay.co.uk","Latitude":40.3281802,"Longitude":49.7355969,"ShipDate":"9/16/2016","PaymentDate":"2016-12-24 08:27:33","TimeZone":"Asia/Baku","TotalPayment":"$525119.41","Status":3,"Type":1,"Actions":null},\n{"RecordID":94,"OrderID":"11822-9854","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Pasirpanjang","ShipName":"Dietrich-Langworth","ShipAddress":"5 Hollow Ridge Plaza","CompanyEmail":"mtrayhorn2l@sciencedirect.com","CompanyAgent":"Marcos Trayhorn","CompanyName":"Pacocha-Kling","Currency":"IDR","Notes":"justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est","Department":"Sports","Website":"chicagotribune.com","Latitude":0.845865,"Longitude":108.8796091,"ShipDate":"3/27/2016","PaymentDate":"2017-06-08 14:15:50","TimeZone":"Asia/Jakarta","TotalPayment":"$362198.01","Status":4,"Type":3,"Actions":null},\n{"RecordID":95,"OrderID":"49643-120","Country":"Russia","ShipCountry":"RU","ShipCity":"Muchkapskiy","ShipName":"Conn LLC","ShipAddress":"68 5th Drive","CompanyEmail":"fmunford2m@tiny.cc","CompanyAgent":"Francis Munford","CompanyName":"Smith-Stokes","Currency":"RUB","Notes":"tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat","Department":"Beauty","Website":"ox.ac.uk","Latitude":51.8478427,"Longitude":42.4697909,"ShipDate":"9/12/2016","PaymentDate":"2017-01-27 16:06:13","TimeZone":"Europe/Moscow","TotalPayment":"$1001206.62","Status":4,"Type":1,"Actions":null},\n{"RecordID":96,"OrderID":"56062-393","Country":"Guam","ShipCountry":"GU","ShipCity":"Agana Heights Village","ShipName":"Mayer-Cole","ShipAddress":"04373 Golden Leaf Center","CompanyEmail":"ckahler2n@histats.com","CompanyAgent":"Catriona Kahler","CompanyName":"Lynch-Satterfield","Currency":"USD","Notes":"ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam","Department":"Jewelery","Website":"newyorker.com","Latitude":13.4677672,"Longitude":144.7453228,"ShipDate":"7/18/2017","PaymentDate":"2016-06-21 16:10:22","TimeZone":"Pacific/Guam","TotalPayment":"$717532.21","Status":5,"Type":1,"Actions":null},\n{"RecordID":97,"OrderID":"50436-0120","Country":"Dominica","ShipCountry":"DM","ShipCity":"Soufrière","ShipName":"Ernser, Miller and Barton","ShipAddress":"7 Canary Crossing","CompanyEmail":"gkleinplatz2o@naver.com","CompanyAgent":"Giuseppe Kleinplatz","CompanyName":"Denesik-Wyman","Currency":"XCD","Notes":"congue elementum in hac habitasse platea dictumst morbi vestibulum velit id","Department":"Kids","Website":"miibeian.gov.cn","Latitude":15.2338798,"Longitude":-61.3567483,"ShipDate":"12/20/2017","PaymentDate":"2016-08-13 23:06:00","TimeZone":"America/Dominica","TotalPayment":"$630409.34","Status":2,"Type":3,"Actions":null},\n{"RecordID":98,"OrderID":"42507-004","Country":"Mexico","ShipCountry":"MX","ShipCity":"Rancho Nuevo","ShipName":"Borer and Sons","ShipAddress":"424 Birchwood Terrace","CompanyEmail":"lgrinishin2p@hubpages.com","CompanyAgent":"Lucky Grinishin","CompanyName":"O\'Reilly, Block and Goyette","Currency":"MXN","Notes":"mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh","Department":"Tools","Website":"hexun.com","Latitude":22.2222241,"Longitude":-100.9256085,"ShipDate":"12/22/2017","PaymentDate":"2016-04-09 03:07:19","TimeZone":"America/Mexico_City","TotalPayment":"$314052.63","Status":2,"Type":3,"Actions":null},\n{"RecordID":99,"OrderID":"49230-191","Country":"Japan","ShipCountry":"JP","ShipCity":"Yokosuka","ShipName":"White, Legros and Carroll","ShipAddress":"8 Annamark Place","CompanyEmail":"mellse2q@xinhuanet.com","CompanyAgent":"Meade Ellse","CompanyName":"Purdy-Carroll","Currency":"JPY","Notes":"magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia","Department":"Sports","Website":"abc.net.au","Latitude":34.6830797,"Longitude":137.9865313,"ShipDate":"12/12/2016","PaymentDate":"2016-08-30 12:27:38","TimeZone":"Asia/Tokyo","TotalPayment":"$1127673.96","Status":1,"Type":1,"Actions":null},\n{"RecordID":100,"OrderID":"50865-056","Country":"Honduras","ShipCountry":"HN","ShipCity":"Yuscarán","ShipName":"Anderson, Pfannerstill and Miller","ShipAddress":"116 Bay Way","CompanyEmail":"hensley2r@businessweek.com","CompanyAgent":"Hamil Ensley","CompanyName":"Kessler, Greenfelder and Gaylord","Currency":"HNL","Notes":"nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis","Department":"Kids","Website":"dell.com","Latitude":13.9448964,"Longitude":-86.8508942,"ShipDate":"1/14/2016","PaymentDate":"2016-12-27 22:25:10","TimeZone":"America/Tegucigalpa","TotalPayment":"$386091.31","Status":6,"Type":3,"Actions":null}]'),t=$(".kt-datatable").KTDatatable({data:{type:"local",source:e,pageSize:10},layout:{scroll:!1,footer:!1},sortable:!0,pagination:!0,search:{input:$("#generalSearch")},columns:[{field:"RecordID",title:"#",sortable:!1,width:20,type:"number",selector:{class:"kt-checkbox--solid"},textAlign:"center"},{field:"OrderID",title:"Order ID"},{field:"Country",title:"Country",template:function(e){return e.Country+" "+e.ShipCountry}},{field:"ShipDate",title:"Ship Date",type:"date",format:"MM/DD/YYYY"},{field:"CompanyName",title:"Company Name"},{field:"Status",title:"Status",template:function(e){var t={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+t[e.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(e){var t={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return' '+t[e.Type].title+""}},{field:"Actions",title:"Actions",sortable:!1,width:110,overflow:"visible",autoHide:!1,template:function(){return'\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'}}]}),$("#kt_form_status").on("change",function(){t.search($(this).val().toLowerCase(),"Status")}),$("#kt_form_type").on("change",function(){t.search($(this).val().toLowerCase(),"Type")}),$("#kt_form_status,#kt_form_type").selectpicker()}};jQuery(document).ready(function(){KTDatatableDataLocalDemo.init()}); \ No newline at end of file +'use strict'; +var KTDatatableDataLocalDemo = { + init: function() { + var e, t; + (e = JSON.parse( + '[{"RecordID":1,"OrderID":"0374-5070","Country":"China","ShipCountry":"CN","ShipCity":"Jiujie","ShipName":"Rempel Inc","ShipAddress":"60310 Schiller Center","CompanyEmail":"cdodman0@wsj.com","CompanyAgent":"Cordi Dodman","CompanyName":"Kris-Wehner","Currency":"CNY","Notes":"sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus","Department":"Kids","Website":"tripadvisor.com","Latitude":39.952319,"Longitude":119.598195,"ShipDate":"8/27/2017","PaymentDate":"2016-09-15 22:18:06","TimeZone":"Asia/Chongqing","TotalPayment":"$336309.10","Status":6,"Type":2,"Actions":null},\n{"RecordID":2,"OrderID":"63868-257","Country":"Philippines","ShipCountry":"PH","ShipCity":"Gibgos","ShipName":"Muller, Leannon and McKenzie","ShipAddress":"26734 Mitchell Drive","CompanyEmail":"kscritch1@google.es","CompanyAgent":"Katrinka Scritch","CompanyName":"Stanton, Friesen and Grant","Currency":"PHP","Notes":"ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur","Department":"Tools","Website":"elpais.com","Latitude":13.8503992,"Longitude":123.7585154,"ShipDate":"9/3/2017","PaymentDate":"2016-09-05 16:27:07","TimeZone":"Asia/Manila","TotalPayment":"$786612.37","Status":1,"Type":2,"Actions":null},\n{"RecordID":3,"OrderID":"49288-0815","Country":"Paraguay","ShipCountry":"PY","ShipCity":"General Elizardo Aquino","ShipName":"Fahey, Rosenbaum and Leannon","ShipAddress":"9 Daystar Center","CompanyEmail":"neberlein2@google.ca","CompanyAgent":"Nevin Eberlein","CompanyName":"Cartwright, Hilpert and Hartmann","Currency":"PYG","Notes":"bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris","Department":"Electronics","Website":"bing.com","Latitude":-24.4436327,"Longitude":-56.9014072,"ShipDate":"4/23/2016","PaymentDate":"2016-01-01 08:03:07","TimeZone":"America/Asuncion","TotalPayment":"$216102.85","Status":5,"Type":1,"Actions":null},\n{"RecordID":4,"OrderID":"49288-0039","Country":"Azerbaijan","ShipCountry":"AZ","ShipCity":"Maştağa","ShipName":"Gaylord-Aufderhar","ShipAddress":"68 Bunker Hill Street","CompanyEmail":"sdenge3@discuz.net","CompanyAgent":"Syd Denge","CompanyName":"Bednar-Grant","Currency":"AZN","Notes":"suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus","Department":"Computers","Website":"nbcnews.com","Latitude":40.5329933,"Longitude":50.0035678,"ShipDate":"9/6/2017","PaymentDate":"2016-08-26 05:27:20","TimeZone":"Asia/Baku","TotalPayment":"$555545.40","Status":1,"Type":2,"Actions":null},\n{"RecordID":5,"OrderID":"59762-0009","Country":"Brazil","ShipCountry":"BR","ShipCity":"Corrego Grande","ShipName":"Zemlak-Ward","ShipAddress":"8 Orin Terrace","CompanyEmail":"mtreanor4@histats.com","CompanyAgent":"Mallory Treanor","CompanyName":"Feeney Inc","Currency":"BRL","Notes":"luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat","Department":"Computers","Website":"rediff.com","Latitude":-27.593609,"Longitude":-48.5027406,"ShipDate":"10/28/2017","PaymentDate":"2017-02-20 12:31:25","TimeZone":"America/Sao_Paulo","TotalPayment":"$968744.59","Status":5,"Type":1,"Actions":null},\n{"RecordID":6,"OrderID":"43419-020","Country":"Honduras","ShipCountry":"HN","ShipCity":"San Juan Pueblo","ShipName":"Marvin-D\'Amore","ShipAddress":"660 Riverside Place","CompanyEmail":"lyankishin5@jiathis.com","CompanyAgent":"Lanae Yankishin","CompanyName":"Bechtelar, Wisoky and Homenick","Currency":"HNL","Notes":"tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","Department":"Beauty","Website":"wordpress.org","Latitude":15.5973118,"Longitude":-87.2145498,"ShipDate":"4/6/2017","PaymentDate":"2017-10-22 02:33:29","TimeZone":"America/Tegucigalpa","TotalPayment":"$1119199.00","Status":5,"Type":3,"Actions":null},\n{"RecordID":7,"OrderID":"33261-641","Country":"China","ShipCountry":"CN","ShipCity":"Yihe","ShipName":"MacGyver, Witting and Gleason","ShipAddress":"757 Daystar Crossing","CompanyEmail":"mmangeot6@harvard.edu","CompanyAgent":"Margy Mangeot","CompanyName":"Towne, MacGyver and Greenholt","Currency":"CNY","Notes":"metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet","Department":"Garden","Website":"huffingtonpost.com","Latitude":23.2196922,"Longitude":113.3138804,"ShipDate":"4/15/2017","PaymentDate":"2016-01-30 06:42:56","TimeZone":"Asia/Chongqing","TotalPayment":"$629781.98","Status":3,"Type":2,"Actions":null},\n{"RecordID":8,"OrderID":"68462-221","Country":"France","ShipCountry":"FR","ShipCity":"Saint-Leu-la-Forêt","ShipName":"Turner-Parisian","ShipAddress":"21390 Golf Course Lane","CompanyEmail":"apolo7@opera.com","CompanyAgent":"Aubree Polo","CompanyName":"Lubowitz Inc","Currency":"EUR","Notes":"blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse","Department":"Clothing","Website":"dell.com","Latitude":49.0301146,"Longitude":2.2509675,"ShipDate":"6/13/2016","PaymentDate":"2017-03-01 14:18:47","TimeZone":"Europe/Paris","TotalPayment":"$1106347.34","Status":6,"Type":2,"Actions":null},\n{"RecordID":9,"OrderID":"68084-555","Country":"Mexico","ShipCountry":"MX","ShipCity":"Hidalgo","ShipName":"O\'Kon, Heller and Flatley","ShipAddress":"960 Vahlen Avenue","CompanyEmail":"lsneddon8@hugedomains.com","CompanyAgent":"Leif Sneddon","CompanyName":"Larson Inc","Currency":"MXN","Notes":"rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut","Department":"Sports","Website":"ifeng.com","Latitude":20.0910963,"Longitude":-98.7623874,"ShipDate":"11/14/2016","PaymentDate":"2016-09-21 23:32:43","TimeZone":"America/Mexico_City","TotalPayment":"$677621.03","Status":4,"Type":2,"Actions":null},\n{"RecordID":10,"OrderID":"10565-013","Country":"Greece","ShipCountry":"GR","ShipCity":"Emporeío","ShipName":"Gutkowski Group","ShipAddress":"42 Reindahl Court","CompanyEmail":"rjerrold9@ucla.edu","CompanyAgent":"Roy Jerrold","CompanyName":"Hoeger-Waelchi","Currency":"EUR","Notes":"tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed","Department":"Toys","Website":"stumbleupon.com","Latitude":36.3573462,"Longitude":25.4459308,"ShipDate":"8/2/2017","PaymentDate":"2016-10-29 23:25:04","TimeZone":"Europe/Athens","TotalPayment":"$910133.41","Status":6,"Type":1,"Actions":null},\n{"RecordID":11,"OrderID":"68026-422","Country":"United States","ShipCountry":"US","ShipCity":"Cleveland","ShipName":"Gaylord-Parker","ShipAddress":"8072 Waywood Crossing","CompanyEmail":"keffnerta@marketwatch.com","CompanyAgent":"Kane Effnert","CompanyName":"Legros, Oberbrunner and Gleason","Currency":"USD","Notes":"enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis","Department":"Tools","Website":"java.com","Latitude":41.451118,"Longitude":-81.6309078,"ShipDate":"3/11/2017","PaymentDate":"2017-03-17 12:57:30","TimeZone":"America/New_York","TotalPayment":"$936141.99","Status":5,"Type":2,"Actions":null},\n{"RecordID":12,"OrderID":"0264-7780","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Amerta","ShipName":"Braun, Spinka and Haley","ShipAddress":"8 Chive Junction","CompanyEmail":"ecavellb@miibeian.gov.cn","CompanyAgent":"Elwyn Cavell","CompanyName":"Kassulke and Sons","Currency":"IDR","Notes":"aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu","Department":"Clothing","Website":"china.com.cn","Latitude":-6.2629253,"Longitude":106.7826245,"ShipDate":"9/29/2016","PaymentDate":"2017-10-31 02:33:49","TimeZone":"Asia/Jakarta","TotalPayment":"$583287.30","Status":4,"Type":1,"Actions":null},\n{"RecordID":13,"OrderID":"50813-0001","Country":"Tunisia","ShipCountry":"TN","ShipCity":"Kairouan","ShipName":"Kirlin LLC","ShipAddress":"26 West Park","CompanyEmail":"pbacherc@independent.co.uk","CompanyAgent":"Pier Bacher","CompanyName":"Cole-Hamill","Currency":"TND","Notes":"quam a odio in hac habitasse platea dictumst maecenas ut massa","Department":"Clothing","Website":"yellowpages.com","Latitude":35.6759137,"Longitude":10.0919243,"ShipDate":"3/4/2016","PaymentDate":"2017-11-24 17:22:53","TimeZone":"Africa/Tunis","TotalPayment":"$1182339.20","Status":3,"Type":2,"Actions":null},\n{"RecordID":14,"OrderID":"21695-353","Country":"Argentina","ShipCountry":"AR","ShipCity":"Unquillo","ShipName":"Rempel and Sons","ShipAddress":"098 Hagan Crossing","CompanyEmail":"smuckiand@is.gd","CompanyAgent":"Spence Muckian","CompanyName":"Frami Inc","Currency":"ARS","Notes":"elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu","Department":"Grocery","Website":"seesaa.net","Latitude":-31.372506,"Longitude":-64.182416,"ShipDate":"10/4/2017","PaymentDate":"2017-06-13 14:50:30","TimeZone":"America/Argentina/Cordoba","TotalPayment":"$658920.05","Status":3,"Type":2,"Actions":null},\n{"RecordID":15,"OrderID":"63304-791","Country":"Poland","ShipCountry":"PL","ShipCity":"Kąty Wrocławskie","ShipName":"Rodriguez, Lindgren and Collier","ShipAddress":"90016 Susan Place","CompanyEmail":"dgervaisee@buzzfeed.com","CompanyAgent":"Darcy Gervaise","CompanyName":"Bauch LLC","Currency":"PLN","Notes":"sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae","Department":"Movies","Website":"mysql.com","Latitude":51.0309199,"Longitude":16.7675963,"ShipDate":"8/3/2016","PaymentDate":"2017-08-15 01:48:22","TimeZone":"Europe/Warsaw","TotalPayment":"$361414.46","Status":1,"Type":2,"Actions":null},\n{"RecordID":16,"OrderID":"42352-1001","Country":"Azerbaijan","ShipCountry":"AZ","ShipCity":"Saray","ShipName":"Raynor and Sons","ShipAddress":"4 4th Drive","CompanyEmail":"epaffordf@prweb.com","CompanyAgent":"Eli Pafford","CompanyName":"Moen, Walsh and Bednar","Currency":"AZN","Notes":"in consequat ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque","Department":"Health","Website":"wordpress.org","Latitude":40.5323093,"Longitude":49.710366,"ShipDate":"6/13/2017","PaymentDate":"2017-09-17 04:40:17","TimeZone":"Asia/Baku","TotalPayment":"$69543.85","Status":3,"Type":2,"Actions":null},\n{"RecordID":17,"OrderID":"68275-320","Country":"Estonia","ShipCountry":"EE","ShipCity":"Narva-Jõesuu","ShipName":"Emard-Von","ShipAddress":"37 Fremont Lane","CompanyEmail":"yjoriozg@icq.com","CompanyAgent":"Yovonnda Jorioz","CompanyName":"Connelly Group","Currency":"EUR","Notes":"lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros","Department":"Sports","Website":"google.ca","Latitude":59.4609192,"Longitude":28.0395999,"ShipDate":"10/13/2016","PaymentDate":"2016-12-26 09:59:48","TimeZone":"Europe/Tallinn","TotalPayment":"$137265.28","Status":4,"Type":1,"Actions":null},\n{"RecordID":18,"OrderID":"41190-308","Country":"Panama","ShipCountry":"PA","ShipCity":"Puerto Obaldía","ShipName":"Howell Inc","ShipAddress":"8751 Lighthouse Bay Terrace","CompanyEmail":"jsollarsh@seattletimes.com","CompanyAgent":"Judy Sollars","CompanyName":"Johns-Lueilwitz","Currency":"PAB","Notes":"rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat","Department":"Movies","Website":"nationalgeographic.com","Latitude":8.6663907,"Longitude":-77.420826,"ShipDate":"8/1/2016","PaymentDate":"2017-10-05 17:04:04","TimeZone":"America/Bogota","TotalPayment":"$827677.19","Status":2,"Type":2,"Actions":null},\n{"RecordID":19,"OrderID":"51655-802","Country":"Iran","ShipCountry":"IR","ShipCity":"Eyvān","ShipName":"Monahan, Pacocha and Effertz","ShipAddress":"1 Anthes Place","CompanyEmail":"cpericoi@springer.com","CompanyAgent":"Cobbie Perico","CompanyName":"Mosciski-Williamson","Currency":"IRR","Notes":"sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at","Department":"Baby","Website":"nymag.com","Latitude":33.8297993,"Longitude":46.3073161,"ShipDate":"11/15/2016","PaymentDate":"2017-12-22 08:07:51","TimeZone":"Asia/Tehran","TotalPayment":"$171018.99","Status":5,"Type":1,"Actions":null},\n{"RecordID":20,"OrderID":"68151-2713","Country":"Costa Rica","ShipCountry":"CR","ShipCity":"Pital","ShipName":"Romaguera-Batz","ShipAddress":"6 Schlimgen Lane","CompanyEmail":"labeauj@mashable.com","CompanyAgent":"Lucretia Abeau","CompanyName":"Vandervort, Lesch and Bins","Currency":"CRC","Notes":"habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque","Department":"Clothing","Website":"naver.com","Latitude":10.4492758,"Longitude":-84.2725621,"ShipDate":"4/22/2017","PaymentDate":"2016-10-31 13:12:03","TimeZone":"America/Costa_Rica","TotalPayment":"$444445.05","Status":1,"Type":1,"Actions":null},\n{"RecordID":21,"OrderID":"68382-161","Country":"Japan","ShipCountry":"JP","ShipCity":"Itoman","ShipName":"Kessler, Boyle and Volkman","ShipAddress":"9 Lawn Point","CompanyEmail":"mlinkletk@wp.com","CompanyAgent":"Mireielle Linklet","CompanyName":"Maggio-Friesen","Currency":"JPY","Notes":"venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet","Department":"Computers","Website":"reference.com","Latitude":26.1288392,"Longitude":127.6681281,"ShipDate":"4/26/2017","PaymentDate":"2016-05-13 03:10:54","TimeZone":"Asia/Tokyo","TotalPayment":"$469295.83","Status":5,"Type":3,"Actions":null},\n{"RecordID":22,"OrderID":"51345-061","Country":"Russia","ShipCountry":"RU","ShipCity":"Mirny","ShipName":"Baumbach Group","ShipAddress":"4649 Clarendon Terrace","CompanyEmail":"bbigmorel@nationalgeographic.com","CompanyAgent":"Belita Bigmore","CompanyName":"Rath Group","Currency":"RUB","Notes":"diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam","Department":"Industrial","Website":"tiny.cc","Latitude":62.5412431,"Longitude":113.9960031,"ShipDate":"6/6/2017","PaymentDate":"2017-04-07 03:26:21","TimeZone":"Asia/Yakutsk","TotalPayment":"$1097247.60","Status":4,"Type":1,"Actions":null},\n{"RecordID":23,"OrderID":"33342-072","Country":"Philippines","ShipCountry":"PH","ShipCity":"Lepanto","ShipName":"VonRueden, Satterfield and Pacocha","ShipAddress":"9 Green Way","CompanyEmail":"fdurramm@themeforest.net","CompanyAgent":"Fabio Durram","CompanyName":"Gutkowski-Bartell","Currency":"PHP","Notes":"posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec","Department":"Beauty","Website":"smugmug.com","Latitude":9.3136403,"Longitude":123.3036704,"ShipDate":"6/14/2017","PaymentDate":"2016-08-01 06:55:55","TimeZone":"Asia/Manila","TotalPayment":"$335706.25","Status":1,"Type":2,"Actions":null},\n{"RecordID":24,"OrderID":"0113-0274","Country":"Philippines","ShipCountry":"PH","ShipCity":"Kolambugan","ShipName":"Grady, Barton and Mosciski","ShipAddress":"832 Loftsgordon Court","CompanyEmail":"hheseyn@bandcamp.com","CompanyAgent":"Haskel Hesey","CompanyName":"Brown, Glover and Bednar","Currency":"PHP","Notes":"diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna","Department":"Movies","Website":"apple.com","Latitude":8.1113884,"Longitude":123.8961588,"ShipDate":"10/6/2017","PaymentDate":"2016-10-15 21:51:09","TimeZone":"Asia/Manila","TotalPayment":"$298650.19","Status":1,"Type":1,"Actions":null},\n{"RecordID":25,"OrderID":"60637-013","Country":"Sweden","ShipCountry":"SE","ShipCity":"Vallentuna","ShipName":"Bednar-Wyman","ShipAddress":"9945 Old Gate Way","CompanyEmail":"gdurringtono@fda.gov","CompanyAgent":"Gregorius Durrington","CompanyName":"Haag Inc","Currency":"SEK","Notes":"potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam","Department":"Jewelery","Website":"sbwire.com","Latitude":59.6535297,"Longitude":18.3648033,"ShipDate":"4/28/2017","PaymentDate":"2017-07-19 06:11:51","TimeZone":"Europe/Stockholm","TotalPayment":"$52391.03","Status":5,"Type":1,"Actions":null},\n{"RecordID":26,"OrderID":"0781-5626","Country":"China","ShipCountry":"CN","ShipCity":"Kertai","ShipName":"Weissnat Group","ShipAddress":"0 Shoshone Hill","CompanyEmail":"bdolbyp@comcast.net","CompanyAgent":"Berky Dolby","CompanyName":"Hodkiewicz-Ledner","Currency":"CNY","Notes":"scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","Department":"Toys","Website":"google.com.hk","Latitude":46.900546,"Longitude":124.214976,"ShipDate":"9/27/2017","PaymentDate":"2016-05-14 03:23:30","TimeZone":"Asia/Harbin","TotalPayment":"$327211.21","Status":2,"Type":2,"Actions":null},\n{"RecordID":27,"OrderID":"10742-8095","Country":"Philippines","ShipCountry":"PH","ShipCity":"Malinta","ShipName":"Powlowski and Sons","ShipAddress":"8569 Laurel Hill","CompanyEmail":"ccollettq@themeforest.net","CompanyAgent":"Cobbie Collett","CompanyName":"Emard Group","Currency":"PHP","Notes":"lobortis sapien sapien non mi integer ac neque duis bibendum morbi non","Department":"Electronics","Website":"newyorker.com","Latitude":14.6925451,"Longitude":120.9653066,"ShipDate":"9/20/2016","PaymentDate":"2016-11-04 21:58:05","TimeZone":"Asia/Manila","TotalPayment":"$111977.88","Status":4,"Type":3,"Actions":null},\n{"RecordID":28,"OrderID":"49288-0426","Country":"Hungary","ShipCountry":"HU","ShipCity":"Budapest","ShipName":"Bahringer-Kautzer","ShipAddress":"532 Donald Street","CompanyEmail":"ssangwiner@bizjournals.com","CompanyAgent":"Sheilakathryn Sangwine","CompanyName":"Morar, Bosco and Rosenbaum","Currency":"HUF","Notes":"in congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus","Department":"Toys","Website":"vkontakte.ru","Latitude":47.53708,"Longitude":19.127509,"ShipDate":"12/5/2017","PaymentDate":"2017-11-17 07:49:20","TimeZone":"Europe/Budapest","TotalPayment":"$808043.78","Status":2,"Type":2,"Actions":null},\n{"RecordID":29,"OrderID":"59091-2001","Country":"Netherlands","ShipCountry":"NL","ShipCity":"Arnhem","ShipName":"Kreiger, Hermiston and Maggio","ShipAddress":"395 Maple Road","CompanyEmail":"blents@goo.ne.jp","CompanyAgent":"Bernadene Lent","CompanyName":"Heathcote-Lueilwitz","Currency":"EUR","Notes":"in lectus pellentesque at nulla suspendisse potenti cras in purus eu","Department":"Computers","Website":"howstuffworks.com","Latitude":51.9489686,"Longitude":5.8564699,"ShipDate":"7/8/2016","PaymentDate":"2016-05-23 20:05:31","TimeZone":"Europe/Amsterdam","TotalPayment":"$940709.22","Status":6,"Type":2,"Actions":null},\n{"RecordID":30,"OrderID":"63629-1299","Country":"Russia","ShipCountry":"RU","ShipCity":"Naro-Fominsk","ShipName":"Klocko Inc","ShipAddress":"8 Mitchell Way","CompanyEmail":"mrivallantt@nyu.edu","CompanyAgent":"Miquela Rivallant","CompanyName":"Harber-Hyatt","Currency":"RUB","Notes":"mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis non","Department":"Health","Website":"yale.edu","Latitude":55.4211657,"Longitude":36.6585689,"ShipDate":"8/10/2017","PaymentDate":"2017-03-22 16:45:31","TimeZone":"Europe/Moscow","TotalPayment":"$1158882.77","Status":5,"Type":1,"Actions":null},\n{"RecordID":31,"OrderID":"49527-022","Country":"French Polynesia","ShipCountry":"PF","ShipCity":"Anau","ShipName":"Renner, Metz and Kuphal","ShipAddress":"3 4th Road","CompanyEmail":"epickersgillu@mapy.cz","CompanyAgent":"Erie Pickersgill","CompanyName":"Hermiston, Stanton and Weissnat","Currency":"XPF","Notes":"elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante ipsum","Department":"Movies","Website":"canalblog.com","Latitude":-17.3878955,"Longitude":-145.582949,"ShipDate":"8/10/2017","PaymentDate":"2016-01-13 22:56:10","TimeZone":"Pacific/Tahiti","TotalPayment":"$865927.89","Status":2,"Type":1,"Actions":null},\n{"RecordID":32,"OrderID":"44523-535","Country":"Argentina","ShipCountry":"AR","ShipCity":"Palpalá","ShipName":"Sanford Inc","ShipAddress":"397 Mendota Lane","CompanyEmail":"htawsev@desdev.cn","CompanyAgent":"Harriett Tawse","CompanyName":"Zboncak, Hickle and McLaughlin","Currency":"ARS","Notes":"ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta","Department":"Games","Website":"theguardian.com","Latitude":-31.4561755,"Longitude":-64.2111608,"ShipDate":"2/16/2017","PaymentDate":"2016-04-21 02:02:40","TimeZone":"America/Argentina/Jujuy","TotalPayment":"$1168618.71","Status":1,"Type":3,"Actions":null},\n{"RecordID":33,"OrderID":"63402-306","Country":"Sweden","ShipCountry":"SE","ShipCity":"Olofström","ShipName":"Zboncak Inc","ShipAddress":"248 Reindahl Alley","CompanyEmail":"rcrafterw@sina.com.cn","CompanyAgent":"Richie Crafter","CompanyName":"Larkin-Armstrong","Currency":"SEK","Notes":"sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam","Department":"Garden","Website":"barnesandnoble.com","Latitude":56.2462038,"Longitude":14.6265298,"ShipDate":"1/29/2016","PaymentDate":"2016-09-30 20:24:13","TimeZone":"Europe/Stockholm","TotalPayment":"$966796.75","Status":3,"Type":1,"Actions":null},\n{"RecordID":34,"OrderID":"63629-3798","Country":"El Salvador","ShipCountry":"SV","ShipCity":"Guaymango","ShipName":"Koelpin-Jast","ShipAddress":"62878 Maple Wood Plaza","CompanyEmail":"yjotchamx@bloglovin.com","CompanyAgent":"Yolanthe Jotcham","CompanyName":"Kohler Inc","Currency":"USD","Notes":"tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus","Department":"Baby","Website":"washington.edu","Latitude":13.748419,"Longitude":-89.8452348,"ShipDate":"11/29/2017","PaymentDate":"2016-05-26 22:12:21","TimeZone":"America/El_Salvador","TotalPayment":"$62449.09","Status":6,"Type":1,"Actions":null},\n{"RecordID":35,"OrderID":"49981-010","Country":"Philippines","ShipCountry":"PH","ShipCity":"Sindangan","ShipName":"Eichmann, Hills and McCullough","ShipAddress":"3201 Katie Street","CompanyEmail":"bwoosnamy@zdnet.com","CompanyAgent":"Barthel Woosnam","CompanyName":"Goodwin and Sons","Currency":"PHP","Notes":"felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel","Department":"Outdoors","Website":"stumbleupon.com","Latitude":8.3104933,"Longitude":122.9938347,"ShipDate":"11/27/2017","PaymentDate":"2016-01-14 10:54:05","TimeZone":"Asia/Manila","TotalPayment":"$320289.72","Status":3,"Type":2,"Actions":null},\n{"RecordID":36,"OrderID":"0023-4383","Country":"Philippines","ShipCountry":"PH","ShipCity":"Tiguha","ShipName":"Schmidt and Sons","ShipAddress":"912 Lyons Street","CompanyEmail":"crayez@kickstarter.com","CompanyAgent":"Christean Raye","CompanyName":"Witting, Lindgren and Kessler","Currency":"PHP","Notes":"non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum","Department":"Books","Website":"ft.com","Latitude":7.7151954,"Longitude":123.2089252,"ShipDate":"1/29/2017","PaymentDate":"2016-12-05 19:36:44","TimeZone":"Asia/Manila","TotalPayment":"$922800.64","Status":4,"Type":1,"Actions":null},\n{"RecordID":37,"OrderID":"50988-254","Country":"Philippines","ShipCountry":"PH","ShipCity":"Manila","ShipName":"Glover Inc","ShipAddress":"661 Mesta Crossing","CompanyEmail":"lfronzek10@addtoany.com","CompanyAgent":"Lida Fronzek","CompanyName":"Yundt-Jacobs","Currency":"PHP","Notes":"dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus","Department":"Jewelery","Website":"elegantthemes.com","Latitude":14.3641338,"Longitude":120.9314495,"ShipDate":"12/12/2016","PaymentDate":"2016-08-16 01:47:41","TimeZone":"Asia/Manila","TotalPayment":"$64883.89","Status":6,"Type":2,"Actions":null},\n{"RecordID":38,"OrderID":"68788-9924","Country":"Norway","ShipCountry":"NO","ShipCity":"Kristiansand S","ShipName":"Treutel, Hirthe and Runolfsson","ShipAddress":"2312 Upham Pass","CompanyEmail":"friehm11@army.mil","CompanyAgent":"Fax Riehm","CompanyName":"Schulist Inc","Currency":"NOK","Notes":"fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet","Department":"Computers","Website":"toplist.cz","Latitude":58.1348867,"Longitude":8.006095,"ShipDate":"9/15/2017","PaymentDate":"2016-01-08 14:30:49","TimeZone":"Europe/Oslo","TotalPayment":"$435466.56","Status":2,"Type":2,"Actions":null},\n{"RecordID":39,"OrderID":"31722-500","Country":"Philippines","ShipCountry":"PH","ShipCity":"Salcedo","ShipName":"Larson-Vandervort","ShipAddress":"8 Red Cloud Plaza","CompanyEmail":"tbowry12@statcounter.com","CompanyAgent":"Taddeusz Bowry","CompanyName":"Koelpin Inc","Currency":"PHP","Notes":"massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida","Department":"Tools","Website":"youtu.be","Latitude":14.5560877,"Longitude":121.0155081,"ShipDate":"5/4/2017","PaymentDate":"2017-04-18 17:53:19","TimeZone":"Asia/Manila","TotalPayment":"$677626.59","Status":3,"Type":1,"Actions":null},\n{"RecordID":40,"OrderID":"50436-7053","Country":"Poland","ShipCountry":"PL","ShipCity":"Iłowo -Osada","ShipName":"Batz LLC","ShipAddress":"9434 Packers Road","CompanyEmail":"kdunmuir13@ucoz.ru","CompanyAgent":"Kayley Dunmuir","CompanyName":"Lockman-Baumbach","Currency":"PLN","Notes":"faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor","Department":"Garden","Website":"theguardian.com","Latitude":53.1664955,"Longitude":20.2914434,"ShipDate":"2/5/2016","PaymentDate":"2016-04-25 10:48:48","TimeZone":"Europe/Warsaw","TotalPayment":"$123550.24","Status":4,"Type":1,"Actions":null},\n{"RecordID":41,"OrderID":"63736-027","Country":"China","ShipCountry":"CN","ShipCity":"Bazi","ShipName":"Stark-Brown","ShipAddress":"3 Gerald Park","CompanyEmail":"tlotte14@histats.com","CompanyAgent":"Tim Lotte","CompanyName":"Larson Inc","Currency":"CNY","Notes":"pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus","Department":"Garden","Website":"salon.com","Latitude":30.7959602,"Longitude":120.6060568,"ShipDate":"10/21/2016","PaymentDate":"2016-07-23 01:21:17","TimeZone":"Asia/Shanghai","TotalPayment":"$326161.60","Status":4,"Type":2,"Actions":null},\n{"RecordID":42,"OrderID":"54575-228","Country":"China","ShipCountry":"CN","ShipCity":"Dongyang","ShipName":"Effertz LLC","ShipAddress":"7311 Hollow Ridge Trail","CompanyEmail":"smcintee15@google.pl","CompanyAgent":"Sterne McIntee","CompanyName":"Robel, Hegmann and Grimes","Currency":"CNY","Notes":"condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar","Department":"Garden","Website":"nbcnews.com","Latitude":29.289648,"Longitude":120.241565,"ShipDate":"11/13/2017","PaymentDate":"2017-10-01 15:42:11","TimeZone":"Asia/Chongqing","TotalPayment":"$875336.96","Status":1,"Type":1,"Actions":null},\n{"RecordID":43,"OrderID":"52125-370","Country":"China","ShipCountry":"CN","ShipCity":"Changzheng","ShipName":"Kozey, Roob and Howell","ShipAddress":"3591 Oxford Plaza","CompanyEmail":"tepperson16@dagondesign.com","CompanyAgent":"Thedrick Epperson","CompanyName":"Armstrong, Shields and Osinski","Currency":"CNY","Notes":"vitae nisi nam ultrices libero non mattis pulvinar nulla pede","Department":"Movies","Website":"cloudflare.com","Latitude":31.23285,"Longitude":121.467218,"ShipDate":"3/25/2016","PaymentDate":"2016-04-05 06:38:33","TimeZone":"Asia/Chongqing","TotalPayment":"$89415.23","Status":5,"Type":1,"Actions":null},\n{"RecordID":44,"OrderID":"36987-3290","Country":"South Africa","ShipCountry":"ZA","ShipCity":"Tugela Ferry","ShipName":"Ward, Little and Flatley","ShipAddress":"7627 Sycamore Crossing","CompanyEmail":"pilsley17@nba.com","CompanyAgent":"Patty Ilsley","CompanyName":"Larson-Kunze","Currency":"ZAR","Notes":"nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula","Department":"Health","Website":"wordpress.com","Latitude":-28.7415512,"Longitude":30.461686,"ShipDate":"7/9/2016","PaymentDate":"2017-08-08 07:23:41","TimeZone":"Africa/Johannesburg","TotalPayment":"$12440.25","Status":3,"Type":2,"Actions":null},\n{"RecordID":45,"OrderID":"68737-236","Country":"Russia","ShipCountry":"RU","ShipCity":"Omutninsk","ShipName":"Wisoky-Huels","ShipAddress":"5647 Vahlen Way","CompanyEmail":"apolding18@domainmarket.com","CompanyAgent":"Amandy Polding","CompanyName":"Cronin-Purdy","Currency":"RUB","Notes":"ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque","Department":"Beauty","Website":"dyndns.org","Latitude":58.6772898,"Longitude":52.190142,"ShipDate":"5/31/2016","PaymentDate":"2016-02-19 06:37:37","TimeZone":"Europe/Volgograd","TotalPayment":"$107259.06","Status":2,"Type":1,"Actions":null},\n{"RecordID":46,"OrderID":"54868-5511","Country":"Portugal","ShipCountry":"PT","ShipCity":"Cabeça Gorda","ShipName":"Kilback Group","ShipAddress":"526 Springview Crossing","CompanyEmail":"eroset19@businessweek.com","CompanyAgent":"Estella Roset","CompanyName":"Skiles-McCullough","Currency":"EUR","Notes":"molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget nunc","Department":"Books","Website":"squarespace.com","Latitude":39.1955731,"Longitude":-9.263539,"ShipDate":"5/16/2017","PaymentDate":"2017-06-16 22:18:36","TimeZone":"Europe/Lisbon","TotalPayment":"$607759.63","Status":2,"Type":1,"Actions":null},\n{"RecordID":47,"OrderID":"51389-112","Country":"Poland","ShipCountry":"PL","ShipCity":"Lubenia","ShipName":"Pacocha-Wolff","ShipAddress":"4 Reindahl Hill","CompanyEmail":"ssanderson1a@sciencedaily.com","CompanyAgent":"Stillman Sanderson","CompanyName":"Kub LLC","Currency":"PLN","Notes":"luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien","Department":"Music","Website":"istockphoto.com","Latitude":49.9409133,"Longitude":21.9374619,"ShipDate":"9/5/2016","PaymentDate":"2016-11-01 20:40:41","TimeZone":"Europe/Warsaw","TotalPayment":"$940344.95","Status":5,"Type":2,"Actions":null},\n{"RecordID":48,"OrderID":"53346-1330","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Wonocolo","ShipName":"Hudson and Sons","ShipAddress":"523 Namekagon Trail","CompanyEmail":"lhoyland1b@sphinn.com","CompanyAgent":"Lynn Hoyland","CompanyName":"Mraz-Spinka","Currency":"IDR","Notes":"volutpat convallis morbi odio odio elementum eu interdum eu tincidunt","Department":"Industrial","Website":"examiner.com","Latitude":-7.3198199,"Longitude":112.7420274,"ShipDate":"5/8/2016","PaymentDate":"2017-12-24 00:13:05","TimeZone":"Asia/Jakarta","TotalPayment":"$612744.04","Status":3,"Type":2,"Actions":null},\n{"RecordID":49,"OrderID":"11410-803","Country":"China","ShipCountry":"CN","ShipCity":"Baimajing","ShipName":"Reynolds, Botsford and MacGyver","ShipAddress":"6 Summit Road","CompanyEmail":"estansfield1c@webs.com","CompanyAgent":"Emmalee Stansfield","CompanyName":"Cartwright-Cole","Currency":"CNY","Notes":"posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam","Department":"Home","Website":"bbc.co.uk","Latitude":19.696407,"Longitude":109.218734,"ShipDate":"12/24/2017","PaymentDate":"2016-03-20 19:34:44","TimeZone":"Asia/Chongqing","TotalPayment":"$427176.05","Status":3,"Type":3,"Actions":null},\n{"RecordID":50,"OrderID":"54473-254","Country":"Australia","ShipCountry":"AU","ShipCity":"Sydney","ShipName":"Schroeder-Schulist","ShipAddress":"84 2nd Place","CompanyEmail":"hleyban1d@cocolog-nifty.com","CompanyAgent":"Henrietta Leyban","CompanyName":"Ankunding-Hudson","Currency":"AUD","Notes":"potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur","Department":"Health","Website":"pinterest.com","Latitude":-33.8688197,"Longitude":151.2092955,"ShipDate":"9/6/2016","PaymentDate":"2017-07-30 00:54:38","TimeZone":"Australia/Sydney","TotalPayment":"$269139.08","Status":2,"Type":1,"Actions":null},\n{"RecordID":51,"OrderID":"49967-106","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Margasari","ShipName":"Watsica and Sons","ShipAddress":"2004 Scofield Drive","CompanyEmail":"uruddlesden1e@meetup.com","CompanyAgent":"Ulrike Ruddlesden","CompanyName":"Koch and Sons","Currency":"IDR","Notes":"dui maecenas tristique est et tempus semper est quam pharetra","Department":"Baby","Website":"angelfire.com","Latitude":-7.0976672,"Longitude":109.0215438,"ShipDate":"12/6/2017","PaymentDate":"2016-03-24 02:22:17","TimeZone":"Asia/Jakarta","TotalPayment":"$511041.28","Status":4,"Type":2,"Actions":null},\n{"RecordID":52,"OrderID":"65649-501","Country":"Philippines","ShipCountry":"PH","ShipCity":"Buenavista","ShipName":"Larkin Inc","ShipAddress":"7 Maple Trail","CompanyEmail":"wmancktelow1f@princeton.edu","CompanyAgent":"Wilone Mancktelow","CompanyName":"Marvin Group","Currency":"PHP","Notes":"erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in","Department":"Health","Website":"tamu.edu","Latitude":8.972681,"Longitude":125.408732,"ShipDate":"8/19/2016","PaymentDate":"2017-06-29 22:18:35","TimeZone":"Asia/Manila","TotalPayment":"$945403.35","Status":5,"Type":2,"Actions":null},\n{"RecordID":53,"OrderID":"11695-1405","Country":"Albania","ShipCountry":"AL","ShipCity":"Rrasa e Sipërme","ShipName":"Smith, Kovacek and Bogan","ShipAddress":"7633 Towne Street","CompanyEmail":"dlees1g@barnesandnoble.com","CompanyAgent":"Deidre Lees","CompanyName":"Sanford, Hoeger and Stanton","Currency":"ALL","Notes":"sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor","Department":"Grocery","Website":"nationalgeographic.com","Latitude":"40.96778","Longitude":"19.82111","ShipDate":"3/14/2017","PaymentDate":"2016-10-10 16:32:23","TimeZone":"Europe/Tirane","TotalPayment":"$455561.49","Status":2,"Type":2,"Actions":null},\n{"RecordID":54,"OrderID":"68788-6760","Country":"China","ShipCountry":"CN","ShipCity":"Xiaping","ShipName":"Dickinson Group","ShipAddress":"2985 Merry Plaza","CompanyEmail":"mbourne1h@macromedia.com","CompanyAgent":"Malorie Bourne","CompanyName":"Blick-Farrell","Currency":"CNY","Notes":"orci vehicula condimentum curabitur in libero ut massa volutpat convallis","Department":"Computers","Website":"1und1.de","Latitude":27.568278,"Longitude":117.562238,"ShipDate":"8/13/2017","PaymentDate":"2016-09-11 19:00:24","TimeZone":"Asia/Chongqing","TotalPayment":"$147162.27","Status":3,"Type":2,"Actions":null},\n{"RecordID":55,"OrderID":"0268-1441","Country":"China","ShipCountry":"CN","ShipCity":"Zhangjiawan","ShipName":"Welch-Gislason","ShipAddress":"31 Mcbride Place","CompanyEmail":"hgammie1i@globo.com","CompanyAgent":"Horton Gammie","CompanyName":"Hegmann-Hettinger","Currency":"CNY","Notes":"rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc","Department":"Music","Website":"yandex.ru","Latitude":31.686188,"Longitude":104.969819,"ShipDate":"5/27/2016","PaymentDate":"2016-08-19 17:30:11","TimeZone":"Asia/Harbin","TotalPayment":"$974736.80","Status":4,"Type":2,"Actions":null},\n{"RecordID":56,"OrderID":"62032-524","Country":"Israel","ShipCountry":"IL","ShipCity":"Ramat Gan","ShipName":"Stokes-Homenick","ShipAddress":"95694 Clove Crossing","CompanyEmail":"fsante1j@php.net","CompanyAgent":"Frannie Sante","CompanyName":"Kerluke, Witting and Zboncak","Currency":"ILS","Notes":"gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam","Department":"Movies","Website":"deliciousdays.com","Latitude":32.068424,"Longitude":34.824785,"ShipDate":"5/6/2017","PaymentDate":"2016-10-29 15:41:43","TimeZone":"Asia/Jerusalem","TotalPayment":"$939821.62","Status":6,"Type":2,"Actions":null},\n{"RecordID":57,"OrderID":"42291-218","Country":"Yemen","ShipCountry":"YE","ShipCity":"Raydah","ShipName":"Pfannerstill LLC","ShipAddress":"4867 Warner Lane","CompanyEmail":"onazer1k@github.com","CompanyAgent":"Orlando Nazer","CompanyName":"Barton-Mann","Currency":"YER","Notes":"consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo","Department":"Automotive","Website":"nytimes.com","Latitude":15.8161032,"Longitude":44.041335,"ShipDate":"12/6/2017","PaymentDate":"2017-07-15 23:15:32","TimeZone":"Asia/Aden","TotalPayment":"$971056.71","Status":1,"Type":1,"Actions":null},\n{"RecordID":58,"OrderID":"0536-3233","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Krajan Srigonco","ShipName":"Torphy, Bosco and Ortiz","ShipAddress":"8379 Shopko Circle","CompanyEmail":"platliff1l@theatlantic.com","CompanyAgent":"Pavel Latliff","CompanyName":"Feil, Mante and Becker","Currency":"IDR","Notes":"sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien","Department":"Garden","Website":"angelfire.com","Latitude":"-8.3418","Longitude":"112.5618","ShipDate":"3/10/2016","PaymentDate":"2017-03-06 12:26:09","TimeZone":"Asia/Jakarta","TotalPayment":"$1176948.84","Status":2,"Type":1,"Actions":null},\n{"RecordID":59,"OrderID":"0143-1265","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Panggungasri","ShipName":"Schiller LLC","ShipAddress":"75 Barnett Crossing","CompanyEmail":"bpackwood1m@salon.com","CompanyAgent":"Benetta Packwood","CompanyName":"Zboncak-Hettinger","Currency":"IDR","Notes":"lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue","Department":"Music","Website":"issuu.com","Latitude":-8.2182795,"Longitude":112.2950314,"ShipDate":"7/7/2017","PaymentDate":"2017-09-23 10:42:52","TimeZone":"Asia/Jakarta","TotalPayment":"$214315.57","Status":3,"Type":2,"Actions":null},\n{"RecordID":60,"OrderID":"64980-119","Country":"Macedonia","ShipCountry":"MK","ShipCity":"Јегуновце","ShipName":"Hyatt, Kovacek and Schulist","ShipAddress":"1562 Mesta Center","CompanyEmail":"mcolliar1n@hugedomains.com","CompanyAgent":"Merilee Colliar","CompanyName":"Moore, Toy and McCullough","Currency":"MKD","Notes":"turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi","Department":"Tools","Website":"craigslist.org","Latitude":42.0733374,"Longitude":21.1202878,"ShipDate":"2/3/2017","PaymentDate":"2016-05-12 12:43:48","TimeZone":"Europe/Skopje","TotalPayment":"$526035.07","Status":2,"Type":2,"Actions":null},\n{"RecordID":61,"OrderID":"0363-0198","Country":"Philippines","ShipCountry":"PH","ShipCity":"Nagrumbuan","ShipName":"Hills-Mayert","ShipAddress":"505 Cardinal Drive","CompanyEmail":"epoyner1o@zimbio.com","CompanyAgent":"Ennis Poyner","CompanyName":"Simonis and Sons","Currency":"PHP","Notes":"odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque","Department":"Tools","Website":"mayoclinic.com","Latitude":16.8991985,"Longitude":121.7075195,"ShipDate":"8/30/2017","PaymentDate":"2017-04-05 11:19:31","TimeZone":"Asia/Manila","TotalPayment":"$925471.01","Status":5,"Type":1,"Actions":null},\n{"RecordID":62,"OrderID":"65862-142","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Leuwipicung","ShipName":"Schultz-Cronin","ShipAddress":"306 Beilfuss Parkway","CompanyEmail":"apetherick1p@hatena.ne.jp","CompanyAgent":"Ailyn Petherick","CompanyName":"Dach-Ernser","Currency":"IDR","Notes":"sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus","Department":"Garden","Website":"house.gov","Latitude":-7.71725,"Longitude":108.07666,"ShipDate":"3/4/2016","PaymentDate":"2017-01-12 13:27:43","TimeZone":"Asia/Jakarta","TotalPayment":"$300684.83","Status":6,"Type":1,"Actions":null},\n{"RecordID":63,"OrderID":"67510-1561","Country":"Peru","ShipCountry":"PE","ShipCity":"Patambuco","ShipName":"Crist and Sons","ShipAddress":"90561 Superior Parkway","CompanyEmail":"sgasking1q@sun.com","CompanyAgent":"Saba Gasking","CompanyName":"Wisozk-Ratke","Currency":"PEN","Notes":"leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede","Department":"Jewelery","Website":"apple.com","Latitude":-14.27079,"Longitude":-69.567879,"ShipDate":"6/27/2017","PaymentDate":"2017-02-14 05:11:52","TimeZone":"America/Lima","TotalPayment":"$296798.64","Status":5,"Type":2,"Actions":null},\n{"RecordID":64,"OrderID":"67877-169","Country":"Brazil","ShipCountry":"BR","ShipCity":"Sananduva","ShipName":"Koss, Yost and Wintheiser","ShipAddress":"76 Di Loreto Place","CompanyEmail":"kmatitiaho1r@networkadvertising.org","CompanyAgent":"Kelly Matitiaho","CompanyName":"Schuster, Flatley and Ledner","Currency":"BRL","Notes":"hendrerit at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget orci","Department":"Automotive","Website":"squidoo.com","Latitude":-27.950568,"Longitude":-51.8148609,"ShipDate":"9/21/2017","PaymentDate":"2016-04-14 15:50:12","TimeZone":"America/Sao_Paulo","TotalPayment":"$683140.08","Status":4,"Type":2,"Actions":null},\n{"RecordID":65,"OrderID":"13537-402","Country":"Uganda","ShipCountry":"UG","ShipCity":"Pader Palwo","ShipName":"Konopelski, Goyette and Borer","ShipAddress":"34 Charing Cross Junction","CompanyEmail":"dgasperi1s@newsvine.com","CompanyAgent":"Daron Gasperi","CompanyName":"Kuphal Inc","Currency":"UGX","Notes":"curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam","Department":"Electronics","Website":"com.com","Latitude":2.7798518,"Longitude":33.0057261,"ShipDate":"7/8/2016","PaymentDate":"2016-12-02 10:21:48","TimeZone":"Africa/Kampala","TotalPayment":"$245786.01","Status":2,"Type":2,"Actions":null},\n{"RecordID":66,"OrderID":"48951-8237","Country":"Portugal","ShipCountry":"PT","ShipCity":"Portela","ShipName":"Marks-Batz","ShipAddress":"114 Barnett Avenue","CompanyEmail":"meustes1t@nsw.gov.au","CompanyAgent":"Marketa Eustes","CompanyName":"Kautzer Inc","Currency":"EUR","Notes":"proin leo odio porttitor id consequat in consequat ut nulla sed accumsan","Department":"Outdoors","Website":"paypal.com","Latitude":41.1604713,"Longitude":-7.7452871,"ShipDate":"12/6/2016","PaymentDate":"2016-01-03 07:39:20","TimeZone":"Europe/Lisbon","TotalPayment":"$148246.67","Status":1,"Type":1,"Actions":null},\n{"RecordID":67,"OrderID":"36987-3279","Country":"Spain","ShipCountry":"ES","ShipCity":"Badajoz","ShipName":"Osinski, Nitzsche and Schaden","ShipAddress":"6 Commercial Center","CompanyEmail":"bshowl1u@lycos.com","CompanyAgent":"Bernita Showl","CompanyName":"Jacobson-Brakus","Currency":"EUR","Notes":"odio porttitor id consequat in consequat ut nulla sed accumsan felis ut at dolor quis odio consequat varius","Department":"Movies","Website":"wikimedia.org","Latitude":38.8794495,"Longitude":-6.9706535,"ShipDate":"11/2/2016","PaymentDate":"2016-09-19 10:42:38","TimeZone":"Europe/Madrid","TotalPayment":"$1145811.38","Status":2,"Type":3,"Actions":null},\n{"RecordID":68,"OrderID":"36987-3092","Country":"Belarus","ShipCountry":"BY","ShipCity":"Hlybokaye","ShipName":"Fahey-Jones","ShipAddress":"43 Scott Lane","CompanyEmail":"dohoey1v@sitemeter.com","CompanyAgent":"Danielle O\'Hoey","CompanyName":"Sipes, Schaden and Larkin","Currency":"BYR","Notes":"nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi","Department":"Toys","Website":"joomla.org","Latitude":55.1391321,"Longitude":27.6842905,"ShipDate":"4/12/2017","PaymentDate":"2017-01-03 22:32:16","TimeZone":"Europe/Minsk","TotalPayment":"$1075453.72","Status":3,"Type":3,"Actions":null},\n{"RecordID":69,"OrderID":"17271-503","Country":"Slovenia","ShipCountry":"SI","ShipCity":"Slovenska Bistrica","ShipName":"Padberg, West and Hoeger","ShipAddress":"48462 Jackson Avenue","CompanyEmail":"sstanistrete1w@samsung.com","CompanyAgent":"Susana Stanistrete","CompanyName":"Reinger Inc","Currency":"EUR","Notes":"tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean","Department":"Clothing","Website":"people.com.cn","Latitude":46.3919813,"Longitude":15.5727869,"ShipDate":"6/26/2017","PaymentDate":"2016-10-01 11:26:13","TimeZone":"Europe/Ljubljana","TotalPayment":"$1113114.34","Status":4,"Type":1,"Actions":null},\n{"RecordID":70,"OrderID":"49288-0206","Country":"France","ShipCountry":"FR","ShipCity":"Aix-en-Provence","ShipName":"Johnson, Beahan and McCullough","ShipAddress":"8 Bartillon Pass","CompanyEmail":"domrod1x@ihg.com","CompanyAgent":"Denys Omrod","CompanyName":"Dicki and Sons","Currency":"EUR","Notes":"vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque quam","Department":"Electronics","Website":"lulu.com","Latitude":43.5190858,"Longitude":5.4431946,"ShipDate":"11/18/2017","PaymentDate":"2016-07-28 12:41:30","TimeZone":"Europe/Paris","TotalPayment":"$264342.99","Status":6,"Type":3,"Actions":null},\n{"RecordID":71,"OrderID":"55312-118","Country":"Belarus","ShipCountry":"BY","ShipCity":"Pyetrykaw","ShipName":"Howell, Swaniawski and Mosciski","ShipAddress":"16514 Glendale Road","CompanyEmail":"pmallall1y@cnet.com","CompanyAgent":"Phillipe Mallall","CompanyName":"Jacobs, Blanda and Dickinson","Currency":"BYR","Notes":"quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst","Department":"Movies","Website":"desdev.cn","Latitude":52.1267722,"Longitude":28.4919521,"ShipDate":"10/13/2017","PaymentDate":"2017-06-17 12:58:28","TimeZone":"Europe/Minsk","TotalPayment":"$366433.13","Status":3,"Type":1,"Actions":null},\n{"RecordID":72,"OrderID":"49035-111","Country":"Brazil","ShipCountry":"BR","ShipCity":"Caieiras","ShipName":"Skiles, Mayert and Huels","ShipAddress":"551 Briar Crest Drive","CompanyEmail":"fmantha1z@usatoday.com","CompanyAgent":"Flinn Mantha","CompanyName":"Zboncak-Dooley","Currency":"BRL","Notes":"justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices","Department":"Beauty","Website":"wired.com","Latitude":-23.3711864,"Longitude":-46.7575221,"ShipDate":"1/18/2016","PaymentDate":"2016-06-28 10:50:05","TimeZone":"America/Sao_Paulo","TotalPayment":"$623396.37","Status":2,"Type":3,"Actions":null},\n{"RecordID":73,"OrderID":"33261-888","Country":"China","ShipCountry":"CN","ShipCity":"Yicheng","ShipName":"Boyer, Koepp and O\'Hara","ShipAddress":"1 Blue Bill Park Way","CompanyEmail":"mgange20@wix.com","CompanyAgent":"Melodie Gange","CompanyName":"Lemke Inc","Currency":"CNY","Notes":"eros elementum pellentesque quisque porta volutpat erat quisque erat eros","Department":"Garden","Website":"yellowpages.com","Latitude":31.719806,"Longitude":112.257788,"ShipDate":"11/24/2016","PaymentDate":"2017-06-17 19:57:08","TimeZone":"Asia/Chongqing","TotalPayment":"$668062.14","Status":5,"Type":2,"Actions":null},\n{"RecordID":74,"OrderID":"60709-105","Country":"Philippines","ShipCountry":"PH","ShipCity":"Babug","ShipName":"Muller-Rosenbaum","ShipAddress":"69 Northview Parkway","CompanyEmail":"rdabner21@indiatimes.com","CompanyAgent":"Randi Dabner","CompanyName":"Schimmel, Mohr and Kutch","Currency":"PHP","Notes":"eu sapien cursus vestibulum proin eu mi nulla ac enim in","Department":"Sports","Website":"wikimedia.org","Latitude":14.8744012,"Longitude":120.8130073,"ShipDate":"5/21/2017","PaymentDate":"2017-09-15 19:14:19","TimeZone":"Asia/Manila","TotalPayment":"$990135.61","Status":5,"Type":1,"Actions":null},\n{"RecordID":75,"OrderID":"63629-2679","Country":"Finland","ShipCountry":"FI","ShipCity":"Koski Tl","ShipName":"Crona, Halvorson and Larkin","ShipAddress":"0 Vernon Center","CompanyEmail":"ggabbat22@newsvine.com","CompanyAgent":"Ginnie Gabbat","CompanyName":"Bergnaum-Kozey","Currency":"EUR","Notes":"donec quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio","Department":"Jewelery","Website":"newyorker.com","Latitude":60.6569706,"Longitude":23.1385333,"ShipDate":"11/20/2016","PaymentDate":"2017-06-21 16:16:24","TimeZone":"Europe/Helsinki","TotalPayment":"$232536.81","Status":4,"Type":1,"Actions":null},\n{"RecordID":76,"OrderID":"36800-277","Country":"Serbia","ShipCountry":"RS","ShipCity":"Radenka","ShipName":"Hahn LLC","ShipAddress":"0 Erie Plaza","CompanyEmail":"jadnett23@about.com","CompanyAgent":"Josi Adnett","CompanyName":"Schulist-Yost","Currency":"RSD","Notes":"ipsum dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non","Department":"Computers","Website":"google.de","Latitude":44.5847556,"Longitude":21.7503934,"ShipDate":"9/19/2017","PaymentDate":"2017-11-09 17:37:52","TimeZone":"Europe/Belgrade","TotalPayment":"$830071.82","Status":1,"Type":3,"Actions":null},\n{"RecordID":77,"OrderID":"52125-910","Country":"Armenia","ShipCountry":"AM","ShipCity":"Gogaran","ShipName":"Will-Dooley","ShipAddress":"57 Arapahoe Way","CompanyEmail":"nyerill24@rediff.com","CompanyAgent":"Nathanial Yerill","CompanyName":"Rosenbaum Inc","Currency":"AMD","Notes":"volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus","Department":"Baby","Website":"webmd.com","Latitude":40.894048,"Longitude":44.1992229,"ShipDate":"5/24/2017","PaymentDate":"2017-04-15 08:51:50","TimeZone":"Asia/Yerevan","TotalPayment":"$97687.69","Status":5,"Type":3,"Actions":null},\n{"RecordID":78,"OrderID":"24236-120","Country":"France","ShipCountry":"FR","ShipCity":"Mâcon","ShipName":"Okuneva, Metz and Stamm","ShipAddress":"40389 Buell Alley","CompanyEmail":"pbrewin25@timesonline.co.uk","CompanyAgent":"Priscilla Brewin","CompanyName":"Witting-Von","Currency":"EUR","Notes":"sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus","Department":"Movies","Website":"hp.com","Latitude":46.2993504,"Longitude":4.8265786,"ShipDate":"2/5/2016","PaymentDate":"2017-07-02 14:21:54","TimeZone":"Europe/Paris","TotalPayment":"$892539.18","Status":6,"Type":1,"Actions":null},\n{"RecordID":79,"OrderID":"76173-1008","Country":"Pakistan","ShipCountry":"PK","ShipCity":"Kandhkot","ShipName":"Quigley-Halvorson","ShipAddress":"9 1st Alley","CompanyEmail":"ballard26@google.ca","CompanyAgent":"Barbabas Allard","CompanyName":"Kunde-Veum","Currency":"PKR","Notes":"cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros","Department":"Music","Website":"trellian.com","Latitude":28.1771009,"Longitude":68.7257945,"ShipDate":"1/29/2016","PaymentDate":"2017-08-08 19:08:11","TimeZone":"Asia/Karachi","TotalPayment":"$64027.72","Status":6,"Type":2,"Actions":null},\n{"RecordID":80,"OrderID":"41163-146","Country":"China","ShipCountry":"CN","ShipCity":"Dadianzi","ShipName":"Hilll Inc","ShipAddress":"4569 Heath Street","CompanyEmail":"mcassie27@canalblog.com","CompanyAgent":"Marshall Cassie","CompanyName":"Brown-Hudson","Currency":"CNY","Notes":"ut erat id mauris vulputate elementum nullam varius nulla facilisi cras","Department":"Toys","Website":"tripadvisor.com","Latitude":43.661922,"Longitude":128.500964,"ShipDate":"3/5/2016","PaymentDate":"2016-02-25 11:11:16","TimeZone":"Asia/Harbin","TotalPayment":"$620902.30","Status":2,"Type":2,"Actions":null},\n{"RecordID":81,"OrderID":"68084-198","Country":"Philippines","ShipCountry":"PH","ShipCity":"Pagatin","ShipName":"Nikolaus, Zulauf and Gutkowski","ShipAddress":"70 Coolidge Hill","CompanyEmail":"wferneley28@studiopress.com","CompanyAgent":"William Ferneley","CompanyName":"Adams, Macejkovic and Little","Currency":"PHP","Notes":"sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor","Department":"Jewelery","Website":"netvibes.com","Latitude":6.7640051,"Longitude":124.3754414,"ShipDate":"10/4/2017","PaymentDate":"2016-10-19 03:43:03","TimeZone":"Asia/Manila","TotalPayment":"$33879.28","Status":2,"Type":3,"Actions":null},\n{"RecordID":82,"OrderID":"60512-1043","Country":"Portugal","ShipCountry":"PT","ShipCity":"Cimo de Vila","ShipName":"Cole-Daniel","ShipAddress":"08329 Marcy Trail","CompanyEmail":"jjallin29@latimes.com","CompanyAgent":"Josy Jallin","CompanyName":"Osinski LLC","Currency":"EUR","Notes":"pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien","Department":"Grocery","Website":"imgur.com","Latitude":41.3389801,"Longitude":-8.1591621,"ShipDate":"8/23/2017","PaymentDate":"2016-11-17 23:27:10","TimeZone":"Europe/Lisbon","TotalPayment":"$45465.01","Status":5,"Type":1,"Actions":null},\n{"RecordID":83,"OrderID":"21695-139","Country":"Slovenia","ShipCountry":"SI","ShipCity":"Kobarid","ShipName":"Wuckert-Corkery","ShipAddress":"9576 Russell Alley","CompanyEmail":"tbuxton2a@seesaa.net","CompanyAgent":"Tomasine Buxton","CompanyName":"Schaefer-Smith","Currency":"EUR","Notes":"in faucibus orci luctus et ultrices posuere cubilia curae duis","Department":"Books","Website":"fda.gov","Latitude":46.2476549,"Longitude":13.5791749,"ShipDate":"4/27/2017","PaymentDate":"2016-02-14 15:10:51","TimeZone":"Europe/Rome","TotalPayment":"$271185.36","Status":3,"Type":3,"Actions":null},\n{"RecordID":84,"OrderID":"0228-3003","Country":"Dominican Republic","ShipCountry":"DO","ShipCity":"Bajos de Haina","ShipName":"Grady-Connelly","ShipAddress":"2079 Larry Way","CompanyEmail":"cpaskerful2b@i2i.jp","CompanyAgent":"Cairistiona Paskerful","CompanyName":"Wiegand and Sons","Currency":"DOP","Notes":"habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo","Department":"Computers","Website":"china.com.cn","Latitude":18.4091399,"Longitude":-70.031039,"ShipDate":"11/14/2016","PaymentDate":"2017-11-01 16:40:06","TimeZone":"America/Santo_Domingo","TotalPayment":"$612602.70","Status":2,"Type":1,"Actions":null},\n{"RecordID":85,"OrderID":"36800-124","Country":"Mexico","ShipCountry":"MX","ShipCity":"El Rosario","ShipName":"Rogahn Group","ShipAddress":"5332 Cambridge Way","CompanyEmail":"gboggis2c@sbwire.com","CompanyAgent":"Godwin Boggis","CompanyName":"Cartwright, Mante and Kris","Currency":"MXN","Notes":"ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur","Department":"Automotive","Website":"flickr.com","Latitude":30.059549,"Longitude":-115.725753,"ShipDate":"1/13/2016","PaymentDate":"2016-01-24 18:48:06","TimeZone":"America/Mexico_City","TotalPayment":"$1014910.05","Status":5,"Type":2,"Actions":null},\n{"RecordID":86,"OrderID":"59746-175","Country":"Philippines","ShipCountry":"PH","ShipCity":"Concepcion","ShipName":"Tromp, Wisozk and Stiedemann","ShipAddress":"74705 Oakridge Point","CompanyEmail":"khayzer2d@marriott.com","CompanyAgent":"Kirbie Hayzer","CompanyName":"Nicolas-Bayer","Currency":"PHP","Notes":"commodo vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing","Department":"Computers","Website":"issuu.com","Latitude":14.6688068,"Longitude":121.1138058,"ShipDate":"5/20/2016","PaymentDate":"2017-03-14 05:05:26","TimeZone":"Asia/Manila","TotalPayment":"$201601.94","Status":2,"Type":1,"Actions":null},\n{"RecordID":87,"OrderID":"0268-1481","Country":"Palestinian Territory","ShipCountry":"PS","ShipCity":"‘Aşīrah al Qiblīyah","ShipName":"Morissette Inc","ShipAddress":"4339 Armistice Circle","CompanyEmail":"cgresley2e@wsj.com","CompanyAgent":"Cherlyn Gresley","CompanyName":"Langosh, Kris and Ernser","Currency":"ILS","Notes":"sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel","Department":"Jewelery","Website":"google.co.uk","Latitude":"32.17842","Longitude":"35.21569","ShipDate":"4/2/2016","PaymentDate":"2017-01-21 06:18:17","TimeZone":"Asia/Hebron","TotalPayment":"$435115.69","Status":3,"Type":3,"Actions":null},\n{"RecordID":88,"OrderID":"58411-157","Country":"China","ShipCountry":"CN","ShipCity":"Baisha","ShipName":"Morissette-Schoen","ShipAddress":"2 Menomonie Terrace","CompanyEmail":"hshorto2f@imdb.com","CompanyAgent":"Horatio Shorto","CompanyName":"Lueilwitz-Cole","Currency":"CNY","Notes":"vestibulum velit id pretium iaculis diam erat fermentum justo nec","Department":"Sports","Website":"about.me","Latitude":26.641315,"Longitude":100.222545,"ShipDate":"9/11/2017","PaymentDate":"2017-03-30 06:17:36","TimeZone":"Asia/Chongqing","TotalPayment":"$428954.11","Status":1,"Type":1,"Actions":null},\n{"RecordID":89,"OrderID":"54569-6438","Country":"Portugal","ShipCountry":"PT","ShipCity":"Brejieira","ShipName":"Nikolaus-Lesch","ShipAddress":"1 Union Park","CompanyEmail":"lcrayden2g@multiply.com","CompanyAgent":"Lorrin Crayden","CompanyName":"Price Group","Currency":"EUR","Notes":"ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et","Department":"Industrial","Website":"csmonitor.com","Latitude":39.764261,"Longitude":-8.7386338,"ShipDate":"9/17/2016","PaymentDate":"2017-05-24 15:56:55","TimeZone":"Europe/Lisbon","TotalPayment":"$101625.67","Status":3,"Type":3,"Actions":null},\n{"RecordID":90,"OrderID":"64720-141","Country":"China","ShipCountry":"CN","ShipCity":"Xiangtan","ShipName":"Wilderman and Sons","ShipAddress":"54779 Talisman Pass","CompanyEmail":"mlilburn2h@fotki.com","CompanyAgent":"Marci Lilburn","CompanyName":"Hackett-Olson","Currency":"CNY","Notes":"hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante","Department":"Electronics","Website":"microsoft.com","Latitude":27.829795,"Longitude":112.944026,"ShipDate":"7/2/2017","PaymentDate":"2016-11-02 16:08:14","TimeZone":"Asia/Chongqing","TotalPayment":"$453268.63","Status":5,"Type":2,"Actions":null},\n{"RecordID":91,"OrderID":"53145-059","Country":"Brazil","ShipCountry":"BR","ShipCity":"Penedo","ShipName":"Torp, Brekke and Mitchell","ShipAddress":"994 Heffernan Alley","CompanyEmail":"gsoaper2i@dailymotion.com","CompanyAgent":"Giavani Soaper","CompanyName":"Pfeffer, Harber and Hintz","Currency":"BRL","Notes":"et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor","Department":"Electronics","Website":"prnewswire.com","Latitude":-10.2735517,"Longitude":-36.5536172,"ShipDate":"6/26/2017","PaymentDate":"2017-08-01 21:21:10","TimeZone":"America/Maceio","TotalPayment":"$461213.42","Status":2,"Type":1,"Actions":null},\n{"RecordID":92,"OrderID":"57520-0396","Country":"China","ShipCountry":"CN","ShipCity":"Wanshi","ShipName":"Lockman-Davis","ShipAddress":"75440 Loftsgordon Avenue","CompanyEmail":"kgowenlock2j@a8.net","CompanyAgent":"Karine Gowenlock","CompanyName":"Kirlin, Goldner and Upton","Currency":"CNY","Notes":"posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed","Department":"Kids","Website":"behance.net","Latitude":31.471686,"Longitude":119.934764,"ShipDate":"9/11/2017","PaymentDate":"2016-05-06 03:36:46","TimeZone":"Asia/Shanghai","TotalPayment":"$290389.01","Status":5,"Type":3,"Actions":null},\n{"RecordID":93,"OrderID":"24236-184","Country":"Azerbaijan","ShipCountry":"AZ","ShipCity":"Lökbatan","ShipName":"Morissette-Gislason","ShipAddress":"8338 Saint Paul Plaza","CompanyEmail":"tsandon2k@trellian.com","CompanyAgent":"Tallie Sandon","CompanyName":"Herman-Erdman","Currency":"AZN","Notes":"at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci","Department":"Games","Website":"ebay.co.uk","Latitude":40.3281802,"Longitude":49.7355969,"ShipDate":"9/16/2016","PaymentDate":"2016-12-24 08:27:33","TimeZone":"Asia/Baku","TotalPayment":"$525119.41","Status":3,"Type":1,"Actions":null},\n{"RecordID":94,"OrderID":"11822-9854","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Pasirpanjang","ShipName":"Dietrich-Langworth","ShipAddress":"5 Hollow Ridge Plaza","CompanyEmail":"mtrayhorn2l@sciencedirect.com","CompanyAgent":"Marcos Trayhorn","CompanyName":"Pacocha-Kling","Currency":"IDR","Notes":"justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est","Department":"Sports","Website":"chicagotribune.com","Latitude":0.845865,"Longitude":108.8796091,"ShipDate":"3/27/2016","PaymentDate":"2017-06-08 14:15:50","TimeZone":"Asia/Jakarta","TotalPayment":"$362198.01","Status":4,"Type":3,"Actions":null},\n{"RecordID":95,"OrderID":"49643-120","Country":"Russia","ShipCountry":"RU","ShipCity":"Muchkapskiy","ShipName":"Conn LLC","ShipAddress":"68 5th Drive","CompanyEmail":"fmunford2m@tiny.cc","CompanyAgent":"Francis Munford","CompanyName":"Smith-Stokes","Currency":"RUB","Notes":"tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat","Department":"Beauty","Website":"ox.ac.uk","Latitude":51.8478427,"Longitude":42.4697909,"ShipDate":"9/12/2016","PaymentDate":"2017-01-27 16:06:13","TimeZone":"Europe/Moscow","TotalPayment":"$1001206.62","Status":4,"Type":1,"Actions":null},\n{"RecordID":96,"OrderID":"56062-393","Country":"Guam","ShipCountry":"GU","ShipCity":"Agana Heights Village","ShipName":"Mayer-Cole","ShipAddress":"04373 Golden Leaf Center","CompanyEmail":"ckahler2n@histats.com","CompanyAgent":"Catriona Kahler","CompanyName":"Lynch-Satterfield","Currency":"USD","Notes":"ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam","Department":"Jewelery","Website":"newyorker.com","Latitude":13.4677672,"Longitude":144.7453228,"ShipDate":"7/18/2017","PaymentDate":"2016-06-21 16:10:22","TimeZone":"Pacific/Guam","TotalPayment":"$717532.21","Status":5,"Type":1,"Actions":null},\n{"RecordID":97,"OrderID":"50436-0120","Country":"Dominica","ShipCountry":"DM","ShipCity":"Soufrière","ShipName":"Ernser, Miller and Barton","ShipAddress":"7 Canary Crossing","CompanyEmail":"gkleinplatz2o@naver.com","CompanyAgent":"Giuseppe Kleinplatz","CompanyName":"Denesik-Wyman","Currency":"XCD","Notes":"congue elementum in hac habitasse platea dictumst morbi vestibulum velit id","Department":"Kids","Website":"miibeian.gov.cn","Latitude":15.2338798,"Longitude":-61.3567483,"ShipDate":"12/20/2017","PaymentDate":"2016-08-13 23:06:00","TimeZone":"America/Dominica","TotalPayment":"$630409.34","Status":2,"Type":3,"Actions":null},\n{"RecordID":98,"OrderID":"42507-004","Country":"Mexico","ShipCountry":"MX","ShipCity":"Rancho Nuevo","ShipName":"Borer and Sons","ShipAddress":"424 Birchwood Terrace","CompanyEmail":"lgrinishin2p@hubpages.com","CompanyAgent":"Lucky Grinishin","CompanyName":"O\'Reilly, Block and Goyette","Currency":"MXN","Notes":"mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh","Department":"Tools","Website":"hexun.com","Latitude":22.2222241,"Longitude":-100.9256085,"ShipDate":"12/22/2017","PaymentDate":"2016-04-09 03:07:19","TimeZone":"America/Mexico_City","TotalPayment":"$314052.63","Status":2,"Type":3,"Actions":null},\n{"RecordID":99,"OrderID":"49230-191","Country":"Japan","ShipCountry":"JP","ShipCity":"Yokosuka","ShipName":"White, Legros and Carroll","ShipAddress":"8 Annamark Place","CompanyEmail":"mellse2q@xinhuanet.com","CompanyAgent":"Meade Ellse","CompanyName":"Purdy-Carroll","Currency":"JPY","Notes":"magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia","Department":"Sports","Website":"abc.net.au","Latitude":34.6830797,"Longitude":137.9865313,"ShipDate":"12/12/2016","PaymentDate":"2016-08-30 12:27:38","TimeZone":"Asia/Tokyo","TotalPayment":"$1127673.96","Status":1,"Type":1,"Actions":null},\n{"RecordID":100,"OrderID":"50865-056","Country":"Honduras","ShipCountry":"HN","ShipCity":"Yuscarán","ShipName":"Anderson, Pfannerstill and Miller","ShipAddress":"116 Bay Way","CompanyEmail":"hensley2r@businessweek.com","CompanyAgent":"Hamil Ensley","CompanyName":"Kessler, Greenfelder and Gaylord","Currency":"HNL","Notes":"nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis","Department":"Kids","Website":"dell.com","Latitude":13.9448964,"Longitude":-86.8508942,"ShipDate":"1/14/2016","PaymentDate":"2016-12-27 22:25:10","TimeZone":"America/Tegucigalpa","TotalPayment":"$386091.31","Status":6,"Type":3,"Actions":null}]', + )), + (t = $('.kt-datatable').KTDatatable({ + data: { type: 'local', source: e, pageSize: 10 }, + layout: { scroll: !1, footer: !1 }, + sortable: !0, + pagination: !0, + search: { input: $('#generalSearch') }, + columns: [ + { + field: 'RecordID', + title: '#', + sortable: !1, + width: 20, + type: 'number', + selector: { class: 'kt-checkbox--solid' }, + textAlign: 'center', + }, + { field: 'OrderID', title: 'Order ID' }, + { + field: 'Country', + title: 'Country', + template: function(e) { + return e.Country + ' ' + e.ShipCountry; + }, + }, + { field: 'ShipDate', title: 'Ship Date', type: 'date', format: 'MM/DD/YYYY' }, + { field: 'CompanyName', title: 'Company Name' }, + { + field: 'Status', + title: 'Status', + template: function(e) { + var t = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return ( + '' + + t[e.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Type', + autoHide: !1, + template: function(e) { + var t = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return ( + ' ' + + t[e.Type].title + + '' + ); + }, + }, + { + field: 'Actions', + title: 'Actions', + sortable: !1, + width: 110, + overflow: 'visible', + autoHide: !1, + template: function() { + return '\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'; + }, + }, + ], + })), + $('#kt_form_status').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Status', + ); + }), + $('#kt_form_type').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Type', + ); + }), + $('#kt_form_status,#kt_form_type').selectpicker(); + }, +}; +jQuery(document).ready(function() { + KTDatatableDataLocalDemo.init(); +}); diff --git a/src/assets/app/custom/general/crud/metronic-datatable/base/html-table.js b/src/assets/app/custom/general/crud/metronic-datatable/base/html-table.js index fb7896f..39b3808 100644 --- a/src/assets/app/custom/general/crud/metronic-datatable/base/html-table.js +++ b/src/assets/app/custom/general/crud/metronic-datatable/base/html-table.js @@ -1 +1,78 @@ -"use strict";var KTDatatableHtmlTableDemo={init:function(){var t;t=$(".kt-datatable").KTDatatable({data:{saveState:{cookie:!1}},search:{input:$("#generalSearch")},columns:[{field:"DepositPaid",type:"number"},{field:"OrderDate",type:"date",format:"YYYY-MM-DD"},{field:"Status",title:"Status",autoHide:!1,template:function(t){var e={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+e[t.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(t){var e={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return' '+e[t.Type].title+""}}]}),$("#kt_form_status").on("change",function(){t.search($(this).val().toLowerCase(),"Status")}),$("#kt_form_type").on("change",function(){t.search($(this).val().toLowerCase(),"Type")}),$("#kt_form_status,#kt_form_type").selectpicker()}};jQuery(document).ready(function(){KTDatatableHtmlTableDemo.init()}); \ No newline at end of file +'use strict'; +var KTDatatableHtmlTableDemo = { + init: function() { + var t; + (t = $('.kt-datatable').KTDatatable({ + data: { saveState: { cookie: !1 } }, + search: { input: $('#generalSearch') }, + columns: [ + { field: 'DepositPaid', type: 'number' }, + { field: 'OrderDate', type: 'date', format: 'YYYY-MM-DD' }, + { + field: 'Status', + title: 'Status', + autoHide: !1, + template: function(t) { + var e = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return ( + '' + + e[t.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Type', + autoHide: !1, + template: function(t) { + var e = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return ( + ' ' + + e[t.Type].title + + '' + ); + }, + }, + ], + })), + $('#kt_form_status').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Status', + ); + }), + $('#kt_form_type').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Type', + ); + }), + $('#kt_form_status,#kt_form_type').selectpicker(); + }, +}; +jQuery(document).ready(function() { + KTDatatableHtmlTableDemo.init(); +}); diff --git a/src/assets/app/custom/general/crud/metronic-datatable/base/local-sort.js b/src/assets/app/custom/general/crud/metronic-datatable/base/local-sort.js index fecafb6..69bd6fd 100644 --- a/src/assets/app/custom/general/crud/metronic-datatable/base/local-sort.js +++ b/src/assets/app/custom/general/crud/metronic-datatable/base/local-sort.js @@ -1 +1,139 @@ -"use strict";var KTDatatableLocalSortDemo={init:function(){var t;t=$(".kt-datatable").KTDatatable({data:{type:"remote",source:{read:{url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php"}},pageSize:10,serverPaging:!1,serverFiltering:!0,serverSorting:!1,saveState:{cookie:!0,webstorage:!0}},layout:{scroll:!1,footer:!1},sortable:!0,pagination:!0,search:{input:$("#generalSearch")},columns:[{field:"RecordID",title:"#",sortable:"asc",width:30,type:"number",selector:!1,textAlign:"center"},{field:"OrderID",title:"Order ID"},{field:"Country",title:"Country",template:function(t){return t.Country+" "+t.ShipCountry}},{field:"ShipDate",title:"Ship Date",type:"date",format:"MM/DD/YYYY"},{field:"TotalPayment",title:"Payment",type:"number",sortCallback:function(t,e,a){var l=a.field;return $(t).sort(function(t,a){var s=t[l],i=a[l];return isNaN(parseFloat(s))&&null!=s&&(s=Number(s.replace(/[^0-9\.-]+/g,""))),isNaN(parseFloat(i))&&null!=s&&(i=Number(i.replace(/[^0-9\.-]+/g,""))),s=parseFloat(s),i=parseFloat(i),"asc"===e?s>i?1:si?-1:0})}},{field:"Status",title:"Status",template:function(t){var e={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+e[t.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(t){var e={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return' '+e[t.Type].title+""}},{field:"Actions",title:"Actions",sortable:!1,width:110,overflow:"visible",autoHide:!1,template:function(){return'\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'}}]}),$("#kt_form_status").on("change",function(){t.search($(this).val().toLowerCase(),"Status")}),$("#kt_form_type").on("change",function(){t.search($(this).val().toLowerCase(),"Type")}),$("#kt_form_status,#kt_form_type").selectpicker()}};jQuery(document).ready(function(){KTDatatableLocalSortDemo.init()}); \ No newline at end of file +'use strict'; +var KTDatatableLocalSortDemo = { + init: function() { + var t; + (t = $('.kt-datatable').KTDatatable({ + data: { + type: 'remote', + source: { + read: { + url: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php', + }, + }, + pageSize: 10, + serverPaging: !1, + serverFiltering: !0, + serverSorting: !1, + saveState: { cookie: !0, webstorage: !0 }, + }, + layout: { scroll: !1, footer: !1 }, + sortable: !0, + pagination: !0, + search: { input: $('#generalSearch') }, + columns: [ + { + field: 'RecordID', + title: '#', + sortable: 'asc', + width: 30, + type: 'number', + selector: !1, + textAlign: 'center', + }, + { field: 'OrderID', title: 'Order ID' }, + { + field: 'Country', + title: 'Country', + template: function(t) { + return t.Country + ' ' + t.ShipCountry; + }, + }, + { field: 'ShipDate', title: 'Ship Date', type: 'date', format: 'MM/DD/YYYY' }, + { + field: 'TotalPayment', + title: 'Payment', + type: 'number', + sortCallback: function(t, e, a) { + var l = a.field; + return $(t).sort(function(t, a) { + var s = t[l], + i = a[l]; + return ( + isNaN(parseFloat(s)) && null != s && (s = Number(s.replace(/[^0-9\.-]+/g, ''))), + isNaN(parseFloat(i)) && null != s && (i = Number(i.replace(/[^0-9\.-]+/g, ''))), + (s = parseFloat(s)), + (i = parseFloat(i)), + 'asc' === e ? (s > i ? 1 : s < i ? -1 : 0) : s < i ? 1 : s > i ? -1 : 0 + ); + }); + }, + }, + { + field: 'Status', + title: 'Status', + template: function(t) { + var e = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return ( + '' + + e[t.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Type', + autoHide: !1, + template: function(t) { + var e = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return ( + ' ' + + e[t.Type].title + + '' + ); + }, + }, + { + field: 'Actions', + title: 'Actions', + sortable: !1, + width: 110, + overflow: 'visible', + autoHide: !1, + template: function() { + return '\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'; + }, + }, + ], + })), + $('#kt_form_status').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Status', + ); + }), + $('#kt_form_type').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Type', + ); + }), + $('#kt_form_status,#kt_form_type').selectpicker(); + }, +}; +jQuery(document).ready(function() { + KTDatatableLocalSortDemo.init(); +}); diff --git a/src/assets/app/custom/general/crud/metronic-datatable/base/translation.js b/src/assets/app/custom/general/crud/metronic-datatable/base/translation.js index b4ceadd..beddc2d 100644 --- a/src/assets/app/custom/general/crud/metronic-datatable/base/translation.js +++ b/src/assets/app/custom/general/crud/metronic-datatable/base/translation.js @@ -1 +1,139 @@ -"use strict";var KTDatatableTranslationDemo={init:function(){var t;t=$(".kt-datatable").KTDatatable({data:{type:"remote",source:{read:{url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php"}},pageSize:10,serverPaging:!0,serverFiltering:!1,serverSorting:!0},layout:{scroll:!1,height:null,footer:!1},sortable:!0,pagination:!0,search:{input:$("#generalSearch")},columns:[{field:"RecordID",title:"#",sortable:"asc",width:30,type:"number",selector:!1,textAlign:"center"},{field:"OrderID",title:"Order ID"},{field:"Country",title:"Country",template:function(t){return t.Country+" "+t.ShipCountry}},{field:"ShipDate",title:"Ship Date",type:"date",format:"MM/DD/YYYY"},{field:"CompanyName",title:"Company Name"},{field:"Status",title:"Status",template:function(t){var e={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+e[t.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(t){var e={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return' '+e[t.Type].title+""}},{field:"Actions",title:"Actions",sortable:!1,width:110,overflow:"visible",autoHide:!1,template:function(){return'\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'}}],translate:{records:{processing:"Cargando...",noRecords:"No se encontrarón archivos"},toolbar:{pagination:{items:{default:{first:"Primero",prev:"Anterior",next:"Siguiente",last:"Último",more:"Más páginas",input:"Número de página",select:"Seleccionar tamaño de página"},info:"Viendo {{start}} - {{end}} de {{total}} registros"}}}}}),$("#kt_form_status").on("change",function(){t.search($(this).val().toLowerCase(),"Status")}),$("#kt_form_type").on("change",function(){t.search($(this).val().toLowerCase(),"Type")}),$("#kt_form_status,#kt_form_type").selectpicker()}};jQuery(document).ready(function(){KTDatatableTranslationDemo.init()}); \ No newline at end of file +'use strict'; +var KTDatatableTranslationDemo = { + init: function() { + var t; + (t = $('.kt-datatable').KTDatatable({ + data: { + type: 'remote', + source: { + read: { + url: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php', + }, + }, + pageSize: 10, + serverPaging: !0, + serverFiltering: !1, + serverSorting: !0, + }, + layout: { scroll: !1, height: null, footer: !1 }, + sortable: !0, + pagination: !0, + search: { input: $('#generalSearch') }, + columns: [ + { + field: 'RecordID', + title: '#', + sortable: 'asc', + width: 30, + type: 'number', + selector: !1, + textAlign: 'center', + }, + { field: 'OrderID', title: 'Order ID' }, + { + field: 'Country', + title: 'Country', + template: function(t) { + return t.Country + ' ' + t.ShipCountry; + }, + }, + { field: 'ShipDate', title: 'Ship Date', type: 'date', format: 'MM/DD/YYYY' }, + { field: 'CompanyName', title: 'Company Name' }, + { + field: 'Status', + title: 'Status', + template: function(t) { + var e = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return ( + '' + + e[t.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Type', + autoHide: !1, + template: function(t) { + var e = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return ( + ' ' + + e[t.Type].title + + '' + ); + }, + }, + { + field: 'Actions', + title: 'Actions', + sortable: !1, + width: 110, + overflow: 'visible', + autoHide: !1, + template: function() { + return '\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'; + }, + }, + ], + translate: { + records: { processing: 'Cargando...', noRecords: 'No se encontrarón archivos' }, + toolbar: { + pagination: { + items: { + default: { + first: 'Primero', + prev: 'Anterior', + next: 'Siguiente', + last: 'Último', + more: 'Más páginas', + input: 'Número de página', + select: 'Seleccionar tamaño de página', + }, + info: 'Viendo {{start}} - {{end}} de {{total}} registros', + }, + }, + }, + }, + })), + $('#kt_form_status').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Status', + ); + }), + $('#kt_form_type').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Type', + ); + }), + $('#kt_form_status,#kt_form_type').selectpicker(); + }, +}; +jQuery(document).ready(function() { + KTDatatableTranslationDemo.init(); +}); diff --git a/src/assets/app/custom/general/crud/metronic-datatable/child/data-ajax.js b/src/assets/app/custom/general/crud/metronic-datatable/child/data-ajax.js index 314afa9..91736b5 100644 --- a/src/assets/app/custom/general/crud/metronic-datatable/child/data-ajax.js +++ b/src/assets/app/custom/general/crud/metronic-datatable/child/data-ajax.js @@ -1 +1,199 @@ -"use strict";var KTDatatableChildRemoteDataDemo={init:function(){var t;t=$(".kt-datatable").KTDatatable({data:{type:"remote",source:{read:{url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/customers.php"}},pageSize:10,serverPaging:!0,serverFiltering:!1,serverSorting:!0},layout:{scroll:!1,height:null,footer:!1},sortable:!0,pagination:!0,detail:{title:"Load sub table",content:function(t){$("
    ").attr("id","child_data_ajax_"+t.data.RecordID).appendTo(t.detailCell).KTDatatable({data:{type:"remote",source:{read:{url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/orders.php",params:{query:{generalSearch:"",CustomerID:t.data.RecordID}}}},pageSize:10,serverPaging:!0,serverFiltering:!1,serverSorting:!0},layout:{scroll:!0,height:300,footer:!1,spinner:{type:1,theme:"default"}},sortable:!0,columns:[{field:"RecordID",title:"#",sortable:!1,width:30},{field:"OrderID",title:"Order ID",template:function(t){return""+t.OrderID+" - "+t.ShipCountry+""}},{field:"ShipCountry",title:"Country",width:100},{field:"ShipAddress",title:"Ship Address"},{field:"ShipName",title:"Ship Name"},{field:"TotalPayment",title:"Payment",type:"number"},{field:"Status",title:"Status",template:function(t){var e={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+e[t.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(t){var e={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return' '+e[t.Type].title+""}}]})}},search:{input:$("#generalSearch")},columns:[{field:"RecordID",title:"",sortable:!1,width:30,textAlign:"center"},{field:"checkbox",title:"",template:"{{RecordID}}",sortable:!1,width:20,textAlign:"center",selector:{class:"kt-checkbox--solid"}},{field:"FirstName",title:"First Name",sortable:"asc"},{field:"LastName",title:"Last Name"},{field:"Company",title:"Company"},{field:"Email",title:"Email"},{field:"Address",title:"Address"},{field:"Status",title:"Status",template:function(t){var e={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+e[t.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(t){var e={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return' '+e[t.Type].title+""}},{field:"Actions",width:110,title:"Actions",sortable:!1,overflow:"visible",autoHide:!1,template:function(){return'\t\t \t\t \t\t \t\t \t\t \t\t \t\t \t\t '}}]}),$("#kt_form_status").on("change",function(){t.search($(this).val().toLowerCase(),"Status")}),$("#kt_form_type").on("change",function(){t.search($(this).val().toLowerCase(),"Type")}),$("#kt_form_status,#kt_form_type").selectpicker()}};jQuery(document).ready(function(){KTDatatableChildRemoteDataDemo.init()}); \ No newline at end of file +'use strict'; +var KTDatatableChildRemoteDataDemo = { + init: function() { + var t; + (t = $('.kt-datatable').KTDatatable({ + data: { + type: 'remote', + source: { + read: { + url: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/customers.php', + }, + }, + pageSize: 10, + serverPaging: !0, + serverFiltering: !1, + serverSorting: !0, + }, + layout: { scroll: !1, height: null, footer: !1 }, + sortable: !0, + pagination: !0, + detail: { + title: 'Load sub table', + content: function(t) { + $('
    ') + .attr('id', 'child_data_ajax_' + t.data.RecordID) + .appendTo(t.detailCell) + .KTDatatable({ + data: { + type: 'remote', + source: { + read: { + url: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/orders.php', + params: { query: { generalSearch: '', CustomerID: t.data.RecordID } }, + }, + }, + pageSize: 10, + serverPaging: !0, + serverFiltering: !1, + serverSorting: !0, + }, + layout: { scroll: !0, height: 300, footer: !1, spinner: { type: 1, theme: 'default' } }, + sortable: !0, + columns: [ + { field: 'RecordID', title: '#', sortable: !1, width: 30 }, + { + field: 'OrderID', + title: 'Order ID', + template: function(t) { + return '' + t.OrderID + ' - ' + t.ShipCountry + ''; + }, + }, + { field: 'ShipCountry', title: 'Country', width: 100 }, + { field: 'ShipAddress', title: 'Ship Address' }, + { field: 'ShipName', title: 'Ship Name' }, + { field: 'TotalPayment', title: 'Payment', type: 'number' }, + { + field: 'Status', + title: 'Status', + template: function(t) { + var e = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return ( + '' + + e[t.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Type', + autoHide: !1, + template: function(t) { + var e = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return ( + ' ' + + e[t.Type].title + + '' + ); + }, + }, + ], + }); + }, + }, + search: { input: $('#generalSearch') }, + columns: [ + { field: 'RecordID', title: '', sortable: !1, width: 30, textAlign: 'center' }, + { + field: 'checkbox', + title: '', + template: '{{RecordID}}', + sortable: !1, + width: 20, + textAlign: 'center', + selector: { class: 'kt-checkbox--solid' }, + }, + { field: 'FirstName', title: 'First Name', sortable: 'asc' }, + { field: 'LastName', title: 'Last Name' }, + { field: 'Company', title: 'Company' }, + { field: 'Email', title: 'Email' }, + { field: 'Address', title: 'Address' }, + { + field: 'Status', + title: 'Status', + template: function(t) { + var e = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return ( + '' + + e[t.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Type', + autoHide: !1, + template: function(t) { + var e = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return ( + ' ' + + e[t.Type].title + + '' + ); + }, + }, + { + field: 'Actions', + width: 110, + title: 'Actions', + sortable: !1, + overflow: 'visible', + autoHide: !1, + template: function() { + return '\t\t \t\t \t\t \t\t \t\t \t\t \t\t \t\t '; + }, + }, + ], + })), + $('#kt_form_status').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Status', + ); + }), + $('#kt_form_type').on('change', function() { + t.search( + $(this) + .val() + .toLowerCase(), + 'Type', + ); + }), + $('#kt_form_status,#kt_form_type').selectpicker(); + }, +}; +jQuery(document).ready(function() { + KTDatatableChildRemoteDataDemo.init(); +}); diff --git a/src/assets/app/custom/general/crud/metronic-datatable/child/data-local.js b/src/assets/app/custom/general/crud/metronic-datatable/child/data-local.js index 899d09a..086c5e9 100644 --- a/src/assets/app/custom/general/crud/metronic-datatable/child/data-local.js +++ b/src/assets/app/custom/general/crud/metronic-datatable/child/data-local.js @@ -1 +1,161 @@ -"use strict";var KTDatatableChildDataLocalDemo=function(){var e=function(e){$("
    ").attr("id","child_data_local_"+e.data.RecordID).appendTo(e.detailCell).KTDatatable({data:{type:"local",source:e.data.Orders,pageSize:10},layout:{scroll:!0,height:300,footer:!1,spinner:{type:1,theme:"default"}},sortable:!0,columns:[{field:"OrderID",title:"Order ID",sortable:!1},{field:"ShipCountry",title:"Country",width:100},{field:"ShipAddress",title:"Ship Address"},{field:"ShipName",title:"Ship Name"},{field:"OrderDate",title:"Order Date"},{field:"TotalPayment",title:"Total Payment"},{field:"Status",title:"Status",template:function(e){var r={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+r[e.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(e){var r={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return' '+r[e.Type].title+""}}]})};return{init:function(){var r,a;r=JSON.parse('[{"RecordID":1,"FirstName":"Tommie","LastName":"Pee","Company":"Roodel","Email":"tpee0@slashdot.org","Phone":"103-891-3486","Status":4,"Type":1,"Orders":[{"OrderID":"41250-166","ShipCountry":"FR","ShipAddress":"5 Rutledge Court","ShipName":"Rogahn-Shanahan","OrderDate":"3/7/2017","TotalPayment":"$591994.23","Status":5,"Type":1},{"OrderID":"0078-0595","ShipCountry":"CN","ShipAddress":"953 Schlimgen Park","ShipName":"Hilpert-Sanford","OrderDate":"5/12/2017","TotalPayment":"$79774.93","Status":1,"Type":1},{"OrderID":"47593-443","ShipCountry":"BY","ShipAddress":"46925 Memorial Park","ShipName":"Brakus and Sons","OrderDate":"2/12/2017","TotalPayment":"$1095029.28","Status":1,"Type":1},{"OrderID":"50114-5236","ShipCountry":"NZ","ShipAddress":"1420 Mockingbird Drive","ShipName":"Beer-Harris","OrderDate":"6/6/2017","TotalPayment":"$778690.72","Status":5,"Type":3},{"OrderID":"36987-2826","ShipCountry":"PL","ShipAddress":"3995 Huxley Court","ShipName":"Kling, Miller and Quitzon","OrderDate":"9/1/2017","TotalPayment":"$773995.02","Status":5,"Type":2},{"OrderID":"62750-006","ShipCountry":"ID","ShipAddress":"2064 Dennis Parkway","ShipName":"Lang, Kohler and Considine","OrderDate":"9/21/2017","TotalPayment":"$830550.45","Status":5,"Type":2},{"OrderID":"59779-597","ShipCountry":"IR","ShipAddress":"32 Golf Course Parkway","ShipName":"Jaskolski-Hilll","OrderDate":"4/4/2017","TotalPayment":"$754685.32","Status":3,"Type":3},{"OrderID":"59762-3743","ShipCountry":"HT","ShipAddress":"76 Anthes Hill","ShipName":"Reynolds Group","OrderDate":"1/23/2017","TotalPayment":"$295435.66","Status":2,"Type":1},{"OrderID":"64942-1114","ShipCountry":"ID","ShipAddress":"7511 Mayfield Avenue","ShipName":"Purdy and Sons","OrderDate":"12/1/2016","TotalPayment":"$636911.04","Status":6,"Type":2},{"OrderID":"13537-505","ShipCountry":"KZ","ShipAddress":"36303 Esch Parkway","ShipName":"Reinger, Howe and Kertzmann","OrderDate":"1/31/2016","TotalPayment":"$753691.79","Status":4,"Type":1},{"OrderID":"16781-426","ShipCountry":"SE","ShipAddress":"507 Columbus Lane","ShipName":"Carter, Gibson and Kassulke","OrderDate":"10/26/2017","TotalPayment":"$873190.14","Status":2,"Type":2},{"OrderID":"60512-1008","ShipCountry":"ID","ShipAddress":"8 Jana Lane","ShipName":"Rutherford and Sons","OrderDate":"1/10/2017","TotalPayment":"$242894.68","Status":3,"Type":1},{"OrderID":"0456-0461","ShipCountry":"CN","ShipAddress":"5127 Roxbury Trail","ShipName":"Johnson Inc","OrderDate":"12/10/2017","TotalPayment":"$328850.50","Status":5,"Type":3},{"OrderID":"63304-098","ShipCountry":"GR","ShipAddress":"54627 Randy Lane","ShipName":"Johnston, Veum and Funk","OrderDate":"12/11/2016","TotalPayment":"$278247.03","Status":3,"Type":2},{"OrderID":"64092-317","ShipCountry":"CN","ShipAddress":"292 Rusk Lane","ShipName":"Bode, Zboncak and Reichel","OrderDate":"4/10/2016","TotalPayment":"$798173.38","Status":2,"Type":2},{"OrderID":"36987-1483","ShipCountry":"CU","ShipAddress":"2225 Saint Paul Junction","ShipName":"Dach, Haag and Koss","OrderDate":"2/7/2017","TotalPayment":"$1147799.38","Status":4,"Type":2},{"OrderID":"68084-814","ShipCountry":"ID","ShipAddress":"0 Sheridan Avenue","ShipName":"Little-O\'Hara","OrderDate":"11/24/2016","TotalPayment":"$394051.79","Status":6,"Type":1},{"OrderID":"42023-131","ShipCountry":"BR","ShipAddress":"4238 Roth Drive","ShipName":"Boehm LLC","OrderDate":"4/23/2016","TotalPayment":"$300684.31","Status":6,"Type":3},{"OrderID":"14290-350","ShipCountry":"CN","ShipAddress":"41950 Troy Point","ShipName":"Windler, Larkin and Collier","OrderDate":"4/17/2017","TotalPayment":"$467794.40","Status":4,"Type":1}]},\n{"RecordID":2,"FirstName":"Scott","LastName":"Coldbreath","Company":"Zooxo","Email":"scoldbreath1@zdnet.com","Phone":"143-179-5104","Status":5,"Type":1,"Orders":[{"OrderID":"55316-029","ShipCountry":"ID","ShipAddress":"56955 Rusk Street","ShipName":"Paucek, Dietrich and Bergnaum","OrderDate":"9/27/2016","TotalPayment":"$662732.49","Status":2,"Type":3},{"OrderID":"68462-467","ShipCountry":"CN","ShipAddress":"13005 Bultman Court","ShipName":"Stamm Group","OrderDate":"3/22/2017","TotalPayment":"$653958.68","Status":4,"Type":2},{"OrderID":"55154-8270","ShipCountry":"UG","ShipAddress":"6 Brentwood Place","ShipName":"Stroman, Schowalter and Bogan","OrderDate":"8/20/2016","TotalPayment":"$57166.20","Status":3,"Type":2},{"OrderID":"63736-002","ShipCountry":"ID","ShipAddress":"51 Banding Junction","ShipName":"Crona-Konopelski","OrderDate":"2/5/2017","TotalPayment":"$733681.16","Status":3,"Type":2},{"OrderID":"54868-5182","ShipCountry":"CN","ShipAddress":"629 Oxford Alley","ShipName":"Lindgren LLC","OrderDate":"5/21/2016","TotalPayment":"$921137.56","Status":3,"Type":2},{"OrderID":"55714-4529","ShipCountry":"JP","ShipAddress":"9 Melvin Point","ShipName":"Kris-Will","OrderDate":"4/29/2016","TotalPayment":"$184624.81","Status":1,"Type":2},{"OrderID":"63736-305","ShipCountry":"CN","ShipAddress":"84196 New Castle Junction","ShipName":"Lockman-Luettgen","OrderDate":"9/7/2016","TotalPayment":"$922821.30","Status":2,"Type":2}]},\n{"RecordID":3,"FirstName":"Flss","LastName":"Thake","Company":"Riffpath","Email":"fthake2@ifeng.com","Phone":"695-591-2075","Status":3,"Type":1,"Orders":[{"OrderID":"0113-0461","ShipCountry":"PS","ShipAddress":"797 Crownhardt Junction","ShipName":"Eichmann and Sons","OrderDate":"3/16/2016","TotalPayment":"$241462.16","Status":2,"Type":3},{"OrderID":"51824-023","ShipCountry":"BR","ShipAddress":"3066 Emmet Drive","ShipName":"Strosin, Lehner and Gislason","OrderDate":"9/17/2016","TotalPayment":"$194555.85","Status":3,"Type":2},{"OrderID":"57520-0221","ShipCountry":"BR","ShipAddress":"2 Havey Trail","ShipName":"Lang, Anderson and Keebler","OrderDate":"6/18/2016","TotalPayment":"$386865.72","Status":2,"Type":1},{"OrderID":"56062-388","ShipCountry":"CN","ShipAddress":"9 Boyd Avenue","ShipName":"Hegmann-Kemmer","OrderDate":"7/1/2016","TotalPayment":"$837648.17","Status":1,"Type":1},{"OrderID":"35356-723","ShipCountry":"UA","ShipAddress":"35 Chive Lane","ShipName":"Konopelski-Cummings","OrderDate":"7/17/2017","TotalPayment":"$730238.90","Status":5,"Type":2},{"OrderID":"35356-491","ShipCountry":"SE","ShipAddress":"6343 Talmadge Street","ShipName":"Wolf Inc","OrderDate":"1/18/2017","TotalPayment":"$777918.32","Status":6,"Type":1},{"OrderID":"76369-4001","ShipCountry":"CN","ShipAddress":"8737 Dunning Plaza","ShipName":"Cruickshank, Gleichner and Gerlach","OrderDate":"9/20/2016","TotalPayment":"$1197505.61","Status":1,"Type":3},{"OrderID":"0378-5042","ShipCountry":"TH","ShipAddress":"1 Old Shore Plaza","ShipName":"Olson-Stark","OrderDate":"8/2/2016","TotalPayment":"$661232.02","Status":5,"Type":2}]},\n{"RecordID":4,"FirstName":"Vincents","LastName":"Frearson","Company":"Katz","Email":"vfrearson3@amazon.de","Phone":"197-717-7100","Status":4,"Type":2,"Orders":[{"OrderID":"68084-502","ShipCountry":"BR","ShipAddress":"0814 Briar Crest Plaza","ShipName":"Olson-Connelly","OrderDate":"4/8/2016","TotalPayment":"$494707.94","Status":3,"Type":2},{"OrderID":"76167-002","ShipCountry":"SE","ShipAddress":"7 Quincy Road","ShipName":"Heaney, Lemke and McCullough","OrderDate":"1/10/2017","TotalPayment":"$372281.64","Status":5,"Type":3},{"OrderID":"0517-9702","ShipCountry":"RU","ShipAddress":"948 Granby Lane","ShipName":"Abshire-Cartwright","OrderDate":"1/17/2017","TotalPayment":"$720235.30","Status":1,"Type":1},{"OrderID":"53499-7272","ShipCountry":"UA","ShipAddress":"2553 Ronald Regan Point","ShipName":"Hudson-Breitenberg","OrderDate":"4/29/2017","TotalPayment":"$590146.91","Status":3,"Type":3},{"OrderID":"23155-001","ShipCountry":"ID","ShipAddress":"0237 Larry Park","ShipName":"Fahey, Fritsch and Boyer","OrderDate":"12/7/2016","TotalPayment":"$918885.26","Status":6,"Type":3},{"OrderID":"24909-162","ShipCountry":"AR","ShipAddress":"338 Prentice Road","ShipName":"Yost-Kunde","OrderDate":"4/17/2016","TotalPayment":"$320952.62","Status":6,"Type":3},{"OrderID":"59078-031","ShipCountry":"CN","ShipAddress":"23409 Gale Court","ShipName":"Jenkins-Dickens","OrderDate":"9/28/2016","TotalPayment":"$374124.12","Status":1,"Type":3},{"OrderID":"30142-822","ShipCountry":"VE","ShipAddress":"64 Boyd Center","ShipName":"Bartell Group","OrderDate":"2/12/2016","TotalPayment":"$11592.95","Status":2,"Type":2},{"OrderID":"36987-3147","ShipCountry":"PK","ShipAddress":"66010 Express Pass","ShipName":"Cole, Wilkinson and Macejkovic","OrderDate":"1/28/2016","TotalPayment":"$594910.09","Status":3,"Type":2},{"OrderID":"65841-626","ShipCountry":"PH","ShipAddress":"9 West Way","ShipName":"Batz, Nienow and Spencer","OrderDate":"2/7/2016","TotalPayment":"$742058.75","Status":1,"Type":2},{"OrderID":"57520-0025","ShipCountry":"AU","ShipAddress":"18 Hanover Place","ShipName":"Bode, Upton and Christiansen","OrderDate":"3/28/2016","TotalPayment":"$555669.10","Status":2,"Type":2},{"OrderID":"24236-786","ShipCountry":"BG","ShipAddress":"29471 Kim Alley","ShipName":"Lakin-Murazik","OrderDate":"7/9/2016","TotalPayment":"$164304.08","Status":6,"Type":3}]},\n{"RecordID":5,"FirstName":"Antony","LastName":"Stranger","Company":"Tavu","Email":"astranger4@sfgate.com","Phone":"165-466-2893","Status":2,"Type":3,"Orders":[{"OrderID":"53462-175","ShipCountry":"CL","ShipAddress":"6 Spohn Way","ShipName":"O\'Connell Inc","OrderDate":"2/3/2016","TotalPayment":"$749928.82","Status":1,"Type":3},{"OrderID":"53808-0733","ShipCountry":"VN","ShipAddress":"3 Warbler Point","ShipName":"Willms, Glover and O\'Keefe","OrderDate":"5/16/2016","TotalPayment":"$632155.47","Status":1,"Type":1},{"OrderID":"0054-0252","ShipCountry":"CN","ShipAddress":"65 Havey Alley","ShipName":"Deckow, Runolfsson and Kemmer","OrderDate":"4/10/2016","TotalPayment":"$1116585.99","Status":6,"Type":1},{"OrderID":"0093-9660","ShipCountry":"CN","ShipAddress":"2 Maple Drive","ShipName":"Padberg, Powlowski and Brekke","OrderDate":"4/11/2017","TotalPayment":"$513356.12","Status":3,"Type":3},{"OrderID":"63739-047","ShipCountry":"EC","ShipAddress":"0 Talmadge Junction","ShipName":"Rosenbaum-Yundt","OrderDate":"2/19/2016","TotalPayment":"$655497.21","Status":2,"Type":2},{"OrderID":"63323-370","ShipCountry":"ID","ShipAddress":"0 Ramsey Hill","ShipName":"Ankunding, Walsh and Stiedemann","OrderDate":"9/13/2017","TotalPayment":"$380382.26","Status":1,"Type":1},{"OrderID":"57237-040","ShipCountry":"CN","ShipAddress":"945 Golf View Junction","ShipName":"Gulgowski, Feil and Bosco","OrderDate":"2/3/2016","TotalPayment":"$545464.59","Status":3,"Type":1},{"OrderID":"62584-741","ShipCountry":"PY","ShipAddress":"82775 Prairieview Lane","ShipName":"Kihn-Barton","OrderDate":"10/16/2016","TotalPayment":"$571182.87","Status":3,"Type":2},{"OrderID":"0268-0196","ShipCountry":"RU","ShipAddress":"20712 Prentice Terrace","ShipName":"Spencer-Powlowski","OrderDate":"6/7/2017","TotalPayment":"$207925.11","Status":1,"Type":1},{"OrderID":"76214-002","ShipCountry":"US","ShipAddress":"587 Mccormick Parkway","ShipName":"King, O\'Hara and White","OrderDate":"11/14/2016","TotalPayment":"$751439.27","Status":1,"Type":1}]},\n{"RecordID":6,"FirstName":"Valaree","LastName":"Keson","Company":"Tagcat","Email":"vkeson5@tamu.edu","Phone":"973-838-6443","Status":5,"Type":1,"Orders":[{"OrderID":"52125-512","ShipCountry":"DO","ShipAddress":"262 Muir Point","ShipName":"Macejkovic Group","OrderDate":"6/15/2017","TotalPayment":"$536675.40","Status":2,"Type":1},{"OrderID":"0832-2012","ShipCountry":"US","ShipAddress":"54258 Westport Center","ShipName":"Walker-Sawayn","OrderDate":"8/19/2016","TotalPayment":"$465873.67","Status":4,"Type":3},{"OrderID":"63187-026","ShipCountry":"YE","ShipAddress":"82133 Holy Cross Court","ShipName":"Harber LLC","OrderDate":"11/4/2016","TotalPayment":"$654402.52","Status":1,"Type":3},{"OrderID":"0591-3292","ShipCountry":"CN","ShipAddress":"68361 Stoughton Park","ShipName":"Armstrong Group","OrderDate":"12/13/2017","TotalPayment":"$1079957.36","Status":1,"Type":1},{"OrderID":"17478-221","ShipCountry":"JP","ShipAddress":"4964 Green Circle","ShipName":"Wuckert-Wiegand","OrderDate":"5/27/2016","TotalPayment":"$1033548.36","Status":5,"Type":2},{"OrderID":"67525-100","ShipCountry":"MA","ShipAddress":"22008 Susan Court","ShipName":"Monahan, Goldner and Ebert","OrderDate":"11/25/2016","TotalPayment":"$1085910.23","Status":2,"Type":3},{"OrderID":"55150-156","ShipCountry":"AR","ShipAddress":"25 Melody Point","ShipName":"Wyman-Rau","OrderDate":"2/8/2017","TotalPayment":"$223935.72","Status":6,"Type":1},{"OrderID":"49349-549","ShipCountry":"CN","ShipAddress":"129 Warner Street","ShipName":"Dietrich-Huel","OrderDate":"5/15/2017","TotalPayment":"$870692.75","Status":3,"Type":3},{"OrderID":"76237-142","ShipCountry":"JP","ShipAddress":"75958 Clyde Gallagher Parkway","ShipName":"Prosacco, Streich and Hyatt","OrderDate":"4/20/2016","TotalPayment":"$431437.76","Status":4,"Type":1},{"OrderID":"42507-668","ShipCountry":"PH","ShipAddress":"25573 La Follette Parkway","ShipName":"Deckow, Green and Larson","OrderDate":"1/26/2017","TotalPayment":"$111453.40","Status":3,"Type":3},{"OrderID":"41520-304","ShipCountry":"CN","ShipAddress":"07 Southridge Pass","ShipName":"Bechtelar Group","OrderDate":"6/25/2016","TotalPayment":"$1164588.04","Status":6,"Type":3},{"OrderID":"0054-0291","ShipCountry":"AR","ShipAddress":"9 Bobwhite Drive","ShipName":"Reichel-Kuhlman","OrderDate":"9/7/2016","TotalPayment":"$864874.30","Status":5,"Type":2},{"OrderID":"53777-001","ShipCountry":"PH","ShipAddress":"9 Spaight Point","ShipName":"Schulist-Fahey","OrderDate":"7/30/2016","TotalPayment":"$893502.67","Status":3,"Type":2}]},\n{"RecordID":7,"FirstName":"Loella","LastName":"Tenniswood","Company":"Midel","Email":"ltenniswood6@godaddy.com","Phone":"179-534-7335","Status":6,"Type":3,"Orders":[{"OrderID":"52125-861","ShipCountry":"SE","ShipAddress":"95 Nova Place","ShipName":"Greenholt, Mosciski and Zboncak","OrderDate":"12/20/2016","TotalPayment":"$16133.40","Status":3,"Type":1},{"OrderID":"10135-541","ShipCountry":"KE","ShipAddress":"30337 Ludington Avenue","ShipName":"Deckow-Sauer","OrderDate":"1/6/2016","TotalPayment":"$653404.99","Status":3,"Type":2},{"OrderID":"50383-705","ShipCountry":"MK","ShipAddress":"92 Petterle Terrace","ShipName":"Kutch-Yundt","OrderDate":"1/6/2017","TotalPayment":"$1199359.14","Status":3,"Type":2},{"OrderID":"0006-0705","ShipCountry":"ZA","ShipAddress":"0883 Prairieview Lane","ShipName":"Emard-Cummings","OrderDate":"9/10/2017","TotalPayment":"$1082110.44","Status":6,"Type":3},{"OrderID":"49371-024","ShipCountry":"PT","ShipAddress":"0 Rutledge Crossing","ShipName":"Stracke, Mohr and Schaefer","OrderDate":"7/5/2017","TotalPayment":"$203360.38","Status":6,"Type":1},{"OrderID":"55154-6282","ShipCountry":"RU","ShipAddress":"80006 Dwight Hill","ShipName":"Zulauf, Reichert and Schaden","OrderDate":"4/21/2016","TotalPayment":"$1190061.80","Status":3,"Type":3},{"OrderID":"53808-0856","ShipCountry":"CN","ShipAddress":"87 Doe Crossing Parkway","ShipName":"Goyette, Stoltenberg and Little","OrderDate":"2/22/2016","TotalPayment":"$49978.51","Status":5,"Type":3},{"OrderID":"0363-0666","ShipCountry":"CN","ShipAddress":"13142 Chinook Street","ShipName":"Funk-Thiel","OrderDate":"1/20/2017","TotalPayment":"$524037.58","Status":5,"Type":1},{"OrderID":"11523-1350","ShipCountry":"CN","ShipAddress":"16721 Grover Trail","ShipName":"Schultz Inc","OrderDate":"1/14/2016","TotalPayment":"$716249.49","Status":5,"Type":2},{"OrderID":"43419-514","ShipCountry":"PA","ShipAddress":"273 Pankratz Park","ShipName":"Kassulke and Sons","OrderDate":"7/3/2016","TotalPayment":"$1120010.29","Status":5,"Type":1},{"OrderID":"46581-440","ShipCountry":"MA","ShipAddress":"75197 Shelley Park","ShipName":"Ritchie Group","OrderDate":"9/2/2017","TotalPayment":"$342248.74","Status":4,"Type":1},{"OrderID":"49035-005","ShipCountry":"BR","ShipAddress":"478 Forest Dale Center","ShipName":"Sporer, O\'Conner and Wehner","OrderDate":"10/9/2016","TotalPayment":"$373207.58","Status":5,"Type":2},{"OrderID":"36987-1846","ShipCountry":"KZ","ShipAddress":"60142 Kipling Pass","ShipName":"Purdy Group","OrderDate":"3/31/2017","TotalPayment":"$453333.00","Status":5,"Type":2},{"OrderID":"57525-002","ShipCountry":"GR","ShipAddress":"466 Reindahl Road","ShipName":"Halvorson, Jacobs and Moen","OrderDate":"10/17/2017","TotalPayment":"$811809.59","Status":2,"Type":1},{"OrderID":"61657-0377","ShipCountry":"PE","ShipAddress":"0910 Bunting Street","ShipName":"Rippin and Sons","OrderDate":"2/5/2017","TotalPayment":"$249995.75","Status":2,"Type":2},{"OrderID":"49230-194","ShipCountry":"AF","ShipAddress":"23 Menomonie Crossing","ShipName":"Shanahan-Considine","OrderDate":"8/18/2017","TotalPayment":"$1157608.85","Status":3,"Type":1},{"OrderID":"24385-337","ShipCountry":"SD","ShipAddress":"17 1st Junction","ShipName":"Haag, White and Sanford","OrderDate":"10/5/2017","TotalPayment":"$253432.68","Status":6,"Type":2},{"OrderID":"44911-0008","ShipCountry":"CN","ShipAddress":"1656 Lerdahl Lane","ShipName":"Effertz Group","OrderDate":"2/9/2017","TotalPayment":"$190727.96","Status":5,"Type":1},{"OrderID":"52584-201","ShipCountry":"SE","ShipAddress":"0 Summerview Avenue","ShipName":"Greenfelder Inc","OrderDate":"3/7/2016","TotalPayment":"$274799.62","Status":4,"Type":1}]},\n{"RecordID":8,"FirstName":"Marinna","LastName":"Oda","Company":"Photofeed","Email":"moda7@live.com","Phone":"502-962-0995","Status":6,"Type":2,"Orders":[{"OrderID":"0409-3508","ShipCountry":"BJ","ShipAddress":"68092 Spaight Alley","ShipName":"Runolfsdottir Group","OrderDate":"1/6/2017","TotalPayment":"$807827.85","Status":6,"Type":3},{"OrderID":"59915-1001","ShipCountry":"CO","ShipAddress":"519 Warbler Junction","ShipName":"Flatley LLC","OrderDate":"6/3/2017","TotalPayment":"$160408.58","Status":6,"Type":1},{"OrderID":"76007-012","ShipCountry":"ID","ShipAddress":"4808 Merrick Drive","ShipName":"Fahey, Gleichner and Pacocha","OrderDate":"2/2/2017","TotalPayment":"$661547.32","Status":5,"Type":2},{"OrderID":"15127-909","ShipCountry":"CN","ShipAddress":"981 Utah Place","ShipName":"Howe Inc","OrderDate":"4/15/2017","TotalPayment":"$516128.85","Status":6,"Type":1},{"OrderID":"57469-024","ShipCountry":"BO","ShipAddress":"72 Dahle Crossing","ShipName":"Stoltenberg Inc","OrderDate":"11/11/2017","TotalPayment":"$351384.82","Status":4,"Type":3},{"OrderID":"55154-8298","ShipCountry":"IE","ShipAddress":"320 Rieder Crossing","ShipName":"Jacobi-Weber","OrderDate":"2/28/2016","TotalPayment":"$802338.51","Status":6,"Type":1},{"OrderID":"42507-355","ShipCountry":"RU","ShipAddress":"56 Morning Street","ShipName":"Klocko, Wunsch and Durgan","OrderDate":"8/31/2016","TotalPayment":"$931824.41","Status":2,"Type":3},{"OrderID":"43269-681","ShipCountry":"CN","ShipAddress":"52 Wayridge Plaza","ShipName":"Glover Inc","OrderDate":"10/13/2017","TotalPayment":"$415160.43","Status":6,"Type":2},{"OrderID":"49967-983","ShipCountry":"CL","ShipAddress":"1755 Independence Alley","ShipName":"Cummings Inc","OrderDate":"12/24/2017","TotalPayment":"$224564.93","Status":5,"Type":2},{"OrderID":"55910-645","ShipCountry":"AM","ShipAddress":"7 Sage Park","ShipName":"Turcotte-McDermott","OrderDate":"8/22/2016","TotalPayment":"$1033625.12","Status":1,"Type":2},{"OrderID":"51143-213","ShipCountry":"PH","ShipAddress":"127 Macpherson Junction","ShipName":"Grant-Feil","OrderDate":"6/21/2017","TotalPayment":"$237824.76","Status":3,"Type":1},{"OrderID":"49288-0689","ShipCountry":"ID","ShipAddress":"76 Hoard Court","ShipName":"Brakus LLC","OrderDate":"3/11/2017","TotalPayment":"$1116744.39","Status":4,"Type":1},{"OrderID":"50580-351","ShipCountry":"VN","ShipAddress":"9305 Carpenter Road","ShipName":"Little, Cole and Towne","OrderDate":"4/14/2016","TotalPayment":"$534989.20","Status":2,"Type":2},{"OrderID":"55714-4532","ShipCountry":"PT","ShipAddress":"454 Rutledge Lane","ShipName":"Bins and Sons","OrderDate":"3/30/2016","TotalPayment":"$822775.85","Status":6,"Type":3},{"OrderID":"0536-4534","ShipCountry":"FR","ShipAddress":"4 Mesta Circle","ShipName":"Glover Inc","OrderDate":"11/14/2016","TotalPayment":"$376289.30","Status":4,"Type":3},{"OrderID":"61442-122","ShipCountry":"PT","ShipAddress":"6 Canary Crossing","ShipName":"Schmeler Group","OrderDate":"2/11/2016","TotalPayment":"$1106593.62","Status":1,"Type":3},{"OrderID":"21695-314","ShipCountry":"SV","ShipAddress":"7610 Oak Trail","ShipName":"Robel, Dickens and Padberg","OrderDate":"5/12/2016","TotalPayment":"$1059270.23","Status":6,"Type":3},{"OrderID":"62032-516","ShipCountry":"PK","ShipAddress":"96678 Gerald Trail","ShipName":"Price-Leffler","OrderDate":"7/16/2017","TotalPayment":"$275030.55","Status":3,"Type":1}]},\n{"RecordID":9,"FirstName":"Tarra","LastName":"Dallicott","Company":"Yamia","Email":"tdallicott8@goodreads.com","Phone":"575-583-1308","Status":1,"Type":2,"Orders":[{"OrderID":"17856-1000","ShipCountry":"JP","ShipAddress":"86 Basil Point","ShipName":"Kihn, Welch and Terry","OrderDate":"6/19/2017","TotalPayment":"$1129795.73","Status":2,"Type":1},{"OrderID":"60505-2761","ShipCountry":"YE","ShipAddress":"94 Aberg Pass","ShipName":"Emmerich-Mohr","OrderDate":"4/14/2017","TotalPayment":"$164303.03","Status":3,"Type":1},{"OrderID":"55714-2295","ShipCountry":"CN","ShipAddress":"857 Emmet Circle","ShipName":"Spencer, Sporer and Nikolaus","OrderDate":"4/4/2017","TotalPayment":"$671692.16","Status":1,"Type":2},{"OrderID":"48951-8185","ShipCountry":"ID","ShipAddress":"88174 Knutson Street","ShipName":"Collier, Kris and Altenwerth","OrderDate":"10/16/2016","TotalPayment":"$362918.01","Status":2,"Type":3},{"OrderID":"34690-3001","ShipCountry":"BY","ShipAddress":"69633 Kennedy Way","ShipName":"Hammes Group","OrderDate":"12/15/2016","TotalPayment":"$1069509.73","Status":4,"Type":1},{"OrderID":"31645-163","ShipCountry":"TH","ShipAddress":"8810 Bartelt Center","ShipName":"Lynch LLC","OrderDate":"4/1/2017","TotalPayment":"$156114.60","Status":1,"Type":1},{"OrderID":"36987-1341","ShipCountry":"CN","ShipAddress":"16254 Pond Pass","ShipName":"Rempel-Little","OrderDate":"3/7/2016","TotalPayment":"$576844.64","Status":2,"Type":1},{"OrderID":"54868-5190","ShipCountry":"SE","ShipAddress":"8 New Castle Pass","ShipName":"Terry, Effertz and Jerde","OrderDate":"2/15/2016","TotalPayment":"$248019.58","Status":5,"Type":1},{"OrderID":"43857-0106","ShipCountry":"CN","ShipAddress":"29 Grayhawk Hill","ShipName":"Hessel, Shanahan and Gislason","OrderDate":"10/14/2017","TotalPayment":"$449682.61","Status":3,"Type":2},{"OrderID":"53808-0858","ShipCountry":"JP","ShipAddress":"658 Nancy Pass","ShipName":"Toy and Sons","OrderDate":"4/18/2017","TotalPayment":"$1147441.95","Status":1,"Type":1}]},\n{"RecordID":10,"FirstName":"Hakim","LastName":"Coat","Company":"Zoombox","Email":"hcoat9@google.ca","Phone":"604-363-0650","Status":3,"Type":2,"Orders":[{"OrderID":"53603-2001","ShipCountry":"US","ShipAddress":"6 Atwood Drive","ShipName":"Dare Group","OrderDate":"9/6/2017","TotalPayment":"$703020.46","Status":4,"Type":2},{"OrderID":"30142-656","ShipCountry":"BR","ShipAddress":"00472 Bayside Court","ShipName":"Cruickshank and Sons","OrderDate":"7/5/2016","TotalPayment":"$886164.21","Status":4,"Type":2},{"OrderID":"42291-755","ShipCountry":"AR","ShipAddress":"90 Coolidge Terrace","ShipName":"Denesik-McDermott","OrderDate":"5/22/2016","TotalPayment":"$749431.02","Status":4,"Type":2},{"OrderID":"60760-130","ShipCountry":"CN","ShipAddress":"42 Hoard Parkway","ShipName":"Toy, Cassin and Hoppe","OrderDate":"4/16/2016","TotalPayment":"$177828.40","Status":3,"Type":1},{"OrderID":"50845-0169","ShipCountry":"PK","ShipAddress":"0 Browning Court","ShipName":"Rogahn-Cummerata","OrderDate":"12/11/2017","TotalPayment":"$252364.93","Status":1,"Type":3},{"OrderID":"15127-268","ShipCountry":"MY","ShipAddress":"26759 Eastlawn Road","ShipName":"Schulist, Lakin and Kling","OrderDate":"4/11/2016","TotalPayment":"$406789.79","Status":6,"Type":1},{"OrderID":"0409-1144","ShipCountry":"LI","ShipAddress":"8756 Manley Avenue","ShipName":"Halvorson, Rempel and Cassin","OrderDate":"5/15/2017","TotalPayment":"$655797.50","Status":4,"Type":3},{"OrderID":"59762-0066","ShipCountry":"ID","ShipAddress":"70 Gateway Plaza","ShipName":"Davis and Sons","OrderDate":"11/24/2017","TotalPayment":"$1053827.22","Status":3,"Type":3},{"OrderID":"0615-7571","ShipCountry":"ID","ShipAddress":"0 Knutson Avenue","ShipName":"Murray-Christiansen","OrderDate":"4/14/2016","TotalPayment":"$611395.25","Status":3,"Type":2},{"OrderID":"46122-243","ShipCountry":"GR","ShipAddress":"75 Kedzie Lane","ShipName":"Mayert and Sons","OrderDate":"9/15/2017","TotalPayment":"$983523.78","Status":4,"Type":1},{"OrderID":"10812-302","ShipCountry":"BR","ShipAddress":"0030 David Junction","ShipName":"Streich, Lubowitz and Hilpert","OrderDate":"6/9/2016","TotalPayment":"$950269.54","Status":1,"Type":1},{"OrderID":"49349-209","ShipCountry":"PH","ShipAddress":"7812 Delaware Road","ShipName":"Franecki-Bosco","OrderDate":"4/7/2017","TotalPayment":"$969032.18","Status":5,"Type":3},{"OrderID":"66184-510","ShipCountry":"PA","ShipAddress":"123 Chive Avenue","ShipName":"Rogahn and Sons","OrderDate":"5/22/2017","TotalPayment":"$798858.17","Status":4,"Type":2}]},\n{"RecordID":11,"FirstName":"Ailsun","LastName":"Duferie","Company":"Aimbu","Email":"aduferiea@marriott.com","Phone":"468-718-9867","Status":6,"Type":2,"Orders":[{"OrderID":"51346-232","ShipCountry":"RU","ShipAddress":"1036 Stang Point","ShipName":"Flatley-Lockman","OrderDate":"6/1/2016","TotalPayment":"$333376.53","Status":4,"Type":1},{"OrderID":"11390-025","ShipCountry":"FI","ShipAddress":"230 Northfield Way","ShipName":"Braun Inc","OrderDate":"2/20/2017","TotalPayment":"$1018242.29","Status":5,"Type":3},{"OrderID":"51346-014","ShipCountry":"CN","ShipAddress":"18 Farragut Crossing","ShipName":"Zboncak-Boyle","OrderDate":"11/17/2017","TotalPayment":"$1024900.54","Status":6,"Type":1},{"OrderID":"76485-1044","ShipCountry":"AR","ShipAddress":"8051 Birchwood Alley","ShipName":"Lehner, Ritchie and Legros","OrderDate":"7/1/2017","TotalPayment":"$868747.00","Status":1,"Type":3},{"OrderID":"0268-0921","ShipCountry":"HN","ShipAddress":"224 Summer Ridge Court","ShipName":"Mraz LLC","OrderDate":"4/1/2016","TotalPayment":"$306559.14","Status":2,"Type":2},{"OrderID":"54575-963","ShipCountry":"ID","ShipAddress":"738 Myrtle Lane","ShipName":"Willms, McKenzie and Konopelski","OrderDate":"9/18/2016","TotalPayment":"$381823.72","Status":5,"Type":2},{"OrderID":"0143-2128","ShipCountry":"ID","ShipAddress":"26 Spaight Circle","ShipName":"Kiehn-Hauck","OrderDate":"12/18/2017","TotalPayment":"$329032.46","Status":1,"Type":2},{"OrderID":"43269-710","ShipCountry":"PS","ShipAddress":"8883 Northridge Street","ShipName":"Kunze Group","OrderDate":"3/24/2017","TotalPayment":"$304989.41","Status":4,"Type":1},{"OrderID":"57520-0548","ShipCountry":"CN","ShipAddress":"3470 Sloan Drive","ShipName":"Heller-Bartoletti","OrderDate":"5/30/2017","TotalPayment":"$852826.32","Status":1,"Type":1},{"OrderID":"64578-0059","ShipCountry":"AM","ShipAddress":"1622 Melby Point","ShipName":"Kilback, Rohan and Berge","OrderDate":"10/11/2016","TotalPayment":"$100818.99","Status":2,"Type":1},{"OrderID":"65862-174","ShipCountry":"ID","ShipAddress":"3 Vernon Parkway","ShipName":"Schuppe, Terry and Steuber","OrderDate":"7/1/2016","TotalPayment":"$854813.26","Status":5,"Type":3},{"OrderID":"64778-0494","ShipCountry":"SE","ShipAddress":"6 Marquette Circle","ShipName":"Barrows Inc","OrderDate":"12/27/2017","TotalPayment":"$895872.94","Status":3,"Type":3}]},\n{"RecordID":12,"FirstName":"Henrie","LastName":"Rizzelli","Company":"Gabvine","Email":"hrizzellib@google.ca","Phone":"577-614-0198","Status":2,"Type":3,"Orders":[{"OrderID":"0268-1418","ShipCountry":"TH","ShipAddress":"745 Barnett Avenue","ShipName":"Okuneva Group","OrderDate":"6/16/2017","TotalPayment":"$549432.48","Status":5,"Type":2},{"OrderID":"60681-1702","ShipCountry":"NG","ShipAddress":"9147 Sunnyside Drive","ShipName":"Simonis Inc","OrderDate":"10/18/2016","TotalPayment":"$1048987.69","Status":2,"Type":2},{"OrderID":"54868-4992","ShipCountry":"CN","ShipAddress":"262 Alpine Circle","ShipName":"Connelly-Medhurst","OrderDate":"11/9/2017","TotalPayment":"$270509.02","Status":3,"Type":3},{"OrderID":"54868-0295","ShipCountry":"BR","ShipAddress":"14 Little Fleur Crossing","ShipName":"Strosin, Frami and Kohler","OrderDate":"11/20/2016","TotalPayment":"$236751.98","Status":2,"Type":2},{"OrderID":"0067-2083","ShipCountry":"BF","ShipAddress":"07276 Pepper Wood Hill","ShipName":"Ondricka-Kling","OrderDate":"3/5/2016","TotalPayment":"$806806.54","Status":2,"Type":3},{"OrderID":"59584-140","ShipCountry":"FR","ShipAddress":"2853 Ryan Center","ShipName":"Gleichner LLC","OrderDate":"9/28/2016","TotalPayment":"$605758.72","Status":6,"Type":3},{"OrderID":"0904-5633","ShipCountry":"RU","ShipAddress":"98748 Cottonwood Road","ShipName":"Cormier and Sons","OrderDate":"8/14/2016","TotalPayment":"$73438.51","Status":1,"Type":3},{"OrderID":"11673-054","ShipCountry":"PT","ShipAddress":"464 Myrtle Road","ShipName":"Schaefer Inc","OrderDate":"10/13/2016","TotalPayment":"$847457.03","Status":6,"Type":3},{"OrderID":"35000-703","ShipCountry":"PT","ShipAddress":"1195 Goodland Drive","ShipName":"Franecki, Ullrich and Reinger","OrderDate":"10/19/2016","TotalPayment":"$549390.75","Status":1,"Type":3},{"OrderID":"50804-252","ShipCountry":"UA","ShipAddress":"3 Nelson Hill","ShipName":"Yundt-West","OrderDate":"7/10/2016","TotalPayment":"$602875.09","Status":5,"Type":3}]},\n{"RecordID":13,"FirstName":"Marjy","LastName":"Knevit","Company":"Topicstorm","Email":"mknevitc@nyu.edu","Phone":"927-108-0751","Status":1,"Type":2,"Orders":[{"OrderID":"0054-8299","ShipCountry":"RU","ShipAddress":"44 Thompson Way","ShipName":"Labadie Group","OrderDate":"12/20/2017","TotalPayment":"$634798.75","Status":6,"Type":2},{"OrderID":"0179-1482","ShipCountry":"MY","ShipAddress":"48716 Scofield Drive","ShipName":"Gleichner, Cremin and Becker","OrderDate":"4/21/2016","TotalPayment":"$882102.56","Status":6,"Type":3},{"OrderID":"43353-888","ShipCountry":"EC","ShipAddress":"2135 Northfield Drive","ShipName":"Dickens, Hills and Zulauf","OrderDate":"1/18/2016","TotalPayment":"$292760.70","Status":1,"Type":1},{"OrderID":"63459-548","ShipCountry":"AR","ShipAddress":"22 Carberry Alley","ShipName":"Gerhold, Padberg and Strosin","OrderDate":"3/22/2017","TotalPayment":"$1168455.92","Status":5,"Type":1},{"OrderID":"69261-001","ShipCountry":"PL","ShipAddress":"73536 Crescent Oaks Drive","ShipName":"Mante-Olson","OrderDate":"8/30/2016","TotalPayment":"$107961.66","Status":3,"Type":2},{"OrderID":"49999-347","ShipCountry":"CZ","ShipAddress":"695 Truax Crossing","ShipName":"Collins, Eichmann and Trantow","OrderDate":"11/17/2016","TotalPayment":"$958790.75","Status":6,"Type":1},{"OrderID":"49288-0454","ShipCountry":"PT","ShipAddress":"460 Waxwing Place","ShipName":"Carter, Will and MacGyver","OrderDate":"9/29/2016","TotalPayment":"$264659.62","Status":3,"Type":2},{"OrderID":"62175-570","ShipCountry":"CA","ShipAddress":"84 Tony Way","ShipName":"O\'Kon, Rodriguez and Pfeffer","OrderDate":"3/28/2016","TotalPayment":"$1114174.72","Status":2,"Type":3},{"OrderID":"36987-1757","ShipCountry":"CN","ShipAddress":"8115 Lerdahl Terrace","ShipName":"Schiller Inc","OrderDate":"5/12/2016","TotalPayment":"$358901.83","Status":4,"Type":2},{"OrderID":"48951-1149","ShipCountry":"JP","ShipAddress":"0 Jana Point","ShipName":"Kerluke, Boehm and Schamberger","OrderDate":"8/18/2017","TotalPayment":"$432215.44","Status":2,"Type":2},{"OrderID":"55648-315","ShipCountry":"FR","ShipAddress":"8674 Roxbury Terrace","ShipName":"Morar-Gutkowski","OrderDate":"7/27/2017","TotalPayment":"$1077213.84","Status":6,"Type":1},{"OrderID":"67544-268","ShipCountry":"ID","ShipAddress":"2264 Manufacturers Road","ShipName":"Kuhic Inc","OrderDate":"7/17/2016","TotalPayment":"$70671.10","Status":1,"Type":3},{"OrderID":"68788-9933","ShipCountry":"NG","ShipAddress":"74 Village Trail","ShipName":"Gerlach, Hodkiewicz and Ankunding","OrderDate":"12/8/2016","TotalPayment":"$239201.40","Status":3,"Type":2},{"OrderID":"37808-234","ShipCountry":"CZ","ShipAddress":"81263 Calypso Plaza","ShipName":"Willms and Sons","OrderDate":"7/5/2017","TotalPayment":"$29271.02","Status":4,"Type":3},{"OrderID":"48951-3009","ShipCountry":"TH","ShipAddress":"13796 Monument Center","ShipName":"Grant, Carter and Koss","OrderDate":"12/18/2017","TotalPayment":"$1110434.95","Status":5,"Type":2},{"OrderID":"67253-145","ShipCountry":"PL","ShipAddress":"39 Butternut Crossing","ShipName":"Klein-Bechtelar","OrderDate":"12/4/2016","TotalPayment":"$94688.79","Status":1,"Type":1},{"OrderID":"52125-968","ShipCountry":"PT","ShipAddress":"47 Independence Lane","ShipName":"Pollich, Waters and Braun","OrderDate":"11/22/2016","TotalPayment":"$516304.60","Status":6,"Type":1},{"OrderID":"0378-2264","ShipCountry":"PH","ShipAddress":"0 Comanche Court","ShipName":"Johnston-Kautzer","OrderDate":"10/21/2017","TotalPayment":"$892603.93","Status":5,"Type":3},{"OrderID":"36987-1216","ShipCountry":"CO","ShipAddress":"019 Kenwood Point","ShipName":"Effertz and Sons","OrderDate":"9/6/2016","TotalPayment":"$445064.37","Status":4,"Type":2}]},\n{"RecordID":14,"FirstName":"Baillie","LastName":"Gullyes","Company":"Skinder","Email":"bgullyesd@army.mil","Phone":"566-804-6864","Status":4,"Type":3,"Orders":[{"OrderID":"50436-1223","ShipCountry":"PH","ShipAddress":"2571 Helena Road","ShipName":"Barrows-Dach","OrderDate":"11/8/2017","TotalPayment":"$1101259.11","Status":3,"Type":1},{"OrderID":"43846-0021","ShipCountry":"PE","ShipAddress":"50363 Butterfield Point","ShipName":"Jones, Kuhic and Frami","OrderDate":"4/12/2016","TotalPayment":"$182473.50","Status":5,"Type":3},{"OrderID":"54868-1173","ShipCountry":"ZA","ShipAddress":"250 Morningstar Parkway","ShipName":"Swift-Bergnaum","OrderDate":"10/3/2017","TotalPayment":"$1134676.85","Status":5,"Type":2},{"OrderID":"49643-423","ShipCountry":"PL","ShipAddress":"0295 Glacier Hill Terrace","ShipName":"Langworth-Kohler","OrderDate":"4/6/2016","TotalPayment":"$718961.06","Status":4,"Type":2},{"OrderID":"63354-322","ShipCountry":"ET","ShipAddress":"4140 Dakota Center","ShipName":"Oberbrunner, Fadel and Renner","OrderDate":"10/27/2017","TotalPayment":"$291614.46","Status":5,"Type":2},{"OrderID":"44924-003","ShipCountry":"PH","ShipAddress":"647 Toban Terrace","ShipName":"Wehner-Lind","OrderDate":"11/18/2016","TotalPayment":"$562090.23","Status":2,"Type":2},{"OrderID":"63323-282","ShipCountry":"PT","ShipAddress":"07 Nobel Parkway","ShipName":"Swaniawski, Altenwerth and Kuphal","OrderDate":"10/27/2017","TotalPayment":"$140295.88","Status":3,"Type":3},{"OrderID":"52685-442","ShipCountry":"ID","ShipAddress":"70686 Del Sol Plaza","ShipName":"Price, Hessel and Bahringer","OrderDate":"2/28/2016","TotalPayment":"$313738.32","Status":6,"Type":3}]},\n{"RecordID":15,"FirstName":"Cris","LastName":"Domke","Company":"Yamia","Email":"cdomkee@xing.com","Phone":"591-995-0816","Status":1,"Type":2,"Orders":[{"OrderID":"58118-0613","ShipCountry":"CN","ShipAddress":"38 Scofield Alley","ShipName":"Parisian-Deckow","OrderDate":"7/17/2017","TotalPayment":"$858726.54","Status":6,"Type":3},{"OrderID":"0378-5550","ShipCountry":"IT","ShipAddress":"2755 Coolidge Point","ShipName":"Jast, Bechtelar and Conroy","OrderDate":"3/5/2017","TotalPayment":"$349939.86","Status":3,"Type":2},{"OrderID":"11410-044","ShipCountry":"ID","ShipAddress":"3344 Lerdahl Street","ShipName":"Kautzer, Fahey and Barrows","OrderDate":"1/19/2017","TotalPayment":"$324163.14","Status":1,"Type":3},{"OrderID":"11822-0843","ShipCountry":"CI","ShipAddress":"8609 Kedzie Park","ShipName":"Corkery-Bergnaum","OrderDate":"12/2/2016","TotalPayment":"$680415.41","Status":2,"Type":1},{"OrderID":"75990-365","ShipCountry":"CN","ShipAddress":"8 Eastlawn Circle","ShipName":"Braun, Oberbrunner and Bode","OrderDate":"11/20/2016","TotalPayment":"$898420.40","Status":2,"Type":2},{"OrderID":"68135-301","ShipCountry":"CN","ShipAddress":"501 Loftsgordon Court","ShipName":"Ryan-Gislason","OrderDate":"11/28/2017","TotalPayment":"$1040364.18","Status":5,"Type":3},{"OrderID":"24236-496","ShipCountry":"PT","ShipAddress":"13933 Clyde Gallagher Place","ShipName":"Boehm, Stehr and Frami","OrderDate":"4/12/2017","TotalPayment":"$948812.54","Status":2,"Type":2},{"OrderID":"48951-7053","ShipCountry":"AR","ShipAddress":"74 Fremont Terrace","ShipName":"Kilback LLC","OrderDate":"2/4/2017","TotalPayment":"$943938.97","Status":1,"Type":2}]},\n{"RecordID":16,"FirstName":"Myranda","LastName":"Risebarer","Company":"Devbug","Email":"mrisebarerf@icq.com","Phone":"127-856-4898","Status":6,"Type":1,"Orders":[{"OrderID":"0591-3204","ShipCountry":"CO","ShipAddress":"49559 Stephen Road","ShipName":"Lemke and Sons","OrderDate":"10/18/2017","TotalPayment":"$742084.02","Status":5,"Type":1},{"OrderID":"49483-272","ShipCountry":"ID","ShipAddress":"30 Forster Alley","ShipName":"Harber-Brakus","OrderDate":"10/25/2017","TotalPayment":"$629172.17","Status":6,"Type":1},{"OrderID":"11673-330","ShipCountry":"YE","ShipAddress":"8 Vahlen Drive","ShipName":"Dach and Sons","OrderDate":"11/18/2017","TotalPayment":"$161271.00","Status":6,"Type":1},{"OrderID":"37000-238","ShipCountry":"FR","ShipAddress":"62 Clove Avenue","ShipName":"Rau-Price","OrderDate":"12/2/2016","TotalPayment":"$744246.99","Status":6,"Type":1},{"OrderID":"0085-0517","ShipCountry":"PT","ShipAddress":"08 8th Pass","ShipName":"Marquardt-Graham","OrderDate":"12/8/2016","TotalPayment":"$1066352.27","Status":3,"Type":1},{"OrderID":"51285-063","ShipCountry":"JP","ShipAddress":"40821 Fallview Alley","ShipName":"Thompson-Sipes","OrderDate":"7/26/2016","TotalPayment":"$803965.87","Status":5,"Type":3},{"OrderID":"58118-1512","ShipCountry":"BR","ShipAddress":"43474 Heffernan Way","ShipName":"Predovic, Lynch and Rogahn","OrderDate":"2/13/2016","TotalPayment":"$964045.35","Status":1,"Type":2},{"OrderID":"41167-4002","ShipCountry":"CN","ShipAddress":"6989 Moland Plaza","ShipName":"Carter, Braun and Ferry","OrderDate":"6/3/2016","TotalPayment":"$987904.62","Status":1,"Type":3},{"OrderID":"16590-295","ShipCountry":"TZ","ShipAddress":"80 Forest Run Point","ShipName":"Witting, Bergnaum and Stroman","OrderDate":"5/1/2017","TotalPayment":"$655363.89","Status":5,"Type":3},{"OrderID":"24208-299","ShipCountry":"CN","ShipAddress":"41 Upham Alley","ShipName":"Harvey, Reinger and Boyle","OrderDate":"12/24/2016","TotalPayment":"$753640.29","Status":2,"Type":3},{"OrderID":"55910-437","ShipCountry":"BG","ShipAddress":"935 Rockefeller Center","ShipName":"Boyer, Cassin and Schaden","OrderDate":"1/14/2017","TotalPayment":"$791040.48","Status":4,"Type":2},{"OrderID":"63868-612","ShipCountry":"CN","ShipAddress":"7304 Kedzie Park","ShipName":"Pfeffer Inc","OrderDate":"4/23/2017","TotalPayment":"$146510.35","Status":2,"Type":1},{"OrderID":"63868-133","ShipCountry":"PK","ShipAddress":"823 Rusk Park","ShipName":"Stroman-Kris","OrderDate":"8/23/2017","TotalPayment":"$808374.39","Status":3,"Type":3},{"OrderID":"0409-9157","ShipCountry":"FR","ShipAddress":"8638 Lawn Point","ShipName":"Watsica-Hermann","OrderDate":"2/20/2016","TotalPayment":"$213632.22","Status":1,"Type":3}]},\n{"RecordID":17,"FirstName":"Lana","LastName":"Redit","Company":"Edgetag","Email":"lreditg@rambler.ru","Phone":"443-713-4257","Status":5,"Type":1,"Orders":[{"OrderID":"49999-122","ShipCountry":"ID","ShipAddress":"24171 Iowa Park","ShipName":"Harber Inc","OrderDate":"4/18/2017","TotalPayment":"$188645.10","Status":6,"Type":1},{"OrderID":"53808-0644","ShipCountry":"TH","ShipAddress":"90 Rusk Avenue","ShipName":"Heller and Sons","OrderDate":"11/4/2017","TotalPayment":"$285957.55","Status":2,"Type":1},{"OrderID":"68258-6010","ShipCountry":"SE","ShipAddress":"436 Commercial Avenue","ShipName":"Ullrich-Gislason","OrderDate":"5/21/2017","TotalPayment":"$423935.10","Status":2,"Type":2},{"OrderID":"65465-0001","ShipCountry":"SO","ShipAddress":"26343 Fulton Terrace","ShipName":"Langosh-Moen","OrderDate":"11/3/2017","TotalPayment":"$96756.85","Status":1,"Type":1},{"OrderID":"67172-595","ShipCountry":"RU","ShipAddress":"38 Towne Avenue","ShipName":"Franecki-Jacobi","OrderDate":"7/17/2017","TotalPayment":"$889970.24","Status":3,"Type":2},{"OrderID":"55316-431","ShipCountry":"PK","ShipAddress":"242 Ruskin Junction","ShipName":"Grimes-Kemmer","OrderDate":"11/3/2017","TotalPayment":"$453780.44","Status":2,"Type":2},{"OrderID":"63304-951","ShipCountry":"BJ","ShipAddress":"2495 Pawling Road","ShipName":"Adams-Morissette","OrderDate":"8/28/2016","TotalPayment":"$392175.26","Status":3,"Type":1},{"OrderID":"63739-494","ShipCountry":"PH","ShipAddress":"3962 Heath Circle","ShipName":"Wilderman, Zboncak and Wisozk","OrderDate":"7/24/2016","TotalPayment":"$988233.53","Status":6,"Type":1},{"OrderID":"45737-242","ShipCountry":"CN","ShipAddress":"1 Westridge Circle","ShipName":"Jones, Reichel and McLaughlin","OrderDate":"9/24/2016","TotalPayment":"$725217.59","Status":1,"Type":1},{"OrderID":"57344-150","ShipCountry":"VN","ShipAddress":"7395 Amoth Pass","ShipName":"Carroll, Kiehn and Hahn","OrderDate":"4/22/2017","TotalPayment":"$781462.83","Status":3,"Type":3},{"OrderID":"33261-491","ShipCountry":"CN","ShipAddress":"1 Loomis Court","ShipName":"McLaughlin Group","OrderDate":"12/26/2017","TotalPayment":"$283735.31","Status":5,"Type":1}]},\n{"RecordID":18,"FirstName":"Pascal","LastName":"Richold","Company":"Lazz","Email":"pricholdh@ed.gov","Phone":"423-479-6879","Status":4,"Type":1,"Orders":[{"OrderID":"68788-9549","ShipCountry":"MV","ShipAddress":"003 Jenifer Center","ShipName":"Gleichner, Ziemann and DuBuque","OrderDate":"8/2/2017","TotalPayment":"$125706.11","Status":3,"Type":2},{"OrderID":"0517-0730","ShipCountry":"AF","ShipAddress":"88773 Nancy Circle","ShipName":"Hamill Group","OrderDate":"5/24/2016","TotalPayment":"$36318.26","Status":1,"Type":1},{"OrderID":"65588-1206","ShipCountry":"UA","ShipAddress":"01097 Gerald Hill","ShipName":"Bednar Group","OrderDate":"5/18/2016","TotalPayment":"$1106007.43","Status":5,"Type":3},{"OrderID":"52125-561","ShipCountry":"PT","ShipAddress":"067 Delaware Place","ShipName":"Harber LLC","OrderDate":"4/17/2017","TotalPayment":"$270198.81","Status":4,"Type":1},{"OrderID":"68016-073","ShipCountry":"CN","ShipAddress":"24 Stang Center","ShipName":"Grimes and Sons","OrderDate":"8/1/2017","TotalPayment":"$665773.24","Status":5,"Type":2},{"OrderID":"0093-5562","ShipCountry":"UA","ShipAddress":"4772 Thackeray Hill","ShipName":"Deckow Group","OrderDate":"2/24/2017","TotalPayment":"$466943.51","Status":6,"Type":1},{"OrderID":"55154-6265","ShipCountry":"RU","ShipAddress":"2 Mandrake Court","ShipName":"Bernhard-Feil","OrderDate":"1/26/2017","TotalPayment":"$12260.64","Status":5,"Type":1}]},\n{"RecordID":19,"FirstName":"Evered","LastName":"Massow","Company":"Chatterbridge","Email":"emassowi@apple.com","Phone":"429-251-6310","Status":5,"Type":2,"Orders":[{"OrderID":"63629-5435","ShipCountry":"CM","ShipAddress":"0 Moose Plaza","ShipName":"Gorczany and Sons","OrderDate":"6/27/2017","TotalPayment":"$474565.63","Status":1,"Type":1},{"OrderID":"64117-534","ShipCountry":"ID","ShipAddress":"1236 Ryan Avenue","ShipName":"Upton, Kuvalis and Welch","OrderDate":"2/5/2016","TotalPayment":"$260489.33","Status":4,"Type":3},{"OrderID":"52544-495","ShipCountry":"PH","ShipAddress":"27073 Mayer Place","ShipName":"Prohaska-Skiles","OrderDate":"12/27/2017","TotalPayment":"$901171.25","Status":6,"Type":3},{"OrderID":"49349-430","ShipCountry":"YE","ShipAddress":"6613 Evergreen Park","ShipName":"Watsica-Kub","OrderDate":"11/15/2017","TotalPayment":"$594278.46","Status":5,"Type":3},{"OrderID":"54569-0322","ShipCountry":"CZ","ShipAddress":"48 Thompson Drive","ShipName":"Barton LLC","OrderDate":"6/20/2016","TotalPayment":"$348473.52","Status":6,"Type":3},{"OrderID":"0378-1813","ShipCountry":"FR","ShipAddress":"698 Graedel Lane","ShipName":"Collins, Marks and Goyette","OrderDate":"6/26/2017","TotalPayment":"$859477.22","Status":6,"Type":1},{"OrderID":"52125-399","ShipCountry":"RU","ShipAddress":"0621 Arizona Road","ShipName":"Jacobi-Conn","OrderDate":"4/14/2017","TotalPayment":"$743880.29","Status":4,"Type":2},{"OrderID":"55910-038","ShipCountry":"US","ShipAddress":"3803 Evergreen Road","ShipName":"Pfeffer-Lueilwitz","OrderDate":"10/22/2017","TotalPayment":"$204204.28","Status":2,"Type":3},{"OrderID":"51655-301","ShipCountry":"RU","ShipAddress":"8512 Calypso Terrace","ShipName":"Nienow and Sons","OrderDate":"11/18/2017","TotalPayment":"$160761.72","Status":6,"Type":3},{"OrderID":"24385-200","ShipCountry":"CN","ShipAddress":"28347 Heath Street","ShipName":"Shanahan Group","OrderDate":"5/5/2017","TotalPayment":"$1040163.34","Status":6,"Type":3},{"OrderID":"10956-003","ShipCountry":"ID","ShipAddress":"00 Southridge Avenue","ShipName":"Crooks Group","OrderDate":"8/11/2017","TotalPayment":"$945611.35","Status":6,"Type":1},{"OrderID":"65626-017","ShipCountry":"MV","ShipAddress":"70123 Knutson Parkway","ShipName":"O\'Conner, Veum and Blanda","OrderDate":"11/21/2017","TotalPayment":"$621240.52","Status":3,"Type":1},{"OrderID":"58668-1103","ShipCountry":"ID","ShipAddress":"0513 Anzinger Park","ShipName":"Greenholt, Bartell and Kemmer","OrderDate":"10/5/2017","TotalPayment":"$506764.60","Status":4,"Type":2},{"OrderID":"0781-3302","ShipCountry":"BR","ShipAddress":"725 Myrtle Lane","ShipName":"Barrows-Heidenreich","OrderDate":"6/24/2017","TotalPayment":"$64651.31","Status":3,"Type":2},{"OrderID":"0115-5911","ShipCountry":"BR","ShipAddress":"98143 Mesta Alley","ShipName":"Daniel-Welch","OrderDate":"9/3/2016","TotalPayment":"$804125.45","Status":4,"Type":2},{"OrderID":"61657-0052","ShipCountry":"CN","ShipAddress":"54126 Banding Point","ShipName":"Dickens-Koss","OrderDate":"3/28/2017","TotalPayment":"$489717.89","Status":4,"Type":3},{"OrderID":"29500-2435","ShipCountry":"SY","ShipAddress":"6 Kinsman Circle","ShipName":"Ledner Inc","OrderDate":"5/16/2017","TotalPayment":"$523060.11","Status":1,"Type":2}]},\n{"RecordID":20,"FirstName":"Werner","LastName":"Davy","Company":"Mybuzz","Email":"wdavyj@lycos.com","Phone":"207-709-2159","Status":5,"Type":3,"Orders":[{"OrderID":"0409-6637","ShipCountry":"US","ShipAddress":"8 Golf Way","ShipName":"VonRueden Group","OrderDate":"12/3/2017","TotalPayment":"$676139.26","Status":5,"Type":2},{"OrderID":"55154-4728","ShipCountry":"PK","ShipAddress":"4443 Fallview Junction","ShipName":"Ziemann-King","OrderDate":"6/7/2016","TotalPayment":"$909920.97","Status":6,"Type":1},{"OrderID":"64141-010","ShipCountry":"CN","ShipAddress":"4 Laurel Drive","ShipName":"Heaney-Leffler","OrderDate":"9/22/2017","TotalPayment":"$305292.44","Status":1,"Type":3},{"OrderID":"0268-1182","ShipCountry":"UA","ShipAddress":"9 Arkansas Plaza","ShipName":"Cruickshank LLC","OrderDate":"3/29/2016","TotalPayment":"$1183733.44","Status":6,"Type":2},{"OrderID":"0115-9633","ShipCountry":"ID","ShipAddress":"229 Spenser Circle","ShipName":"Harvey-Johnston","OrderDate":"9/28/2017","TotalPayment":"$806663.05","Status":1,"Type":3},{"OrderID":"47335-804","ShipCountry":"VN","ShipAddress":"6 Forest Dale Avenue","ShipName":"Gerhold-Ratke","OrderDate":"6/20/2017","TotalPayment":"$771173.24","Status":4,"Type":2},{"OrderID":"0363-4816","ShipCountry":"NL","ShipAddress":"945 Scott Junction","ShipName":"Morissette, Hodkiewicz and Grimes","OrderDate":"1/13/2017","TotalPayment":"$912300.59","Status":4,"Type":1},{"OrderID":"12634-909","ShipCountry":"CO","ShipAddress":"2372 Havey Pass","ShipName":"Hand, Nader and Jerde","OrderDate":"1/22/2016","TotalPayment":"$90438.21","Status":3,"Type":1},{"OrderID":"0054-4581","ShipCountry":"ID","ShipAddress":"3 Hanson Point","ShipName":"Gutmann-Crona","OrderDate":"1/7/2016","TotalPayment":"$319363.30","Status":6,"Type":1},{"OrderID":"49371-024","ShipCountry":"CN","ShipAddress":"98148 Kenwood Pass","ShipName":"Raynor Group","OrderDate":"1/31/2016","TotalPayment":"$27223.28","Status":3,"Type":2},{"OrderID":"61699-3977","ShipCountry":"PH","ShipAddress":"91522 Cambridge Lane","ShipName":"Waters, Herman and Hudson","OrderDate":"12/11/2016","TotalPayment":"$576844.09","Status":2,"Type":1},{"OrderID":"50452-221","ShipCountry":"US","ShipAddress":"20658 Shopko Park","ShipName":"Aufderhar Group","OrderDate":"8/4/2017","TotalPayment":"$1092940.53","Status":6,"Type":2},{"OrderID":"41163-557","ShipCountry":"FR","ShipAddress":"155 Sutteridge Avenue","ShipName":"Koelpin, Hessel and Rogahn","OrderDate":"8/13/2017","TotalPayment":"$546465.11","Status":4,"Type":2}]},\n{"RecordID":21,"FirstName":"Carina","LastName":"Sloyan","Company":"Edgepulse","Email":"csloyank@qq.com","Phone":"211-855-3589","Status":2,"Type":2,"Orders":[{"OrderID":"49884-932","ShipCountry":"CN","ShipAddress":"30239 Service Lane","ShipName":"Schmitt, Littel and Hayes","OrderDate":"1/20/2017","TotalPayment":"$23390.21","Status":1,"Type":1},{"OrderID":"49349-562","ShipCountry":"AR","ShipAddress":"8 Shoshone Court","ShipName":"McGlynn, Kling and Heaney","OrderDate":"1/18/2017","TotalPayment":"$185932.20","Status":5,"Type":1},{"OrderID":"24286-1558","ShipCountry":"US","ShipAddress":"46 Melrose Terrace","ShipName":"Satterfield, Reynolds and Johnson","OrderDate":"4/13/2016","TotalPayment":"$672941.27","Status":3,"Type":2},{"OrderID":"67345-0671","ShipCountry":"TT","ShipAddress":"032 Emmet Court","ShipName":"Ratke-Brown","OrderDate":"6/25/2017","TotalPayment":"$302787.56","Status":2,"Type":1},{"OrderID":"65626-206","ShipCountry":"CN","ShipAddress":"44 Iowa Terrace","ShipName":"Cormier, Gerlach and Goodwin","OrderDate":"5/22/2016","TotalPayment":"$1112348.00","Status":4,"Type":2},{"OrderID":"62802-116","ShipCountry":"GT","ShipAddress":"604 Scott Court","ShipName":"Jacobi, Pollich and Hoeger","OrderDate":"8/22/2017","TotalPayment":"$732225.33","Status":3,"Type":2},{"OrderID":"0363-0443","ShipCountry":"ID","ShipAddress":"5 Eggendart Way","ShipName":"Rolfson, Bradtke and Turner","OrderDate":"11/19/2016","TotalPayment":"$820850.48","Status":2,"Type":1},{"OrderID":"10733-395","ShipCountry":"UA","ShipAddress":"71557 Brickson Park Terrace","ShipName":"Dickens-Erdman","OrderDate":"3/21/2017","TotalPayment":"$574900.99","Status":3,"Type":3},{"OrderID":"13668-001","ShipCountry":"CN","ShipAddress":"7 Springview Alley","ShipName":"Hettinger Inc","OrderDate":"10/1/2016","TotalPayment":"$390271.23","Status":2,"Type":2},{"OrderID":"11118-3000","ShipCountry":"CN","ShipAddress":"06 Clarendon Hill","ShipName":"Kohler, Hirthe and Erdman","OrderDate":"3/18/2016","TotalPayment":"$840691.78","Status":2,"Type":2},{"OrderID":"60505-6087","ShipCountry":"CN","ShipAddress":"369 Grayhawk Junction","ShipName":"Price-Rippin","OrderDate":"1/30/2017","TotalPayment":"$242520.21","Status":1,"Type":1},{"OrderID":"69097-149","ShipCountry":"CO","ShipAddress":"862 Carioca Circle","ShipName":"Huels-Hayes","OrderDate":"12/2/2016","TotalPayment":"$450006.58","Status":4,"Type":3},{"OrderID":"68084-108","ShipCountry":"NG","ShipAddress":"0 Kings Junction","ShipName":"Mitchell, Schneider and Schulist","OrderDate":"2/1/2016","TotalPayment":"$471457.13","Status":2,"Type":2},{"OrderID":"64117-285","ShipCountry":"NO","ShipAddress":"896 Nancy Terrace","ShipName":"Fay LLC","OrderDate":"1/7/2016","TotalPayment":"$334428.76","Status":6,"Type":2},{"OrderID":"52125-144","ShipCountry":"US","ShipAddress":"10 Waxwing Hill","ShipName":"Fritsch-Bins","OrderDate":"10/28/2017","TotalPayment":"$1015892.49","Status":6,"Type":3}]},\n{"RecordID":22,"FirstName":"Dyane","LastName":"Petraitis","Company":"Thoughtmix","Email":"dpetraitisl@chronoengine.com","Phone":"400-332-4756","Status":2,"Type":1,"Orders":[{"OrderID":"54868-4970","ShipCountry":"PL","ShipAddress":"1382 Heffernan Place","ShipName":"Walker, Lehner and Schumm","OrderDate":"10/22/2016","TotalPayment":"$550011.09","Status":5,"Type":2},{"OrderID":"0781-7244","ShipCountry":"NZ","ShipAddress":"340 Carioca Hill","ShipName":"Ritchie-Kertzmann","OrderDate":"7/15/2016","TotalPayment":"$301703.59","Status":2,"Type":1},{"OrderID":"50563-301","ShipCountry":"CN","ShipAddress":"0 Union Lane","ShipName":"Bechtelar-Cormier","OrderDate":"4/16/2016","TotalPayment":"$738279.45","Status":6,"Type":1},{"OrderID":"47781-264","ShipCountry":"AM","ShipAddress":"00 Old Gate Drive","ShipName":"Bauch Group","OrderDate":"10/31/2016","TotalPayment":"$552838.67","Status":6,"Type":3},{"OrderID":"58411-129","ShipCountry":"CN","ShipAddress":"231 Randy Place","ShipName":"Halvorson-Kulas","OrderDate":"12/13/2017","TotalPayment":"$121851.27","Status":2,"Type":1},{"OrderID":"64380-735","ShipCountry":"CN","ShipAddress":"21 Dryden Avenue","ShipName":"Kuhlman, Lockman and Schmidt","OrderDate":"2/15/2016","TotalPayment":"$1179842.45","Status":4,"Type":3},{"OrderID":"37012-498","ShipCountry":"MD","ShipAddress":"24437 Southridge Park","ShipName":"Mraz-Rempel","OrderDate":"8/30/2017","TotalPayment":"$872008.48","Status":2,"Type":1},{"OrderID":"64058-145","ShipCountry":"SE","ShipAddress":"3608 Anthes Crossing","ShipName":"DuBuque-Gleason","OrderDate":"9/19/2016","TotalPayment":"$471599.11","Status":6,"Type":2},{"OrderID":"0781-3222","ShipCountry":"FR","ShipAddress":"1 Graceland Junction","ShipName":"McLaughlin-Mayer","OrderDate":"11/17/2017","TotalPayment":"$939417.30","Status":6,"Type":3},{"OrderID":"13537-533","ShipCountry":"CN","ShipAddress":"637 Mcbride Lane","ShipName":"Wolf, Wuckert and Witting","OrderDate":"11/22/2016","TotalPayment":"$364109.83","Status":2,"Type":2},{"OrderID":"64011-010","ShipCountry":"CZ","ShipAddress":"86543 Raven Place","ShipName":"Schuster, Reinger and Stokes","OrderDate":"4/7/2017","TotalPayment":"$1077247.86","Status":3,"Type":3},{"OrderID":"50242-073","ShipCountry":"MG","ShipAddress":"5147 Northfield Lane","ShipName":"Daugherty, Pagac and Hackett","OrderDate":"3/23/2017","TotalPayment":"$191786.31","Status":3,"Type":2}]},\n{"RecordID":23,"FirstName":"Stanislaw","LastName":"Fruen","Company":"Kwideo","Email":"sfruenm@senate.gov","Phone":"962-404-6507","Status":2,"Type":1,"Orders":[{"OrderID":"76485-1013","ShipCountry":"GQ","ShipAddress":"67725 4th Junction","ShipName":"Ward-Welch","OrderDate":"7/30/2017","TotalPayment":"$359608.70","Status":3,"Type":3},{"OrderID":"43269-803","ShipCountry":"PE","ShipAddress":"4 Mallard Drive","ShipName":"Waters Inc","OrderDate":"7/21/2017","TotalPayment":"$482120.25","Status":5,"Type":2},{"OrderID":"59663-130","ShipCountry":"CN","ShipAddress":"095 Farwell Park","ShipName":"Hansen LLC","OrderDate":"8/5/2017","TotalPayment":"$209680.67","Status":2,"Type":1},{"OrderID":"0363-0591","ShipCountry":"CN","ShipAddress":"4 Northland Avenue","ShipName":"Padberg, Bogan and Buckridge","OrderDate":"9/28/2017","TotalPayment":"$954836.79","Status":5,"Type":1},{"OrderID":"0185-0342","ShipCountry":"CO","ShipAddress":"33 Roxbury Junction","ShipName":"Gislason, Zieme and Huels","OrderDate":"11/13/2016","TotalPayment":"$468101.37","Status":6,"Type":2},{"OrderID":"59779-603","ShipCountry":"ID","ShipAddress":"33143 Red Cloud Trail","ShipName":"Ledner Inc","OrderDate":"3/13/2017","TotalPayment":"$420910.81","Status":4,"Type":1},{"OrderID":"0172-5412","ShipCountry":"ES","ShipAddress":"07560 Warbler Way","ShipName":"Ward, Sawayn and Brown","OrderDate":"9/30/2017","TotalPayment":"$275684.41","Status":5,"Type":1},{"OrderID":"64942-1048","ShipCountry":"CN","ShipAddress":"570 Bartillon Plaza","ShipName":"Huels, Dietrich and Ondricka","OrderDate":"3/11/2017","TotalPayment":"$1148838.85","Status":4,"Type":2},{"OrderID":"42546-270","ShipCountry":"RU","ShipAddress":"35 Wayridge Alley","ShipName":"Ledner, Rosenbaum and Kreiger","OrderDate":"11/14/2016","TotalPayment":"$849166.46","Status":3,"Type":3},{"OrderID":"55312-053","ShipCountry":"CN","ShipAddress":"00 Bartillon Road","ShipName":"Spencer LLC","OrderDate":"11/15/2017","TotalPayment":"$360062.76","Status":2,"Type":2},{"OrderID":"51060-052","ShipCountry":"CN","ShipAddress":"753 Lillian Drive","ShipName":"Kautzer-Murphy","OrderDate":"3/27/2017","TotalPayment":"$176638.86","Status":2,"Type":2},{"OrderID":"0245-0014","ShipCountry":"HT","ShipAddress":"401 Oak Crossing","ShipName":"Durgan LLC","OrderDate":"7/11/2017","TotalPayment":"$301693.94","Status":1,"Type":1},{"OrderID":"59762-0811","ShipCountry":"GR","ShipAddress":"0209 Menomonie Circle","ShipName":"Pouros Inc","OrderDate":"12/9/2016","TotalPayment":"$977827.86","Status":3,"Type":1}]},\n{"RecordID":24,"FirstName":"Claudette","LastName":"Warmisham","Company":"Babbleset","Email":"cwarmishamn@over-blog.com","Phone":"762-180-1606","Status":6,"Type":3,"Orders":[{"OrderID":"60681-1001","ShipCountry":"ID","ShipAddress":"59125 Longview Place","ShipName":"Runolfsson Group","OrderDate":"9/19/2016","TotalPayment":"$766887.24","Status":5,"Type":2},{"OrderID":"62011-0100","ShipCountry":"BR","ShipAddress":"313 Porter Point","ShipName":"Okuneva, Cremin and Schumm","OrderDate":"11/3/2017","TotalPayment":"$250500.74","Status":5,"Type":2},{"OrderID":"36800-030","ShipCountry":"CF","ShipAddress":"2 Shasta Circle","ShipName":"Wilkinson Inc","OrderDate":"8/12/2017","TotalPayment":"$87063.24","Status":6,"Type":1},{"OrderID":"50014-100","ShipCountry":"UA","ShipAddress":"86 Granby Terrace","ShipName":"Bosco-Mosciski","OrderDate":"11/1/2016","TotalPayment":"$1091822.07","Status":4,"Type":2},{"OrderID":"59630-993","ShipCountry":"ID","ShipAddress":"0785 Nevada Place","ShipName":"Stehr-Wisozk","OrderDate":"6/30/2016","TotalPayment":"$887185.07","Status":1,"Type":1},{"OrderID":"72036-720","ShipCountry":"FR","ShipAddress":"36797 Cottonwood Point","ShipName":"Hegmann LLC","OrderDate":"10/6/2016","TotalPayment":"$385042.54","Status":2,"Type":3},{"OrderID":"0603-3162","ShipCountry":"AR","ShipAddress":"38 Utah Way","ShipName":"Hintz LLC","OrderDate":"2/16/2016","TotalPayment":"$743289.41","Status":2,"Type":1},{"OrderID":"55154-5074","ShipCountry":"BR","ShipAddress":"96306 Bultman Hill","ShipName":"Moore-Yundt","OrderDate":"11/25/2017","TotalPayment":"$767884.55","Status":3,"Type":3},{"OrderID":"55154-2388","ShipCountry":"CU","ShipAddress":"01365 Brickson Park Terrace","ShipName":"Ward, Marquardt and Schimmel","OrderDate":"8/16/2017","TotalPayment":"$581799.78","Status":1,"Type":2},{"OrderID":"63776-694","ShipCountry":"DK","ShipAddress":"01967 Cherokee Court","ShipName":"Stehr-Keeling","OrderDate":"3/3/2017","TotalPayment":"$910431.75","Status":5,"Type":2},{"OrderID":"65954-770","ShipCountry":"FR","ShipAddress":"692 Chinook Crossing","ShipName":"Lebsack, Yost and Little","OrderDate":"4/11/2017","TotalPayment":"$516514.31","Status":2,"Type":2},{"OrderID":"49035-454","ShipCountry":"FR","ShipAddress":"19777 7th Road","ShipName":"Collier, Jacobi and Botsford","OrderDate":"4/13/2016","TotalPayment":"$873455.68","Status":6,"Type":3},{"OrderID":"29500-9711","ShipCountry":"KP","ShipAddress":"540 Pepper Wood Circle","ShipName":"Halvorson, Miller and Block","OrderDate":"3/23/2016","TotalPayment":"$280279.42","Status":1,"Type":1},{"OrderID":"0115-1245","ShipCountry":"ID","ShipAddress":"5921 Shelley Trail","ShipName":"Hackett-Hilpert","OrderDate":"7/10/2017","TotalPayment":"$535967.95","Status":2,"Type":2},{"OrderID":"54868-5499","ShipCountry":"CN","ShipAddress":"4625 Fremont Court","ShipName":"Blanda-Leannon","OrderDate":"8/2/2017","TotalPayment":"$89560.17","Status":6,"Type":1},{"OrderID":"35356-754","ShipCountry":"GT","ShipAddress":"7654 Killdeer Alley","ShipName":"Fahey, Greenfelder and Jacobson","OrderDate":"11/2/2017","TotalPayment":"$100090.40","Status":5,"Type":3}]},\n{"RecordID":25,"FirstName":"Dalia","LastName":"Smitton","Company":"Dynabox","Email":"dsmittono@sohu.com","Phone":"787-788-1737","Status":5,"Type":1,"Orders":[{"OrderID":"64762-874","ShipCountry":"SV","ShipAddress":"134 Lillian Lane","ShipName":"Ankunding, Kunze and Hoppe","OrderDate":"2/10/2017","TotalPayment":"$441824.95","Status":4,"Type":2},{"OrderID":"50964-100","ShipCountry":"ID","ShipAddress":"70 Grim Circle","ShipName":"Runolfsson, Considine and Kshlerin","OrderDate":"1/1/2016","TotalPayment":"$528602.82","Status":1,"Type":2},{"OrderID":"60512-8033","ShipCountry":"BR","ShipAddress":"4561 Hoffman Avenue","ShipName":"Barrows-Reichel","OrderDate":"6/20/2017","TotalPayment":"$883125.66","Status":3,"Type":3},{"OrderID":"49348-527","ShipCountry":"YE","ShipAddress":"6 Cascade Pass","ShipName":"Feil-Bernier","OrderDate":"11/26/2016","TotalPayment":"$394440.43","Status":3,"Type":1},{"OrderID":"0135-0136","ShipCountry":"IE","ShipAddress":"02409 Nelson Street","ShipName":"Osinski, Kreiger and Strosin","OrderDate":"2/12/2016","TotalPayment":"$892613.88","Status":4,"Type":2},{"OrderID":"50685-006","ShipCountry":"CN","ShipAddress":"98 Jackson Way","ShipName":"Krajcik-Goyette","OrderDate":"8/4/2017","TotalPayment":"$968152.25","Status":2,"Type":1},{"OrderID":"0093-4444","ShipCountry":"PK","ShipAddress":"931 Trailsway Court","ShipName":"Brown, Kris and Lockman","OrderDate":"8/25/2017","TotalPayment":"$595249.08","Status":5,"Type":3},{"OrderID":"0363-9030","ShipCountry":"SE","ShipAddress":"86613 Hayes Alley","ShipName":"Breitenberg-Ledner","OrderDate":"8/10/2016","TotalPayment":"$1113571.26","Status":2,"Type":1},{"OrderID":"65044-2855","ShipCountry":"CN","ShipAddress":"90286 Clove Parkway","ShipName":"Will-Howell","OrderDate":"2/16/2016","TotalPayment":"$1140836.17","Status":5,"Type":1},{"OrderID":"0268-6316","ShipCountry":"PT","ShipAddress":"84 Kinsman Point","ShipName":"Lowe-Bernhard","OrderDate":"5/30/2016","TotalPayment":"$1079786.05","Status":1,"Type":1},{"OrderID":"59779-375","ShipCountry":"PH","ShipAddress":"186 Moose Road","ShipName":"Goyette-Donnelly","OrderDate":"3/20/2016","TotalPayment":"$687723.83","Status":5,"Type":3},{"OrderID":"76420-482","ShipCountry":"PH","ShipAddress":"42 Carpenter Plaza","ShipName":"Stamm-Nolan","OrderDate":"7/1/2017","TotalPayment":"$309255.05","Status":6,"Type":2},{"OrderID":"61715-093","ShipCountry":"NI","ShipAddress":"01836 Golden Leaf Way","ShipName":"Welch, Schmitt and Flatley","OrderDate":"10/22/2017","TotalPayment":"$480961.06","Status":2,"Type":1}]},\n{"RecordID":26,"FirstName":"Amara","LastName":"Livett","Company":"Tambee","Email":"alivettp@acquirethisname.com","Phone":"738-721-3662","Status":6,"Type":3,"Orders":[{"OrderID":"62756-543","ShipCountry":"CN","ShipAddress":"7851 Ramsey Park","ShipName":"O\'Connell, MacGyver and Boyer","OrderDate":"1/1/2017","TotalPayment":"$637633.93","Status":1,"Type":2},{"OrderID":"10742-1567","ShipCountry":"IE","ShipAddress":"5616 Springs Junction","ShipName":"Funk, Bernier and Stark","OrderDate":"10/29/2017","TotalPayment":"$49512.18","Status":6,"Type":1},{"OrderID":"50051-0010","ShipCountry":"FR","ShipAddress":"7997 Warrior Center","ShipName":"Rosenbaum-Braun","OrderDate":"11/5/2017","TotalPayment":"$390657.00","Status":2,"Type":1},{"OrderID":"65044-6513","ShipCountry":"CN","ShipAddress":"283 Sullivan Drive","ShipName":"Willms, Batz and Gleason","OrderDate":"4/22/2016","TotalPayment":"$534376.39","Status":3,"Type":2},{"OrderID":"65044-2862","ShipCountry":"AR","ShipAddress":"32877 Kipling Alley","ShipName":"Quitzon, Harber and Nitzsche","OrderDate":"3/30/2017","TotalPayment":"$775956.38","Status":1,"Type":3},{"OrderID":"53113-557","ShipCountry":"PE","ShipAddress":"3178 Di Loreto Place","ShipName":"Schneider, Boyer and Feil","OrderDate":"6/24/2017","TotalPayment":"$1042514.12","Status":6,"Type":2},{"OrderID":"53217-009","ShipCountry":"VN","ShipAddress":"0 Mayfield Junction","ShipName":"Hoppe, Goyette and Hagenes","OrderDate":"7/28/2017","TotalPayment":"$41944.00","Status":4,"Type":1},{"OrderID":"55312-588","ShipCountry":"ID","ShipAddress":"236 Vidon Parkway","ShipName":"Heathcote-Powlowski","OrderDate":"3/26/2017","TotalPayment":"$495197.89","Status":6,"Type":2},{"OrderID":"50988-454","ShipCountry":"GR","ShipAddress":"6 Jenna Park","ShipName":"Reichert-Nolan","OrderDate":"11/17/2016","TotalPayment":"$134992.56","Status":5,"Type":3},{"OrderID":"59779-812","ShipCountry":"ID","ShipAddress":"36203 Talisman Parkway","ShipName":"Miller Inc","OrderDate":"5/3/2017","TotalPayment":"$1017603.90","Status":2,"Type":2},{"OrderID":"0574-0118","ShipCountry":"PL","ShipAddress":"5374 Myrtle Center","ShipName":"Schmeler, Howell and Luettgen","OrderDate":"2/19/2017","TotalPayment":"$943709.39","Status":2,"Type":3},{"OrderID":"10742-1538","ShipCountry":"MU","ShipAddress":"9 Fieldstone Pass","ShipName":"Tromp-Altenwerth","OrderDate":"9/4/2017","TotalPayment":"$396688.33","Status":1,"Type":3},{"OrderID":"76329-3012","ShipCountry":"ID","ShipAddress":"24 Luster Pass","ShipName":"Daniel, Zboncak and Bergstrom","OrderDate":"3/22/2016","TotalPayment":"$839859.79","Status":5,"Type":2},{"OrderID":"10812-198","ShipCountry":"CN","ShipAddress":"175 Springview Avenue","ShipName":"Hickle-Jast","OrderDate":"5/31/2017","TotalPayment":"$1066695.07","Status":5,"Type":2},{"OrderID":"57664-502","ShipCountry":"JP","ShipAddress":"20281 Brickson Park Park","ShipName":"Flatley Inc","OrderDate":"9/16/2016","TotalPayment":"$63615.82","Status":3,"Type":3},{"OrderID":"64117-181","ShipCountry":"CN","ShipAddress":"34 Chinook Parkway","ShipName":"Block, Hamill and Kulas","OrderDate":"5/7/2017","TotalPayment":"$469520.18","Status":2,"Type":3},{"OrderID":"0603-5439","ShipCountry":"SI","ShipAddress":"670 New Castle Plaza","ShipName":"Gerlach and Sons","OrderDate":"6/24/2016","TotalPayment":"$303449.81","Status":4,"Type":3},{"OrderID":"76045-103","ShipCountry":"ID","ShipAddress":"34970 Cody Place","ShipName":"Braun and Sons","OrderDate":"1/26/2016","TotalPayment":"$329380.58","Status":6,"Type":1},{"OrderID":"52891-104","ShipCountry":"CN","ShipAddress":"244 Ramsey Pass","ShipName":"Kulas-Quitzon","OrderDate":"7/14/2017","TotalPayment":"$54868.44","Status":4,"Type":3}]},\n{"RecordID":27,"FirstName":"Lucky","LastName":"Pendlebury","Company":"Flashdog","Email":"lpendleburyq@gravatar.com","Phone":"360-362-9735","Status":4,"Type":3,"Orders":[{"OrderID":"35356-948","ShipCountry":"BR","ShipAddress":"5075 Golf View Plaza","ShipName":"Jakubowski, Nikolaus and Little","OrderDate":"7/5/2017","TotalPayment":"$674147.25","Status":3,"Type":1},{"OrderID":"63323-398","ShipCountry":"GB","ShipAddress":"74 Shopko Terrace","ShipName":"Schimmel LLC","OrderDate":"2/15/2016","TotalPayment":"$475506.35","Status":1,"Type":1},{"OrderID":"25021-501","ShipCountry":"MY","ShipAddress":"461 Hoard Crossing","ShipName":"Bashirian, Wilkinson and Gottlieb","OrderDate":"7/31/2016","TotalPayment":"$79868.33","Status":5,"Type":1},{"OrderID":"68788-9182","ShipCountry":"CN","ShipAddress":"9773 Waubesa Drive","ShipName":"Feeney-Kub","OrderDate":"11/1/2017","TotalPayment":"$81480.05","Status":3,"Type":3},{"OrderID":"63941-525","ShipCountry":"BY","ShipAddress":"17 Birchwood Parkway","ShipName":"Zulauf-Ankunding","OrderDate":"5/13/2017","TotalPayment":"$939205.77","Status":5,"Type":2},{"OrderID":"49702-207","ShipCountry":"ID","ShipAddress":"095 Delladonna Center","ShipName":"Zboncak, Klein and Moen","OrderDate":"11/10/2017","TotalPayment":"$222069.03","Status":3,"Type":1}]},\n{"RecordID":28,"FirstName":"Aidan","LastName":"Bonsall","Company":"Jayo","Email":"abonsallr@ycombinator.com","Phone":"691-647-3894","Status":3,"Type":1,"Orders":[{"OrderID":"54092-515","ShipCountry":"IE","ShipAddress":"1810 Golden Leaf Court","ShipName":"Lindgren Group","OrderDate":"9/2/2016","TotalPayment":"$1155450.50","Status":3,"Type":1},{"OrderID":"57520-0938","ShipCountry":"BR","ShipAddress":"6687 Harbort Plaza","ShipName":"Erdman-McGlynn","OrderDate":"4/28/2017","TotalPayment":"$711798.08","Status":4,"Type":3},{"OrderID":"61995-2390","ShipCountry":"ID","ShipAddress":"899 Clemons Alley","ShipName":"Prosacco-Bailey","OrderDate":"8/24/2016","TotalPayment":"$170894.15","Status":5,"Type":1},{"OrderID":"75857-1001","ShipCountry":"PL","ShipAddress":"5 Del Mar Alley","ShipName":"Anderson-Effertz","OrderDate":"12/8/2017","TotalPayment":"$440996.85","Status":5,"Type":3},{"OrderID":"42549-613","ShipCountry":"SV","ShipAddress":"891 Truax Pass","ShipName":"Ratke, Glover and Davis","OrderDate":"10/30/2016","TotalPayment":"$985272.60","Status":1,"Type":1}]},\n{"RecordID":29,"FirstName":"Dolores","LastName":"Dabs","Company":"Dabvine","Email":"ddabss@xing.com","Phone":"608-905-5454","Status":1,"Type":3,"Orders":[{"OrderID":"0019-1177","ShipCountry":"ID","ShipAddress":"4682 Brentwood Center","ShipName":"Hermiston, McCullough and Durgan","OrderDate":"10/17/2016","TotalPayment":"$417957.95","Status":1,"Type":1},{"OrderID":"0268-0130","ShipCountry":"GR","ShipAddress":"337 Forster Hill","ShipName":"Turcotte-Walker","OrderDate":"7/24/2017","TotalPayment":"$97200.49","Status":5,"Type":2},{"OrderID":"11523-7237","ShipCountry":"AR","ShipAddress":"2 Alpine Parkway","ShipName":"Kuhn, Skiles and Jakubowski","OrderDate":"4/18/2016","TotalPayment":"$689237.51","Status":1,"Type":3},{"OrderID":"36987-2537","ShipCountry":"MA","ShipAddress":"3 Banding Trail","ShipName":"Cole-Denesik","OrderDate":"1/3/2017","TotalPayment":"$871155.51","Status":2,"Type":1},{"OrderID":"0781-6141","ShipCountry":"ID","ShipAddress":"17 Bellgrove Park","ShipName":"Deckow-Feest","OrderDate":"12/15/2016","TotalPayment":"$280265.77","Status":5,"Type":2},{"OrderID":"68180-185","ShipCountry":"PY","ShipAddress":"69963 Pleasure Plaza","ShipName":"Halvorson-Kunde","OrderDate":"6/16/2017","TotalPayment":"$986175.37","Status":5,"Type":3},{"OrderID":"52686-230","ShipCountry":"PE","ShipAddress":"3 Walton Place","ShipName":"Windler LLC","OrderDate":"2/4/2017","TotalPayment":"$1072678.60","Status":1,"Type":1},{"OrderID":"37000-761","ShipCountry":"EG","ShipAddress":"0996 Merchant Crossing","ShipName":"Towne and Sons","OrderDate":"7/22/2016","TotalPayment":"$117592.52","Status":5,"Type":2},{"OrderID":"60691-116","ShipCountry":"CN","ShipAddress":"5072 Welch Pass","ShipName":"Weber-Prosacco","OrderDate":"6/3/2017","TotalPayment":"$670103.20","Status":3,"Type":2}]},\n{"RecordID":30,"FirstName":"Page","LastName":"Ethridge","Company":"Zoonoodle","Email":"pethridget@biblegateway.com","Phone":"535-144-7585","Status":6,"Type":2,"Orders":[{"OrderID":"55312-468","ShipCountry":"RU","ShipAddress":"3774 Golden Leaf Parkway","ShipName":"Kihn, Kuhic and Braun","OrderDate":"1/18/2017","TotalPayment":"$218591.20","Status":4,"Type":1},{"OrderID":"21130-439","ShipCountry":"CM","ShipAddress":"793 Oakridge Parkway","ShipName":"Hoppe Group","OrderDate":"6/19/2016","TotalPayment":"$815754.18","Status":3,"Type":3},{"OrderID":"41520-112","ShipCountry":"SY","ShipAddress":"3 Continental Trail","ShipName":"Bogisich Group","OrderDate":"7/21/2016","TotalPayment":"$695252.50","Status":6,"Type":2},{"OrderID":"59535-3301","ShipCountry":"HN","ShipAddress":"21 John Wall Center","ShipName":"Rutherford Inc","OrderDate":"1/1/2017","TotalPayment":"$653041.23","Status":5,"Type":3},{"OrderID":"42227-081","ShipCountry":"CZ","ShipAddress":"8 Ramsey Center","ShipName":"MacGyver, Bogan and Bashirian","OrderDate":"7/5/2016","TotalPayment":"$159205.76","Status":4,"Type":3},{"OrderID":"33261-142","ShipCountry":"CN","ShipAddress":"2 Fordem Point","ShipName":"Fay, Nader and Mayer","OrderDate":"5/9/2017","TotalPayment":"$402665.55","Status":2,"Type":3},{"OrderID":"17478-122","ShipCountry":"PT","ShipAddress":"9125 Kenwood Crossing","ShipName":"Kozey-Mitchell","OrderDate":"9/20/2016","TotalPayment":"$385255.13","Status":6,"Type":1},{"OrderID":"49035-066","ShipCountry":"FR","ShipAddress":"547 Jackson Point","ShipName":"Legros-Lemke","OrderDate":"4/5/2017","TotalPayment":"$916118.34","Status":5,"Type":3},{"OrderID":"0378-0344","ShipCountry":"CN","ShipAddress":"9 Mallard Lane","ShipName":"Collins-Deckow","OrderDate":"1/2/2016","TotalPayment":"$992891.41","Status":6,"Type":3},{"OrderID":"51523-034","ShipCountry":"US","ShipAddress":"02 8th Center","ShipName":"Schimmel-Lueilwitz","OrderDate":"7/11/2017","TotalPayment":"$922442.63","Status":5,"Type":2},{"OrderID":"67046-477","ShipCountry":"AL","ShipAddress":"71 Continental Drive","ShipName":"Wolff-Fisher","OrderDate":"3/23/2017","TotalPayment":"$875333.65","Status":3,"Type":3},{"OrderID":"60429-300","ShipCountry":"CN","ShipAddress":"02 Merry Park","ShipName":"Fadel Inc","OrderDate":"12/15/2017","TotalPayment":"$170451.35","Status":6,"Type":3},{"OrderID":"65841-673","ShipCountry":"CN","ShipAddress":"6 Waubesa Pass","ShipName":"Barrows Inc","OrderDate":"5/5/2016","TotalPayment":"$997586.75","Status":4,"Type":2},{"OrderID":"58892-336","ShipCountry":"GR","ShipAddress":"83673 Thompson Street","ShipName":"Schowalter-Toy","OrderDate":"6/17/2016","TotalPayment":"$1115920.56","Status":2,"Type":2}]},\n{"RecordID":31,"FirstName":"Codie","LastName":"Martusewicz","Company":"Avavee","Email":"cmartusewiczu@soup.io","Phone":"824-564-5918","Status":1,"Type":2,"Orders":[{"OrderID":"51079-294","ShipCountry":"PH","ShipAddress":"93 Hoard Crossing","ShipName":"Gleason Group","OrderDate":"2/20/2017","TotalPayment":"$1082321.51","Status":4,"Type":3},{"OrderID":"21130-199","ShipCountry":"HN","ShipAddress":"1 Gerald Junction","ShipName":"Labadie LLC","OrderDate":"1/10/2017","TotalPayment":"$59374.44","Status":1,"Type":3},{"OrderID":"48951-5032","ShipCountry":"NZ","ShipAddress":"150 Arizona Center","ShipName":"Heaney and Sons","OrderDate":"12/20/2017","TotalPayment":"$802593.16","Status":4,"Type":1},{"OrderID":"0597-0286","ShipCountry":"ID","ShipAddress":"100 Bellgrove Crossing","ShipName":"Kulas and Sons","OrderDate":"8/21/2017","TotalPayment":"$169613.88","Status":1,"Type":3},{"OrderID":"60505-3807","ShipCountry":"PL","ShipAddress":"63 Garrison Circle","ShipName":"Dickens LLC","OrderDate":"1/5/2016","TotalPayment":"$194662.61","Status":5,"Type":2},{"OrderID":"35356-570","ShipCountry":"CN","ShipAddress":"362 Eggendart Lane","ShipName":"Hills, Medhurst and Borer","OrderDate":"10/12/2016","TotalPayment":"$1150726.41","Status":1,"Type":1},{"OrderID":"42924-001","ShipCountry":"MT","ShipAddress":"36150 Evergreen Park","ShipName":"Zboncak-Kiehn","OrderDate":"2/14/2016","TotalPayment":"$1078465.02","Status":5,"Type":3},{"OrderID":"0178-0891","ShipCountry":"CO","ShipAddress":"3696 Sundown Lane","ShipName":"Considine, Hand and Auer","OrderDate":"3/31/2016","TotalPayment":"$1040290.68","Status":2,"Type":3},{"OrderID":"60429-765","ShipCountry":"BR","ShipAddress":"5 Chive Drive","ShipName":"Will Inc","OrderDate":"2/2/2017","TotalPayment":"$130815.95","Status":5,"Type":2},{"OrderID":"63833-616","ShipCountry":"MX","ShipAddress":"65 Waxwing Street","ShipName":"Marvin, Johns and Mosciski","OrderDate":"3/21/2016","TotalPayment":"$948358.82","Status":4,"Type":2},{"OrderID":"0185-0325","ShipCountry":"CN","ShipAddress":"582 Calypso Place","ShipName":"Hyatt LLC","OrderDate":"5/26/2016","TotalPayment":"$570088.03","Status":4,"Type":3},{"OrderID":"63323-127","ShipCountry":"PH","ShipAddress":"9 Maywood Plaza","ShipName":"Morar and Sons","OrderDate":"11/7/2016","TotalPayment":"$340195.83","Status":3,"Type":3},{"OrderID":"13537-217","ShipCountry":"UA","ShipAddress":"0 Pierstorff Street","ShipName":"Keeling and Sons","OrderDate":"7/28/2017","TotalPayment":"$373640.81","Status":4,"Type":1},{"OrderID":"0409-7075","ShipCountry":"UG","ShipAddress":"4767 High Crossing Pass","ShipName":"Pfannerstill, Lubowitz and Robel","OrderDate":"8/18/2016","TotalPayment":"$510518.43","Status":3,"Type":1},{"OrderID":"63323-379","ShipCountry":"IE","ShipAddress":"2613 Anhalt Way","ShipName":"Hansen, Howell and Durgan","OrderDate":"7/15/2016","TotalPayment":"$100254.95","Status":5,"Type":3},{"OrderID":"64525-0562","ShipCountry":"SY","ShipAddress":"770 Thackeray Junction","ShipName":"Renner-Keebler","OrderDate":"9/11/2017","TotalPayment":"$999829.02","Status":3,"Type":3},{"OrderID":"0603-5770","ShipCountry":"RU","ShipAddress":"23407 Lighthouse Bay Center","ShipName":"Stokes-Durgan","OrderDate":"7/12/2017","TotalPayment":"$550153.43","Status":2,"Type":2}]},\n{"RecordID":32,"FirstName":"Goldina","LastName":"Houltham","Company":"Rooxo","Email":"ghoulthamv@chron.com","Phone":"285-375-1139","Status":5,"Type":3,"Orders":[{"OrderID":"0143-2424","ShipCountry":"RU","ShipAddress":"61 Hoepker Place","ShipName":"Weissnat-Schiller","OrderDate":"11/26/2016","TotalPayment":"$1149558.15","Status":5,"Type":3},{"OrderID":"65862-619","ShipCountry":"PH","ShipAddress":"46405 Clarendon Circle","ShipName":"Rogahn-Jaskolski","OrderDate":"1/3/2017","TotalPayment":"$1082455.50","Status":3,"Type":3},{"OrderID":"0597-0191","ShipCountry":"PH","ShipAddress":"14090 Corben Avenue","ShipName":"Fisher, Casper and Will","OrderDate":"5/3/2016","TotalPayment":"$1021605.17","Status":4,"Type":1},{"OrderID":"49349-519","ShipCountry":"PE","ShipAddress":"05 Kings Center","ShipName":"Hintz, Hamill and Lindgren","OrderDate":"9/21/2016","TotalPayment":"$64126.33","Status":4,"Type":3},{"OrderID":"57955-5071","ShipCountry":"RU","ShipAddress":"1898 Ronald Regan Parkway","ShipName":"Wilderman, Renner and Pagac","OrderDate":"4/17/2016","TotalPayment":"$978612.20","Status":5,"Type":2},{"OrderID":"55648-635","ShipCountry":"CN","ShipAddress":"3 Ramsey Parkway","ShipName":"Mitchell, Beer and Rowe","OrderDate":"8/31/2017","TotalPayment":"$84201.59","Status":5,"Type":2},{"OrderID":"41167-0040","ShipCountry":"HR","ShipAddress":"8 La Follette Terrace","ShipName":"McClure, Effertz and Hamill","OrderDate":"11/24/2017","TotalPayment":"$940416.17","Status":5,"Type":3},{"OrderID":"50436-4604","ShipCountry":"AF","ShipAddress":"27 Claremont Avenue","ShipName":"Rau, Murphy and Bradtke","OrderDate":"5/6/2016","TotalPayment":"$932412.96","Status":4,"Type":1},{"OrderID":"68196-115","ShipCountry":"HN","ShipAddress":"0 Southridge Drive","ShipName":"Hoppe, Harvey and Kihn","OrderDate":"5/1/2017","TotalPayment":"$221770.47","Status":3,"Type":3},{"OrderID":"59746-127","ShipCountry":"PH","ShipAddress":"46491 Lerdahl Alley","ShipName":"Lang, Larson and Schumm","OrderDate":"2/24/2016","TotalPayment":"$996454.79","Status":1,"Type":1},{"OrderID":"0615-7507","ShipCountry":"ID","ShipAddress":"3 Saint Paul Drive","ShipName":"Fadel-Corkery","OrderDate":"11/23/2016","TotalPayment":"$173926.73","Status":4,"Type":3}]},\n{"RecordID":33,"FirstName":"Rosalind","LastName":"Denerley","Company":"Skidoo","Email":"rdenerleyw@xing.com","Phone":"356-957-2661","Status":6,"Type":1,"Orders":[{"OrderID":"0527-1375","ShipCountry":"CN","ShipAddress":"6019 Union Alley","ShipName":"Zieme-Schimmel","OrderDate":"6/28/2016","TotalPayment":"$64016.90","Status":4,"Type":2},{"OrderID":"60432-126","ShipCountry":"TH","ShipAddress":"66 Amoth Trail","ShipName":"Dickinson-Cremin","OrderDate":"5/25/2017","TotalPayment":"$691416.33","Status":3,"Type":1},{"OrderID":"0113-0335","ShipCountry":"CN","ShipAddress":"555 Londonderry Street","ShipName":"O\'Connell Group","OrderDate":"4/14/2017","TotalPayment":"$551411.79","Status":2,"Type":3},{"OrderID":"45802-840","ShipCountry":"MX","ShipAddress":"9285 Arapahoe Lane","ShipName":"Mann-Kautzer","OrderDate":"1/26/2017","TotalPayment":"$453296.70","Status":2,"Type":1},{"OrderID":"54868-5268","ShipCountry":"ID","ShipAddress":"71136 Ruskin Center","ShipName":"Carter-Collins","OrderDate":"5/30/2016","TotalPayment":"$794042.64","Status":5,"Type":1},{"OrderID":"41167-0675","ShipCountry":"PH","ShipAddress":"18 Bartillon Park","ShipName":"Macejkovic, Ziemann and Lowe","OrderDate":"7/12/2017","TotalPayment":"$800530.44","Status":2,"Type":3},{"OrderID":"76237-246","ShipCountry":"BR","ShipAddress":"885 Nobel Plaza","ShipName":"Wintheiser, Turcotte and Altenwerth","OrderDate":"9/29/2017","TotalPayment":"$214393.89","Status":1,"Type":2},{"OrderID":"13630-0012","ShipCountry":"CL","ShipAddress":"84330 Steensland Junction","ShipName":"Streich Inc","OrderDate":"10/13/2016","TotalPayment":"$517036.83","Status":1,"Type":2},{"OrderID":"35813-374","ShipCountry":"ID","ShipAddress":"3 School Pass","ShipName":"Huel Inc","OrderDate":"1/12/2017","TotalPayment":"$179662.13","Status":5,"Type":3},{"OrderID":"21695-741","ShipCountry":"SE","ShipAddress":"8 Hovde Hill","ShipName":"Bosco, Ratke and Lemke","OrderDate":"8/19/2017","TotalPayment":"$860068.75","Status":1,"Type":1},{"OrderID":"68400-358","ShipCountry":"SD","ShipAddress":"26 Reinke Junction","ShipName":"Watsica, Marquardt and O\'Conner","OrderDate":"8/28/2017","TotalPayment":"$824030.40","Status":3,"Type":2},{"OrderID":"43063-522","ShipCountry":"JP","ShipAddress":"1 Monument Hill","ShipName":"Carroll, Nitzsche and Cronin","OrderDate":"11/16/2016","TotalPayment":"$494506.55","Status":4,"Type":3},{"OrderID":"14783-441","ShipCountry":"NG","ShipAddress":"7 Russell Street","ShipName":"Davis Inc","OrderDate":"10/4/2017","TotalPayment":"$1049593.38","Status":3,"Type":2},{"OrderID":"60549-2108","ShipCountry":"CN","ShipAddress":"83 Maple Wood Drive","ShipName":"Russel-McClure","OrderDate":"7/23/2017","TotalPayment":"$1047584.16","Status":3,"Type":1},{"OrderID":"0054-0118","ShipCountry":"LT","ShipAddress":"52595 Morning Plaza","ShipName":"Stroman, Buckridge and Mosciski","OrderDate":"6/9/2016","TotalPayment":"$908316.52","Status":6,"Type":1},{"OrderID":"34645-4025","ShipCountry":"PT","ShipAddress":"5 Rigney Park","ShipName":"Rempel and Sons","OrderDate":"5/22/2017","TotalPayment":"$1004712.01","Status":1,"Type":2},{"OrderID":"0024-5840","ShipCountry":"JP","ShipAddress":"5 Daystar Avenue","ShipName":"Kiehn, Bednar and McGlynn","OrderDate":"12/7/2016","TotalPayment":"$751946.80","Status":6,"Type":1}]},\n{"RecordID":34,"FirstName":"Urson","LastName":"Medendorp","Company":"Thoughtbridge","Email":"umedendorpx@gmpg.org","Phone":"262-251-2289","Status":4,"Type":2,"Orders":[{"OrderID":"53808-0394","ShipCountry":"HR","ShipAddress":"492 Warrior Avenue","ShipName":"Kunde-Bashirian","OrderDate":"6/21/2017","TotalPayment":"$595872.62","Status":1,"Type":3},{"OrderID":"59779-529","ShipCountry":"PE","ShipAddress":"0 Nelson Junction","ShipName":"Hayes Inc","OrderDate":"3/7/2016","TotalPayment":"$472874.02","Status":3,"Type":3},{"OrderID":"60512-0016","ShipCountry":"AZ","ShipAddress":"147 Maryland Terrace","ShipName":"Jast-Hettinger","OrderDate":"3/30/2016","TotalPayment":"$454118.42","Status":5,"Type":1},{"OrderID":"36987-2388","ShipCountry":"CN","ShipAddress":"778 Almo Terrace","ShipName":"Quitzon LLC","OrderDate":"3/12/2017","TotalPayment":"$1031362.22","Status":3,"Type":2},{"OrderID":"49288-0463","ShipCountry":"BR","ShipAddress":"992 Buhler Point","ShipName":"Kuhlman-Koepp","OrderDate":"6/19/2016","TotalPayment":"$83031.65","Status":2,"Type":2},{"OrderID":"63187-064","ShipCountry":"ID","ShipAddress":"8858 Heath Plaza","ShipName":"Ratke-Mayert","OrderDate":"2/4/2016","TotalPayment":"$29605.88","Status":4,"Type":2},{"OrderID":"55154-0884","ShipCountry":"RU","ShipAddress":"130 Bonner Court","ShipName":"Schoen-Farrell","OrderDate":"8/15/2017","TotalPayment":"$844867.03","Status":2,"Type":3},{"OrderID":"37000-148","ShipCountry":"RU","ShipAddress":"004 Bunting Drive","ShipName":"Denesik and Sons","OrderDate":"4/5/2016","TotalPayment":"$1038868.30","Status":2,"Type":2},{"OrderID":"68180-196","ShipCountry":"PH","ShipAddress":"17407 Gateway Alley","ShipName":"Ziemann-Runte","OrderDate":"9/16/2016","TotalPayment":"$57899.32","Status":1,"Type":2},{"OrderID":"0615-7641","ShipCountry":"ID","ShipAddress":"647 Mosinee Plaza","ShipName":"Metz LLC","OrderDate":"6/9/2016","TotalPayment":"$819345.62","Status":2,"Type":2},{"OrderID":"24987-435","ShipCountry":"GR","ShipAddress":"5830 Express Center","ShipName":"Osinski Group","OrderDate":"6/14/2017","TotalPayment":"$544925.79","Status":3,"Type":2},{"OrderID":"41190-203","ShipCountry":"PL","ShipAddress":"9476 East Center","ShipName":"Wehner LLC","OrderDate":"10/18/2017","TotalPayment":"$32903.01","Status":5,"Type":1},{"OrderID":"65862-287","ShipCountry":"MX","ShipAddress":"19 Pine View Terrace","ShipName":"Effertz, Jast and Johnston","OrderDate":"9/30/2016","TotalPayment":"$803140.47","Status":2,"Type":3},{"OrderID":"59564-251","ShipCountry":"EE","ShipAddress":"5164 Chinook Junction","ShipName":"Nitzsche-Runolfsdottir","OrderDate":"10/20/2016","TotalPayment":"$541197.47","Status":2,"Type":3},{"OrderID":"65841-763","ShipCountry":"BR","ShipAddress":"8730 Schurz Center","ShipName":"Hudson, Turner and Hartmann","OrderDate":"3/9/2017","TotalPayment":"$926490.96","Status":5,"Type":2},{"OrderID":"65044-1791","ShipCountry":"MU","ShipAddress":"6 Hanson Drive","ShipName":"Grimes Inc","OrderDate":"1/1/2016","TotalPayment":"$28888.89","Status":6,"Type":3},{"OrderID":"0409-3374","ShipCountry":"CZ","ShipAddress":"8797 Blackbird Park","ShipName":"Cremin Group","OrderDate":"10/2/2016","TotalPayment":"$781105.83","Status":6,"Type":2},{"OrderID":"67296-0673","ShipCountry":"CN","ShipAddress":"03 Emmet Point","ShipName":"Hackett Inc","OrderDate":"4/21/2017","TotalPayment":"$959853.95","Status":3,"Type":1},{"OrderID":"68703-080","ShipCountry":"MZ","ShipAddress":"22018 Randy Terrace","ShipName":"Buckridge-Keebler","OrderDate":"2/26/2016","TotalPayment":"$826774.96","Status":1,"Type":1},{"OrderID":"49035-732","ShipCountry":"CN","ShipAddress":"2817 Spenser Hill","ShipName":"Mante-Yundt","OrderDate":"5/8/2017","TotalPayment":"$888048.45","Status":6,"Type":3}]},\n{"RecordID":35,"FirstName":"Henderson","LastName":"L\'Episcopio","Company":"Meevee","Email":"hlepiscopioy@weebly.com","Phone":"973-729-6584","Status":6,"Type":2,"Orders":[{"OrderID":"43772-0043","ShipCountry":"PL","ShipAddress":"209 Harper Lane","ShipName":"Pouros-Quigley","OrderDate":"6/20/2016","TotalPayment":"$32152.57","Status":3,"Type":2},{"OrderID":"14783-018","ShipCountry":"SD","ShipAddress":"42 Meadow Ridge Crossing","ShipName":"Rempel, Fritsch and Wiegand","OrderDate":"9/30/2016","TotalPayment":"$763902.07","Status":5,"Type":3},{"OrderID":"33342-058","ShipCountry":"BR","ShipAddress":"4047 Almo Terrace","ShipName":"Kemmer-Dach","OrderDate":"3/29/2016","TotalPayment":"$113475.23","Status":2,"Type":1},{"OrderID":"0406-0360","ShipCountry":"ZM","ShipAddress":"0 Charing Cross Alley","ShipName":"Hagenes-Hand","OrderDate":"3/25/2017","TotalPayment":"$819581.17","Status":2,"Type":2},{"OrderID":"52125-526","ShipCountry":"ID","ShipAddress":"31038 Mcguire Point","ShipName":"Altenwerth-Kemmer","OrderDate":"10/7/2016","TotalPayment":"$685401.03","Status":3,"Type":1},{"OrderID":"68828-127","ShipCountry":"UA","ShipAddress":"376 Ridge Oak Place","ShipName":"Douglas LLC","OrderDate":"8/21/2016","TotalPayment":"$806224.79","Status":6,"Type":3},{"OrderID":"13537-068","ShipCountry":"FI","ShipAddress":"29035 Vidon Terrace","ShipName":"Smitham, Macejkovic and Kohler","OrderDate":"10/1/2017","TotalPayment":"$385796.57","Status":4,"Type":3},{"OrderID":"52584-810","ShipCountry":"ID","ShipAddress":"69089 Morningstar Court","ShipName":"Cormier and Sons","OrderDate":"9/16/2016","TotalPayment":"$52052.87","Status":3,"Type":2},{"OrderID":"37000-402","ShipCountry":"CN","ShipAddress":"61 Brickson Park Street","ShipName":"Cummerata, Hoeger and Lynch","OrderDate":"3/25/2017","TotalPayment":"$185200.96","Status":2,"Type":3},{"OrderID":"61995-0758","ShipCountry":"RU","ShipAddress":"6640 Di Loreto Pass","ShipName":"Hegmann, Wilkinson and Barrows","OrderDate":"5/6/2017","TotalPayment":"$1004277.88","Status":6,"Type":2},{"OrderID":"11523-0934","ShipCountry":"RU","ShipAddress":"3850 Delaware Pass","ShipName":"Senger-Wuckert","OrderDate":"1/1/2017","TotalPayment":"$306635.63","Status":6,"Type":2},{"OrderID":"58118-9895","ShipCountry":"SE","ShipAddress":"15 Clove Drive","ShipName":"Abshire Inc","OrderDate":"2/24/2016","TotalPayment":"$486383.83","Status":5,"Type":1},{"OrderID":"63941-299","ShipCountry":"MK","ShipAddress":"25 Jenifer Plaza","ShipName":"Auer Group","OrderDate":"3/13/2017","TotalPayment":"$1059189.62","Status":1,"Type":1},{"OrderID":"48951-8029","ShipCountry":"CN","ShipAddress":"0391 Everett Lane","ShipName":"Ortiz, Dare and Kilback","OrderDate":"2/11/2016","TotalPayment":"$893831.46","Status":1,"Type":2},{"OrderID":"65785-160","ShipCountry":"CN","ShipAddress":"60696 Marcy Plaza","ShipName":"Littel, Abernathy and Welch","OrderDate":"12/12/2017","TotalPayment":"$1079219.05","Status":1,"Type":2},{"OrderID":"0093-5118","ShipCountry":"ID","ShipAddress":"4302 Green Ridge Crossing","ShipName":"Torp Group","OrderDate":"9/30/2017","TotalPayment":"$260832.45","Status":6,"Type":3},{"OrderID":"10158-001","ShipCountry":"KE","ShipAddress":"3287 Talmadge Terrace","ShipName":"Gleason-Wilkinson","OrderDate":"8/17/2016","TotalPayment":"$139911.09","Status":5,"Type":1},{"OrderID":"0135-0522","ShipCountry":"ID","ShipAddress":"3 Sullivan Street","ShipName":"Watsica-Tremblay","OrderDate":"5/6/2016","TotalPayment":"$682951.51","Status":5,"Type":3},{"OrderID":"68001-115","ShipCountry":"CZ","ShipAddress":"3 Surrey Point","ShipName":"Lowe-Anderson","OrderDate":"6/26/2017","TotalPayment":"$688893.09","Status":1,"Type":3}]},\n{"RecordID":36,"FirstName":"Barclay","LastName":"Fern","Company":"Demizz","Email":"bfernz@cloudflare.com","Phone":"692-973-4785","Status":6,"Type":3,"Orders":[{"OrderID":"55154-1399","ShipCountry":"RU","ShipAddress":"67 Lillian Pass","ShipName":"Nikolaus-McGlynn","OrderDate":"11/15/2016","TotalPayment":"$752538.83","Status":3,"Type":1},{"OrderID":"42571-103","ShipCountry":"CN","ShipAddress":"35343 Veith Crossing","ShipName":"Wiegand, Abbott and Green","OrderDate":"12/1/2017","TotalPayment":"$1089143.16","Status":5,"Type":2},{"OrderID":"51991-631","ShipCountry":"UA","ShipAddress":"42 Division Road","ShipName":"VonRueden-Harris","OrderDate":"2/13/2017","TotalPayment":"$677628.11","Status":6,"Type":1},{"OrderID":"16714-583","ShipCountry":"GR","ShipAddress":"22 American Ash Park","ShipName":"Gerlach-Bayer","OrderDate":"12/22/2016","TotalPayment":"$302661.75","Status":3,"Type":1},{"OrderID":"49351-018","ShipCountry":"PL","ShipAddress":"52767 Jenifer Parkway","ShipName":"Swift and Sons","OrderDate":"6/25/2016","TotalPayment":"$1124477.50","Status":5,"Type":3},{"OrderID":"54868-2223","ShipCountry":"BR","ShipAddress":"198 Scoville Road","ShipName":"Funk LLC","OrderDate":"11/11/2017","TotalPayment":"$1022352.31","Status":6,"Type":2},{"OrderID":"68180-182","ShipCountry":"ID","ShipAddress":"25765 Northland Alley","ShipName":"McGlynn LLC","OrderDate":"10/14/2017","TotalPayment":"$928775.03","Status":5,"Type":3},{"OrderID":"49035-091","ShipCountry":"ID","ShipAddress":"89 Mitchell Center","ShipName":"Bode, Kshlerin and Mante","OrderDate":"8/30/2016","TotalPayment":"$61556.61","Status":5,"Type":2},{"OrderID":"55045-3602","ShipCountry":"CN","ShipAddress":"211 Dottie Junction","ShipName":"Leffler, Bergnaum and D\'Amore","OrderDate":"1/18/2016","TotalPayment":"$75868.02","Status":2,"Type":2},{"OrderID":"61314-628","ShipCountry":"UA","ShipAddress":"19 Nobel Junction","ShipName":"Rodriguez-Schaefer","OrderDate":"1/8/2016","TotalPayment":"$1102042.50","Status":3,"Type":1},{"OrderID":"10742-8456","ShipCountry":"RU","ShipAddress":"2 Corben Street","ShipName":"Stamm, Stoltenberg and Schuppe","OrderDate":"12/16/2017","TotalPayment":"$632144.68","Status":4,"Type":1},{"OrderID":"40046-0043","ShipCountry":"UY","ShipAddress":"06294 Pierstorff Place","ShipName":"Hudson, Grant and Huels","OrderDate":"3/15/2017","TotalPayment":"$982299.72","Status":3,"Type":3},{"OrderID":"55711-069","ShipCountry":"RU","ShipAddress":"55 Gateway Park","ShipName":"Rowe-Miller","OrderDate":"5/8/2017","TotalPayment":"$683301.38","Status":4,"Type":3},{"OrderID":"36987-2299","ShipCountry":"JP","ShipAddress":"756 Springs Drive","ShipName":"Braun, Gaylord and Aufderhar","OrderDate":"4/17/2017","TotalPayment":"$742007.82","Status":1,"Type":2},{"OrderID":"33992-2360","ShipCountry":"CN","ShipAddress":"39 Fieldstone Junction","ShipName":"Torphy-Harber","OrderDate":"4/9/2016","TotalPayment":"$1105142.07","Status":6,"Type":1},{"OrderID":"65977-5033","ShipCountry":"MG","ShipAddress":"2 Raven Park","ShipName":"Balistreri, Rippin and Quigley","OrderDate":"11/16/2017","TotalPayment":"$153891.34","Status":5,"Type":3}]},\n{"RecordID":37,"FirstName":"Samuele","LastName":"Ewdale","Company":"Wordpedia","Email":"sewdale10@plala.or.jp","Phone":"323-311-3835","Status":1,"Type":2,"Orders":[{"OrderID":"43857-0288","ShipCountry":"CN","ShipAddress":"355 Dixon Pass","ShipName":"Howell, Koss and Dietrich","OrderDate":"11/12/2016","TotalPayment":"$969261.35","Status":6,"Type":3},{"OrderID":"55390-163","ShipCountry":"IR","ShipAddress":"492 Bluestem Place","ShipName":"Emmerich and Sons","OrderDate":"8/13/2017","TotalPayment":"$182758.14","Status":1,"Type":2},{"OrderID":"0087-6071","ShipCountry":"US","ShipAddress":"76 La Follette Circle","ShipName":"Willms-Bruen","OrderDate":"11/22/2017","TotalPayment":"$864683.60","Status":5,"Type":2},{"OrderID":"21695-044","ShipCountry":"CA","ShipAddress":"3955 Colorado Plaza","ShipName":"Huels LLC","OrderDate":"11/17/2017","TotalPayment":"$136107.89","Status":6,"Type":3},{"OrderID":"0378-3632","ShipCountry":"GR","ShipAddress":"69784 Golf View Park","ShipName":"Medhurst LLC","OrderDate":"1/31/2017","TotalPayment":"$321838.99","Status":6,"Type":3},{"OrderID":"68001-182","ShipCountry":"CN","ShipAddress":"16 Lakewood Gardens Lane","ShipName":"Rippin, Bruen and Gerhold","OrderDate":"6/24/2017","TotalPayment":"$211092.23","Status":6,"Type":3},{"OrderID":"46123-014","ShipCountry":"KZ","ShipAddress":"84262 Kensington Street","ShipName":"Rippin-Gulgowski","OrderDate":"8/13/2016","TotalPayment":"$766848.55","Status":6,"Type":1},{"OrderID":"52125-012","ShipCountry":"BR","ShipAddress":"596 Rowland Place","ShipName":"Streich-Mraz","OrderDate":"12/21/2016","TotalPayment":"$702098.92","Status":3,"Type":3},{"OrderID":"0054-0544","ShipCountry":"CZ","ShipAddress":"64 Dayton Way","ShipName":"Krajcik-Waelchi","OrderDate":"12/28/2016","TotalPayment":"$726630.53","Status":4,"Type":1},{"OrderID":"64578-0094","ShipCountry":"ID","ShipAddress":"95821 Debs Center","ShipName":"Macejkovic-Sawayn","OrderDate":"10/25/2016","TotalPayment":"$1199043.82","Status":6,"Type":1}]},\n{"RecordID":38,"FirstName":"Melonie","LastName":"McCarney","Company":"Shufflebeat","Email":"mmccarney11@edublogs.org","Phone":"631-770-4502","Status":1,"Type":2,"Orders":[{"OrderID":"67544-697","ShipCountry":"TZ","ShipAddress":"5115 Prentice Hill","ShipName":"Koelpin-Dicki","OrderDate":"9/15/2017","TotalPayment":"$398654.43","Status":2,"Type":1},{"OrderID":"59676-101","ShipCountry":"PL","ShipAddress":"76 Tennessee Way","ShipName":"Muller, Torphy and Stokes","OrderDate":"10/27/2016","TotalPayment":"$1099193.30","Status":5,"Type":2},{"OrderID":"68788-9163","ShipCountry":"VN","ShipAddress":"9 Schurz Road","ShipName":"O\'Conner-Hagenes","OrderDate":"2/22/2017","TotalPayment":"$624422.78","Status":1,"Type":1},{"OrderID":"50988-232","ShipCountry":"CK","ShipAddress":"48079 Kingsford Park","ShipName":"Beatty-Adams","OrderDate":"10/21/2017","TotalPayment":"$386294.23","Status":6,"Type":3},{"OrderID":"52125-707","ShipCountry":"CN","ShipAddress":"8 Dawn Crossing","ShipName":"Homenick-Wintheiser","OrderDate":"3/27/2016","TotalPayment":"$995026.46","Status":6,"Type":2}]},\n{"RecordID":39,"FirstName":"Kissie","LastName":"Evelyn","Company":"Twiyo","Email":"kevelyn12@canalblog.com","Phone":"311-553-7561","Status":5,"Type":2,"Orders":[{"OrderID":"55289-963","ShipCountry":"CN","ShipAddress":"031 Bashford Way","ShipName":"Mertz, Kozey and Kling","OrderDate":"9/17/2017","TotalPayment":"$475627.03","Status":5,"Type":2},{"OrderID":"64679-105","ShipCountry":"CN","ShipAddress":"27612 Briar Crest Center","ShipName":"Schroeder-Wisozk","OrderDate":"2/11/2016","TotalPayment":"$280942.11","Status":5,"Type":2},{"OrderID":"61715-122","ShipCountry":"ID","ShipAddress":"4 Banding Center","ShipName":"Wolf Group","OrderDate":"4/2/2016","TotalPayment":"$390933.48","Status":2,"Type":1},{"OrderID":"63739-801","ShipCountry":"CN","ShipAddress":"95077 Redwing Alley","ShipName":"Feeney, Emard and Bergnaum","OrderDate":"8/22/2017","TotalPayment":"$968871.16","Status":5,"Type":1},{"OrderID":"59779-806","ShipCountry":"RU","ShipAddress":"943 Garrison Crossing","ShipName":"Hagenes Inc","OrderDate":"3/15/2016","TotalPayment":"$165356.77","Status":1,"Type":1},{"OrderID":"16590-286","ShipCountry":"RU","ShipAddress":"5 Porter Terrace","ShipName":"Abshire-Morar","OrderDate":"7/31/2016","TotalPayment":"$1005759.58","Status":4,"Type":1}]},\n{"RecordID":40,"FirstName":"Margret","LastName":"Skarr","Company":"Blognation","Email":"mskarr13@dagondesign.com","Phone":"942-648-8669","Status":3,"Type":1,"Orders":[{"OrderID":"49035-678","ShipCountry":"RU","ShipAddress":"2 Cardinal Park","ShipName":"Bergnaum-Tromp","OrderDate":"7/3/2016","TotalPayment":"$596489.01","Status":3,"Type":3},{"OrderID":"44523-609","ShipCountry":"FR","ShipAddress":"16 Scott Way","ShipName":"Dach-Jones","OrderDate":"1/12/2017","TotalPayment":"$1111810.58","Status":2,"Type":1},{"OrderID":"0517-0101","ShipCountry":"FR","ShipAddress":"2633 Anzinger Court","ShipName":"Moore-Wisozk","OrderDate":"11/9/2016","TotalPayment":"$886320.75","Status":5,"Type":2},{"OrderID":"63629-4355","ShipCountry":"CN","ShipAddress":"714 Oakridge Park","ShipName":"Hammes-Howe","OrderDate":"1/28/2016","TotalPayment":"$475892.16","Status":6,"Type":1},{"OrderID":"54866-003","ShipCountry":"ID","ShipAddress":"5067 Gerald Park","ShipName":"Emard Inc","OrderDate":"5/6/2016","TotalPayment":"$1156916.28","Status":1,"Type":2},{"OrderID":"43353-614","ShipCountry":"MT","ShipAddress":"099 Manufacturers Park","ShipName":"Gutmann, Jaskolski and Terry","OrderDate":"11/23/2017","TotalPayment":"$679301.95","Status":6,"Type":3},{"OrderID":"54569-1218","ShipCountry":"CZ","ShipAddress":"4256 Blaine Avenue","ShipName":"Cremin, Hessel and Gusikowski","OrderDate":"8/28/2016","TotalPayment":"$771630.39","Status":4,"Type":1},{"OrderID":"21695-737","ShipCountry":"PH","ShipAddress":"75739 Ramsey Alley","ShipName":"Larkin-Farrell","OrderDate":"6/13/2017","TotalPayment":"$571486.78","Status":1,"Type":3},{"OrderID":"51079-588","ShipCountry":"CZ","ShipAddress":"2771 Portage Avenue","ShipName":"Corkery Group","OrderDate":"8/27/2016","TotalPayment":"$220458.70","Status":2,"Type":1},{"OrderID":"68210-1902","ShipCountry":"CO","ShipAddress":"5998 Hoepker Hill","ShipName":"O\'Connell and Sons","OrderDate":"11/8/2017","TotalPayment":"$1010159.51","Status":3,"Type":1},{"OrderID":"62914-1000","ShipCountry":"DK","ShipAddress":"1 Barby Crossing","ShipName":"Fahey, Corwin and Shields","OrderDate":"5/26/2016","TotalPayment":"$556641.10","Status":4,"Type":2},{"OrderID":"63667-976","ShipCountry":"KZ","ShipAddress":"247 Hagan Lane","ShipName":"Kertzmann Group","OrderDate":"11/28/2017","TotalPayment":"$239193.74","Status":5,"Type":3},{"OrderID":"0378-3530","ShipCountry":"ID","ShipAddress":"984 Canary Crossing","ShipName":"Cormier Group","OrderDate":"4/22/2017","TotalPayment":"$707338.78","Status":4,"Type":2}]},\n{"RecordID":41,"FirstName":"Walden","LastName":"Chese","Company":"Vimbo","Email":"wchese14@technorati.com","Phone":"164-917-9924","Status":3,"Type":3,"Orders":[{"OrderID":"50228-107","ShipCountry":"CN","ShipAddress":"9922 Corscot Park","ShipName":"Pfeffer and Sons","OrderDate":"12/2/2017","TotalPayment":"$751619.40","Status":4,"Type":3},{"OrderID":"55154-7456","ShipCountry":"CN","ShipAddress":"8 Stone Corner Alley","ShipName":"Kiehn-Turner","OrderDate":"3/17/2017","TotalPayment":"$258007.35","Status":6,"Type":3},{"OrderID":"0093-3193","ShipCountry":"CN","ShipAddress":"873 High Crossing Crossing","ShipName":"Schmidt, Gusikowski and Volkman","OrderDate":"1/8/2016","TotalPayment":"$798690.80","Status":1,"Type":3},{"OrderID":"49288-0468","ShipCountry":"CN","ShipAddress":"363 Karstens Hill","ShipName":"Kuphal, Robel and Hane","OrderDate":"4/13/2016","TotalPayment":"$338272.63","Status":5,"Type":3},{"OrderID":"0904-5050","ShipCountry":"CN","ShipAddress":"9803 Green Place","ShipName":"Spencer Group","OrderDate":"5/29/2017","TotalPayment":"$860121.94","Status":4,"Type":3},{"OrderID":"0113-0955","ShipCountry":"SA","ShipAddress":"42 Cambridge Court","ShipName":"Ratke, Gaylord and Kuhlman","OrderDate":"11/26/2017","TotalPayment":"$642703.71","Status":4,"Type":1},{"OrderID":"43269-684","ShipCountry":"ID","ShipAddress":"0 Vidon Center","ShipName":"Boyle, Boehm and Nienow","OrderDate":"3/11/2017","TotalPayment":"$170585.44","Status":3,"Type":3},{"OrderID":"48951-1116","ShipCountry":"JP","ShipAddress":"34966 Blue Bill Park Way","ShipName":"Ziemann-Davis","OrderDate":"1/26/2016","TotalPayment":"$246611.81","Status":5,"Type":3},{"OrderID":"67226-2820","ShipCountry":"CN","ShipAddress":"9481 Bunker Hill Junction","ShipName":"Becker-Cruickshank","OrderDate":"7/13/2016","TotalPayment":"$250093.33","Status":2,"Type":2}]},\n{"RecordID":42,"FirstName":"Wilfrid","LastName":"Gameson","Company":"Mycat","Email":"wgameson15@trellian.com","Phone":"928-458-7479","Status":1,"Type":1,"Orders":[{"OrderID":"57520-0615","ShipCountry":"CO","ShipAddress":"52 Erie Avenue","ShipName":"Rice LLC","OrderDate":"11/18/2017","TotalPayment":"$719018.05","Status":6,"Type":2},{"OrderID":"37808-970","ShipCountry":"VN","ShipAddress":"18 Sycamore Junction","ShipName":"Batz Inc","OrderDate":"12/18/2017","TotalPayment":"$262747.46","Status":5,"Type":3},{"OrderID":"64720-141","ShipCountry":"FR","ShipAddress":"45512 Westerfield Circle","ShipName":"Sauer Inc","OrderDate":"10/13/2017","TotalPayment":"$841888.13","Status":1,"Type":2},{"OrderID":"10812-913","ShipCountry":"RU","ShipAddress":"29 Nova Court","ShipName":"Beier and Sons","OrderDate":"8/14/2016","TotalPayment":"$846404.28","Status":5,"Type":2},{"OrderID":"42707-1001","ShipCountry":"BD","ShipAddress":"37525 Roth Avenue","ShipName":"Carroll Inc","OrderDate":"7/28/2017","TotalPayment":"$445332.68","Status":2,"Type":2},{"OrderID":"54868-3267","ShipCountry":"BH","ShipAddress":"16 Barnett Alley","ShipName":"Torp Group","OrderDate":"5/16/2016","TotalPayment":"$778074.64","Status":2,"Type":3},{"OrderID":"55150-116","ShipCountry":"RU","ShipAddress":"34 Mendota Drive","ShipName":"Kshlerin, Koch and Friesen","OrderDate":"8/9/2017","TotalPayment":"$804843.31","Status":3,"Type":3},{"OrderID":"49288-0768","ShipCountry":"BR","ShipAddress":"796 Superior Parkway","ShipName":"Gibson Group","OrderDate":"12/8/2016","TotalPayment":"$872624.76","Status":4,"Type":3},{"OrderID":"24286-1557","ShipCountry":"CN","ShipAddress":"98108 Kim Street","ShipName":"Heaney, Cronin and Witting","OrderDate":"11/20/2017","TotalPayment":"$141214.07","Status":2,"Type":2},{"OrderID":"35356-890","ShipCountry":"ID","ShipAddress":"56 Lien Hill","ShipName":"Mitchell Group","OrderDate":"3/9/2017","TotalPayment":"$1077387.51","Status":5,"Type":2}]},\n{"RecordID":43,"FirstName":"Lenora","LastName":"Tremain","Company":"Talane","Email":"ltremain16@multiply.com","Phone":"661-344-3222","Status":2,"Type":1,"Orders":[{"OrderID":"0781-5181","ShipCountry":"ID","ShipAddress":"24 Warner Way","ShipName":"Stark, Langosh and Kerluke","OrderDate":"11/26/2017","TotalPayment":"$457333.38","Status":2,"Type":1},{"OrderID":"36987-1237","ShipCountry":"TH","ShipAddress":"9893 Fairfield Place","ShipName":"Connelly and Sons","OrderDate":"1/9/2016","TotalPayment":"$521519.72","Status":3,"Type":3},{"OrderID":"65841-755","ShipCountry":"ZA","ShipAddress":"1907 Shasta Pass","ShipName":"Stehr-Boyle","OrderDate":"9/7/2016","TotalPayment":"$266053.75","Status":1,"Type":2},{"OrderID":"0363-0462","ShipCountry":"MA","ShipAddress":"0 Spohn Junction","ShipName":"Ullrich, Mante and Willms","OrderDate":"12/21/2016","TotalPayment":"$330258.63","Status":6,"Type":2},{"OrderID":"0363-0871","ShipCountry":"GT","ShipAddress":"5 Schurz Lane","ShipName":"Erdman-Wunsch","OrderDate":"7/14/2017","TotalPayment":"$239149.26","Status":3,"Type":3},{"OrderID":"10122-510","ShipCountry":"ID","ShipAddress":"97119 Springview Terrace","ShipName":"Dach, Daugherty and Howell","OrderDate":"3/6/2016","TotalPayment":"$119613.27","Status":3,"Type":3},{"OrderID":"42377-001","ShipCountry":"RU","ShipAddress":"887 Chinook Avenue","ShipName":"Franecki, Pagac and Schmidt","OrderDate":"3/25/2016","TotalPayment":"$120602.49","Status":5,"Type":1},{"OrderID":"10210-0008","ShipCountry":"PH","ShipAddress":"598 Messerschmidt Way","ShipName":"Heathcote-Haley","OrderDate":"11/10/2016","TotalPayment":"$341362.85","Status":6,"Type":1},{"OrderID":"62864-902","ShipCountry":"PE","ShipAddress":"329 Sunnyside Parkway","ShipName":"Kreiger, Grant and Stark","OrderDate":"7/6/2016","TotalPayment":"$906952.88","Status":6,"Type":2},{"OrderID":"58668-2541","ShipCountry":"GR","ShipAddress":"10193 Rigney Avenue","ShipName":"Fisher Group","OrderDate":"11/21/2017","TotalPayment":"$174111.01","Status":3,"Type":1},{"OrderID":"0268-7000","ShipCountry":"JM","ShipAddress":"7219 Ludington Court","ShipName":"Cassin-Dickinson","OrderDate":"10/12/2017","TotalPayment":"$809990.29","Status":3,"Type":3},{"OrderID":"41268-041","ShipCountry":"ID","ShipAddress":"7573 Kedzie Pass","ShipName":"Brakus-Raynor","OrderDate":"4/28/2016","TotalPayment":"$188810.10","Status":1,"Type":2},{"OrderID":"36987-2883","ShipCountry":"CN","ShipAddress":"3354 Dwight Trail","ShipName":"Kling-Gerhold","OrderDate":"4/14/2017","TotalPayment":"$456085.21","Status":1,"Type":2},{"OrderID":"52125-748","ShipCountry":"PL","ShipAddress":"1 Alpine Street","ShipName":"Thiel-Hamill","OrderDate":"6/20/2017","TotalPayment":"$142366.65","Status":3,"Type":1},{"OrderID":"68258-3012","ShipCountry":"BF","ShipAddress":"55 Cordelia Park","ShipName":"Feest, Pollich and Fritsch","OrderDate":"1/30/2017","TotalPayment":"$86471.29","Status":3,"Type":3},{"OrderID":"63354-316","ShipCountry":"CN","ShipAddress":"15 Valley Edge Center","ShipName":"Williamson Group","OrderDate":"4/10/2017","TotalPayment":"$925246.86","Status":3,"Type":1},{"OrderID":"61722-060","ShipCountry":"MX","ShipAddress":"2 American Ash Hill","ShipName":"Frami Inc","OrderDate":"4/2/2016","TotalPayment":"$804470.91","Status":4,"Type":3}]},\n{"RecordID":44,"FirstName":"Earl","LastName":"Thoma","Company":"Wikido","Email":"ethoma17@google.com.hk","Phone":"637-246-5413","Status":6,"Type":3,"Orders":[{"OrderID":"21839-011","ShipCountry":"CN","ShipAddress":"6186 Troy Road","ShipName":"Donnelly and Sons","OrderDate":"8/25/2017","TotalPayment":"$424860.70","Status":3,"Type":3},{"OrderID":"11084-534","ShipCountry":"VN","ShipAddress":"92874 Killdeer Terrace","ShipName":"Hammes, Price and Murazik","OrderDate":"8/25/2017","TotalPayment":"$876134.76","Status":5,"Type":1},{"OrderID":"58411-194","ShipCountry":"AR","ShipAddress":"4225 Hoard Junction","ShipName":"Treutel, Littel and Buckridge","OrderDate":"12/25/2016","TotalPayment":"$49424.17","Status":6,"Type":1},{"OrderID":"55316-177","ShipCountry":"CN","ShipAddress":"478 Fair Oaks Circle","ShipName":"Dickens, Ruecker and Fay","OrderDate":"6/30/2017","TotalPayment":"$1074464.54","Status":5,"Type":1},{"OrderID":"44924-111","ShipCountry":"CN","ShipAddress":"58505 Toban Avenue","ShipName":"Robel and Sons","OrderDate":"10/19/2016","TotalPayment":"$401377.25","Status":2,"Type":1},{"OrderID":"65044-6518","ShipCountry":"ID","ShipAddress":"6371 Dorton Terrace","ShipName":"Donnelly-Kuhic","OrderDate":"8/26/2016","TotalPayment":"$819994.95","Status":4,"Type":3}]},\n{"RecordID":45,"FirstName":"Paola","LastName":"Gibling","Company":"DabZ","Email":"pgibling18@spotify.com","Phone":"557-392-7467","Status":6,"Type":3,"Orders":[{"OrderID":"36987-2564","ShipCountry":"CN","ShipAddress":"5001 Harper Street","ShipName":"Keeling Group","OrderDate":"7/6/2017","TotalPayment":"$206368.10","Status":5,"Type":1},{"OrderID":"52125-169","ShipCountry":"EE","ShipAddress":"4 Burrows Street","ShipName":"Huels LLC","OrderDate":"1/11/2016","TotalPayment":"$720624.25","Status":6,"Type":2},{"OrderID":"49281-395","ShipCountry":"CN","ShipAddress":"4 Armistice Circle","ShipName":"Borer-Berge","OrderDate":"2/27/2016","TotalPayment":"$424993.82","Status":4,"Type":2},{"OrderID":"67253-940","ShipCountry":"JP","ShipAddress":"58351 Farragut Hill","ShipName":"Bernhard, Bode and Mayert","OrderDate":"11/10/2017","TotalPayment":"$337747.37","Status":3,"Type":2},{"OrderID":"49999-845","ShipCountry":"RU","ShipAddress":"8 Montana Way","ShipName":"Wolf, Denesik and Waelchi","OrderDate":"6/6/2017","TotalPayment":"$803617.91","Status":5,"Type":1},{"OrderID":"55714-4447","ShipCountry":"CN","ShipAddress":"36 Fuller Crossing","ShipName":"Tillman-Brakus","OrderDate":"7/15/2016","TotalPayment":"$1124857.80","Status":3,"Type":3},{"OrderID":"39822-1001","ShipCountry":"PH","ShipAddress":"85 Moose Way","ShipName":"Orn LLC","OrderDate":"7/1/2016","TotalPayment":"$699686.49","Status":5,"Type":1},{"OrderID":"36987-1390","ShipCountry":"ME","ShipAddress":"61489 Bellgrove Trail","ShipName":"Becker LLC","OrderDate":"10/20/2016","TotalPayment":"$663753.44","Status":1,"Type":2},{"OrderID":"17575-005","ShipCountry":"RU","ShipAddress":"779 Jay Crossing","ShipName":"Heathcote-Homenick","OrderDate":"9/8/2017","TotalPayment":"$438328.73","Status":3,"Type":3},{"OrderID":"42508-255","ShipCountry":"PH","ShipAddress":"5 Macpherson Court","ShipName":"Medhurst Group","OrderDate":"4/3/2016","TotalPayment":"$826521.68","Status":3,"Type":2},{"OrderID":"55312-550","ShipCountry":"IQ","ShipAddress":"8635 Knutson Pass","ShipName":"Erdman and Sons","OrderDate":"12/29/2017","TotalPayment":"$165123.17","Status":5,"Type":1},{"OrderID":"51346-235","ShipCountry":"ID","ShipAddress":"23141 7th Circle","ShipName":"Rolfson LLC","OrderDate":"6/23/2017","TotalPayment":"$132620.49","Status":4,"Type":2},{"OrderID":"30142-425","ShipCountry":"TH","ShipAddress":"917 Comanche Lane","ShipName":"Lakin and Sons","OrderDate":"3/16/2017","TotalPayment":"$99883.02","Status":5,"Type":2},{"OrderID":"51991-526","ShipCountry":"BR","ShipAddress":"70 La Follette Point","ShipName":"Bartell LLC","OrderDate":"10/25/2017","TotalPayment":"$111899.61","Status":3,"Type":1},{"OrderID":"37000-609","ShipCountry":"ID","ShipAddress":"3052 Darwin Crossing","ShipName":"Thiel and Sons","OrderDate":"1/21/2016","TotalPayment":"$539670.97","Status":1,"Type":1}]},\n{"RecordID":46,"FirstName":"Ninetta","LastName":"Havvock","Company":"Jabberbean","Email":"nhavvock19@e-recht24.de","Phone":"526-460-3680","Status":5,"Type":2,"Orders":[{"OrderID":"33261-144","ShipCountry":"CN","ShipAddress":"78213 Fuller Park","ShipName":"Sanford-Kutch","OrderDate":"4/11/2016","TotalPayment":"$409098.57","Status":3,"Type":3},{"OrderID":"25225-020","ShipCountry":"BR","ShipAddress":"93795 Bonner Court","ShipName":"Davis-Conroy","OrderDate":"6/27/2016","TotalPayment":"$891701.23","Status":4,"Type":3},{"OrderID":"0378-1054","ShipCountry":"TH","ShipAddress":"2821 Buhler Crossing","ShipName":"Crooks LLC","OrderDate":"1/11/2017","TotalPayment":"$247783.70","Status":6,"Type":1},{"OrderID":"58633-269","ShipCountry":"CN","ShipAddress":"8373 Elmside Crossing","ShipName":"Gorczany LLC","OrderDate":"12/10/2016","TotalPayment":"$812871.73","Status":3,"Type":2},{"OrderID":"10544-079","ShipCountry":"ID","ShipAddress":"805 Bobwhite Way","ShipName":"Franecki-Hills","OrderDate":"10/13/2016","TotalPayment":"$36221.83","Status":5,"Type":1},{"OrderID":"0268-1191","ShipCountry":"MG","ShipAddress":"86 Quincy Plaza","ShipName":"Considine-Jenkins","OrderDate":"5/7/2017","TotalPayment":"$109307.23","Status":6,"Type":1},{"OrderID":"42806-014","ShipCountry":"SE","ShipAddress":"8658 Schurz Parkway","ShipName":"Wintheiser and Sons","OrderDate":"8/15/2016","TotalPayment":"$1019123.78","Status":1,"Type":2},{"OrderID":"49817-0049","ShipCountry":"CN","ShipAddress":"720 Union Terrace","ShipName":"Nikolaus-Shields","OrderDate":"6/3/2016","TotalPayment":"$547806.95","Status":6,"Type":2},{"OrderID":"63304-736","ShipCountry":"BR","ShipAddress":"397 Monterey Parkway","ShipName":"Abshire-Spinka","OrderDate":"6/10/2016","TotalPayment":"$753996.77","Status":2,"Type":1},{"OrderID":"68927-0819","ShipCountry":"GR","ShipAddress":"89155 Farmco Circle","ShipName":"Trantow Group","OrderDate":"2/2/2016","TotalPayment":"$476306.31","Status":2,"Type":1},{"OrderID":"64495-2366","ShipCountry":"AR","ShipAddress":"046 Arizona Lane","ShipName":"Emmerich, Miller and Wuckert","OrderDate":"4/30/2017","TotalPayment":"$408891.07","Status":1,"Type":3},{"OrderID":"56104-008","ShipCountry":"CN","ShipAddress":"9 Sommers Road","ShipName":"Douglas, Walter and Barton","OrderDate":"9/27/2017","TotalPayment":"$699330.78","Status":4,"Type":2},{"OrderID":"54838-115","ShipCountry":"ID","ShipAddress":"4039 Washington Way","ShipName":"Jenkins LLC","OrderDate":"12/5/2017","TotalPayment":"$13689.52","Status":2,"Type":2},{"OrderID":"13537-429","ShipCountry":"US","ShipAddress":"27 Loftsgordon Pass","ShipName":"Hirthe, Botsford and Heidenreich","OrderDate":"2/8/2016","TotalPayment":"$582740.39","Status":3,"Type":1},{"OrderID":"57520-0608","ShipCountry":"PL","ShipAddress":"6578 Macpherson Road","ShipName":"Smith-Pagac","OrderDate":"9/19/2017","TotalPayment":"$126112.66","Status":5,"Type":1},{"OrderID":"63936-8504","ShipCountry":"CD","ShipAddress":"32490 Harbort Road","ShipName":"Bernhard-Kilback","OrderDate":"7/3/2017","TotalPayment":"$772950.81","Status":3,"Type":2},{"OrderID":"54575-299","ShipCountry":"US","ShipAddress":"11 Kenwood Trail","ShipName":"Veum Group","OrderDate":"11/9/2017","TotalPayment":"$989986.95","Status":6,"Type":1},{"OrderID":"58980-811","ShipCountry":"BD","ShipAddress":"1 Morningstar Parkway","ShipName":"Halvorson Group","OrderDate":"7/29/2016","TotalPayment":"$262119.50","Status":6,"Type":1}]},\n{"RecordID":47,"FirstName":"Lebbie","LastName":"Winson","Company":"Trupe","Email":"lwinson1a@comcast.net","Phone":"713-500-3935","Status":3,"Type":3,"Orders":[{"OrderID":"14783-034","ShipCountry":"ID","ShipAddress":"0677 Goodland Center","ShipName":"Zieme and Sons","OrderDate":"2/1/2016","TotalPayment":"$162901.45","Status":6,"Type":2},{"OrderID":"63304-579","ShipCountry":"MX","ShipAddress":"5 Florence Alley","ShipName":"Schoen-Schmidt","OrderDate":"5/24/2016","TotalPayment":"$537381.19","Status":1,"Type":2},{"OrderID":"0168-0056","ShipCountry":"CN","ShipAddress":"0854 Cardinal Street","ShipName":"Beier-Borer","OrderDate":"5/22/2016","TotalPayment":"$1059210.06","Status":1,"Type":1},{"OrderID":"49349-107","ShipCountry":"UG","ShipAddress":"7779 Heffernan Way","ShipName":"Windler, Mayer and Will","OrderDate":"1/10/2017","TotalPayment":"$934099.74","Status":5,"Type":3},{"OrderID":"49288-0959","ShipCountry":"BO","ShipAddress":"7091 Forest Trail","ShipName":"Schmeler Group","OrderDate":"1/9/2016","TotalPayment":"$243944.30","Status":4,"Type":2},{"OrderID":"60541-0706","ShipCountry":"PH","ShipAddress":"1463 Lillian Parkway","ShipName":"Rowe, Kuphal and Goyette","OrderDate":"9/10/2016","TotalPayment":"$276150.35","Status":1,"Type":3},{"OrderID":"56062-423","ShipCountry":"MX","ShipAddress":"015 Redwing Court","ShipName":"Skiles Group","OrderDate":"10/26/2017","TotalPayment":"$1055541.02","Status":6,"Type":2},{"OrderID":"0603-0209","ShipCountry":"KE","ShipAddress":"29783 Shopko Trail","ShipName":"McDermott-Renner","OrderDate":"7/13/2016","TotalPayment":"$177934.20","Status":1,"Type":2},{"OrderID":"37000-710","ShipCountry":"BR","ShipAddress":"5 Bunker Hill Parkway","ShipName":"Ledner-Ruecker","OrderDate":"7/13/2017","TotalPayment":"$20453.64","Status":6,"Type":2},{"OrderID":"62011-0227","ShipCountry":"PE","ShipAddress":"3240 Ruskin Plaza","ShipName":"Kunze Group","OrderDate":"1/28/2017","TotalPayment":"$355333.68","Status":6,"Type":2},{"OrderID":"10738-302","ShipCountry":"SE","ShipAddress":"6 Vermont Way","ShipName":"Lang, Rath and Hagenes","OrderDate":"1/26/2016","TotalPayment":"$470693.52","Status":6,"Type":1},{"OrderID":"51672-4123","ShipCountry":"RU","ShipAddress":"272 Debra Street","ShipName":"Harris-Kohler","OrderDate":"2/11/2017","TotalPayment":"$89976.51","Status":3,"Type":1},{"OrderID":"68169-0127","ShipCountry":"SE","ShipAddress":"30 Michigan Point","ShipName":"Goodwin Group","OrderDate":"9/13/2017","TotalPayment":"$1076778.47","Status":1,"Type":1},{"OrderID":"67345-0004","ShipCountry":"SI","ShipAddress":"88 Valley Edge Hill","ShipName":"Gutmann Group","OrderDate":"11/30/2016","TotalPayment":"$238794.88","Status":3,"Type":1},{"OrderID":"65841-030","ShipCountry":"MT","ShipAddress":"1 Luster Alley","ShipName":"Quitzon-Reilly","OrderDate":"9/26/2017","TotalPayment":"$684504.51","Status":2,"Type":3},{"OrderID":"0187-2221","ShipCountry":"PH","ShipAddress":"666 Warner Alley","ShipName":"Cremin-Rutherford","OrderDate":"11/27/2016","TotalPayment":"$275011.23","Status":3,"Type":2},{"OrderID":"0093-7601","ShipCountry":"PH","ShipAddress":"14 Saint Paul Lane","ShipName":"West, Sanford and Homenick","OrderDate":"4/7/2016","TotalPayment":"$807291.66","Status":4,"Type":3},{"OrderID":"42549-554","ShipCountry":"CN","ShipAddress":"734 New Castle Plaza","ShipName":"Renner LLC","OrderDate":"4/24/2016","TotalPayment":"$880678.22","Status":5,"Type":2}]},\n{"RecordID":48,"FirstName":"Tabitha","LastName":"Malcher","Company":"Shuffletag","Email":"tmalcher1b@godaddy.com","Phone":"494-929-6491","Status":6,"Type":3,"Orders":[{"OrderID":"49035-104","ShipCountry":"ID","ShipAddress":"82 Bobwhite Park","ShipName":"Heller, Gutmann and Collins","OrderDate":"5/28/2017","TotalPayment":"$959672.54","Status":2,"Type":2},{"OrderID":"35356-821","ShipCountry":"RU","ShipAddress":"00 Sachtjen Trail","ShipName":"Padberg Inc","OrderDate":"1/9/2016","TotalPayment":"$519302.58","Status":6,"Type":2},{"OrderID":"59535-5101","ShipCountry":"ID","ShipAddress":"4849 Kinsman Parkway","ShipName":"Murazik, Marquardt and Brown","OrderDate":"6/22/2016","TotalPayment":"$627948.92","Status":3,"Type":2},{"OrderID":"0641-6063","ShipCountry":"PE","ShipAddress":"89569 Sage Court","ShipName":"Collins, Price and Sawayn","OrderDate":"1/8/2017","TotalPayment":"$104107.44","Status":6,"Type":2},{"OrderID":"62670-3715","ShipCountry":"US","ShipAddress":"7387 Fallview Crossing","ShipName":"Gislason-Bashirian","OrderDate":"4/13/2016","TotalPayment":"$1104414.27","Status":2,"Type":2},{"OrderID":"37205-356","ShipCountry":"CN","ShipAddress":"1 Merrick Point","ShipName":"Wiza, Champlin and Murazik","OrderDate":"11/8/2017","TotalPayment":"$666026.64","Status":3,"Type":2},{"OrderID":"42979-110","ShipCountry":"GR","ShipAddress":"647 Westend Place","ShipName":"Zboncak, Cremin and Kuvalis","OrderDate":"8/15/2016","TotalPayment":"$199307.28","Status":3,"Type":2},{"OrderID":"48951-5027","ShipCountry":"CN","ShipAddress":"4721 Beilfuss Avenue","ShipName":"Roob and Sons","OrderDate":"3/12/2016","TotalPayment":"$354844.94","Status":3,"Type":3},{"OrderID":"0067-8100","ShipCountry":"MK","ShipAddress":"55 Packers Trail","ShipName":"Ankunding-Christiansen","OrderDate":"8/21/2017","TotalPayment":"$21719.68","Status":1,"Type":1},{"OrderID":"24338-516","ShipCountry":"GR","ShipAddress":"60 Bartillon Alley","ShipName":"Pacocha, Walsh and Purdy","OrderDate":"3/17/2016","TotalPayment":"$882486.40","Status":2,"Type":2},{"OrderID":"0406-0123","ShipCountry":"CN","ShipAddress":"7 Forest Run Terrace","ShipName":"Grimes, Lemke and Hackett","OrderDate":"9/16/2016","TotalPayment":"$944836.77","Status":1,"Type":3},{"OrderID":"44523-732","ShipCountry":"CN","ShipAddress":"0 Memorial Crossing","ShipName":"Hermiston, Hand and Greenfelder","OrderDate":"6/19/2016","TotalPayment":"$130224.05","Status":4,"Type":2},{"OrderID":"12213-730","ShipCountry":"HN","ShipAddress":"1325 Victoria Plaza","ShipName":"Reichert-Crooks","OrderDate":"1/16/2016","TotalPayment":"$224481.68","Status":5,"Type":3},{"OrderID":"63629-1532","ShipCountry":"CZ","ShipAddress":"5180 Almo Circle","ShipName":"Spinka and Sons","OrderDate":"7/26/2016","TotalPayment":"$332935.39","Status":2,"Type":3},{"OrderID":"68387-140","ShipCountry":"JP","ShipAddress":"54 Ruskin Terrace","ShipName":"McCullough-Hudson","OrderDate":"11/6/2016","TotalPayment":"$921327.29","Status":6,"Type":1},{"OrderID":"0173-0791","ShipCountry":"RU","ShipAddress":"37 Melby Road","ShipName":"Farrell LLC","OrderDate":"3/21/2016","TotalPayment":"$240964.48","Status":3,"Type":1},{"OrderID":"59630-320","ShipCountry":"PL","ShipAddress":"61416 Orin Way","ShipName":"Welch LLC","OrderDate":"5/31/2016","TotalPayment":"$646061.64","Status":2,"Type":1},{"OrderID":"62037-832","ShipCountry":"CZ","ShipAddress":"280 Glacier Hill Parkway","ShipName":"Lockman Inc","OrderDate":"2/26/2016","TotalPayment":"$421297.23","Status":5,"Type":3},{"OrderID":"36987-3003","ShipCountry":"PH","ShipAddress":"37 Ramsey Pass","ShipName":"Bartoletti, Strosin and Welch","OrderDate":"2/23/2016","TotalPayment":"$700953.45","Status":5,"Type":3}]},\n{"RecordID":49,"FirstName":"Ula","LastName":"Matiasek","Company":"Wikivu","Email":"umatiasek1c@biglobe.ne.jp","Phone":"320-439-1744","Status":6,"Type":2,"Orders":[{"OrderID":"11673-583","ShipCountry":"FI","ShipAddress":"24 Mariners Cove Trail","ShipName":"Kertzmann LLC","OrderDate":"10/29/2017","TotalPayment":"$173255.43","Status":5,"Type":3},{"OrderID":"0462-0162","ShipCountry":"ID","ShipAddress":"5600 Crest Line Parkway","ShipName":"Witting, Terry and Nicolas","OrderDate":"7/4/2016","TotalPayment":"$180949.88","Status":4,"Type":2},{"OrderID":"68472-028","ShipCountry":"FR","ShipAddress":"627 Hoffman Drive","ShipName":"Weimann Inc","OrderDate":"3/13/2017","TotalPayment":"$634807.22","Status":6,"Type":3},{"OrderID":"55312-238","ShipCountry":"JP","ShipAddress":"19057 Southridge Point","ShipName":"Rosenbaum and Sons","OrderDate":"9/1/2016","TotalPayment":"$356832.26","Status":1,"Type":3},{"OrderID":"49371-022","ShipCountry":"RU","ShipAddress":"94194 Fairfield Parkway","ShipName":"Wuckert, Breitenberg and Gerlach","OrderDate":"8/25/2016","TotalPayment":"$927453.65","Status":4,"Type":2},{"OrderID":"61755-005","ShipCountry":"US","ShipAddress":"48 Vahlen Place","ShipName":"Balistreri, Lind and Wilderman","OrderDate":"2/13/2017","TotalPayment":"$129263.86","Status":4,"Type":3},{"OrderID":"65841-666","ShipCountry":"AR","ShipAddress":"97617 Debs Plaza","ShipName":"Larson, Renner and Morar","OrderDate":"8/6/2016","TotalPayment":"$902801.32","Status":1,"Type":2},{"OrderID":"61442-143","ShipCountry":"LU","ShipAddress":"0582 Anhalt Trail","ShipName":"Hauck-Haag","OrderDate":"7/18/2016","TotalPayment":"$282496.35","Status":4,"Type":2},{"OrderID":"42421-229","ShipCountry":"SE","ShipAddress":"18 Hoard Way","ShipName":"Kling, Strosin and Mohr","OrderDate":"9/27/2017","TotalPayment":"$1073110.72","Status":5,"Type":1},{"OrderID":"33261-773","ShipCountry":"SE","ShipAddress":"67428 Hintze Way","ShipName":"Stroman, Bode and Hermann","OrderDate":"11/9/2016","TotalPayment":"$632592.77","Status":1,"Type":1},{"OrderID":"0268-6622","ShipCountry":"CY","ShipAddress":"15676 Lillian Drive","ShipName":"Bashirian Inc","OrderDate":"5/8/2017","TotalPayment":"$1147897.82","Status":1,"Type":3},{"OrderID":"36987-2588","ShipCountry":"FI","ShipAddress":"20131 Hallows Way","ShipName":"Jacobs and Sons","OrderDate":"2/14/2016","TotalPayment":"$255908.82","Status":5,"Type":3},{"OrderID":"49349-694","ShipCountry":"VN","ShipAddress":"3012 Annamark Point","ShipName":"Thompson-Harris","OrderDate":"7/1/2016","TotalPayment":"$1058038.12","Status":4,"Type":3},{"OrderID":"36987-3210","ShipCountry":"CN","ShipAddress":"741 Laurel Circle","ShipName":"Bartoletti Inc","OrderDate":"3/16/2017","TotalPayment":"$444750.02","Status":4,"Type":1},{"OrderID":"61748-302","ShipCountry":"AR","ShipAddress":"0 Chinook Alley","ShipName":"Marquardt, Treutel and Block","OrderDate":"6/14/2017","TotalPayment":"$78799.99","Status":3,"Type":2},{"OrderID":"0268-0199","ShipCountry":"ID","ShipAddress":"926 Maryland Hill","ShipName":"Bergnaum, Oberbrunner and Eichmann","OrderDate":"2/3/2016","TotalPayment":"$282131.79","Status":1,"Type":3},{"OrderID":"48951-7079","ShipCountry":"GR","ShipAddress":"272 Village Hill","ShipName":"Schoen and Sons","OrderDate":"5/24/2016","TotalPayment":"$388145.92","Status":1,"Type":1},{"OrderID":"36987-2890","ShipCountry":"JP","ShipAddress":"5846 Prentice Road","ShipName":"Homenick-Leffler","OrderDate":"4/15/2016","TotalPayment":"$422371.39","Status":3,"Type":1}]},\n{"RecordID":50,"FirstName":"Dwain","LastName":"Ferrey","Company":"Yakidoo","Email":"dferrey1d@fda.gov","Phone":"658-189-1289","Status":5,"Type":3,"Orders":[{"OrderID":"10736-012","ShipCountry":"RU","ShipAddress":"783 Ryan Hill","ShipName":"Huels Group","OrderDate":"12/3/2017","TotalPayment":"$724342.29","Status":3,"Type":1},{"OrderID":"63029-433","ShipCountry":"ID","ShipAddress":"5117 Schiller Terrace","ShipName":"Leannon, Nolan and Abbott","OrderDate":"3/6/2016","TotalPayment":"$1124366.18","Status":1,"Type":2},{"OrderID":"63323-237","ShipCountry":"CU","ShipAddress":"1536 Caliangt Hill","ShipName":"Romaguera-Williamson","OrderDate":"1/14/2016","TotalPayment":"$1073508.60","Status":2,"Type":2},{"OrderID":"68788-9953","ShipCountry":"CY","ShipAddress":"5192 Arapahoe Place","ShipName":"Boehm, Gusikowski and Cummings","OrderDate":"3/6/2017","TotalPayment":"$997731.07","Status":1,"Type":2},{"OrderID":"68151-0526","ShipCountry":"UA","ShipAddress":"5367 Bartillon Terrace","ShipName":"Krajcik-Aufderhar","OrderDate":"5/7/2016","TotalPayment":"$721029.51","Status":6,"Type":1},{"OrderID":"54473-215","ShipCountry":"MK","ShipAddress":"9942 Lunder Pass","ShipName":"Jones LLC","OrderDate":"10/12/2017","TotalPayment":"$1017053.77","Status":1,"Type":1}]},\n{"RecordID":51,"FirstName":"Verne","LastName":"Buggy","Company":"Brainverse","Email":"vbuggy1e@economist.com","Phone":"150-832-2807","Status":2,"Type":2,"Orders":[{"OrderID":"55910-220","ShipCountry":"RU","ShipAddress":"64291 Briar Crest Plaza","ShipName":"Franecki, Dare and Lemke","OrderDate":"10/15/2017","TotalPayment":"$795918.14","Status":4,"Type":1},{"OrderID":"49349-724","ShipCountry":"CN","ShipAddress":"08328 Lukken Court","ShipName":"Satterfield-Waelchi","OrderDate":"2/12/2016","TotalPayment":"$946416.40","Status":4,"Type":1},{"OrderID":"61598-200","ShipCountry":"AL","ShipAddress":"7 Saint Paul Court","ShipName":"Heathcote-Feeney","OrderDate":"3/22/2016","TotalPayment":"$352177.16","Status":5,"Type":3},{"OrderID":"46122-263","ShipCountry":"RS","ShipAddress":"97 Hansons Junction","ShipName":"Breitenberg Group","OrderDate":"6/8/2016","TotalPayment":"$157466.40","Status":6,"Type":2},{"OrderID":"68472-101","ShipCountry":"CN","ShipAddress":"4952 Barnett Hill","ShipName":"Little LLC","OrderDate":"2/19/2016","TotalPayment":"$11785.69","Status":5,"Type":2},{"OrderID":"0280-0922","ShipCountry":"CN","ShipAddress":"429 Crowley Drive","ShipName":"Blick Inc","OrderDate":"1/28/2017","TotalPayment":"$392077.03","Status":3,"Type":1},{"OrderID":"52125-178","ShipCountry":"ID","ShipAddress":"9 Buhler Way","ShipName":"Greenfelder and Sons","OrderDate":"9/26/2017","TotalPayment":"$1029917.26","Status":3,"Type":1},{"OrderID":"59779-425","ShipCountry":"ID","ShipAddress":"4371 Carey Place","ShipName":"Altenwerth LLC","OrderDate":"11/1/2017","TotalPayment":"$1097363.76","Status":2,"Type":3},{"OrderID":"64725-0111","ShipCountry":"ID","ShipAddress":"2 Carberry Center","ShipName":"Rath-Erdman","OrderDate":"12/6/2016","TotalPayment":"$575191.11","Status":6,"Type":1},{"OrderID":"0268-0824","ShipCountry":"RU","ShipAddress":"789 Dixon Park","ShipName":"Purdy, Sawayn and Gutkowski","OrderDate":"10/17/2016","TotalPayment":"$353149.07","Status":2,"Type":1},{"OrderID":"24385-546","ShipCountry":"ID","ShipAddress":"59430 Village Green Hill","ShipName":"Goodwin Group","OrderDate":"2/10/2016","TotalPayment":"$840578.73","Status":1,"Type":2},{"OrderID":"0228-2996","ShipCountry":"AR","ShipAddress":"7 Roth Park","ShipName":"Kulas Group","OrderDate":"4/25/2016","TotalPayment":"$323929.94","Status":6,"Type":1},{"OrderID":"53119-575","ShipCountry":"GH","ShipAddress":"0 Brown Center","ShipName":"Hand-Hyatt","OrderDate":"6/16/2016","TotalPayment":"$477442.21","Status":4,"Type":2}]},\n{"RecordID":52,"FirstName":"Merridie","LastName":"Beasley","Company":"Realbuzz","Email":"mbeasley1f@tamu.edu","Phone":"312-515-8198","Status":5,"Type":3,"Orders":[{"OrderID":"52342-001","ShipCountry":"FR","ShipAddress":"651 Stang Center","ShipName":"Walter, Spencer and Howell","OrderDate":"11/18/2017","TotalPayment":"$815175.88","Status":5,"Type":2},{"OrderID":"45865-451","ShipCountry":"CN","ShipAddress":"307 Fallview Park","ShipName":"Steuber LLC","OrderDate":"5/15/2016","TotalPayment":"$458521.60","Status":4,"Type":1},{"OrderID":"37808-394","ShipCountry":"CN","ShipAddress":"518 Canary Hill","ShipName":"Jakubowski, Barrows and Strosin","OrderDate":"1/19/2016","TotalPayment":"$175739.33","Status":5,"Type":3},{"OrderID":"68084-283","ShipCountry":"CN","ShipAddress":"7 Meadow Vale Court","ShipName":"Thompson-Jaskolski","OrderDate":"8/9/2016","TotalPayment":"$1145971.67","Status":2,"Type":1},{"OrderID":"46708-128","ShipCountry":"CN","ShipAddress":"6 Coleman Center","ShipName":"Aufderhar and Sons","OrderDate":"5/11/2017","TotalPayment":"$695264.81","Status":1,"Type":2},{"OrderID":"55154-4519","ShipCountry":"US","ShipAddress":"7667 Gina Point","ShipName":"Pfannerstill, Simonis and Bergnaum","OrderDate":"12/24/2016","TotalPayment":"$1024535.28","Status":6,"Type":2},{"OrderID":"62011-0214","ShipCountry":"PT","ShipAddress":"5649 Springview Way","ShipName":"Lang and Sons","OrderDate":"6/11/2017","TotalPayment":"$467527.22","Status":5,"Type":3},{"OrderID":"37000-326","ShipCountry":"PE","ShipAddress":"9 Warbler Way","ShipName":"Swift, Nienow and Spencer","OrderDate":"1/3/2017","TotalPayment":"$1041717.40","Status":6,"Type":1},{"OrderID":"66096-175","ShipCountry":"ID","ShipAddress":"77363 Saint Paul Parkway","ShipName":"Kris-Torphy","OrderDate":"9/23/2017","TotalPayment":"$464261.82","Status":6,"Type":2}]},\n{"RecordID":53,"FirstName":"Kathi","LastName":"Soff","Company":"Skippad","Email":"ksoff1g@oracle.com","Phone":"937-813-1057","Status":2,"Type":1,"Orders":[{"OrderID":"58668-1261","ShipCountry":"HR","ShipAddress":"3610 Grasskamp Alley","ShipName":"Heidenreich Inc","OrderDate":"12/19/2017","TotalPayment":"$1181191.29","Status":2,"Type":1},{"OrderID":"0527-1347","ShipCountry":"MN","ShipAddress":"3 Heath Crossing","ShipName":"Howell LLC","OrderDate":"6/13/2017","TotalPayment":"$298197.07","Status":5,"Type":3},{"OrderID":"53208-452","ShipCountry":"TM","ShipAddress":"4 Petterle Court","ShipName":"Effertz, Trantow and Nitzsche","OrderDate":"4/20/2016","TotalPayment":"$532309.33","Status":3,"Type":1},{"OrderID":"54868-4675","ShipCountry":"CN","ShipAddress":"852 Warner Lane","ShipName":"Emmerich, Wisoky and Wolff","OrderDate":"5/28/2017","TotalPayment":"$342952.30","Status":4,"Type":1},{"OrderID":"63868-966","ShipCountry":"PH","ShipAddress":"5 Moose Pass","ShipName":"Hayes and Sons","OrderDate":"9/25/2017","TotalPayment":"$724699.25","Status":6,"Type":2},{"OrderID":"49349-859","ShipCountry":"RU","ShipAddress":"81 Village Crossing","ShipName":"Schowalter, Schneider and Welch","OrderDate":"3/21/2016","TotalPayment":"$288602.33","Status":1,"Type":3},{"OrderID":"68026-108","ShipCountry":"PT","ShipAddress":"964 4th Parkway","ShipName":"Fritsch-Gulgowski","OrderDate":"9/15/2016","TotalPayment":"$708946.01","Status":5,"Type":3},{"OrderID":"30142-546","ShipCountry":"CN","ShipAddress":"45 Lukken Pass","ShipName":"Willms-Corwin","OrderDate":"6/11/2016","TotalPayment":"$334812.48","Status":1,"Type":1},{"OrderID":"13668-160","ShipCountry":"BA","ShipAddress":"010 Lakewood Gardens Avenue","ShipName":"Ondricka-Hyatt","OrderDate":"6/2/2017","TotalPayment":"$944910.96","Status":1,"Type":3},{"OrderID":"21695-673","ShipCountry":"ID","ShipAddress":"18 Fuller Road","ShipName":"Bednar, Hayes and Greenfelder","OrderDate":"8/15/2016","TotalPayment":"$1192286.42","Status":2,"Type":3},{"OrderID":"58118-0798","ShipCountry":"PH","ShipAddress":"5 Mifflin Place","ShipName":"Rath, Adams and Stanton","OrderDate":"11/17/2017","TotalPayment":"$564817.66","Status":6,"Type":1},{"OrderID":"24236-656","ShipCountry":"PT","ShipAddress":"2 Loftsgordon Junction","ShipName":"Grady, Hamill and Kohler","OrderDate":"6/6/2016","TotalPayment":"$410296.55","Status":5,"Type":2},{"OrderID":"0942-9505","ShipCountry":"IR","ShipAddress":"69 South Terrace","ShipName":"Hamill-Ernser","OrderDate":"11/18/2017","TotalPayment":"$482048.52","Status":2,"Type":1},{"OrderID":"36987-3046","ShipCountry":"CL","ShipAddress":"37310 Doe Crossing Junction","ShipName":"Blick-Jacobi","OrderDate":"12/8/2016","TotalPayment":"$895394.40","Status":6,"Type":1}]},\n{"RecordID":54,"FirstName":"Elbert","LastName":"Andrews","Company":"Mybuzz","Email":"eandrews1h@joomla.org","Phone":"707-738-2679","Status":3,"Type":2,"Orders":[{"OrderID":"29300-114","ShipCountry":"PH","ShipAddress":"8 Mallard Avenue","ShipName":"Funk and Sons","OrderDate":"1/30/2016","TotalPayment":"$261492.30","Status":3,"Type":3},{"OrderID":"52125-482","ShipCountry":"PH","ShipAddress":"4549 Morrow Pass","ShipName":"Moore and Sons","OrderDate":"9/5/2016","TotalPayment":"$617726.94","Status":4,"Type":3},{"OrderID":"11410-162","ShipCountry":"ZA","ShipAddress":"3919 Scott Pass","ShipName":"Yost-Boyle","OrderDate":"7/11/2016","TotalPayment":"$1185208.65","Status":6,"Type":1},{"OrderID":"67938-0823","ShipCountry":"FR","ShipAddress":"96 Bluejay Crossing","ShipName":"Brown-Leuschke","OrderDate":"11/7/2017","TotalPayment":"$222774.18","Status":2,"Type":2},{"OrderID":"49349-675","ShipCountry":"PS","ShipAddress":"648 Luster Drive","ShipName":"Rodriguez, Moore and Hackett","OrderDate":"7/13/2016","TotalPayment":"$1182736.62","Status":5,"Type":3},{"OrderID":"16590-102","ShipCountry":"UY","ShipAddress":"98 Swallow Street","ShipName":"Gaylord-Veum","OrderDate":"4/30/2016","TotalPayment":"$68479.58","Status":4,"Type":1},{"OrderID":"63736-232","ShipCountry":"NO","ShipAddress":"476 Calypso Plaza","ShipName":"Bernhard and Sons","OrderDate":"8/11/2017","TotalPayment":"$695993.63","Status":2,"Type":3},{"OrderID":"16590-349","ShipCountry":"CN","ShipAddress":"14 Harbort Circle","ShipName":"Hagenes Group","OrderDate":"12/11/2017","TotalPayment":"$488749.84","Status":4,"Type":3},{"OrderID":"0268-6195","ShipCountry":"ID","ShipAddress":"63733 Elgar Junction","ShipName":"Heidenreich Inc","OrderDate":"9/19/2016","TotalPayment":"$761935.25","Status":6,"Type":2},{"OrderID":"55154-8275","ShipCountry":"CN","ShipAddress":"76 Spohn Street","ShipName":"Mraz-Padberg","OrderDate":"3/7/2017","TotalPayment":"$240494.58","Status":2,"Type":1},{"OrderID":"66902-001","ShipCountry":"ID","ShipAddress":"056 Eastlawn Plaza","ShipName":"Sawayn, Kuphal and Leuschke","OrderDate":"3/7/2016","TotalPayment":"$669821.38","Status":2,"Type":1},{"OrderID":"0113-0990","ShipCountry":"ID","ShipAddress":"7 Nobel Road","ShipName":"Hamill Inc","OrderDate":"8/15/2017","TotalPayment":"$956514.31","Status":2,"Type":1},{"OrderID":"40046-0053","ShipCountry":"CN","ShipAddress":"39134 Tomscot Pass","ShipName":"Eichmann-Brekke","OrderDate":"3/8/2016","TotalPayment":"$690239.56","Status":2,"Type":3}]},\n{"RecordID":55,"FirstName":"Gladi","LastName":"McGillreich","Company":"Skiptube","Email":"gmcgillreich1i@forbes.com","Phone":"426-232-1445","Status":3,"Type":2,"Orders":[{"OrderID":"54868-5776","ShipCountry":"PH","ShipAddress":"9 5th Lane","ShipName":"Treutel-D\'Amore","OrderDate":"8/24/2017","TotalPayment":"$1111440.65","Status":3,"Type":2},{"OrderID":"67544-097","ShipCountry":"BD","ShipAddress":"2 Morning Alley","ShipName":"Herman LLC","OrderDate":"1/13/2017","TotalPayment":"$1018191.16","Status":4,"Type":2},{"OrderID":"36987-1467","ShipCountry":"FI","ShipAddress":"53 Drewry Place","ShipName":"Wiza, Anderson and Schoen","OrderDate":"6/15/2016","TotalPayment":"$934058.55","Status":5,"Type":2},{"OrderID":"0135-0090","ShipCountry":"PK","ShipAddress":"790 8th Point","ShipName":"Pollich Group","OrderDate":"1/5/2017","TotalPayment":"$1084043.22","Status":2,"Type":3},{"OrderID":"11822-0650","ShipCountry":"SE","ShipAddress":"7516 Morningstar Street","ShipName":"Towne Inc","OrderDate":"12/29/2017","TotalPayment":"$837688.74","Status":4,"Type":3},{"OrderID":"0069-9321","ShipCountry":"KE","ShipAddress":"9528 Old Shore Alley","ShipName":"Oberbrunner, Steuber and Gerlach","OrderDate":"4/13/2017","TotalPayment":"$561112.17","Status":4,"Type":2},{"OrderID":"21695-206","ShipCountry":"TZ","ShipAddress":"35 Aberg Court","ShipName":"Pfannerstill Inc","OrderDate":"6/5/2017","TotalPayment":"$406130.84","Status":1,"Type":3},{"OrderID":"59762-1520","ShipCountry":"PK","ShipAddress":"089 Colorado Avenue","ShipName":"Grimes Inc","OrderDate":"6/27/2017","TotalPayment":"$654539.36","Status":3,"Type":2},{"OrderID":"16110-260","ShipCountry":"CN","ShipAddress":"76 Sheridan Park","ShipName":"Kiehn LLC","OrderDate":"6/11/2017","TotalPayment":"$343371.93","Status":4,"Type":2},{"OrderID":"61957-0820","ShipCountry":"ZA","ShipAddress":"6 Mayer Point","ShipName":"Rau, Hahn and Ratke","OrderDate":"7/11/2017","TotalPayment":"$1040467.16","Status":2,"Type":3},{"OrderID":"0597-0031","ShipCountry":"AR","ShipAddress":"9 Jenifer Road","ShipName":"Hamill and Sons","OrderDate":"4/22/2017","TotalPayment":"$33352.82","Status":4,"Type":3},{"OrderID":"68703-043","ShipCountry":"AZ","ShipAddress":"80 Russell Hill","ShipName":"Nicolas-Crona","OrderDate":"10/9/2017","TotalPayment":"$525978.07","Status":3,"Type":1},{"OrderID":"10702-036","ShipCountry":"BR","ShipAddress":"85215 Fair Oaks Crossing","ShipName":"Jast-McLaughlin","OrderDate":"1/20/2017","TotalPayment":"$416971.17","Status":1,"Type":2},{"OrderID":"49643-019","ShipCountry":"UA","ShipAddress":"182 Jackson Road","ShipName":"Weber Group","OrderDate":"5/27/2016","TotalPayment":"$37042.20","Status":2,"Type":2},{"OrderID":"67046-275","ShipCountry":"ID","ShipAddress":"60691 Shelley Street","ShipName":"Dare-Douglas","OrderDate":"4/23/2016","TotalPayment":"$628294.88","Status":3,"Type":1},{"OrderID":"68084-364","ShipCountry":"FR","ShipAddress":"399 Calypso Point","ShipName":"Quigley-Baumbach","OrderDate":"12/5/2017","TotalPayment":"$551561.72","Status":1,"Type":1},{"OrderID":"49349-797","ShipCountry":"CZ","ShipAddress":"49230 Dunning Drive","ShipName":"Weissnat, Welch and Stanton","OrderDate":"3/25/2017","TotalPayment":"$263988.94","Status":4,"Type":1}]},\n{"RecordID":56,"FirstName":"Piotr","LastName":"Spelling","Company":"Thoughtworks","Email":"pspelling1j@sakura.ne.jp","Phone":"584-468-9586","Status":6,"Type":1,"Orders":[{"OrderID":"68428-152","ShipCountry":"PT","ShipAddress":"73 Valley Edge Terrace","ShipName":"Stehr Inc","OrderDate":"8/13/2016","TotalPayment":"$984123.64","Status":3,"Type":2},{"OrderID":"55154-9370","ShipCountry":"ID","ShipAddress":"4495 Pleasure Crossing","ShipName":"Mayer Group","OrderDate":"6/18/2016","TotalPayment":"$1057366.46","Status":2,"Type":2},{"OrderID":"99207-465","ShipCountry":"PE","ShipAddress":"5 Texas Crossing","ShipName":"O\'Kon-Schaden","OrderDate":"10/29/2016","TotalPayment":"$102859.55","Status":4,"Type":2},{"OrderID":"57955-0815","ShipCountry":"AR","ShipAddress":"6310 Quincy Junction","ShipName":"King LLC","OrderDate":"5/15/2016","TotalPayment":"$31103.75","Status":1,"Type":2},{"OrderID":"51815-216","ShipCountry":"PE","ShipAddress":"8486 Mallory Drive","ShipName":"Stanton-Armstrong","OrderDate":"6/5/2016","TotalPayment":"$128531.37","Status":2,"Type":3},{"OrderID":"64578-0110","ShipCountry":"US","ShipAddress":"1 Dunning Terrace","ShipName":"Rolfson LLC","OrderDate":"10/5/2017","TotalPayment":"$1108488.59","Status":1,"Type":2},{"OrderID":"54868-4367","ShipCountry":"EC","ShipAddress":"56 Mariners Cove Way","ShipName":"Gorczany, Windler and Kautzer","OrderDate":"8/19/2016","TotalPayment":"$808188.93","Status":3,"Type":1},{"OrderID":"68196-808","ShipCountry":"GB","ShipAddress":"199 Manitowish Drive","ShipName":"Schmidt LLC","OrderDate":"3/12/2016","TotalPayment":"$1017538.13","Status":1,"Type":2},{"OrderID":"36987-1651","ShipCountry":"BR","ShipAddress":"46043 Kim Lane","ShipName":"Bernhard, Miller and Gulgowski","OrderDate":"5/31/2016","TotalPayment":"$1123363.34","Status":1,"Type":2},{"OrderID":"62756-710","ShipCountry":"EG","ShipAddress":"103 Melby Street","ShipName":"Bartoletti Inc","OrderDate":"7/9/2016","TotalPayment":"$929285.67","Status":3,"Type":1},{"OrderID":"0378-8020","ShipCountry":"AM","ShipAddress":"4 Donald Court","ShipName":"Pollich Inc","OrderDate":"5/25/2017","TotalPayment":"$132844.93","Status":6,"Type":1},{"OrderID":"62211-070","ShipCountry":"ID","ShipAddress":"44 Sherman Point","ShipName":"Beier-Kuhn","OrderDate":"9/24/2016","TotalPayment":"$61639.40","Status":4,"Type":1},{"OrderID":"0404-5991","ShipCountry":"UA","ShipAddress":"108 Shasta Park","ShipName":"Leannon and Sons","OrderDate":"11/17/2017","TotalPayment":"$580430.88","Status":1,"Type":3},{"OrderID":"57520-1005","ShipCountry":"CN","ShipAddress":"413 Eagan Crossing","ShipName":"Weber-Wehner","OrderDate":"4/22/2017","TotalPayment":"$700079.89","Status":3,"Type":2},{"OrderID":"59915-4001","ShipCountry":"ID","ShipAddress":"826 Merchant Place","ShipName":"Jacobs-Grimes","OrderDate":"5/3/2017","TotalPayment":"$142953.49","Status":6,"Type":1}]},\n{"RecordID":57,"FirstName":"Carolyne","LastName":"Corkish","Company":"Zoombox","Email":"ccorkish1k@hugedomains.com","Phone":"457-155-1937","Status":2,"Type":1,"Orders":[{"OrderID":"60505-2865","ShipCountry":"CN","ShipAddress":"8077 Bayside Terrace","ShipName":"Skiles-Nader","OrderDate":"7/21/2017","TotalPayment":"$410521.49","Status":6,"Type":2},{"OrderID":"28595-800","ShipCountry":"ID","ShipAddress":"507 Menomonie Plaza","ShipName":"Walsh, Price and Mertz","OrderDate":"3/17/2016","TotalPayment":"$732271.16","Status":1,"Type":3},{"OrderID":"58160-826","ShipCountry":"FI","ShipAddress":"098 Dovetail Center","ShipName":"Bechtelar and Sons","OrderDate":"6/4/2016","TotalPayment":"$179371.74","Status":3,"Type":2},{"OrderID":"36987-1012","ShipCountry":"CZ","ShipAddress":"54 Barnett Road","ShipName":"Littel-Purdy","OrderDate":"4/18/2017","TotalPayment":"$1091379.75","Status":3,"Type":3},{"OrderID":"51862-215","ShipCountry":"FR","ShipAddress":"9 Jana Circle","ShipName":"Bechtelar-Okuneva","OrderDate":"1/3/2016","TotalPayment":"$458507.55","Status":2,"Type":3},{"OrderID":"52959-891","ShipCountry":"PH","ShipAddress":"2 Lukken Junction","ShipName":"Stiedemann-Watsica","OrderDate":"4/8/2016","TotalPayment":"$752467.95","Status":3,"Type":3},{"OrderID":"0006-0533","ShipCountry":"SY","ShipAddress":"2 Summit Crossing","ShipName":"Hammes Inc","OrderDate":"9/1/2016","TotalPayment":"$1121203.60","Status":6,"Type":2},{"OrderID":"55154-1242","ShipCountry":"PK","ShipAddress":"8 Westend Terrace","ShipName":"Hirthe, Witting and Legros","OrderDate":"11/17/2017","TotalPayment":"$211674.19","Status":5,"Type":1},{"OrderID":"50114-8200","ShipCountry":"CN","ShipAddress":"83528 Melby Lane","ShipName":"Bernier LLC","OrderDate":"4/28/2016","TotalPayment":"$715183.49","Status":4,"Type":2}]},\n{"RecordID":58,"FirstName":"Gan","LastName":"Houlahan","Company":"Oodoo","Email":"ghoulahan1l@reverbnation.com","Phone":"319-445-4983","Status":5,"Type":2,"Orders":[{"OrderID":"55346-0404","ShipCountry":"AR","ShipAddress":"1 Lindbergh Hill","ShipName":"Jacobson-Cummerata","OrderDate":"6/14/2017","TotalPayment":"$626811.81","Status":6,"Type":3},{"OrderID":"0113-0323","ShipCountry":"ID","ShipAddress":"7359 Fairfield Circle","ShipName":"Larkin Group","OrderDate":"8/12/2016","TotalPayment":"$139421.43","Status":4,"Type":2},{"OrderID":"68428-038","ShipCountry":"PL","ShipAddress":"56 Beilfuss Place","ShipName":"Rosenbaum LLC","OrderDate":"8/20/2016","TotalPayment":"$1155009.89","Status":3,"Type":2},{"OrderID":"43063-247","ShipCountry":"ID","ShipAddress":"50 Sycamore Center","ShipName":"Runte-McClure","OrderDate":"11/10/2016","TotalPayment":"$339838.19","Status":4,"Type":1},{"OrderID":"52125-445","ShipCountry":"ID","ShipAddress":"16278 Bultman Parkway","ShipName":"Harris, Barrows and Spinka","OrderDate":"4/5/2016","TotalPayment":"$867179.89","Status":1,"Type":3},{"OrderID":"61957-0903","ShipCountry":"UA","ShipAddress":"6 Johnson Place","ShipName":"Ryan Group","OrderDate":"12/5/2017","TotalPayment":"$1018062.83","Status":4,"Type":2},{"OrderID":"63629-1360","ShipCountry":"RU","ShipAddress":"012 Briar Crest Alley","ShipName":"Littel-Fahey","OrderDate":"9/26/2017","TotalPayment":"$1097609.90","Status":4,"Type":2},{"OrderID":"52000-006","ShipCountry":"LK","ShipAddress":"740 Division Place","ShipName":"Muller Group","OrderDate":"12/29/2016","TotalPayment":"$156068.94","Status":6,"Type":1},{"OrderID":"37205-825","ShipCountry":"UY","ShipAddress":"50 Dennis Pass","ShipName":"Purdy, Sanford and Blanda","OrderDate":"6/11/2016","TotalPayment":"$49563.69","Status":1,"Type":3},{"OrderID":"63347-700","ShipCountry":"MA","ShipAddress":"198 Hansons Place","ShipName":"Bode, Buckridge and Kunze","OrderDate":"12/13/2017","TotalPayment":"$1148595.57","Status":4,"Type":3},{"OrderID":"0049-2770","ShipCountry":"PS","ShipAddress":"2999 Jay Trail","ShipName":"Kunde-Gorczany","OrderDate":"6/11/2017","TotalPayment":"$897972.95","Status":2,"Type":2},{"OrderID":"0378-7010","ShipCountry":"ID","ShipAddress":"15726 Hallows Way","ShipName":"Luettgen, Brekke and Rice","OrderDate":"7/24/2017","TotalPayment":"$85711.90","Status":6,"Type":2},{"OrderID":"0186-0450","ShipCountry":"TN","ShipAddress":"12 Donald Pass","ShipName":"Kuhlman, Kozey and Ruecker","OrderDate":"2/21/2016","TotalPayment":"$515457.45","Status":2,"Type":1},{"OrderID":"36987-1718","ShipCountry":"PT","ShipAddress":"79 Jenna Point","ShipName":"Mayert-Murazik","OrderDate":"1/8/2017","TotalPayment":"$1013729.59","Status":1,"Type":1},{"OrderID":"43063-495","ShipCountry":"CN","ShipAddress":"6 Morning Point","ShipName":"Buckridge-Gleichner","OrderDate":"5/4/2016","TotalPayment":"$307098.37","Status":3,"Type":2},{"OrderID":"36987-2528","ShipCountry":"PH","ShipAddress":"16701 Longview Circle","ShipName":"Miller, McCullough and Dach","OrderDate":"7/26/2016","TotalPayment":"$1088649.56","Status":4,"Type":1},{"OrderID":"41250-423","ShipCountry":"YE","ShipAddress":"45870 Bartillon Drive","ShipName":"McLaughlin-Yundt","OrderDate":"6/22/2017","TotalPayment":"$100498.36","Status":6,"Type":2},{"OrderID":"0378-6165","ShipCountry":"VN","ShipAddress":"5 Tennessee Plaza","ShipName":"Herman-Satterfield","OrderDate":"7/12/2016","TotalPayment":"$509719.53","Status":2,"Type":1},{"OrderID":"57955-0003","ShipCountry":"US","ShipAddress":"0 Armistice Crossing","ShipName":"Hilpert-Mitchell","OrderDate":"1/31/2017","TotalPayment":"$954888.87","Status":3,"Type":2}]},\n{"RecordID":59,"FirstName":"Biddie","LastName":"Gascoyne","Company":"Miboo","Email":"bgascoyne1m@upenn.edu","Phone":"220-871-1081","Status":1,"Type":2,"Orders":[{"OrderID":"68382-387","ShipCountry":"SO","ShipAddress":"41 Brown Park","ShipName":"Anderson-McDermott","OrderDate":"5/25/2016","TotalPayment":"$103189.53","Status":1,"Type":1},{"OrderID":"55319-866","ShipCountry":"NO","ShipAddress":"0590 Melody Avenue","ShipName":"Goodwin, King and Kassulke","OrderDate":"9/3/2016","TotalPayment":"$471805.05","Status":3,"Type":1},{"OrderID":"54436-010","ShipCountry":"AL","ShipAddress":"6506 Schmedeman Pass","ShipName":"Carter LLC","OrderDate":"3/29/2016","TotalPayment":"$60716.55","Status":3,"Type":2},{"OrderID":"60681-2505","ShipCountry":"ID","ShipAddress":"3649 Tomscot Way","ShipName":"O\'Connell and Sons","OrderDate":"4/23/2017","TotalPayment":"$291474.29","Status":5,"Type":2},{"OrderID":"58118-0031","ShipCountry":"GB","ShipAddress":"35 International Street","ShipName":"McDermott, Windler and Lebsack","OrderDate":"9/17/2017","TotalPayment":"$96074.83","Status":1,"Type":1},{"OrderID":"51141-7000","ShipCountry":"CA","ShipAddress":"3 Glacier Hill Lane","ShipName":"Goyette-Zboncak","OrderDate":"12/27/2016","TotalPayment":"$953877.62","Status":4,"Type":2},{"OrderID":"51885-3100","ShipCountry":"UA","ShipAddress":"4856 Rieder Trail","ShipName":"Olson Group","OrderDate":"9/12/2016","TotalPayment":"$93999.71","Status":6,"Type":2},{"OrderID":"62296-0045","ShipCountry":"PK","ShipAddress":"7 Spohn Avenue","ShipName":"Gleason Group","OrderDate":"4/4/2016","TotalPayment":"$230733.27","Status":2,"Type":1},{"OrderID":"52982-107","ShipCountry":"KZ","ShipAddress":"668 Morning Center","ShipName":"Hegmann-Larson","OrderDate":"5/18/2017","TotalPayment":"$116076.80","Status":3,"Type":2},{"OrderID":"59779-946","ShipCountry":"CA","ShipAddress":"351 Bowman Park","ShipName":"Stamm-Stanton","OrderDate":"5/31/2017","TotalPayment":"$127869.15","Status":3,"Type":3},{"OrderID":"41268-535","ShipCountry":"PH","ShipAddress":"2401 Fairfield Avenue","ShipName":"Kiehn, Satterfield and Goyette","OrderDate":"9/18/2017","TotalPayment":"$615467.94","Status":1,"Type":3}]},\n{"RecordID":60,"FirstName":"Tiff","LastName":"McCurlye","Company":"Zava","Email":"tmccurlye1n@marketwatch.com","Phone":"834-559-5951","Status":1,"Type":3,"Orders":[{"OrderID":"0591-3198","ShipCountry":"HN","ShipAddress":"798 Glendale Alley","ShipName":"Hintz, Mertz and Blick","OrderDate":"5/31/2017","TotalPayment":"$321133.54","Status":4,"Type":3},{"OrderID":"0093-8122","ShipCountry":"BR","ShipAddress":"6 Hoffman Trail","ShipName":"Howe, Nader and Steuber","OrderDate":"10/31/2017","TotalPayment":"$406521.92","Status":1,"Type":2},{"OrderID":"0002-8715","ShipCountry":"CN","ShipAddress":"48 Clove Plaza","ShipName":"Wolff, Gottlieb and Fadel","OrderDate":"2/6/2017","TotalPayment":"$592880.01","Status":4,"Type":1},{"OrderID":"41520-300","ShipCountry":"CN","ShipAddress":"1618 Novick Parkway","ShipName":"Langosh Group","OrderDate":"2/6/2017","TotalPayment":"$927933.02","Status":1,"Type":2},{"OrderID":"60505-2658","ShipCountry":"CN","ShipAddress":"18199 Loomis Trail","ShipName":"Johnson-Beer","OrderDate":"10/19/2016","TotalPayment":"$474587.05","Status":3,"Type":3},{"OrderID":"58468-0080","ShipCountry":"CN","ShipAddress":"01 Schlimgen Drive","ShipName":"Klein Group","OrderDate":"5/22/2016","TotalPayment":"$408411.93","Status":1,"Type":1},{"OrderID":"54868-4798","ShipCountry":"ID","ShipAddress":"669 Fordem Park","ShipName":"Koss-Goldner","OrderDate":"3/28/2017","TotalPayment":"$651637.06","Status":5,"Type":3},{"OrderID":"68788-0014","ShipCountry":"SE","ShipAddress":"85 Welch Alley","ShipName":"Gislason-Ankunding","OrderDate":"2/7/2016","TotalPayment":"$899623.09","Status":6,"Type":2},{"OrderID":"67425-007","ShipCountry":"AZ","ShipAddress":"717 Westend Street","ShipName":"Boehm-Murazik","OrderDate":"2/16/2017","TotalPayment":"$873587.91","Status":6,"Type":1},{"OrderID":"54868-4711","ShipCountry":"ZA","ShipAddress":"514 Kropf Parkway","ShipName":"Casper-Fahey","OrderDate":"1/23/2017","TotalPayment":"$545739.51","Status":6,"Type":3}]},\n{"RecordID":61,"FirstName":"Sherill","LastName":"Morrish","Company":"Reallinks","Email":"smorrish1o@wikimedia.org","Phone":"696-168-0798","Status":2,"Type":3,"Orders":[{"OrderID":"68016-440","ShipCountry":"CN","ShipAddress":"01 Algoma Drive","ShipName":"Williamson, Mosciski and VonRueden","OrderDate":"8/14/2016","TotalPayment":"$647322.10","Status":5,"Type":2},{"OrderID":"52125-617","ShipCountry":"ID","ShipAddress":"980 Lunder Court","ShipName":"Bradtke-Keeling","OrderDate":"3/30/2017","TotalPayment":"$769554.30","Status":4,"Type":3},{"OrderID":"0054-8858","ShipCountry":"FR","ShipAddress":"8 Monica Pass","ShipName":"Lebsack, Paucek and Beatty","OrderDate":"2/21/2016","TotalPayment":"$201804.39","Status":4,"Type":3},{"OrderID":"0115-1483","ShipCountry":"FR","ShipAddress":"6541 Old Shore Terrace","ShipName":"Steuber, Hoeger and Deckow","OrderDate":"6/11/2016","TotalPayment":"$404845.13","Status":6,"Type":1},{"OrderID":"64455-106","ShipCountry":"VN","ShipAddress":"92 Merrick Park","ShipName":"Hegmann-Deckow","OrderDate":"2/14/2016","TotalPayment":"$1169704.29","Status":4,"Type":3},{"OrderID":"54157-102","ShipCountry":"KG","ShipAddress":"2875 Fuller Park","ShipName":"Lindgren Inc","OrderDate":"4/23/2016","TotalPayment":"$1162513.37","Status":3,"Type":1},{"OrderID":"52125-740","ShipCountry":"ID","ShipAddress":"50 Delaware Court","ShipName":"Dietrich, Von and Volkman","OrderDate":"5/7/2017","TotalPayment":"$118157.06","Status":4,"Type":1},{"OrderID":"59011-757","ShipCountry":"UA","ShipAddress":"06877 Eagle Crest Terrace","ShipName":"Hettinger, Marvin and Adams","OrderDate":"3/29/2016","TotalPayment":"$826378.02","Status":2,"Type":2},{"OrderID":"0093-2075","ShipCountry":"IR","ShipAddress":"868 Arkansas Avenue","ShipName":"Hessel Group","OrderDate":"1/6/2016","TotalPayment":"$204418.03","Status":6,"Type":1},{"OrderID":"0378-2099","ShipCountry":"AL","ShipAddress":"6 Granby Center","ShipName":"McDermott Inc","OrderDate":"12/29/2016","TotalPayment":"$361967.62","Status":5,"Type":2},{"OrderID":"61657-0251","ShipCountry":"IQ","ShipAddress":"9017 Ohio Crossing","ShipName":"Kuhlman, Hickle and Kuhn","OrderDate":"7/20/2016","TotalPayment":"$366582.30","Status":1,"Type":1},{"OrderID":"0179-0030","ShipCountry":"PE","ShipAddress":"8331 Caliangt Avenue","ShipName":"Rutherford Inc","OrderDate":"1/9/2017","TotalPayment":"$330993.83","Status":5,"Type":1},{"OrderID":"60681-2808","ShipCountry":"US","ShipAddress":"31548 Orin Lane","ShipName":"Hartmann LLC","OrderDate":"9/26/2016","TotalPayment":"$546782.07","Status":2,"Type":2},{"OrderID":"39822-0330","ShipCountry":"NG","ShipAddress":"84129 Ruskin Trail","ShipName":"Gottlieb, Miller and Harvey","OrderDate":"1/18/2016","TotalPayment":"$783652.54","Status":4,"Type":1},{"OrderID":"43857-0276","ShipCountry":"LC","ShipAddress":"3 Raven Avenue","ShipName":"Kshlerin-Schmeler","OrderDate":"6/5/2016","TotalPayment":"$860164.20","Status":6,"Type":2},{"OrderID":"36987-2661","ShipCountry":"HU","ShipAddress":"15 Roxbury Hill","ShipName":"Dietrich Inc","OrderDate":"10/4/2016","TotalPayment":"$799439.42","Status":6,"Type":3},{"OrderID":"16590-087","ShipCountry":"PT","ShipAddress":"63 Sachs Way","ShipName":"Hamill and Sons","OrderDate":"12/5/2016","TotalPayment":"$1192649.55","Status":2,"Type":2},{"OrderID":"21130-217","ShipCountry":"MY","ShipAddress":"4 Thackeray Plaza","ShipName":"Orn, Brown and Windler","OrderDate":"8/26/2016","TotalPayment":"$192648.48","Status":2,"Type":3},{"OrderID":"0093-4741","ShipCountry":"US","ShipAddress":"052 Scofield Crossing","ShipName":"Moen-Herman","OrderDate":"1/25/2017","TotalPayment":"$683628.54","Status":2,"Type":3},{"OrderID":"60512-6037","ShipCountry":"RU","ShipAddress":"1581 Mallard Lane","ShipName":"Wolf LLC","OrderDate":"5/13/2016","TotalPayment":"$868071.30","Status":3,"Type":1}]},\n{"RecordID":62,"FirstName":"Tressa","LastName":"Daouze","Company":"Zooxo","Email":"tdaouze1p@phoca.cz","Phone":"790-731-8935","Status":3,"Type":3,"Orders":[{"OrderID":"42571-105","ShipCountry":"SV","ShipAddress":"047 Calypso Plaza","ShipName":"Wilderman LLC","OrderDate":"12/27/2016","TotalPayment":"$85182.60","Status":4,"Type":1},{"OrderID":"98132-186","ShipCountry":"PA","ShipAddress":"9 Dunning Parkway","ShipName":"Runolfsdottir, Gaylord and Wisoky","OrderDate":"7/29/2017","TotalPayment":"$1192351.31","Status":3,"Type":3},{"OrderID":"55316-678","ShipCountry":"SE","ShipAddress":"3 Mesta Junction","ShipName":"Reynolds-Swaniawski","OrderDate":"1/23/2017","TotalPayment":"$267559.10","Status":6,"Type":3},{"OrderID":"49884-123","ShipCountry":"BR","ShipAddress":"81810 Westerfield Street","ShipName":"Klein Inc","OrderDate":"10/24/2017","TotalPayment":"$13921.52","Status":4,"Type":2},{"OrderID":"0037-0431","ShipCountry":"AU","ShipAddress":"25716 Morrow Point","ShipName":"Lueilwitz, Macejkovic and Ritchie","OrderDate":"2/18/2017","TotalPayment":"$467822.35","Status":6,"Type":1},{"OrderID":"36987-1724","ShipCountry":"MA","ShipAddress":"92725 Blackbird Way","ShipName":"Kuhlman-Williamson","OrderDate":"8/30/2016","TotalPayment":"$1167161.13","Status":2,"Type":2}]},\n{"RecordID":63,"FirstName":"Beatrice","LastName":"Levington","Company":"Quimba","Email":"blevington1q@bloomberg.com","Phone":"847-783-6717","Status":5,"Type":1,"Orders":[{"OrderID":"65862-119","ShipCountry":"HR","ShipAddress":"9850 Luster Hill","ShipName":"Olson-Harber","OrderDate":"10/2/2017","TotalPayment":"$880938.07","Status":4,"Type":1},{"OrderID":"54973-3156","ShipCountry":"RU","ShipAddress":"118 Shoshone Drive","ShipName":"Bernhard, Reilly and Kirlin","OrderDate":"7/26/2017","TotalPayment":"$167984.52","Status":1,"Type":2},{"OrderID":"43353-160","ShipCountry":"CO","ShipAddress":"097 Tomscot Parkway","ShipName":"Stoltenberg, Wolff and Rodriguez","OrderDate":"2/6/2017","TotalPayment":"$766687.92","Status":3,"Type":2},{"OrderID":"0409-2347","ShipCountry":"PT","ShipAddress":"4 Sheridan Alley","ShipName":"Rolfson, Funk and Grimes","OrderDate":"1/22/2016","TotalPayment":"$848597.32","Status":1,"Type":1},{"OrderID":"44523-535","ShipCountry":"CM","ShipAddress":"6807 Raven Plaza","ShipName":"McClure Group","OrderDate":"4/19/2017","TotalPayment":"$385078.10","Status":1,"Type":3},{"OrderID":"62011-0174","ShipCountry":"NO","ShipAddress":"8 Arizona Street","ShipName":"Prohaska Inc","OrderDate":"2/3/2017","TotalPayment":"$1030678.60","Status":3,"Type":3},{"OrderID":"10742-8142","ShipCountry":"BR","ShipAddress":"1 Dixon Court","ShipName":"Gerlach, Bruen and Tillman","OrderDate":"6/4/2017","TotalPayment":"$480874.20","Status":2,"Type":2},{"OrderID":"58411-175","ShipCountry":"CN","ShipAddress":"82260 Dapin Pass","ShipName":"Franecki-Murphy","OrderDate":"8/16/2016","TotalPayment":"$752558.44","Status":5,"Type":1},{"OrderID":"65841-635","ShipCountry":"BR","ShipAddress":"87 Petterle Terrace","ShipName":"Reichert LLC","OrderDate":"9/7/2016","TotalPayment":"$78280.43","Status":4,"Type":3}]},\n{"RecordID":64,"FirstName":"Livvie","LastName":"Rigney","Company":"Voonyx","Email":"lrigney1r@buzzfeed.com","Phone":"630-904-0637","Status":2,"Type":3,"Orders":[{"OrderID":"60429-578","ShipCountry":"CN","ShipAddress":"50661 Grayhawk Junction","ShipName":"Cruickshank and Sons","OrderDate":"10/22/2016","TotalPayment":"$251999.82","Status":1,"Type":2},{"OrderID":"0143-9803","ShipCountry":"AR","ShipAddress":"78 Delladonna Lane","ShipName":"Jacobi-Hammes","OrderDate":"10/19/2016","TotalPayment":"$837678.69","Status":2,"Type":3},{"OrderID":"49999-034","ShipCountry":"BA","ShipAddress":"07889 Basil Alley","ShipName":"O\'Reilly, Ankunding and Schulist","OrderDate":"11/20/2017","TotalPayment":"$893967.72","Status":2,"Type":3},{"OrderID":"11822-6201","ShipCountry":"BY","ShipAddress":"596 Continental Trail","ShipName":"Langosh and Sons","OrderDate":"5/18/2017","TotalPayment":"$1019845.13","Status":4,"Type":3},{"OrderID":"49288-0719","ShipCountry":"ID","ShipAddress":"1 Kim Place","ShipName":"Runte-Trantow","OrderDate":"2/25/2017","TotalPayment":"$1095949.30","Status":4,"Type":3},{"OrderID":"62045-6333","ShipCountry":"BR","ShipAddress":"3092 Nova Place","ShipName":"Kohler-Greenfelder","OrderDate":"11/9/2016","TotalPayment":"$1138141.36","Status":2,"Type":3},{"OrderID":"53208-475","ShipCountry":"AO","ShipAddress":"10718 Bluestem Circle","ShipName":"Schuster-Koss","OrderDate":"5/10/2017","TotalPayment":"$262491.70","Status":4,"Type":3},{"OrderID":"68258-6041","ShipCountry":"PH","ShipAddress":"1 Mockingbird Street","ShipName":"Runte Inc","OrderDate":"12/30/2016","TotalPayment":"$276676.63","Status":3,"Type":2},{"OrderID":"13537-047","ShipCountry":"PL","ShipAddress":"70922 Jenna Park","ShipName":"Schamberger, Reichel and Kemmer","OrderDate":"12/11/2016","TotalPayment":"$865466.93","Status":1,"Type":3}]},\n{"RecordID":65,"FirstName":"Alaine","LastName":"Crudge","Company":"Skaboo","Email":"acrudge1s@cbc.ca","Phone":"951-467-5400","Status":6,"Type":3,"Orders":[{"OrderID":"50436-6103","ShipCountry":"PT","ShipAddress":"84698 Huxley Place","ShipName":"Connelly and Sons","OrderDate":"11/20/2017","TotalPayment":"$645329.23","Status":5,"Type":3},{"OrderID":"43611-006","ShipCountry":"UA","ShipAddress":"80 Oneill Junction","ShipName":"Paucek-Armstrong","OrderDate":"8/12/2016","TotalPayment":"$992644.29","Status":5,"Type":1},{"OrderID":"55316-267","ShipCountry":"JP","ShipAddress":"69 Colorado Alley","ShipName":"Deckow LLC","OrderDate":"12/28/2017","TotalPayment":"$193438.17","Status":3,"Type":3},{"OrderID":"52125-433","ShipCountry":"ID","ShipAddress":"224 Dixon Drive","ShipName":"Koelpin Inc","OrderDate":"2/5/2016","TotalPayment":"$871915.33","Status":1,"Type":3},{"OrderID":"48951-3042","ShipCountry":"PT","ShipAddress":"2 Lillian Alley","ShipName":"Wiza-Jaskolski","OrderDate":"2/27/2016","TotalPayment":"$124340.47","Status":3,"Type":1},{"OrderID":"43063-051","ShipCountry":"PT","ShipAddress":"53 Reindahl Drive","ShipName":"Mertz, Sipes and Quigley","OrderDate":"7/25/2016","TotalPayment":"$59067.64","Status":3,"Type":1},{"OrderID":"54575-220","ShipCountry":"PT","ShipAddress":"421 Gale Center","ShipName":"Kutch-Haag","OrderDate":"8/28/2016","TotalPayment":"$662562.15","Status":3,"Type":3},{"OrderID":"55670-133","ShipCountry":"PH","ShipAddress":"72 Dawn Way","ShipName":"Kemmer LLC","OrderDate":"2/23/2017","TotalPayment":"$109397.00","Status":1,"Type":1},{"OrderID":"0228-3091","ShipCountry":"CN","ShipAddress":"7 Cherokee Lane","ShipName":"Torp and Sons","OrderDate":"7/19/2017","TotalPayment":"$1001560.56","Status":1,"Type":1},{"OrderID":"41525-6001","ShipCountry":"FR","ShipAddress":"3691 Sheridan Way","ShipName":"Johnston-Kemmer","OrderDate":"12/3/2016","TotalPayment":"$879369.23","Status":4,"Type":1},{"OrderID":"20276-158","ShipCountry":"CN","ShipAddress":"0437 Luster Pass","ShipName":"Farrell, Abbott and Hirthe","OrderDate":"10/22/2016","TotalPayment":"$533042.11","Status":2,"Type":1},{"OrderID":"25000-117","ShipCountry":"CO","ShipAddress":"673 Oxford Park","ShipName":"Shields-Beatty","OrderDate":"6/12/2016","TotalPayment":"$796482.24","Status":2,"Type":1},{"OrderID":"55154-5471","ShipCountry":"SV","ShipAddress":"478 Oneill Way","ShipName":"Spinka and Sons","OrderDate":"11/1/2017","TotalPayment":"$265540.20","Status":4,"Type":2},{"OrderID":"51346-101","ShipCountry":"RU","ShipAddress":"64 Susan Plaza","ShipName":"Satterfield, Wolf and Hettinger","OrderDate":"10/24/2016","TotalPayment":"$475446.40","Status":4,"Type":2},{"OrderID":"36987-1138","ShipCountry":"JP","ShipAddress":"1043 Heath Alley","ShipName":"Mitchell LLC","OrderDate":"8/28/2016","TotalPayment":"$970369.46","Status":2,"Type":3}]},\n{"RecordID":66,"FirstName":"Winn","LastName":"Withrington","Company":"Photofeed","Email":"wwithrington1t@cmu.edu","Phone":"224-763-7882","Status":3,"Type":1,"Orders":[{"OrderID":"53499-5159","ShipCountry":"VE","ShipAddress":"62149 Talisman Crossing","ShipName":"Turcotte-Purdy","OrderDate":"11/20/2017","TotalPayment":"$42099.71","Status":5,"Type":3},{"OrderID":"0641-6084","ShipCountry":"ID","ShipAddress":"545 Cody Drive","ShipName":"Haley Group","OrderDate":"9/7/2017","TotalPayment":"$754416.43","Status":6,"Type":3},{"OrderID":"62756-555","ShipCountry":"RU","ShipAddress":"54099 Milwaukee Drive","ShipName":"Sipes, Schmeler and Marvin","OrderDate":"1/8/2016","TotalPayment":"$150675.46","Status":1,"Type":1},{"OrderID":"59148-070","ShipCountry":"ID","ShipAddress":"57 Towne Avenue","ShipName":"Predovic Inc","OrderDate":"5/30/2016","TotalPayment":"$715608.00","Status":2,"Type":2},{"OrderID":"53187-199","ShipCountry":"FR","ShipAddress":"642 Gateway Road","ShipName":"Krajcik, Dach and Huels","OrderDate":"7/29/2016","TotalPayment":"$451757.91","Status":2,"Type":3},{"OrderID":"36800-949","ShipCountry":"CZ","ShipAddress":"01 Bonner Avenue","ShipName":"Turcotte-Franecki","OrderDate":"7/28/2016","TotalPayment":"$977925.68","Status":4,"Type":2},{"OrderID":"42787-101","ShipCountry":"BG","ShipAddress":"26 Bellgrove Terrace","ShipName":"Grimes Inc","OrderDate":"3/5/2016","TotalPayment":"$77092.70","Status":5,"Type":2},{"OrderID":"68703-026","ShipCountry":"US","ShipAddress":"104 Spohn Plaza","ShipName":"Bode-Wilderman","OrderDate":"11/19/2016","TotalPayment":"$328709.01","Status":3,"Type":2},{"OrderID":"0472-0381","ShipCountry":"BR","ShipAddress":"47771 Algoma Parkway","ShipName":"Hegmann-McClure","OrderDate":"9/21/2017","TotalPayment":"$1150766.62","Status":3,"Type":1},{"OrderID":"30698-032","ShipCountry":"BR","ShipAddress":"7523 Buell Street","ShipName":"Stroman, Runolfsson and Daugherty","OrderDate":"5/11/2016","TotalPayment":"$787151.00","Status":2,"Type":3},{"OrderID":"55910-702","ShipCountry":"AL","ShipAddress":"976 Sundown Street","ShipName":"Moen Inc","OrderDate":"10/9/2017","TotalPayment":"$955803.97","Status":6,"Type":2},{"OrderID":"54868-5907","ShipCountry":"CN","ShipAddress":"1 Hansons Circle","ShipName":"Block-Paucek","OrderDate":"2/13/2017","TotalPayment":"$674410.39","Status":1,"Type":1},{"OrderID":"0268-0173","ShipCountry":"CU","ShipAddress":"229 Clemons Hill","ShipName":"Zulauf and Sons","OrderDate":"4/7/2016","TotalPayment":"$452933.31","Status":6,"Type":2}]},\n{"RecordID":67,"FirstName":"Goober","LastName":"Humber","Company":"Latz","Email":"ghumber1u@wiley.com","Phone":"677-646-7765","Status":1,"Type":2,"Orders":[{"OrderID":"55154-5706","ShipCountry":"CN","ShipAddress":"6 Lillian Terrace","ShipName":"Vandervort-Schowalter","OrderDate":"4/28/2017","TotalPayment":"$1166134.32","Status":2,"Type":2},{"OrderID":"65862-525","ShipCountry":"PH","ShipAddress":"06707 Donald Hill","ShipName":"Yundt Group","OrderDate":"7/22/2017","TotalPayment":"$840740.59","Status":3,"Type":3},{"OrderID":"53187-480","ShipCountry":"CN","ShipAddress":"7819 Dawn Plaza","ShipName":"Stracke Group","OrderDate":"11/6/2017","TotalPayment":"$1194013.06","Status":3,"Type":3},{"OrderID":"49035-555","ShipCountry":"MX","ShipAddress":"8893 Forest Way","ShipName":"Abshire-Leannon","OrderDate":"4/26/2017","TotalPayment":"$371421.48","Status":1,"Type":3},{"OrderID":"53808-0396","ShipCountry":"CU","ShipAddress":"539 Waywood Drive","ShipName":"Hills-Braun","OrderDate":"6/30/2017","TotalPayment":"$719684.41","Status":1,"Type":2},{"OrderID":"50390-703","ShipCountry":"ID","ShipAddress":"333 Mccormick Lane","ShipName":"Mante and Sons","OrderDate":"2/2/2016","TotalPayment":"$1056075.81","Status":3,"Type":1},{"OrderID":"66949-339","ShipCountry":"MX","ShipAddress":"89929 Crest Line Street","ShipName":"Schuppe-Littel","OrderDate":"12/7/2016","TotalPayment":"$1179863.92","Status":6,"Type":3},{"OrderID":"53208-447","ShipCountry":"KZ","ShipAddress":"1582 Luster Point","ShipName":"Krajcik-Cassin","OrderDate":"9/10/2017","TotalPayment":"$455342.76","Status":3,"Type":1},{"OrderID":"43063-190","ShipCountry":"BR","ShipAddress":"11191 Dwight Trail","ShipName":"Ortiz, Sauer and Kirlin","OrderDate":"3/3/2017","TotalPayment":"$624489.75","Status":6,"Type":2},{"OrderID":"0067-4000","ShipCountry":"PT","ShipAddress":"03918 Rigney Terrace","ShipName":"Sporer, Muller and Lind","OrderDate":"6/22/2017","TotalPayment":"$936303.83","Status":1,"Type":3},{"OrderID":"42926-120","ShipCountry":"PT","ShipAddress":"68112 Golf Course Crossing","ShipName":"Harris-Nicolas","OrderDate":"4/6/2017","TotalPayment":"$934323.57","Status":1,"Type":1},{"OrderID":"42002-616","ShipCountry":"PL","ShipAddress":"080 Green Ridge Pass","ShipName":"Kihn-Hintz","OrderDate":"2/3/2017","TotalPayment":"$1034113.34","Status":2,"Type":3},{"OrderID":"57955-5151","ShipCountry":"PH","ShipAddress":"29992 Brentwood Court","ShipName":"Bernier, McGlynn and Zboncak","OrderDate":"10/20/2017","TotalPayment":"$86775.26","Status":6,"Type":3},{"OrderID":"63187-017","ShipCountry":"PH","ShipAddress":"39 Eagan Avenue","ShipName":"Corwin, Bins and Lind","OrderDate":"2/20/2016","TotalPayment":"$1007066.30","Status":5,"Type":1},{"OrderID":"36987-3271","ShipCountry":"VN","ShipAddress":"0 4th Alley","ShipName":"Torphy Group","OrderDate":"5/12/2016","TotalPayment":"$541551.65","Status":4,"Type":2},{"OrderID":"0591-3292","ShipCountry":"CO","ShipAddress":"52048 Anthes Plaza","ShipName":"Jacobi, Hahn and Effertz","OrderDate":"11/5/2017","TotalPayment":"$982824.91","Status":6,"Type":2},{"OrderID":"59535-8901","ShipCountry":"FR","ShipAddress":"6 Sommers Point","ShipName":"O\'Connell-Block","OrderDate":"6/23/2017","TotalPayment":"$787012.80","Status":2,"Type":3},{"OrderID":"68788-9077","ShipCountry":"CN","ShipAddress":"37525 Dunning Street","ShipName":"D\'Amore, D\'Amore and Boyer","OrderDate":"2/13/2016","TotalPayment":"$309977.50","Status":5,"Type":3}]},\n{"RecordID":68,"FirstName":"Deana","LastName":"Broxup","Company":"Leenti","Email":"dbroxup1v@cafepress.com","Phone":"548-638-4115","Status":1,"Type":3,"Orders":[{"OrderID":"67777-404","ShipCountry":"CN","ShipAddress":"72898 Portage Road","ShipName":"Kohler and Sons","OrderDate":"4/21/2016","TotalPayment":"$1149407.29","Status":4,"Type":3},{"OrderID":"49884-210","ShipCountry":"BR","ShipAddress":"011 Moose Place","ShipName":"Renner-Klein","OrderDate":"9/30/2017","TotalPayment":"$495209.66","Status":1,"Type":3},{"OrderID":"48951-3116","ShipCountry":"GA","ShipAddress":"29 Londonderry Center","ShipName":"Weber, Olson and Ward","OrderDate":"9/18/2016","TotalPayment":"$1005400.67","Status":3,"Type":1},{"OrderID":"51079-152","ShipCountry":"ID","ShipAddress":"237 Grim Place","ShipName":"Williamson Inc","OrderDate":"4/19/2017","TotalPayment":"$343445.06","Status":6,"Type":2},{"OrderID":"60505-0253","ShipCountry":"MM","ShipAddress":"68 Delaware Point","ShipName":"Boyer Inc","OrderDate":"2/12/2016","TotalPayment":"$408136.08","Status":6,"Type":1},{"OrderID":"50436-7073","ShipCountry":"CN","ShipAddress":"3359 Kedzie Terrace","ShipName":"Mills-Aufderhar","OrderDate":"7/30/2016","TotalPayment":"$1028889.21","Status":5,"Type":2},{"OrderID":"43455-0008","ShipCountry":"SA","ShipAddress":"01 Duke Plaza","ShipName":"Morissette, Nikolaus and Ernser","OrderDate":"8/28/2016","TotalPayment":"$645471.44","Status":2,"Type":1},{"OrderID":"36987-2950","ShipCountry":"PL","ShipAddress":"650 Clarendon Center","ShipName":"Lind LLC","OrderDate":"3/23/2016","TotalPayment":"$362412.69","Status":5,"Type":1},{"OrderID":"52533-060","ShipCountry":"ZA","ShipAddress":"864 Sugar Pass","ShipName":"Anderson-Waelchi","OrderDate":"11/14/2016","TotalPayment":"$201405.21","Status":1,"Type":1},{"OrderID":"49349-550","ShipCountry":"CN","ShipAddress":"8840 Nevada Way","ShipName":"Willms-Kiehn","OrderDate":"2/14/2016","TotalPayment":"$343712.60","Status":4,"Type":3},{"OrderID":"55910-664","ShipCountry":"CN","ShipAddress":"3443 Fairfield Plaza","ShipName":"Wilderman LLC","OrderDate":"7/3/2016","TotalPayment":"$517636.86","Status":2,"Type":1},{"OrderID":"0093-7336","ShipCountry":"CN","ShipAddress":"486 Hoard Hill","ShipName":"Stanton, Bogan and Zemlak","OrderDate":"1/8/2017","TotalPayment":"$241932.54","Status":4,"Type":2},{"OrderID":"33342-016","ShipCountry":"XK","ShipAddress":"3038 Meadow Valley Circle","ShipName":"Botsford, Goldner and Emmerich","OrderDate":"11/5/2016","TotalPayment":"$1075402.45","Status":6,"Type":2},{"OrderID":"0574-0426","ShipCountry":"SY","ShipAddress":"249 Hermina Court","ShipName":"Prohaska, Schumm and Douglas","OrderDate":"1/7/2017","TotalPayment":"$205824.73","Status":6,"Type":1}]},\n{"RecordID":69,"FirstName":"Bernhard","LastName":"Cane","Company":"Trilia","Email":"bcane1w@etsy.com","Phone":"971-738-0822","Status":3,"Type":2,"Orders":[{"OrderID":"36987-1559","ShipCountry":"ID","ShipAddress":"33973 Warbler Circle","ShipName":"Auer-Nader","OrderDate":"8/12/2017","TotalPayment":"$678877.70","Status":1,"Type":1},{"OrderID":"60429-030","ShipCountry":"VN","ShipAddress":"839 Forest Dale Parkway","ShipName":"Hermann, Lubowitz and Kuhic","OrderDate":"4/23/2016","TotalPayment":"$57183.41","Status":2,"Type":3},{"OrderID":"55301-612","ShipCountry":"CN","ShipAddress":"32006 Maryland Place","ShipName":"Casper LLC","OrderDate":"2/21/2016","TotalPayment":"$303638.63","Status":3,"Type":2},{"OrderID":"48951-6028","ShipCountry":"PA","ShipAddress":"1857 Susan Trail","ShipName":"Schuster Inc","OrderDate":"9/29/2016","TotalPayment":"$97080.99","Status":4,"Type":3},{"OrderID":"11523-7356","ShipCountry":"CO","ShipAddress":"25 Carioca Street","ShipName":"Lesch-Torp","OrderDate":"10/18/2017","TotalPayment":"$229844.67","Status":1,"Type":3},{"OrderID":"17478-209","ShipCountry":"RU","ShipAddress":"62 3rd Court","ShipName":"Gaylord-Wehner","OrderDate":"5/20/2016","TotalPayment":"$740851.02","Status":5,"Type":1},{"OrderID":"62742-4030","ShipCountry":"BR","ShipAddress":"39195 Loeprich Way","ShipName":"Wiza-Waters","OrderDate":"8/7/2017","TotalPayment":"$845334.28","Status":5,"Type":1},{"OrderID":"54868-6326","ShipCountry":"AF","ShipAddress":"500 Village Green Plaza","ShipName":"Cormier, Huels and Fritsch","OrderDate":"4/2/2017","TotalPayment":"$199971.24","Status":3,"Type":2},{"OrderID":"53942-503","ShipCountry":"CN","ShipAddress":"94 Eagle Crest Terrace","ShipName":"Feeney Inc","OrderDate":"3/27/2016","TotalPayment":"$565124.63","Status":2,"Type":2},{"OrderID":"61010-8600","ShipCountry":"KP","ShipAddress":"9154 Holmberg Road","ShipName":"Nicolas-Robel","OrderDate":"6/30/2016","TotalPayment":"$870122.32","Status":2,"Type":1},{"OrderID":"76119-1325","ShipCountry":"DO","ShipAddress":"8 Pepper Wood Street","ShipName":"Lueilwitz, Wyman and Jerde","OrderDate":"12/7/2016","TotalPayment":"$938699.20","Status":2,"Type":3},{"OrderID":"0093-6137","ShipCountry":"PH","ShipAddress":"757 Toban Parkway","ShipName":"Kuphal-Weber","OrderDate":"12/6/2017","TotalPayment":"$401118.05","Status":1,"Type":1},{"OrderID":"55714-2259","ShipCountry":"BY","ShipAddress":"5 Everett Lane","ShipName":"Lebsack, Lubowitz and Glover","OrderDate":"11/9/2017","TotalPayment":"$115441.60","Status":2,"Type":1},{"OrderID":"53808-0852","ShipCountry":"JP","ShipAddress":"83305 Glacier Hill Parkway","ShipName":"Witting, Bauch and Balistreri","OrderDate":"1/30/2016","TotalPayment":"$339321.27","Status":5,"Type":1},{"OrderID":"57344-113","ShipCountry":"CN","ShipAddress":"725 Glacier Hill Point","ShipName":"Stiedemann, Bauch and Jast","OrderDate":"1/11/2016","TotalPayment":"$704911.03","Status":3,"Type":2},{"OrderID":"60505-2640","ShipCountry":"FR","ShipAddress":"1066 Canary Pass","ShipName":"Mohr, Hodkiewicz and Koelpin","OrderDate":"7/30/2016","TotalPayment":"$304238.67","Status":4,"Type":1}]},\n{"RecordID":70,"FirstName":"Korella","LastName":"Winterborne","Company":"Yamia","Email":"kwinterborne1x@mapquest.com","Phone":"949-514-4136","Status":5,"Type":1,"Orders":[{"OrderID":"0264-7885","ShipCountry":"ID","ShipAddress":"82750 Brickson Park Plaza","ShipName":"Hermann, Harber and Schneider","OrderDate":"10/5/2017","TotalPayment":"$279462.97","Status":2,"Type":1},{"OrderID":"21695-318","ShipCountry":"CN","ShipAddress":"11 Northview Street","ShipName":"Von LLC","OrderDate":"12/2/2017","TotalPayment":"$222925.54","Status":4,"Type":1},{"OrderID":"55289-612","ShipCountry":"CA","ShipAddress":"0 Novick Street","ShipName":"Erdman-Mosciski","OrderDate":"5/21/2016","TotalPayment":"$900381.48","Status":2,"Type":2},{"OrderID":"0187-2097","ShipCountry":"LK","ShipAddress":"68 Monument Terrace","ShipName":"Prohaska-Mitchell","OrderDate":"9/12/2016","TotalPayment":"$406769.91","Status":3,"Type":3},{"OrderID":"62011-0144","ShipCountry":"BR","ShipAddress":"35223 Vernon Crossing","ShipName":"Heidenreich-Mohr","OrderDate":"2/8/2017","TotalPayment":"$829510.20","Status":5,"Type":1},{"OrderID":"61715-039","ShipCountry":"GR","ShipAddress":"005 Chinook Road","ShipName":"Wehner-Gusikowski","OrderDate":"3/6/2016","TotalPayment":"$957153.57","Status":4,"Type":1},{"OrderID":"50382-003","ShipCountry":"AR","ShipAddress":"9 Carioca Court","ShipName":"Breitenberg, Little and Predovic","OrderDate":"4/8/2017","TotalPayment":"$203981.90","Status":3,"Type":1},{"OrderID":"33261-788","ShipCountry":"HN","ShipAddress":"7214 Menomonie Parkway","ShipName":"Lehner Inc","OrderDate":"7/27/2016","TotalPayment":"$127002.75","Status":4,"Type":1},{"OrderID":"0173-0602","ShipCountry":"CZ","ShipAddress":"4879 Springs Hill","ShipName":"Welch Group","OrderDate":"2/15/2016","TotalPayment":"$394763.67","Status":1,"Type":1},{"OrderID":"10096-0291","ShipCountry":"PL","ShipAddress":"7 Coleman Drive","ShipName":"Leannon-Bartell","OrderDate":"10/22/2016","TotalPayment":"$1049314.52","Status":4,"Type":3}]},\n{"RecordID":71,"FirstName":"Eustacia","LastName":"Gaenor","Company":"Meevee","Email":"egaenor1y@europa.eu","Phone":"240-169-3315","Status":2,"Type":2,"Orders":[{"OrderID":"68151-1294","ShipCountry":"RU","ShipAddress":"4509 Donald Terrace","ShipName":"Little, Abernathy and Jacobs","OrderDate":"11/9/2016","TotalPayment":"$222587.27","Status":6,"Type":1},{"OrderID":"63629-3205","ShipCountry":"CN","ShipAddress":"273 Karstens Lane","ShipName":"Emmerich, Yundt and Kohler","OrderDate":"1/21/2017","TotalPayment":"$637138.35","Status":5,"Type":2},{"OrderID":"14060-006","ShipCountry":"BA","ShipAddress":"12 Ludington Place","ShipName":"Rohan Group","OrderDate":"3/21/2016","TotalPayment":"$1049336.73","Status":6,"Type":2},{"OrderID":"29500-8010","ShipCountry":"PL","ShipAddress":"650 Rigney Pass","ShipName":"Rutherford and Sons","OrderDate":"6/17/2017","TotalPayment":"$353186.21","Status":5,"Type":3},{"OrderID":"68016-137","ShipCountry":"RS","ShipAddress":"71 Leroy Crossing","ShipName":"Von-Dickens","OrderDate":"1/16/2017","TotalPayment":"$1150344.51","Status":2,"Type":3},{"OrderID":"43063-481","ShipCountry":"PH","ShipAddress":"9 Northwestern Pass","ShipName":"Welch-O\'Conner","OrderDate":"12/16/2017","TotalPayment":"$490108.31","Status":1,"Type":1},{"OrderID":"49873-302","ShipCountry":"NE","ShipAddress":"50 Farragut Street","ShipName":"Gorczany Inc","OrderDate":"12/22/2017","TotalPayment":"$904431.71","Status":2,"Type":2},{"OrderID":"0832-1082","ShipCountry":"NZ","ShipAddress":"5 Goodland Road","ShipName":"Murazik LLC","OrderDate":"10/3/2017","TotalPayment":"$268357.60","Status":5,"Type":3},{"OrderID":"50580-679","ShipCountry":"PH","ShipAddress":"58 Knutson Plaza","ShipName":"Nicolas, Streich and Miller","OrderDate":"1/6/2017","TotalPayment":"$741583.70","Status":6,"Type":3},{"OrderID":"30142-839","ShipCountry":"BR","ShipAddress":"853 Twin Pines Circle","ShipName":"Murphy Inc","OrderDate":"12/21/2017","TotalPayment":"$85054.02","Status":6,"Type":2},{"OrderID":"62296-0036","ShipCountry":"GR","ShipAddress":"830 Transport Street","ShipName":"Kassulke and Sons","OrderDate":"2/23/2016","TotalPayment":"$142674.89","Status":6,"Type":3},{"OrderID":"37808-308","ShipCountry":"CN","ShipAddress":"15 Southridge Trail","ShipName":"Little-Vandervort","OrderDate":"3/19/2017","TotalPayment":"$1059783.68","Status":1,"Type":2},{"OrderID":"42982-4441","ShipCountry":"RU","ShipAddress":"247 Summerview Park","ShipName":"Romaguera, Ondricka and Will","OrderDate":"6/14/2016","TotalPayment":"$447605.64","Status":2,"Type":1},{"OrderID":"53157-120","ShipCountry":"EC","ShipAddress":"1 Becker Circle","ShipName":"Keeling Inc","OrderDate":"1/22/2017","TotalPayment":"$48283.93","Status":4,"Type":2}]},\n{"RecordID":72,"FirstName":"Una","LastName":"Husbands","Company":"Realfire","Email":"uhusbands1z@phoca.cz","Phone":"505-785-4296","Status":4,"Type":1,"Orders":[{"OrderID":"0904-6331","ShipCountry":"CN","ShipAddress":"0 Dovetail Center","ShipName":"Bahringer Inc","OrderDate":"1/13/2017","TotalPayment":"$347336.72","Status":6,"Type":2},{"OrderID":"37012-667","ShipCountry":"ID","ShipAddress":"58 Hayes Road","ShipName":"Schimmel, Schimmel and Douglas","OrderDate":"5/11/2016","TotalPayment":"$511564.26","Status":2,"Type":2},{"OrderID":"63940-611","ShipCountry":"RS","ShipAddress":"05 Sullivan Hill","ShipName":"MacGyver-Bernier","OrderDate":"4/11/2017","TotalPayment":"$139802.18","Status":3,"Type":2},{"OrderID":"0268-0802","ShipCountry":"PH","ShipAddress":"052 Blue Bill Park Pass","ShipName":"Schimmel and Sons","OrderDate":"10/9/2016","TotalPayment":"$169528.13","Status":4,"Type":1},{"OrderID":"0006-3941","ShipCountry":"KY","ShipAddress":"9696 Blue Bill Park Drive","ShipName":"Cummerata-Schmitt","OrderDate":"3/21/2016","TotalPayment":"$622927.79","Status":4,"Type":2},{"OrderID":"68151-2946","ShipCountry":"HN","ShipAddress":"9847 Holy Cross Park","ShipName":"Okuneva, Wintheiser and Hayes","OrderDate":"1/13/2016","TotalPayment":"$28781.40","Status":6,"Type":2},{"OrderID":"50458-551","ShipCountry":"SI","ShipAddress":"86 Blaine Park","ShipName":"Langworth-Fisher","OrderDate":"8/28/2016","TotalPayment":"$1188173.44","Status":5,"Type":2},{"OrderID":"48951-8232","ShipCountry":"BR","ShipAddress":"29800 Barby Street","ShipName":"Tillman-Schowalter","OrderDate":"2/7/2017","TotalPayment":"$1104584.72","Status":5,"Type":3},{"OrderID":"13537-166","ShipCountry":"BD","ShipAddress":"363 Bartelt Drive","ShipName":"Rempel LLC","OrderDate":"8/2/2017","TotalPayment":"$838386.65","Status":6,"Type":1},{"OrderID":"65862-134","ShipCountry":"ID","ShipAddress":"59 West Junction","ShipName":"Jenkins, MacGyver and Hane","OrderDate":"12/2/2016","TotalPayment":"$140971.92","Status":1,"Type":3},{"OrderID":"49288-0354","ShipCountry":"ID","ShipAddress":"49 Merrick Place","ShipName":"Dickinson-Hermann","OrderDate":"8/25/2017","TotalPayment":"$580465.12","Status":1,"Type":3},{"OrderID":"47335-004","ShipCountry":"SY","ShipAddress":"83 Meadow Valley Crossing","ShipName":"Brekke-Dicki","OrderDate":"9/13/2016","TotalPayment":"$1019550.38","Status":4,"Type":1},{"OrderID":"0113-0857","ShipCountry":"CN","ShipAddress":"0367 Moose Crossing","ShipName":"Grady Group","OrderDate":"3/29/2016","TotalPayment":"$1062930.64","Status":4,"Type":3}]},\n{"RecordID":73,"FirstName":"Moria","LastName":"Broschke","Company":"Cogidoo","Email":"mbroschke20@i2i.jp","Phone":"804-717-8125","Status":1,"Type":2,"Orders":[{"OrderID":"54868-5821","ShipCountry":"ID","ShipAddress":"6 Reindahl Parkway","ShipName":"Ebert, Hilpert and Stark","OrderDate":"10/12/2016","TotalPayment":"$448304.63","Status":6,"Type":2},{"OrderID":"54569-2095","ShipCountry":"CN","ShipAddress":"79 Packers Terrace","ShipName":"Schoen, Treutel and Schaden","OrderDate":"11/17/2017","TotalPayment":"$852815.93","Status":3,"Type":3},{"OrderID":"37000-756","ShipCountry":"US","ShipAddress":"191 Merrick Crossing","ShipName":"Raynor, Torphy and D\'Amore","OrderDate":"8/11/2017","TotalPayment":"$146132.63","Status":2,"Type":2},{"OrderID":"0135-0195","ShipCountry":"PE","ShipAddress":"8360 Springview Plaza","ShipName":"Langworth-Crist","OrderDate":"11/13/2016","TotalPayment":"$469787.48","Status":1,"Type":1},{"OrderID":"75857-1104","ShipCountry":"CN","ShipAddress":"5 Westridge Avenue","ShipName":"McClure-Rolfson","OrderDate":"4/23/2016","TotalPayment":"$1163537.49","Status":2,"Type":2},{"OrderID":"55648-374","ShipCountry":"VN","ShipAddress":"2 Larry Circle","ShipName":"Kutch, Greenholt and Keeling","OrderDate":"5/16/2016","TotalPayment":"$1115192.06","Status":2,"Type":3},{"OrderID":"68387-531","ShipCountry":"ID","ShipAddress":"787 Vera Trail","ShipName":"Jones-Kozey","OrderDate":"7/25/2016","TotalPayment":"$188989.38","Status":4,"Type":1},{"OrderID":"53808-0665","ShipCountry":"US","ShipAddress":"340 Thackeray Terrace","ShipName":"Tromp, Schmitt and Bradtke","OrderDate":"9/29/2017","TotalPayment":"$473215.90","Status":6,"Type":3}]},\n{"RecordID":74,"FirstName":"Eb","LastName":"Easdon","Company":"Jabbercube","Email":"eeasdon21@walmart.com","Phone":"313-866-7485","Status":2,"Type":3,"Orders":[{"OrderID":"66613-8148","ShipCountry":"TH","ShipAddress":"2 Pepper Wood Junction","ShipName":"Treutel-Ondricka","OrderDate":"7/25/2016","TotalPayment":"$1053146.25","Status":5,"Type":2},{"OrderID":"42254-005","ShipCountry":"CA","ShipAddress":"69 Miller Point","ShipName":"Jones, Fritsch and Konopelski","OrderDate":"9/11/2017","TotalPayment":"$987505.47","Status":2,"Type":2},{"OrderID":"59579-004","ShipCountry":"BR","ShipAddress":"2 Carey Road","ShipName":"Bruen Inc","OrderDate":"5/26/2016","TotalPayment":"$495090.65","Status":4,"Type":3},{"OrderID":"53942-311","ShipCountry":"AS","ShipAddress":"39915 Grayhawk Court","ShipName":"Dicki-Rath","OrderDate":"4/22/2016","TotalPayment":"$491591.60","Status":6,"Type":2},{"OrderID":"55111-126","ShipCountry":"NL","ShipAddress":"642 Susan Circle","ShipName":"Towne-Bailey","OrderDate":"8/11/2017","TotalPayment":"$1137269.20","Status":1,"Type":3},{"OrderID":"35356-477","ShipCountry":"CN","ShipAddress":"26 Blue Bill Park Court","ShipName":"Pagac-Rolfson","OrderDate":"2/13/2017","TotalPayment":"$795657.78","Status":5,"Type":2},{"OrderID":"60505-0003","ShipCountry":"MY","ShipAddress":"53 Jenna Point","ShipName":"Schimmel, Kovacek and Huels","OrderDate":"9/4/2016","TotalPayment":"$1087904.40","Status":5,"Type":2},{"OrderID":"62011-0003","ShipCountry":"ID","ShipAddress":"6149 Dahle Terrace","ShipName":"Corkery-Aufderhar","OrderDate":"3/9/2017","TotalPayment":"$323700.81","Status":2,"Type":3},{"OrderID":"0615-5620","ShipCountry":"TZ","ShipAddress":"4943 Talisman Center","ShipName":"Hills-Lindgren","OrderDate":"5/8/2016","TotalPayment":"$846261.40","Status":6,"Type":2},{"OrderID":"0682-0480","ShipCountry":"AL","ShipAddress":"8 Portage Circle","ShipName":"Ullrich LLC","OrderDate":"11/3/2017","TotalPayment":"$894753.65","Status":6,"Type":3},{"OrderID":"55154-7352","ShipCountry":"PH","ShipAddress":"29 Karstens Junction","ShipName":"Haag, Graham and Murray","OrderDate":"6/17/2017","TotalPayment":"$588964.71","Status":5,"Type":1},{"OrderID":"64679-422","ShipCountry":"JM","ShipAddress":"34 West Street","ShipName":"Dietrich, Miller and Pouros","OrderDate":"11/14/2016","TotalPayment":"$163818.34","Status":2,"Type":3},{"OrderID":"0067-6394","ShipCountry":"ID","ShipAddress":"98 Green Ridge Parkway","ShipName":"Zboncak-Williamson","OrderDate":"12/5/2016","TotalPayment":"$883747.99","Status":6,"Type":3},{"OrderID":"55154-6726","ShipCountry":"CN","ShipAddress":"954 Holmberg Place","ShipName":"Hamill Inc","OrderDate":"9/10/2016","TotalPayment":"$479400.53","Status":5,"Type":1},{"OrderID":"52125-095","ShipCountry":"KZ","ShipAddress":"4 Crest Line Way","ShipName":"McKenzie LLC","OrderDate":"8/30/2017","TotalPayment":"$157693.58","Status":5,"Type":1}]},\n{"RecordID":75,"FirstName":"Hoyt","LastName":"Foucar","Company":"Trilith","Email":"hfoucar22@nydailynews.com","Phone":"768-708-1455","Status":2,"Type":3,"Orders":[{"OrderID":"68788-9548","ShipCountry":"PH","ShipAddress":"6456 Muir Point","ShipName":"Pacocha, Morar and Kihn","OrderDate":"5/8/2017","TotalPayment":"$196609.24","Status":4,"Type":2},{"OrderID":"63629-4148","ShipCountry":"RU","ShipAddress":"15002 Waxwing Drive","ShipName":"Runolfsdottir, Fay and Nader","OrderDate":"6/25/2016","TotalPayment":"$482281.21","Status":4,"Type":1},{"OrderID":"0069-0336","ShipCountry":"GR","ShipAddress":"9091 Sunnyside Place","ShipName":"Parisian, Schimmel and Rempel","OrderDate":"12/12/2017","TotalPayment":"$732402.85","Status":4,"Type":3},{"OrderID":"49349-717","ShipCountry":"CN","ShipAddress":"57 Garrison Avenue","ShipName":"Mohr Group","OrderDate":"8/19/2016","TotalPayment":"$96083.24","Status":2,"Type":2},{"OrderID":"57520-0407","ShipCountry":"US","ShipAddress":"8 Blaine Avenue","ShipName":"Wiza Group","OrderDate":"8/20/2017","TotalPayment":"$676741.06","Status":5,"Type":3},{"OrderID":"30142-306","ShipCountry":"TZ","ShipAddress":"3766 Reinke Parkway","ShipName":"Auer, Barrows and Kuhic","OrderDate":"5/21/2016","TotalPayment":"$556538.40","Status":5,"Type":2},{"OrderID":"51523-011","ShipCountry":"SE","ShipAddress":"79 Melrose Trail","ShipName":"Beier, Gerlach and Davis","OrderDate":"5/12/2016","TotalPayment":"$877529.05","Status":5,"Type":3},{"OrderID":"0121-4788","ShipCountry":"SE","ShipAddress":"11 Lakeland Drive","ShipName":"Kirlin, Ortiz and Prosacco","OrderDate":"7/20/2017","TotalPayment":"$476308.51","Status":2,"Type":1},{"OrderID":"68084-863","ShipCountry":"MX","ShipAddress":"7 Dakota Plaza","ShipName":"Walter LLC","OrderDate":"5/6/2016","TotalPayment":"$701061.21","Status":3,"Type":1},{"OrderID":"22700-098","ShipCountry":"HN","ShipAddress":"2 Autumn Leaf Point","ShipName":"Macejkovic Inc","OrderDate":"10/31/2017","TotalPayment":"$698149.31","Status":5,"Type":3},{"OrderID":"45963-500","ShipCountry":"TH","ShipAddress":"38 Iowa Hill","ShipName":"Muller-Kunde","OrderDate":"5/19/2016","TotalPayment":"$824311.32","Status":3,"Type":3},{"OrderID":"49349-352","ShipCountry":"CN","ShipAddress":"934 Memorial Terrace","ShipName":"Satterfield-Cartwright","OrderDate":"12/12/2017","TotalPayment":"$498189.34","Status":6,"Type":3},{"OrderID":"0378-9121","ShipCountry":"OM","ShipAddress":"30975 Express Point","ShipName":"Cassin, Miller and Heidenreich","OrderDate":"6/28/2017","TotalPayment":"$729547.78","Status":3,"Type":3},{"OrderID":"60905-0405","ShipCountry":"CN","ShipAddress":"70083 Farwell Pass","ShipName":"Kertzmann Group","OrderDate":"11/12/2017","TotalPayment":"$943226.70","Status":1,"Type":2}]},\n{"RecordID":76,"FirstName":"Joseph","LastName":"Bahlmann","Company":"Twitterwire","Email":"jbahlmann23@twitpic.com","Phone":"924-273-4946","Status":5,"Type":3,"Orders":[{"OrderID":"0093-7599","ShipCountry":"MX","ShipAddress":"08 Sutherland Alley","ShipName":"Koepp-Murphy","OrderDate":"4/6/2016","TotalPayment":"$237076.77","Status":6,"Type":1},{"OrderID":"59667-0105","ShipCountry":"JP","ShipAddress":"06599 Sherman Plaza","ShipName":"Hoppe LLC","OrderDate":"7/19/2016","TotalPayment":"$42445.51","Status":1,"Type":3},{"OrderID":"11523-4765","ShipCountry":"AR","ShipAddress":"814 Ruskin Circle","ShipName":"Larkin LLC","OrderDate":"2/22/2017","TotalPayment":"$821767.09","Status":2,"Type":1},{"OrderID":"0273-0358","ShipCountry":"ID","ShipAddress":"57905 Upham Place","ShipName":"Keeling-Howell","OrderDate":"12/26/2016","TotalPayment":"$1068593.69","Status":1,"Type":1},{"OrderID":"68599-0208","ShipCountry":"MX","ShipAddress":"2371 Upham Center","ShipName":"Jacobi Inc","OrderDate":"4/23/2017","TotalPayment":"$247619.83","Status":3,"Type":3},{"OrderID":"49738-866","ShipCountry":"PK","ShipAddress":"536 Buell Parkway","ShipName":"Lemke LLC","OrderDate":"6/3/2017","TotalPayment":"$132385.73","Status":6,"Type":3},{"OrderID":"67938-2019","ShipCountry":"CN","ShipAddress":"5202 Northport Parkway","ShipName":"Beier-Rogahn","OrderDate":"7/19/2017","TotalPayment":"$418381.92","Status":5,"Type":2},{"OrderID":"55390-358","ShipCountry":"BD","ShipAddress":"6982 Nancy Avenue","ShipName":"O\'Reilly, Ratke and Fadel","OrderDate":"11/13/2017","TotalPayment":"$337143.21","Status":4,"Type":1},{"OrderID":"11822-0442","ShipCountry":"PH","ShipAddress":"130 Kipling Hill","ShipName":"Rau, Schamberger and Stehr","OrderDate":"11/17/2016","TotalPayment":"$97335.17","Status":5,"Type":3},{"OrderID":"0363-0601","ShipCountry":"CN","ShipAddress":"3 Beilfuss Way","ShipName":"Osinski, Monahan and Wilkinson","OrderDate":"2/1/2016","TotalPayment":"$1066752.17","Status":1,"Type":1},{"OrderID":"52257-1201","ShipCountry":"EE","ShipAddress":"8380 Kedzie Terrace","ShipName":"Wilkinson-Trantow","OrderDate":"11/28/2017","TotalPayment":"$1150391.40","Status":1,"Type":1},{"OrderID":"27808-001","ShipCountry":"SE","ShipAddress":"577 Tennyson Hill","ShipName":"Welch LLC","OrderDate":"8/11/2016","TotalPayment":"$752935.22","Status":4,"Type":2},{"OrderID":"54569-0199","ShipCountry":"PT","ShipAddress":"976 Ilene Alley","ShipName":"Feeney and Sons","OrderDate":"11/17/2017","TotalPayment":"$600213.04","Status":4,"Type":3},{"OrderID":"67512-224","ShipCountry":"TH","ShipAddress":"0 Becker Circle","ShipName":"Rath and Sons","OrderDate":"6/25/2017","TotalPayment":"$895233.38","Status":3,"Type":2},{"OrderID":"0536-3605","ShipCountry":"CZ","ShipAddress":"1700 Melby Junction","ShipName":"Rohan-Tillman","OrderDate":"3/24/2016","TotalPayment":"$557375.93","Status":3,"Type":2},{"OrderID":"20802-1501","ShipCountry":"PL","ShipAddress":"09 Porter Junction","ShipName":"Zemlak, Fadel and Hintz","OrderDate":"6/20/2016","TotalPayment":"$653709.53","Status":2,"Type":3},{"OrderID":"63736-363","ShipCountry":"BR","ShipAddress":"0 Main Way","ShipName":"Hyatt, Will and Schoen","OrderDate":"6/6/2016","TotalPayment":"$751901.97","Status":5,"Type":2},{"OrderID":"61703-342","ShipCountry":"PL","ShipAddress":"049 Park Meadow Parkway","ShipName":"Torp, Murazik and Jacobi","OrderDate":"10/8/2017","TotalPayment":"$682640.70","Status":2,"Type":3},{"OrderID":"10812-435","ShipCountry":"NL","ShipAddress":"78 Trailsway Plaza","ShipName":"Roob, Kutch and Lakin","OrderDate":"11/2/2017","TotalPayment":"$991195.03","Status":5,"Type":1},{"OrderID":"63323-370","ShipCountry":"TZ","ShipAddress":"0 Farwell Pass","ShipName":"Hoppe, Sanford and Herzog","OrderDate":"3/8/2016","TotalPayment":"$1082637.89","Status":5,"Type":3}]},\n{"RecordID":77,"FirstName":"Francklin","LastName":"Kliemann","Company":"Trudeo","Email":"fkliemann24@squarespace.com","Phone":"931-145-2463","Status":6,"Type":1,"Orders":[{"OrderID":"62742-4036","ShipCountry":"PH","ShipAddress":"3985 Lighthouse Bay Trail","ShipName":"Stracke-Treutel","OrderDate":"1/13/2016","TotalPayment":"$1179891.22","Status":4,"Type":3},{"OrderID":"62032-200","ShipCountry":"FI","ShipAddress":"3425 6th Crossing","ShipName":"Pollich Group","OrderDate":"7/4/2016","TotalPayment":"$215273.29","Status":4,"Type":1},{"OrderID":"10702-013","ShipCountry":"RU","ShipAddress":"8969 Weeping Birch Junction","ShipName":"Gottlieb Inc","OrderDate":"10/6/2017","TotalPayment":"$988731.76","Status":1,"Type":3},{"OrderID":"55154-6964","ShipCountry":"DE","ShipAddress":"76902 Fulton Center","ShipName":"Bogisich-Gorczany","OrderDate":"4/3/2017","TotalPayment":"$195719.92","Status":4,"Type":3},{"OrderID":"75854-202","ShipCountry":"ID","ShipAddress":"8 Tony Crossing","ShipName":"Koch-Hartmann","OrderDate":"9/15/2017","TotalPayment":"$998284.39","Status":3,"Type":3},{"OrderID":"54569-4466","ShipCountry":"PH","ShipAddress":"3 Granby Circle","ShipName":"Roob-Glover","OrderDate":"11/21/2016","TotalPayment":"$13516.76","Status":3,"Type":1},{"OrderID":"76237-206","ShipCountry":"US","ShipAddress":"8691 Roth Lane","ShipName":"Johnson, Doyle and Fadel","OrderDate":"7/19/2016","TotalPayment":"$955144.03","Status":1,"Type":1},{"OrderID":"17478-523","ShipCountry":"XK","ShipAddress":"497 Melrose Park","ShipName":"Goyette LLC","OrderDate":"4/11/2017","TotalPayment":"$1031737.34","Status":2,"Type":3},{"OrderID":"68151-0527","ShipCountry":"IL","ShipAddress":"6 Sugar Hill","ShipName":"Rau LLC","OrderDate":"10/17/2016","TotalPayment":"$1120002.93","Status":3,"Type":3},{"OrderID":"0085-1312","ShipCountry":"PH","ShipAddress":"9 Canary Plaza","ShipName":"Ward-Grady","OrderDate":"10/13/2016","TotalPayment":"$357305.47","Status":3,"Type":2},{"OrderID":"49349-995","ShipCountry":"US","ShipAddress":"7332 Arapahoe Road","ShipName":"Cummerata-Hartmann","OrderDate":"5/8/2016","TotalPayment":"$804133.74","Status":2,"Type":2}]},\n{"RecordID":78,"FirstName":"Emilie","LastName":"Barbera","Company":"Zazio","Email":"ebarbera25@arstechnica.com","Phone":"559-615-8821","Status":5,"Type":1,"Orders":[{"OrderID":"49349-856","ShipCountry":"CN","ShipAddress":"8 Killdeer Circle","ShipName":"Sporer, Schiller and Schroeder","OrderDate":"5/11/2016","TotalPayment":"$297892.06","Status":1,"Type":2},{"OrderID":"49035-479","ShipCountry":"ID","ShipAddress":"852 Vera Street","ShipName":"Huel, Graham and Prohaska","OrderDate":"5/22/2016","TotalPayment":"$668595.89","Status":1,"Type":1},{"OrderID":"68769-002","ShipCountry":"AZ","ShipAddress":"89 Meadow Valley Road","ShipName":"Reichert Group","OrderDate":"12/24/2017","TotalPayment":"$57961.30","Status":3,"Type":1},{"OrderID":"68180-518","ShipCountry":"CN","ShipAddress":"15 Derek Road","ShipName":"Schmeler Inc","OrderDate":"10/17/2017","TotalPayment":"$283811.19","Status":6,"Type":3},{"OrderID":"44363-1815","ShipCountry":"ZM","ShipAddress":"65546 Grover Drive","ShipName":"Walter, Gerlach and Bartell","OrderDate":"2/20/2017","TotalPayment":"$1166480.43","Status":2,"Type":3},{"OrderID":"65954-014","ShipCountry":"CN","ShipAddress":"52653 Red Cloud Court","ShipName":"Beer-Braun","OrderDate":"6/6/2017","TotalPayment":"$983678.39","Status":2,"Type":1},{"OrderID":"41520-193","ShipCountry":"BR","ShipAddress":"58366 Oxford Hill","ShipName":"Jacobson-Kassulke","OrderDate":"6/19/2017","TotalPayment":"$160170.87","Status":4,"Type":3},{"OrderID":"52125-680","ShipCountry":"EC","ShipAddress":"9265 Sundown Junction","ShipName":"Ratke and Sons","OrderDate":"9/17/2017","TotalPayment":"$930206.45","Status":5,"Type":3},{"OrderID":"63347-120","ShipCountry":"PL","ShipAddress":"02830 Kedzie Way","ShipName":"Gulgowski Inc","OrderDate":"6/3/2017","TotalPayment":"$133638.46","Status":2,"Type":2},{"OrderID":"63629-4177","ShipCountry":"CY","ShipAddress":"10987 Macpherson Avenue","ShipName":"Wilkinson and Sons","OrderDate":"7/13/2016","TotalPayment":"$710238.52","Status":2,"Type":1},{"OrderID":"21695-474","ShipCountry":"PH","ShipAddress":"8 Sheridan Crossing","ShipName":"Klocko and Sons","OrderDate":"1/22/2016","TotalPayment":"$58077.54","Status":4,"Type":2},{"OrderID":"67112-401","ShipCountry":"ID","ShipAddress":"0 Old Gate Crossing","ShipName":"Hegmann Inc","OrderDate":"8/25/2016","TotalPayment":"$341006.70","Status":1,"Type":3},{"OrderID":"48951-1218","ShipCountry":"CZ","ShipAddress":"1 Lyons Avenue","ShipName":"McCullough-Windler","OrderDate":"10/15/2017","TotalPayment":"$430365.30","Status":6,"Type":3},{"OrderID":"60512-0009","ShipCountry":"MY","ShipAddress":"65621 Memorial Center","ShipName":"Greenfelder-Goyette","OrderDate":"1/11/2016","TotalPayment":"$423892.53","Status":4,"Type":3},{"OrderID":"36800-971","ShipCountry":"GT","ShipAddress":"42 Village Parkway","ShipName":"Rowe and Sons","OrderDate":"10/19/2016","TotalPayment":"$1138252.75","Status":6,"Type":2},{"OrderID":"64376-821","ShipCountry":"ID","ShipAddress":"7 Badeau Way","ShipName":"Hudson Group","OrderDate":"1/30/2017","TotalPayment":"$674957.53","Status":1,"Type":1},{"OrderID":"0517-0830","ShipCountry":"AF","ShipAddress":"55911 Marquette Park","ShipName":"Swaniawski-Jerde","OrderDate":"2/10/2016","TotalPayment":"$415283.49","Status":6,"Type":2},{"OrderID":"67544-911","ShipCountry":"CN","ShipAddress":"945 Eagle Crest Point","ShipName":"Adams-Weissnat","OrderDate":"8/2/2016","TotalPayment":"$700160.78","Status":3,"Type":3},{"OrderID":"0615-7639","ShipCountry":"MY","ShipAddress":"9 Arrowood Street","ShipName":"Kassulke, Murphy and Mann","OrderDate":"1/29/2017","TotalPayment":"$182117.86","Status":6,"Type":2},{"OrderID":"68012-102","ShipCountry":"CN","ShipAddress":"15 Sugar Lane","ShipName":"Upton-Ryan","OrderDate":"4/23/2016","TotalPayment":"$1068078.93","Status":6,"Type":1}]},\n{"RecordID":79,"FirstName":"Terencio","LastName":"Vido","Company":"Buzzster","Email":"tvido26@europa.eu","Phone":"570-682-9012","Status":1,"Type":2,"Orders":[{"OrderID":"51079-062","ShipCountry":"ZA","ShipAddress":"42644 Anzinger Point","ShipName":"DuBuque Inc","OrderDate":"4/17/2016","TotalPayment":"$773512.98","Status":5,"Type":2},{"OrderID":"0456-4020","ShipCountry":"PT","ShipAddress":"5 Talmadge Circle","ShipName":"Hyatt Inc","OrderDate":"12/5/2017","TotalPayment":"$187738.47","Status":3,"Type":2},{"OrderID":"0006-0019","ShipCountry":"PE","ShipAddress":"990 Magdeline Way","ShipName":"Corwin, Streich and Kiehn","OrderDate":"5/30/2016","TotalPayment":"$374277.36","Status":2,"Type":3},{"OrderID":"24385-677","ShipCountry":"ID","ShipAddress":"6 Paget Plaza","ShipName":"O\'Kon Group","OrderDate":"6/27/2016","TotalPayment":"$918925.58","Status":3,"Type":3},{"OrderID":"0008-4990","ShipCountry":"CZ","ShipAddress":"3560 Forest Park","ShipName":"Beatty, Bins and Ebert","OrderDate":"10/21/2016","TotalPayment":"$1046538.73","Status":5,"Type":1},{"OrderID":"68387-802","ShipCountry":"AL","ShipAddress":"06574 John Wall Way","ShipName":"Berge-Von","OrderDate":"3/16/2016","TotalPayment":"$797136.53","Status":1,"Type":2},{"OrderID":"13107-012","ShipCountry":"BF","ShipAddress":"11386 Arapahoe Alley","ShipName":"Wilkinson, Oberbrunner and O\'Keefe","OrderDate":"3/29/2017","TotalPayment":"$327442.31","Status":2,"Type":3},{"OrderID":"54868-4991","ShipCountry":"BG","ShipAddress":"3182 Dayton Parkway","ShipName":"Gerlach-Lockman","OrderDate":"12/26/2016","TotalPayment":"$97244.05","Status":6,"Type":3},{"OrderID":"49349-043","ShipCountry":"SE","ShipAddress":"86 Meadow Ridge Street","ShipName":"Murphy, Davis and Schmidt","OrderDate":"9/11/2017","TotalPayment":"$511292.20","Status":2,"Type":2},{"OrderID":"53499-7172","ShipCountry":"PA","ShipAddress":"90 Longview Way","ShipName":"Rau, Fritsch and Spinka","OrderDate":"1/31/2016","TotalPayment":"$168332.29","Status":4,"Type":2},{"OrderID":"67510-0505","ShipCountry":"CN","ShipAddress":"18 Aberg Street","ShipName":"Gusikowski-Rath","OrderDate":"5/14/2017","TotalPayment":"$902108.30","Status":3,"Type":3},{"OrderID":"53808-0629","ShipCountry":"BO","ShipAddress":"185 Lakewood Gardens Junction","ShipName":"Dicki, Kerluke and McLaughlin","OrderDate":"9/5/2017","TotalPayment":"$524275.68","Status":4,"Type":2},{"OrderID":"62856-601","ShipCountry":"GR","ShipAddress":"49 American Alley","ShipName":"Steuber and Sons","OrderDate":"7/29/2017","TotalPayment":"$399239.36","Status":2,"Type":2},{"OrderID":"11559-035","ShipCountry":"ET","ShipAddress":"1207 Elka Plaza","ShipName":"Block LLC","OrderDate":"10/6/2016","TotalPayment":"$123416.54","Status":6,"Type":1},{"OrderID":"44946-1021","ShipCountry":"TH","ShipAddress":"703 Sloan Lane","ShipName":"Steuber-Rodriguez","OrderDate":"3/25/2016","TotalPayment":"$665393.75","Status":6,"Type":3},{"OrderID":"35356-542","ShipCountry":"ID","ShipAddress":"52 Tennessee Park","ShipName":"Wuckert LLC","OrderDate":"2/8/2016","TotalPayment":"$719949.18","Status":5,"Type":2}]},\n{"RecordID":80,"FirstName":"Walther","LastName":"Weedenburg","Company":"Layo","Email":"wweedenburg27@surveymonkey.com","Phone":"545-809-0943","Status":5,"Type":1,"Orders":[{"OrderID":"41167-0091","ShipCountry":"PH","ShipAddress":"5 Buell Circle","ShipName":"Konopelski Inc","OrderDate":"7/11/2017","TotalPayment":"$1038301.78","Status":2,"Type":3},{"OrderID":"0004-0802","ShipCountry":"FM","ShipAddress":"12925 Oxford Plaza","ShipName":"Runte Inc","OrderDate":"8/31/2017","TotalPayment":"$356774.59","Status":4,"Type":2},{"OrderID":"65044-5054","ShipCountry":"CN","ShipAddress":"0 Westerfield Park","ShipName":"Anderson-Kiehn","OrderDate":"4/11/2017","TotalPayment":"$179756.40","Status":4,"Type":1},{"OrderID":"41163-166","ShipCountry":"GR","ShipAddress":"9 Claremont Drive","ShipName":"Stamm-Mohr","OrderDate":"10/26/2016","TotalPayment":"$868672.84","Status":1,"Type":2},{"OrderID":"66969-6024","ShipCountry":"CN","ShipAddress":"36 Valley Edge Road","ShipName":"Schumm, Klein and Feest","OrderDate":"7/6/2016","TotalPayment":"$404134.24","Status":4,"Type":3},{"OrderID":"57469-059","ShipCountry":"ID","ShipAddress":"5 Morningstar Parkway","ShipName":"Koch-Harvey","OrderDate":"7/8/2017","TotalPayment":"$986695.34","Status":1,"Type":3},{"OrderID":"0781-7137","ShipCountry":"PK","ShipAddress":"581 Oakridge Street","ShipName":"Reynolds, Purdy and Pfeffer","OrderDate":"11/24/2017","TotalPayment":"$272908.62","Status":3,"Type":1},{"OrderID":"65293-005","ShipCountry":"ID","ShipAddress":"756 Ramsey Avenue","ShipName":"Stanton-Upton","OrderDate":"9/4/2017","TotalPayment":"$613377.87","Status":2,"Type":3},{"OrderID":"49288-0182","ShipCountry":"NA","ShipAddress":"4870 Katie Terrace","ShipName":"Carroll-Rice","OrderDate":"3/12/2016","TotalPayment":"$1000611.22","Status":3,"Type":1},{"OrderID":"68084-350","ShipCountry":"IR","ShipAddress":"9180 Farwell Drive","ShipName":"Skiles-Murphy","OrderDate":"10/29/2017","TotalPayment":"$1176142.38","Status":4,"Type":2},{"OrderID":"0406-9916","ShipCountry":"VN","ShipAddress":"00131 Golf Course Trail","ShipName":"Zemlak, Roob and Abernathy","OrderDate":"7/22/2017","TotalPayment":"$692348.69","Status":1,"Type":3},{"OrderID":"55154-8509","ShipCountry":"RU","ShipAddress":"01544 Stephen Trail","ShipName":"Bartoletti and Sons","OrderDate":"8/7/2017","TotalPayment":"$1157509.56","Status":3,"Type":2},{"OrderID":"0603-6468","ShipCountry":"RU","ShipAddress":"50118 Grover Road","ShipName":"Kiehn-Heathcote","OrderDate":"8/31/2016","TotalPayment":"$1171950.58","Status":1,"Type":1},{"OrderID":"66129-105","ShipCountry":"NG","ShipAddress":"8256 Schurz Point","ShipName":"Cremin Inc","OrderDate":"11/6/2017","TotalPayment":"$203380.99","Status":3,"Type":1},{"OrderID":"48951-5049","ShipCountry":"CN","ShipAddress":"24 Kingsford Park","ShipName":"Waelchi-Glover","OrderDate":"9/1/2017","TotalPayment":"$551628.70","Status":6,"Type":3},{"OrderID":"15828-106","ShipCountry":"KP","ShipAddress":"71988 Chive Way","ShipName":"Adams and Sons","OrderDate":"5/24/2016","TotalPayment":"$133757.06","Status":5,"Type":1},{"OrderID":"50804-686","ShipCountry":"PL","ShipAddress":"651 Heffernan Hill","ShipName":"Jakubowski, Bartell and Lowe","OrderDate":"4/16/2017","TotalPayment":"$124131.17","Status":6,"Type":1},{"OrderID":"29500-2436","ShipCountry":"ID","ShipAddress":"90957 4th Center","ShipName":"Rice LLC","OrderDate":"7/20/2017","TotalPayment":"$481798.92","Status":6,"Type":3}]},\n{"RecordID":81,"FirstName":"Carlota","LastName":"Tudhope","Company":"Quaxo","Email":"ctudhope28@marketwatch.com","Phone":"795-441-1536","Status":4,"Type":2,"Orders":[{"OrderID":"43419-861","ShipCountry":"PH","ShipAddress":"49166 Drewry Crossing","ShipName":"Wuckert-Romaguera","OrderDate":"4/13/2016","TotalPayment":"$1066100.46","Status":4,"Type":3},{"OrderID":"48951-9015","ShipCountry":"PT","ShipAddress":"12 Judy Street","ShipName":"White, Denesik and Braun","OrderDate":"1/7/2016","TotalPayment":"$1029397.30","Status":5,"Type":2},{"OrderID":"43742-0409","ShipCountry":"MX","ShipAddress":"49400 Helena Court","ShipName":"Gibson Inc","OrderDate":"11/13/2016","TotalPayment":"$754679.90","Status":3,"Type":1},{"OrderID":"0085-4610","ShipCountry":"CN","ShipAddress":"07 Glendale Parkway","ShipName":"Medhurst, Jacobson and Mertz","OrderDate":"4/25/2016","TotalPayment":"$346698.00","Status":1,"Type":2},{"OrderID":"21695-947","ShipCountry":"BR","ShipAddress":"2 Mccormick Point","ShipName":"Emard Group","OrderDate":"2/26/2017","TotalPayment":"$109719.72","Status":6,"Type":1},{"OrderID":"52584-610","ShipCountry":"CN","ShipAddress":"25683 Westport Trail","ShipName":"Carter, Runte and Ondricka","OrderDate":"11/24/2017","TotalPayment":"$304419.90","Status":3,"Type":2},{"OrderID":"49999-122","ShipCountry":"PK","ShipAddress":"1528 Larry Lane","ShipName":"Runte Inc","OrderDate":"1/14/2017","TotalPayment":"$110536.85","Status":2,"Type":1},{"OrderID":"37000-904","ShipCountry":"PT","ShipAddress":"1 Golf Crossing","ShipName":"Marvin, Hudson and Bashirian","OrderDate":"7/18/2016","TotalPayment":"$435074.34","Status":2,"Type":3},{"OrderID":"57691-120","ShipCountry":"RU","ShipAddress":"78112 Pond Lane","ShipName":"Gerhold, Lesch and Graham","OrderDate":"11/16/2016","TotalPayment":"$561812.12","Status":6,"Type":1},{"OrderID":"59779-221","ShipCountry":"VN","ShipAddress":"393 Schurz Avenue","ShipName":"Streich-Braun","OrderDate":"10/30/2016","TotalPayment":"$605873.86","Status":6,"Type":2},{"OrderID":"67046-014","ShipCountry":"ZA","ShipAddress":"86 Farwell Circle","ShipName":"Harris, Green and Jaskolski","OrderDate":"11/27/2016","TotalPayment":"$739178.63","Status":3,"Type":1},{"OrderID":"42254-340","ShipCountry":"CN","ShipAddress":"2585 Havey Lane","ShipName":"Shanahan, Jones and Steuber","OrderDate":"1/28/2017","TotalPayment":"$1027159.71","Status":4,"Type":3},{"OrderID":"24658-243","ShipCountry":"CN","ShipAddress":"926 Express Junction","ShipName":"Murray, Hettinger and Kohler","OrderDate":"6/12/2017","TotalPayment":"$767944.25","Status":1,"Type":1},{"OrderID":"57520-0990","ShipCountry":"FR","ShipAddress":"27653 Carpenter Center","ShipName":"Legros-McGlynn","OrderDate":"12/23/2016","TotalPayment":"$38634.30","Status":2,"Type":1},{"OrderID":"43857-0206","ShipCountry":"DK","ShipAddress":"78 Ramsey Court","ShipName":"Klocko, Ritchie and Zemlak","OrderDate":"2/23/2016","TotalPayment":"$833835.22","Status":4,"Type":3},{"OrderID":"59779-369","ShipCountry":"EE","ShipAddress":"8 Rusk Circle","ShipName":"Gerhold-Ebert","OrderDate":"10/20/2017","TotalPayment":"$140874.05","Status":5,"Type":2},{"OrderID":"72036-220","ShipCountry":"BR","ShipAddress":"36684 Pepper Wood Center","ShipName":"O\'Conner, O\'Kon and Zemlak","OrderDate":"7/12/2017","TotalPayment":"$1014462.20","Status":6,"Type":2},{"OrderID":"49349-899","ShipCountry":"PL","ShipAddress":"11 Oneill Court","ShipName":"Gutmann-Stokes","OrderDate":"7/21/2016","TotalPayment":"$500603.29","Status":1,"Type":3}]},\n{"RecordID":82,"FirstName":"Hubert","LastName":"Hasnney","Company":"Vipe","Email":"hhasnney29@usa.gov","Phone":"884-673-3875","Status":2,"Type":2,"Orders":[{"OrderID":"63981-766","ShipCountry":"RU","ShipAddress":"9 Ruskin Crossing","ShipName":"Haley and Sons","OrderDate":"11/7/2017","TotalPayment":"$198971.93","Status":5,"Type":1},{"OrderID":"35418-750","ShipCountry":"ID","ShipAddress":"4 Roxbury Circle","ShipName":"Koch-Legros","OrderDate":"3/10/2017","TotalPayment":"$605811.21","Status":5,"Type":3},{"OrderID":"59762-0925","ShipCountry":"BR","ShipAddress":"46 Commercial Avenue","ShipName":"Lueilwitz, Quitzon and Williamson","OrderDate":"5/21/2016","TotalPayment":"$63158.62","Status":6,"Type":2},{"OrderID":"57520-0271","ShipCountry":"PL","ShipAddress":"00124 Sundown Plaza","ShipName":"Mohr, Reichel and Rogahn","OrderDate":"4/3/2017","TotalPayment":"$495846.49","Status":5,"Type":2},{"OrderID":"50383-889","ShipCountry":"KR","ShipAddress":"99 Texas Pass","ShipName":"Stroman-Little","OrderDate":"3/29/2016","TotalPayment":"$543745.92","Status":1,"Type":1}]},\n{"RecordID":83,"FirstName":"Darya","LastName":"Oulett","Company":"Ntags","Email":"doulett2a@nhs.uk","Phone":"784-663-2169","Status":2,"Type":3,"Orders":[{"OrderID":"60429-138","ShipCountry":"CN","ShipAddress":"3 Bunting Point","ShipName":"Hauck-Jacobi","OrderDate":"9/11/2017","TotalPayment":"$673217.93","Status":5,"Type":3},{"OrderID":"24909-120","ShipCountry":"BA","ShipAddress":"09 Melrose Pass","ShipName":"Douglas-D\'Amore","OrderDate":"5/14/2017","TotalPayment":"$53917.91","Status":4,"Type":1},{"OrderID":"58232-4021","ShipCountry":"CL","ShipAddress":"514 Morningstar Parkway","ShipName":"Hagenes LLC","OrderDate":"4/13/2017","TotalPayment":"$1013246.14","Status":2,"Type":1},{"OrderID":"55910-708","ShipCountry":"BR","ShipAddress":"44872 Mcbride Avenue","ShipName":"Kertzmann, Nitzsche and Bogan","OrderDate":"9/20/2017","TotalPayment":"$755573.11","Status":1,"Type":1},{"OrderID":"0268-0721","ShipCountry":"CN","ShipAddress":"5665 Bartillon Avenue","ShipName":"King, Schamberger and Wintheiser","OrderDate":"12/22/2017","TotalPayment":"$549575.45","Status":3,"Type":3},{"OrderID":"63629-4698","ShipCountry":"FR","ShipAddress":"4660 Sundown Center","ShipName":"Aufderhar-Senger","OrderDate":"9/13/2016","TotalPayment":"$391345.95","Status":6,"Type":2},{"OrderID":"0069-0094","ShipCountry":"CO","ShipAddress":"97034 Vidon Alley","ShipName":"Kuhn, Durgan and Turner","OrderDate":"9/5/2016","TotalPayment":"$786021.22","Status":3,"Type":3},{"OrderID":"50268-051","ShipCountry":"CN","ShipAddress":"15379 Dunning Avenue","ShipName":"Will-Cassin","OrderDate":"6/30/2016","TotalPayment":"$1154186.69","Status":5,"Type":2},{"OrderID":"68047-253","ShipCountry":"RU","ShipAddress":"28 International Circle","ShipName":"Wiza, Roob and Reinger","OrderDate":"3/2/2016","TotalPayment":"$1099448.31","Status":4,"Type":1},{"OrderID":"24794-223","ShipCountry":"CA","ShipAddress":"22 Rockefeller Parkway","ShipName":"Koss Inc","OrderDate":"10/4/2016","TotalPayment":"$1037279.22","Status":5,"Type":3},{"OrderID":"11344-616","ShipCountry":"RU","ShipAddress":"5 Eastwood Place","ShipName":"Koelpin Inc","OrderDate":"9/22/2017","TotalPayment":"$1133327.62","Status":5,"Type":1}]},\n{"RecordID":84,"FirstName":"Steffie","LastName":"Walewicz","Company":"Feednation","Email":"swalewicz2b@timesonline.co.uk","Phone":"444-386-9191","Status":2,"Type":3,"Orders":[{"OrderID":"65044-3141","ShipCountry":"RU","ShipAddress":"7 2nd Park","ShipName":"Cummerata LLC","OrderDate":"2/28/2016","TotalPayment":"$848021.24","Status":1,"Type":2},{"OrderID":"17478-920","ShipCountry":"ID","ShipAddress":"19 Towne Plaza","ShipName":"Cole-Ward","OrderDate":"8/1/2016","TotalPayment":"$272331.87","Status":4,"Type":2},{"OrderID":"65162-734","ShipCountry":"CN","ShipAddress":"37703 Bayside Crossing","ShipName":"Bradtke-Bauch","OrderDate":"8/22/2016","TotalPayment":"$749986.22","Status":3,"Type":2},{"OrderID":"59726-019","ShipCountry":"AR","ShipAddress":"2 Manley Lane","ShipName":"Jacobson and Sons","OrderDate":"6/12/2017","TotalPayment":"$163681.00","Status":4,"Type":1},{"OrderID":"54569-0235","ShipCountry":"CL","ShipAddress":"10887 Raven Pass","ShipName":"Wehner, Auer and Shanahan","OrderDate":"1/12/2016","TotalPayment":"$42204.81","Status":4,"Type":1},{"OrderID":"50845-0085","ShipCountry":"PL","ShipAddress":"727 Kings Way","ShipName":"Nader LLC","OrderDate":"9/18/2016","TotalPayment":"$748950.52","Status":6,"Type":2},{"OrderID":"55910-988","ShipCountry":"CN","ShipAddress":"252 Westerfield Way","ShipName":"Zieme-Sipes","OrderDate":"10/12/2017","TotalPayment":"$31468.38","Status":1,"Type":2},{"OrderID":"65628-052","ShipCountry":"FR","ShipAddress":"371 Bashford Lane","ShipName":"Simonis-Hilpert","OrderDate":"1/3/2017","TotalPayment":"$852849.52","Status":5,"Type":2},{"OrderID":"0378-3065","ShipCountry":"CO","ShipAddress":"2847 Muir Crossing","ShipName":"Schroeder, Fay and Gutkowski","OrderDate":"12/18/2017","TotalPayment":"$702493.55","Status":3,"Type":1},{"OrderID":"59450-231","ShipCountry":"BR","ShipAddress":"5283 Ruskin Road","ShipName":"Considine Inc","OrderDate":"8/10/2017","TotalPayment":"$904695.74","Status":2,"Type":2},{"OrderID":"68220-143","ShipCountry":"CN","ShipAddress":"38 Sloan Crossing","ShipName":"Schultz, Rolfson and Okuneva","OrderDate":"5/12/2017","TotalPayment":"$912840.56","Status":3,"Type":1},{"OrderID":"55319-081","ShipCountry":"PL","ShipAddress":"8 Iowa Crossing","ShipName":"Kautzer, MacGyver and Jerde","OrderDate":"6/8/2017","TotalPayment":"$277759.59","Status":4,"Type":3},{"OrderID":"10678-005","ShipCountry":"CN","ShipAddress":"80543 Crescent Oaks Junction","ShipName":"Waelchi, Rau and Crona","OrderDate":"12/7/2016","TotalPayment":"$1170553.76","Status":3,"Type":1},{"OrderID":"0409-1483","ShipCountry":"CN","ShipAddress":"5 Upham Alley","ShipName":"Emard-Aufderhar","OrderDate":"1/15/2017","TotalPayment":"$736032.84","Status":6,"Type":1},{"OrderID":"0228-3086","ShipCountry":"RU","ShipAddress":"574 Havey Court","ShipName":"Leannon, Berge and Upton","OrderDate":"4/18/2017","TotalPayment":"$377550.94","Status":3,"Type":3},{"OrderID":"36987-2553","ShipCountry":"CA","ShipAddress":"26 Summit Point","ShipName":"Ferry-Ryan","OrderDate":"5/21/2017","TotalPayment":"$883567.47","Status":4,"Type":3},{"OrderID":"67752-0001","ShipCountry":"CM","ShipAddress":"81 Everett Point","ShipName":"Swift Group","OrderDate":"5/30/2017","TotalPayment":"$688616.65","Status":3,"Type":2},{"OrderID":"60429-260","ShipCountry":"KZ","ShipAddress":"8224 Atwood Place","ShipName":"Schaefer, Strosin and Schmidt","OrderDate":"7/7/2016","TotalPayment":"$979466.32","Status":2,"Type":3}]},\n{"RecordID":85,"FirstName":"Dannie","LastName":"Blakeborough","Company":"Flipbug","Email":"dblakeborough2c@tamu.edu","Phone":"668-217-8095","Status":1,"Type":2,"Orders":[{"OrderID":"64376-132","ShipCountry":"PT","ShipAddress":"13618 Acker Plaza","ShipName":"Legros LLC","OrderDate":"11/3/2017","TotalPayment":"$432849.13","Status":5,"Type":1},{"OrderID":"0228-2067","ShipCountry":"CN","ShipAddress":"6 Fordem Road","ShipName":"Labadie Inc","OrderDate":"2/6/2016","TotalPayment":"$165733.88","Status":5,"Type":3},{"OrderID":"53329-138","ShipCountry":"SE","ShipAddress":"9 Moland Court","ShipName":"Herzog-Becker","OrderDate":"4/4/2017","TotalPayment":"$684816.58","Status":4,"Type":3},{"OrderID":"54868-0269","ShipCountry":"ID","ShipAddress":"23187 Lindbergh Hill","ShipName":"Schoen, Kiehn and Berge","OrderDate":"10/13/2017","TotalPayment":"$108362.04","Status":5,"Type":2},{"OrderID":"63629-1619","ShipCountry":"BR","ShipAddress":"638 Melvin Pass","ShipName":"Considine, Waelchi and Satterfield","OrderDate":"6/14/2016","TotalPayment":"$95715.01","Status":5,"Type":2},{"OrderID":"63776-525","ShipCountry":"ID","ShipAddress":"144 Eastlawn Parkway","ShipName":"Wintheiser-Bernhard","OrderDate":"4/14/2017","TotalPayment":"$867926.48","Status":2,"Type":1},{"OrderID":"48951-4035","ShipCountry":"JO","ShipAddress":"0 Johnson Lane","ShipName":"Parker Inc","OrderDate":"2/10/2016","TotalPayment":"$295067.45","Status":5,"Type":1},{"OrderID":"55910-047","ShipCountry":"BR","ShipAddress":"3 Blackbird Hill","ShipName":"Kunze LLC","OrderDate":"10/10/2016","TotalPayment":"$598419.67","Status":5,"Type":1},{"OrderID":"43269-723","ShipCountry":"AR","ShipAddress":"92 Moulton Park","ShipName":"Tromp Inc","OrderDate":"5/6/2016","TotalPayment":"$22322.67","Status":2,"Type":3},{"OrderID":"0703-3343","ShipCountry":"ID","ShipAddress":"892 Mcguire Street","ShipName":"Hagenes-Stokes","OrderDate":"6/13/2017","TotalPayment":"$166872.53","Status":5,"Type":3},{"OrderID":"59260-135","ShipCountry":"ET","ShipAddress":"19 Troy Drive","ShipName":"Hayes Group","OrderDate":"5/10/2017","TotalPayment":"$1025704.62","Status":3,"Type":3},{"OrderID":"52125-441","ShipCountry":"PH","ShipAddress":"392 Dryden Pass","ShipName":"Murphy, Boehm and Bogan","OrderDate":"6/18/2016","TotalPayment":"$117229.26","Status":5,"Type":1}]},\n{"RecordID":86,"FirstName":"Yetty","LastName":"Tabbitt","Company":"Kimia","Email":"ytabbitt2d@tinyurl.com","Phone":"322-145-9318","Status":4,"Type":1,"Orders":[{"OrderID":"0145-0985","ShipCountry":"PH","ShipAddress":"7 Hanson Point","ShipName":"McDermott and Sons","OrderDate":"3/11/2016","TotalPayment":"$1183727.38","Status":5,"Type":3},{"OrderID":"59762-1815","ShipCountry":"RU","ShipAddress":"0205 Little Fleur Terrace","ShipName":"King, MacGyver and Parisian","OrderDate":"2/14/2017","TotalPayment":"$247437.68","Status":6,"Type":2},{"OrderID":"50241-143","ShipCountry":"VE","ShipAddress":"129 Dorton Drive","ShipName":"Stoltenberg and Sons","OrderDate":"5/31/2017","TotalPayment":"$566471.83","Status":2,"Type":2},{"OrderID":"36987-1449","ShipCountry":"RU","ShipAddress":"3 Warner Road","ShipName":"Volkman, Powlowski and Osinski","OrderDate":"10/26/2016","TotalPayment":"$600346.85","Status":5,"Type":1},{"OrderID":"0409-2025","ShipCountry":"LY","ShipAddress":"42113 Corben Lane","ShipName":"Mohr, Hickle and Tromp","OrderDate":"7/6/2017","TotalPayment":"$905878.42","Status":2,"Type":3},{"OrderID":"54868-1103","ShipCountry":"SE","ShipAddress":"0 Crest Line Circle","ShipName":"Marquardt and Sons","OrderDate":"3/17/2017","TotalPayment":"$124261.55","Status":3,"Type":2},{"OrderID":"52125-569","ShipCountry":"SE","ShipAddress":"5 Merrick Trail","ShipName":"Walsh Group","OrderDate":"10/13/2016","TotalPayment":"$567931.67","Status":6,"Type":1},{"OrderID":"11344-484","ShipCountry":"ID","ShipAddress":"65484 Helena Court","ShipName":"Nicolas Group","OrderDate":"4/5/2016","TotalPayment":"$497484.31","Status":3,"Type":1},{"OrderID":"60589-001","ShipCountry":"ID","ShipAddress":"0344 Fair Oaks Drive","ShipName":"Turcotte-Barrows","OrderDate":"9/12/2016","TotalPayment":"$209135.47","Status":6,"Type":1},{"OrderID":"16590-480","ShipCountry":"CN","ShipAddress":"12 Independence Point","ShipName":"Larkin-Ebert","OrderDate":"9/10/2016","TotalPayment":"$566909.70","Status":6,"Type":2},{"OrderID":"48951-2092","ShipCountry":"ID","ShipAddress":"5 Tennyson Hill","ShipName":"Turner-Leannon","OrderDate":"7/4/2017","TotalPayment":"$749256.97","Status":1,"Type":2},{"OrderID":"63402-510","ShipCountry":"NG","ShipAddress":"98541 Mayer Street","ShipName":"Greenholt, Bashirian and Kerluke","OrderDate":"11/3/2016","TotalPayment":"$936277.23","Status":3,"Type":1},{"OrderID":"48951-3028","ShipCountry":"PH","ShipAddress":"910 Mifflin Hill","ShipName":"Sauer, Will and Kilback","OrderDate":"4/6/2017","TotalPayment":"$176756.56","Status":3,"Type":3}]},\n{"RecordID":87,"FirstName":"Davine","LastName":"MacScherie","Company":"Eimbee","Email":"dmacscherie2e@trellian.com","Phone":"662-393-3301","Status":6,"Type":1,"Orders":[{"OrderID":"52125-444","ShipCountry":"PE","ShipAddress":"54 Oak Way","ShipName":"Langosh-Schuppe","OrderDate":"12/15/2016","TotalPayment":"$460341.78","Status":2,"Type":2},{"OrderID":"48951-3056","ShipCountry":"BR","ShipAddress":"51 Prentice Park","ShipName":"Gerhold-Graham","OrderDate":"8/26/2016","TotalPayment":"$979657.38","Status":4,"Type":1},{"OrderID":"49882-0929","ShipCountry":"CN","ShipAddress":"1704 Bluestem Alley","ShipName":"Nienow-Jerde","OrderDate":"12/9/2016","TotalPayment":"$77330.84","Status":6,"Type":3},{"OrderID":"64370-532","ShipCountry":"KZ","ShipAddress":"03445 Ilene Park","ShipName":"Hintz, Ullrich and Stamm","OrderDate":"1/18/2017","TotalPayment":"$788099.51","Status":4,"Type":3},{"OrderID":"36987-1432","ShipCountry":"TZ","ShipAddress":"3 Main Center","ShipName":"Kohler, Stamm and Schiller","OrderDate":"12/2/2016","TotalPayment":"$312673.21","Status":6,"Type":1},{"OrderID":"0378-3286","ShipCountry":"PK","ShipAddress":"608 5th Crossing","ShipName":"Jerde, Vandervort and Swaniawski","OrderDate":"10/31/2016","TotalPayment":"$638792.88","Status":2,"Type":3},{"OrderID":"52125-314","ShipCountry":"CN","ShipAddress":"4 Northridge Avenue","ShipName":"Dibbert-Weimann","OrderDate":"12/15/2017","TotalPayment":"$1120937.55","Status":6,"Type":1},{"OrderID":"57520-0781","ShipCountry":"ID","ShipAddress":"4122 Maywood Trail","ShipName":"Witting, Nienow and Farrell","OrderDate":"8/12/2016","TotalPayment":"$600946.63","Status":3,"Type":2},{"OrderID":"0378-1190","ShipCountry":"CN","ShipAddress":"26 Stoughton Street","ShipName":"Bartoletti-D\'Amore","OrderDate":"4/2/2016","TotalPayment":"$438039.58","Status":3,"Type":3},{"OrderID":"58468-0041","ShipCountry":"JP","ShipAddress":"339 Pawling Avenue","ShipName":"Rempel Inc","OrderDate":"12/24/2016","TotalPayment":"$632012.70","Status":6,"Type":1}]},\n{"RecordID":88,"FirstName":"Jonell","LastName":"O\'Looney","Company":"Twimm","Email":"jolooney2f@flavors.me","Phone":"335-995-7293","Status":5,"Type":3,"Orders":[{"OrderID":"54868-6376","ShipCountry":"RU","ShipAddress":"98 Merchant Plaza","ShipName":"Gleason-Rolfson","OrderDate":"8/28/2016","TotalPayment":"$915507.53","Status":5,"Type":3},{"OrderID":"16714-375","ShipCountry":"ID","ShipAddress":"74786 Waxwing Parkway","ShipName":"Turcotte, Mante and Trantow","OrderDate":"5/23/2017","TotalPayment":"$222725.49","Status":3,"Type":1},{"OrderID":"53329-165","ShipCountry":"RU","ShipAddress":"59358 Ruskin Pass","ShipName":"Schuppe Inc","OrderDate":"11/8/2017","TotalPayment":"$165061.10","Status":4,"Type":2},{"OrderID":"11673-248","ShipCountry":"TF","ShipAddress":"6937 Kenwood Court","ShipName":"Brakus, Fritsch and Lockman","OrderDate":"10/5/2016","TotalPayment":"$932728.51","Status":5,"Type":1},{"OrderID":"10096-0138","ShipCountry":"DO","ShipAddress":"26 Katie Center","ShipName":"Muller and Sons","OrderDate":"11/21/2016","TotalPayment":"$697590.20","Status":4,"Type":1},{"OrderID":"61570-260","ShipCountry":"TD","ShipAddress":"6435 Rigney Pass","ShipName":"Stiedemann-Connelly","OrderDate":"7/9/2016","TotalPayment":"$464236.25","Status":3,"Type":2},{"OrderID":"54868-0053","ShipCountry":"KP","ShipAddress":"991 Norway Maple Circle","ShipName":"Mertz and Sons","OrderDate":"4/7/2017","TotalPayment":"$879309.12","Status":5,"Type":2},{"OrderID":"55111-201","ShipCountry":"JP","ShipAddress":"419 Oak Valley Point","ShipName":"Kirlin Group","OrderDate":"11/14/2017","TotalPayment":"$581314.23","Status":2,"Type":2},{"OrderID":"75936-111","ShipCountry":"ID","ShipAddress":"9 Amoth Park","ShipName":"Murphy Group","OrderDate":"6/17/2017","TotalPayment":"$1023341.49","Status":6,"Type":1},{"OrderID":"0378-4050","ShipCountry":"PK","ShipAddress":"768 La Follette Road","ShipName":"Hackett and Sons","OrderDate":"11/19/2017","TotalPayment":"$1152644.38","Status":6,"Type":2},{"OrderID":"0019-3183","ShipCountry":"CM","ShipAddress":"22 Twin Pines Drive","ShipName":"Hane-Labadie","OrderDate":"7/29/2017","TotalPayment":"$11383.20","Status":6,"Type":1},{"OrderID":"0395-1685","ShipCountry":"CN","ShipAddress":"588 Fair Oaks Street","ShipName":"Bergstrom LLC","OrderDate":"11/30/2017","TotalPayment":"$584539.91","Status":5,"Type":3},{"OrderID":"50222-227","ShipCountry":"CN","ShipAddress":"689 Kipling Avenue","ShipName":"Harris Inc","OrderDate":"10/20/2017","TotalPayment":"$362300.00","Status":6,"Type":1},{"OrderID":"68828-162","ShipCountry":"BR","ShipAddress":"032 Nobel Place","ShipName":"Douglas-DuBuque","OrderDate":"5/6/2016","TotalPayment":"$880361.73","Status":5,"Type":2},{"OrderID":"62756-915","ShipCountry":"ZA","ShipAddress":"36 Montana Court","ShipName":"Morar, Ward and Lubowitz","OrderDate":"6/15/2017","TotalPayment":"$341582.38","Status":5,"Type":2},{"OrderID":"0179-0138","ShipCountry":"UG","ShipAddress":"1742 Grayhawk Road","ShipName":"Schimmel, Marvin and Littel","OrderDate":"1/29/2016","TotalPayment":"$877251.79","Status":2,"Type":3},{"OrderID":"60505-2660","ShipCountry":"ID","ShipAddress":"2 Prairie Rose Plaza","ShipName":"Adams-Hamill","OrderDate":"9/16/2016","TotalPayment":"$501240.91","Status":4,"Type":2},{"OrderID":"0378-0217","ShipCountry":"ID","ShipAddress":"7 Eagan Crossing","ShipName":"Schuppe, Kessler and Gutkowski","OrderDate":"4/21/2016","TotalPayment":"$919986.40","Status":5,"Type":1}]},\n{"RecordID":89,"FirstName":"Suzann","LastName":"Gulk","Company":"Skyvu","Email":"sgulk2g@wikia.com","Phone":"382-814-8377","Status":1,"Type":3,"Orders":[{"OrderID":"35000-674","ShipCountry":"ID","ShipAddress":"1 Namekagon Trail","ShipName":"Spinka and Sons","OrderDate":"2/8/2017","TotalPayment":"$475714.62","Status":1,"Type":2},{"OrderID":"44924-119","ShipCountry":"CN","ShipAddress":"35045 Dovetail Center","ShipName":"Hirthe and Sons","OrderDate":"8/12/2017","TotalPayment":"$241115.26","Status":2,"Type":2},{"OrderID":"0135-0228","ShipCountry":"UA","ShipAddress":"0 Sunbrook Drive","ShipName":"Mante Inc","OrderDate":"9/19/2016","TotalPayment":"$1039143.66","Status":5,"Type":3},{"OrderID":"60760-104","ShipCountry":"PH","ShipAddress":"43 Division Pass","ShipName":"Champlin and Sons","OrderDate":"6/17/2017","TotalPayment":"$598633.84","Status":1,"Type":2},{"OrderID":"11509-0014","ShipCountry":"PL","ShipAddress":"447 Cardinal Crossing","ShipName":"Marquardt-Muller","OrderDate":"8/14/2016","TotalPayment":"$410680.95","Status":5,"Type":1},{"OrderID":"0135-0532","ShipCountry":"AF","ShipAddress":"82953 Roth Crossing","ShipName":"Kunze-Braun","OrderDate":"8/8/2017","TotalPayment":"$619518.55","Status":3,"Type":3},{"OrderID":"50375-2001","ShipCountry":"ID","ShipAddress":"4038 Meadow Vale Terrace","ShipName":"Langosh-Wehner","OrderDate":"2/16/2017","TotalPayment":"$689764.29","Status":1,"Type":2},{"OrderID":"49967-254","ShipCountry":"ID","ShipAddress":"0150 Swallow Alley","ShipName":"VonRueden-Ondricka","OrderDate":"8/2/2016","TotalPayment":"$976004.18","Status":6,"Type":3},{"OrderID":"67544-408","ShipCountry":"PS","ShipAddress":"6 Fairfield Hill","ShipName":"Bergnaum, Hodkiewicz and Schuster","OrderDate":"5/27/2017","TotalPayment":"$221506.44","Status":4,"Type":2},{"OrderID":"16729-150","ShipCountry":"BR","ShipAddress":"8 Sunfield Park","ShipName":"Walker-Quitzon","OrderDate":"8/13/2016","TotalPayment":"$52854.86","Status":1,"Type":1},{"OrderID":"61601-1117","ShipCountry":"CN","ShipAddress":"568 Kennedy Terrace","ShipName":"Kuhlman-Dach","OrderDate":"2/1/2017","TotalPayment":"$821403.38","Status":1,"Type":1},{"OrderID":"0049-2720","ShipCountry":"CN","ShipAddress":"0443 Harper Center","ShipName":"Lockman, Wilkinson and Ondricka","OrderDate":"5/21/2016","TotalPayment":"$747707.21","Status":1,"Type":1}]},\n{"RecordID":90,"FirstName":"Peta","LastName":"Lowerson","Company":"Flashdog","Email":"plowerson2h@google.nl","Phone":"720-284-2160","Status":6,"Type":2,"Orders":[{"OrderID":"76237-115","ShipCountry":"CN","ShipAddress":"80 Glacier Hill Place","ShipName":"West-Gulgowski","OrderDate":"5/14/2017","TotalPayment":"$875204.16","Status":3,"Type":2},{"OrderID":"0603-6135","ShipCountry":"FR","ShipAddress":"5 Becker Park","ShipName":"Ortiz-Hudson","OrderDate":"10/16/2017","TotalPayment":"$866133.74","Status":5,"Type":2},{"OrderID":"43419-016","ShipCountry":"US","ShipAddress":"53 Del Mar Avenue","ShipName":"Boehm, Hermiston and Jast","OrderDate":"12/25/2016","TotalPayment":"$19830.02","Status":4,"Type":2},{"OrderID":"50488-1201","ShipCountry":"FR","ShipAddress":"54 Stang Crossing","ShipName":"Ledner-Ebert","OrderDate":"1/19/2017","TotalPayment":"$16451.23","Status":1,"Type":2},{"OrderID":"49580-2104","ShipCountry":"ID","ShipAddress":"187 Fremont Hill","ShipName":"Brakus-Kunze","OrderDate":"1/21/2017","TotalPayment":"$282407.28","Status":5,"Type":3},{"OrderID":"64679-736","ShipCountry":"ID","ShipAddress":"13 Mandrake Avenue","ShipName":"Bruen and Sons","OrderDate":"5/26/2016","TotalPayment":"$582639.74","Status":6,"Type":3},{"OrderID":"47202-1504","ShipCountry":"CN","ShipAddress":"9705 Browning Parkway","ShipName":"Willms-Jerde","OrderDate":"12/30/2016","TotalPayment":"$286905.37","Status":1,"Type":1},{"OrderID":"52125-933","ShipCountry":"ID","ShipAddress":"39 Eastwood Terrace","ShipName":"Schaefer-Wunsch","OrderDate":"4/9/2017","TotalPayment":"$1058775.01","Status":1,"Type":2},{"OrderID":"51772-314","ShipCountry":"PL","ShipAddress":"437 Barby Center","ShipName":"DuBuque, Thompson and Wilderman","OrderDate":"9/5/2017","TotalPayment":"$488389.95","Status":1,"Type":3}]},\n{"RecordID":91,"FirstName":"Conny","LastName":"Van Velde","Company":"Kamba","Email":"cvanvelde2i@whitehouse.gov","Phone":"757-718-0233","Status":3,"Type":3,"Orders":[{"OrderID":"75862-019","ShipCountry":"PE","ShipAddress":"1306 David Terrace","ShipName":"Stehr, Jacobi and Aufderhar","OrderDate":"3/30/2016","TotalPayment":"$166737.13","Status":3,"Type":3},{"OrderID":"51346-227","ShipCountry":"ID","ShipAddress":"0440 Logan Drive","ShipName":"Luettgen, Leffler and Braun","OrderDate":"12/13/2016","TotalPayment":"$558879.07","Status":5,"Type":2},{"OrderID":"17478-705","ShipCountry":"MN","ShipAddress":"6816 Logan Parkway","ShipName":"Price LLC","OrderDate":"8/9/2017","TotalPayment":"$248873.06","Status":6,"Type":1},{"OrderID":"55154-4793","ShipCountry":"CN","ShipAddress":"875 Milwaukee Plaza","ShipName":"Bayer-McLaughlin","OrderDate":"5/29/2016","TotalPayment":"$314883.79","Status":2,"Type":3},{"OrderID":"65044-2015","ShipCountry":"PT","ShipAddress":"0433 Prairieview Street","ShipName":"Douglas-Armstrong","OrderDate":"4/8/2016","TotalPayment":"$843415.27","Status":5,"Type":1},{"OrderID":"46362-004","ShipCountry":"CN","ShipAddress":"48 Northland Alley","ShipName":"Quitzon, Koss and Padberg","OrderDate":"8/1/2017","TotalPayment":"$533000.08","Status":2,"Type":2},{"OrderID":"52125-840","ShipCountry":"US","ShipAddress":"937 Clarendon Trail","ShipName":"Raynor-Ernser","OrderDate":"6/17/2017","TotalPayment":"$916324.68","Status":2,"Type":2},{"OrderID":"68983-003","ShipCountry":"CA","ShipAddress":"137 Del Sol Place","ShipName":"Lehner Group","OrderDate":"4/27/2016","TotalPayment":"$996661.61","Status":3,"Type":1},{"OrderID":"0006-3845","ShipCountry":"ID","ShipAddress":"6 Fulton Alley","ShipName":"Runte, Bosco and Lubowitz","OrderDate":"5/30/2016","TotalPayment":"$1046943.59","Status":6,"Type":1},{"OrderID":"57520-0287","ShipCountry":"CZ","ShipAddress":"84369 Homewood Drive","ShipName":"Stracke, Howe and Fadel","OrderDate":"5/1/2017","TotalPayment":"$334368.68","Status":6,"Type":1},{"OrderID":"43269-845","ShipCountry":"ID","ShipAddress":"58 Sommers Road","ShipName":"Kozey-Mraz","OrderDate":"8/21/2016","TotalPayment":"$653252.16","Status":3,"Type":2},{"OrderID":"50988-216","ShipCountry":"PH","ShipAddress":"2765 Mcbride Center","ShipName":"Upton, Orn and Altenwerth","OrderDate":"10/15/2016","TotalPayment":"$85009.11","Status":6,"Type":3},{"OrderID":"48951-4089","ShipCountry":"RU","ShipAddress":"7 North Junction","ShipName":"Harris-Hettinger","OrderDate":"1/7/2016","TotalPayment":"$730607.14","Status":4,"Type":3},{"OrderID":"41250-314","ShipCountry":"TH","ShipAddress":"7716 Londonderry Junction","ShipName":"Donnelly and Sons","OrderDate":"1/6/2017","TotalPayment":"$100162.43","Status":6,"Type":1},{"OrderID":"42291-211","ShipCountry":"CN","ShipAddress":"84148 Harper Road","ShipName":"Pfeffer-Wyman","OrderDate":"7/27/2016","TotalPayment":"$814064.01","Status":6,"Type":2},{"OrderID":"64942-1310","ShipCountry":"SY","ShipAddress":"72 Golden Leaf Drive","ShipName":"Bahringer-Rau","OrderDate":"7/12/2017","TotalPayment":"$292241.17","Status":6,"Type":1},{"OrderID":"60637-006","ShipCountry":"ID","ShipAddress":"0565 Scofield Park","ShipName":"McCullough Group","OrderDate":"3/12/2016","TotalPayment":"$253805.96","Status":5,"Type":1},{"OrderID":"55289-119","ShipCountry":"RU","ShipAddress":"56299 Gateway Avenue","ShipName":"Murazik-Stroman","OrderDate":"1/8/2017","TotalPayment":"$950408.30","Status":5,"Type":2},{"OrderID":"24236-168","ShipCountry":"AR","ShipAddress":"5529 Sunbrook Plaza","ShipName":"Trantow Inc","OrderDate":"10/22/2016","TotalPayment":"$725269.64","Status":1,"Type":3}]},\n{"RecordID":92,"FirstName":"Elset","LastName":"Troppmann","Company":"Myworks","Email":"etroppmann2j@nbcnews.com","Phone":"589-896-6572","Status":4,"Type":3,"Orders":[{"OrderID":"68084-053","ShipCountry":"CN","ShipAddress":"150 Butterfield Hill","ShipName":"Huels LLC","OrderDate":"11/8/2017","TotalPayment":"$828367.64","Status":3,"Type":2},{"OrderID":"0268-6711","ShipCountry":"RU","ShipAddress":"3942 Harbort Avenue","ShipName":"Altenwerth and Sons","OrderDate":"11/9/2016","TotalPayment":"$804100.87","Status":3,"Type":3},{"OrderID":"51346-218","ShipCountry":"FR","ShipAddress":"5 Express Street","ShipName":"Metz LLC","OrderDate":"7/8/2016","TotalPayment":"$122247.53","Status":6,"Type":1},{"OrderID":"64778-0218","ShipCountry":"UZ","ShipAddress":"2 Del Sol Avenue","ShipName":"Reichert, Abbott and Stark","OrderDate":"6/11/2016","TotalPayment":"$864395.39","Status":5,"Type":2},{"OrderID":"51060-003","ShipCountry":"ID","ShipAddress":"3 Esch Drive","ShipName":"VonRueden, Haley and Christiansen","OrderDate":"7/3/2016","TotalPayment":"$238996.02","Status":3,"Type":2},{"OrderID":"62584-693","ShipCountry":"CN","ShipAddress":"8377 Sunfield Terrace","ShipName":"Jast Inc","OrderDate":"6/15/2017","TotalPayment":"$1087549.29","Status":4,"Type":2},{"OrderID":"41520-528","ShipCountry":"US","ShipAddress":"3193 Warner Trail","ShipName":"Leffler, Graham and Fritsch","OrderDate":"2/13/2016","TotalPayment":"$551029.70","Status":1,"Type":1},{"OrderID":"27808-001","ShipCountry":"CN","ShipAddress":"78665 Glendale Center","ShipName":"Stark and Sons","OrderDate":"4/18/2016","TotalPayment":"$1028580.53","Status":2,"Type":3},{"OrderID":"64764-304","ShipCountry":"CN","ShipAddress":"6 Manitowish Center","ShipName":"Mitchell-Bergnaum","OrderDate":"3/19/2017","TotalPayment":"$234839.83","Status":6,"Type":3},{"OrderID":"59779-175","ShipCountry":"TN","ShipAddress":"44121 Bay Place","ShipName":"Gerlach-Schaden","OrderDate":"8/28/2016","TotalPayment":"$308722.03","Status":6,"Type":3},{"OrderID":"64950-230","ShipCountry":"ID","ShipAddress":"7048 Tennyson Plaza","ShipName":"Lesch-Schimmel","OrderDate":"11/27/2017","TotalPayment":"$1159082.28","Status":4,"Type":2},{"OrderID":"41163-678","ShipCountry":"AR","ShipAddress":"2056 Cardinal Terrace","ShipName":"Yost Group","OrderDate":"2/18/2017","TotalPayment":"$994037.39","Status":2,"Type":2},{"OrderID":"62011-0194","ShipCountry":"CN","ShipAddress":"49626 Brown Parkway","ShipName":"Russel-Towne","OrderDate":"10/21/2016","TotalPayment":"$990683.04","Status":4,"Type":2},{"OrderID":"55289-187","ShipCountry":"RS","ShipAddress":"2619 Blaine Street","ShipName":"Howe-Flatley","OrderDate":"11/21/2016","TotalPayment":"$1122988.11","Status":4,"Type":2}]},\n{"RecordID":93,"FirstName":"Andras","LastName":"Imos","Company":"Shufflebeat","Email":"aimos2k@creativecommons.org","Phone":"843-961-3303","Status":6,"Type":2,"Orders":[{"OrderID":"60760-128","ShipCountry":"SI","ShipAddress":"2730 6th Junction","ShipName":"Kerluke-Larkin","OrderDate":"11/28/2017","TotalPayment":"$42250.74","Status":6,"Type":2},{"OrderID":"36987-2760","ShipCountry":"PT","ShipAddress":"038 Sutteridge Crossing","ShipName":"Rolfson-Huel","OrderDate":"3/30/2017","TotalPayment":"$1124121.07","Status":6,"Type":1},{"OrderID":"68599-6112","ShipCountry":"CN","ShipAddress":"329 Kim Lane","ShipName":"Leffler, Howell and Heathcote","OrderDate":"5/28/2016","TotalPayment":"$1102967.88","Status":1,"Type":2},{"OrderID":"75981-226","ShipCountry":"RU","ShipAddress":"5 Talisman Place","ShipName":"Wisoky-Trantow","OrderDate":"12/1/2017","TotalPayment":"$534482.80","Status":4,"Type":3},{"OrderID":"68987-014","ShipCountry":"BR","ShipAddress":"22 Rowland Park","ShipName":"Green-Carter","OrderDate":"1/28/2016","TotalPayment":"$968494.39","Status":1,"Type":2},{"OrderID":"65862-503","ShipCountry":"ID","ShipAddress":"78 Eastwood Terrace","ShipName":"Raynor-Doyle","OrderDate":"1/18/2017","TotalPayment":"$409292.08","Status":5,"Type":1},{"OrderID":"37808-352","ShipCountry":"ID","ShipAddress":"1037 Fremont Place","ShipName":"Stehr Group","OrderDate":"12/25/2016","TotalPayment":"$793192.36","Status":6,"Type":3},{"OrderID":"35356-783","ShipCountry":"PH","ShipAddress":"0 Bunting Point","ShipName":"Kerluke-Kris","OrderDate":"10/14/2016","TotalPayment":"$877510.41","Status":2,"Type":2},{"OrderID":"59762-1852","ShipCountry":"CN","ShipAddress":"96797 Mallard Trail","ShipName":"Donnelly-Tremblay","OrderDate":"6/6/2016","TotalPayment":"$830085.86","Status":6,"Type":3},{"OrderID":"62011-0148","ShipCountry":"PK","ShipAddress":"0617 Jenna Place","ShipName":"Wisoky-Feil","OrderDate":"8/28/2017","TotalPayment":"$1130566.55","Status":4,"Type":1},{"OrderID":"24385-039","ShipCountry":"GT","ShipAddress":"067 Ohio Alley","ShipName":"Monahan, Hagenes and Larkin","OrderDate":"12/9/2017","TotalPayment":"$158778.64","Status":5,"Type":3},{"OrderID":"64942-1169","ShipCountry":"BR","ShipAddress":"5836 Darwin Place","ShipName":"Brekke-Kuhn","OrderDate":"6/30/2017","TotalPayment":"$822795.89","Status":6,"Type":1},{"OrderID":"68220-111","ShipCountry":"CO","ShipAddress":"629 Straubel Point","ShipName":"Anderson, Grady and Okuneva","OrderDate":"8/18/2016","TotalPayment":"$83037.97","Status":5,"Type":3}]},\n{"RecordID":94,"FirstName":"Tom","LastName":"Oneill","Company":"Twitterbridge","Email":"toneill2l@twitter.com","Phone":"913-201-6258","Status":4,"Type":3,"Orders":[{"OrderID":"55111-154","ShipCountry":"PH","ShipAddress":"62 Little Fleur Avenue","ShipName":"Kris, Cronin and Ebert","OrderDate":"1/21/2016","TotalPayment":"$683381.79","Status":1,"Type":1},{"OrderID":"11822-0348","ShipCountry":"CN","ShipAddress":"140 Nancy Street","ShipName":"Mraz-Cole","OrderDate":"11/13/2017","TotalPayment":"$847098.44","Status":3,"Type":3},{"OrderID":"35356-473","ShipCountry":"PL","ShipAddress":"44 Mariners Cove Way","ShipName":"Rosenbaum Group","OrderDate":"2/21/2016","TotalPayment":"$788055.20","Status":4,"Type":1},{"OrderID":"60512-9300","ShipCountry":"VN","ShipAddress":"8 Dwight Terrace","ShipName":"Borer, Renner and McClure","OrderDate":"3/11/2017","TotalPayment":"$678113.91","Status":6,"Type":2},{"OrderID":"68084-055","ShipCountry":"BR","ShipAddress":"4 Farragut Crossing","ShipName":"McGlynn Inc","OrderDate":"3/28/2017","TotalPayment":"$1126780.70","Status":1,"Type":3},{"OrderID":"62499-535","ShipCountry":"PH","ShipAddress":"18 Anniversary Parkway","ShipName":"Toy LLC","OrderDate":"9/21/2016","TotalPayment":"$116014.63","Status":1,"Type":2},{"OrderID":"17433-9877","ShipCountry":"ZA","ShipAddress":"2 Hoepker Parkway","ShipName":"Wolff Inc","OrderDate":"8/17/2017","TotalPayment":"$976577.47","Status":3,"Type":2},{"OrderID":"10056-306","ShipCountry":"CN","ShipAddress":"97 Tennessee Plaza","ShipName":"Kautzer LLC","OrderDate":"7/8/2016","TotalPayment":"$1145695.83","Status":5,"Type":2},{"OrderID":"60505-6025","ShipCountry":"RU","ShipAddress":"168 Sycamore Way","ShipName":"Wisoky, Schuppe and Monahan","OrderDate":"10/7/2016","TotalPayment":"$903744.35","Status":6,"Type":3},{"OrderID":"54973-2906","ShipCountry":"CN","ShipAddress":"6 Porter Hill","ShipName":"Crist, Gaylord and Gerlach","OrderDate":"12/25/2017","TotalPayment":"$770673.33","Status":5,"Type":1},{"OrderID":"0603-1584","ShipCountry":"PH","ShipAddress":"697 Moland Trail","ShipName":"Koepp Group","OrderDate":"7/30/2016","TotalPayment":"$860539.83","Status":6,"Type":2},{"OrderID":"36987-1178","ShipCountry":"AM","ShipAddress":"73 Ruskin Lane","ShipName":"Hansen Group","OrderDate":"6/20/2017","TotalPayment":"$834647.39","Status":6,"Type":3},{"OrderID":"21695-228","ShipCountry":"CN","ShipAddress":"0722 Arapahoe Circle","ShipName":"Kuhic Group","OrderDate":"2/10/2016","TotalPayment":"$499027.62","Status":5,"Type":1}]},\n{"RecordID":95,"FirstName":"Laural","LastName":"Jandel","Company":"Aivee","Email":"ljandel2m@house.gov","Phone":"201-172-8173","Status":1,"Type":2,"Orders":[{"OrderID":"65862-200","ShipCountry":"GR","ShipAddress":"051 Fallview Pass","ShipName":"Gutmann, Keebler and Ward","OrderDate":"3/31/2016","TotalPayment":"$907342.41","Status":3,"Type":1},{"OrderID":"61722-084","ShipCountry":"ID","ShipAddress":"3 Springview Terrace","ShipName":"Emard LLC","OrderDate":"1/11/2017","TotalPayment":"$776461.97","Status":3,"Type":2},{"OrderID":"50436-6106","ShipCountry":"ID","ShipAddress":"21 Anniversary Pass","ShipName":"Hamill, Feest and Bashirian","OrderDate":"2/24/2016","TotalPayment":"$61980.05","Status":2,"Type":1},{"OrderID":"60793-435","ShipCountry":"CN","ShipAddress":"76751 Sugar Lane","ShipName":"Carter, Johns and Hahn","OrderDate":"8/26/2016","TotalPayment":"$222122.28","Status":6,"Type":3},{"OrderID":"67751-140","ShipCountry":"ID","ShipAddress":"048 Ronald Regan Park","ShipName":"Mann-Borer","OrderDate":"9/9/2016","TotalPayment":"$974085.28","Status":4,"Type":3},{"OrderID":"48951-5008","ShipCountry":"CN","ShipAddress":"761 Birchwood Circle","ShipName":"Kuvalis, Collins and Treutel","OrderDate":"5/19/2017","TotalPayment":"$1086820.63","Status":3,"Type":2},{"OrderID":"54118-7993","ShipCountry":"BR","ShipAddress":"8757 Bellgrove Point","ShipName":"Barrows and Sons","OrderDate":"11/1/2017","TotalPayment":"$504835.65","Status":3,"Type":1}]},\n{"RecordID":96,"FirstName":"Ainsley","LastName":"Downes","Company":"Skyba","Email":"adownes2n@simplemachines.org","Phone":"878-228-3589","Status":2,"Type":2,"Orders":[{"OrderID":"41250-808","ShipCountry":"CN","ShipAddress":"87601 Fremont Center","ShipName":"McGlynn, Daugherty and Bradtke","OrderDate":"8/28/2017","TotalPayment":"$1120848.09","Status":1,"Type":1},{"OrderID":"0140-0004","ShipCountry":"NO","ShipAddress":"8520 Mayer Plaza","ShipName":"Cruickshank Inc","OrderDate":"1/3/2016","TotalPayment":"$535728.14","Status":5,"Type":3},{"OrderID":"25021-668","ShipCountry":"FR","ShipAddress":"6883 Debra Court","ShipName":"Doyle-Keebler","OrderDate":"9/3/2017","TotalPayment":"$94121.60","Status":5,"Type":2},{"OrderID":"60193-202","ShipCountry":"ID","ShipAddress":"148 Dawn Parkway","ShipName":"Rogahn, Dooley and Rippin","OrderDate":"8/30/2016","TotalPayment":"$609235.39","Status":4,"Type":2},{"OrderID":"55315-238","ShipCountry":"CN","ShipAddress":"4 Hoard Lane","ShipName":"Bogan Inc","OrderDate":"11/14/2017","TotalPayment":"$423241.38","Status":5,"Type":2},{"OrderID":"0168-0336","ShipCountry":"NL","ShipAddress":"0891 Anderson Point","ShipName":"Rutherford-Crona","OrderDate":"2/6/2016","TotalPayment":"$592220.51","Status":5,"Type":2},{"OrderID":"36987-2399","ShipCountry":"US","ShipAddress":"2 Fremont Hill","ShipName":"Upton, Schmidt and Harber","OrderDate":"4/21/2017","TotalPayment":"$273539.88","Status":2,"Type":3},{"OrderID":"36987-1620","ShipCountry":"NZ","ShipAddress":"75 Birchwood Trail","ShipName":"Marquardt Group","OrderDate":"1/19/2016","TotalPayment":"$885687.30","Status":6,"Type":2},{"OrderID":"59667-0014","ShipCountry":"LC","ShipAddress":"5 Butternut Point","ShipName":"Batz-Kautzer","OrderDate":"11/2/2016","TotalPayment":"$167057.92","Status":3,"Type":2},{"OrderID":"0409-5758","ShipCountry":"CN","ShipAddress":"853 Mcguire Point","ShipName":"Hettinger, Dibbert and Carter","OrderDate":"11/17/2017","TotalPayment":"$687912.02","Status":6,"Type":3},{"OrderID":"21695-277","ShipCountry":"PT","ShipAddress":"0191 Oak Valley Terrace","ShipName":"Schuster, Wolf and Ritchie","OrderDate":"5/30/2016","TotalPayment":"$76351.06","Status":5,"Type":2},{"OrderID":"55714-4588","ShipCountry":"MZ","ShipAddress":"95 Commercial Drive","ShipName":"Becker Group","OrderDate":"12/8/2016","TotalPayment":"$790129.86","Status":1,"Type":3},{"OrderID":"49999-192","ShipCountry":"FR","ShipAddress":"54 Rieder Way","ShipName":"Ebert Inc","OrderDate":"5/18/2016","TotalPayment":"$441078.53","Status":6,"Type":1},{"OrderID":"14783-253","ShipCountry":"BG","ShipAddress":"3 Trailsway Terrace","ShipName":"Senger, Bauch and Collier","OrderDate":"1/6/2017","TotalPayment":"$1122929.05","Status":5,"Type":1},{"OrderID":"43063-486","ShipCountry":"GR","ShipAddress":"91324 Hoepker Alley","ShipName":"Koss, Emmerich and Lehner","OrderDate":"3/25/2016","TotalPayment":"$388402.36","Status":1,"Type":1},{"OrderID":"37000-395","ShipCountry":"CN","ShipAddress":"8375 Stephen Pass","ShipName":"Legros, Hand and Emard","OrderDate":"5/12/2017","TotalPayment":"$219180.53","Status":2,"Type":3},{"OrderID":"37808-272","ShipCountry":"UZ","ShipAddress":"7302 Basil Alley","ShipName":"Kassulke-Vandervort","OrderDate":"2/21/2016","TotalPayment":"$1089789.57","Status":4,"Type":1}]},\n{"RecordID":97,"FirstName":"Zeke","LastName":"Woodall","Company":"Wikizz","Email":"zwoodall2o@trellian.com","Phone":"706-661-5835","Status":1,"Type":1,"Orders":[{"OrderID":"55150-117","ShipCountry":"GE","ShipAddress":"3 Jenna Pass","ShipName":"Auer, Towne and Cremin","OrderDate":"6/25/2016","TotalPayment":"$295291.68","Status":4,"Type":3},{"OrderID":"68786-212","ShipCountry":"FR","ShipAddress":"59 Shasta Way","ShipName":"Quigley, Stoltenberg and Hermiston","OrderDate":"10/9/2017","TotalPayment":"$34719.10","Status":5,"Type":1},{"OrderID":"50436-6578","ShipCountry":"MX","ShipAddress":"993 Anzinger Pass","ShipName":"Bruen LLC","OrderDate":"8/16/2017","TotalPayment":"$195900.25","Status":1,"Type":1},{"OrderID":"10578-037","ShipCountry":"MX","ShipAddress":"522 Burning Wood Court","ShipName":"Ondricka, Leffler and Gusikowski","OrderDate":"8/12/2016","TotalPayment":"$1191897.61","Status":4,"Type":1},{"OrderID":"68026-501","ShipCountry":"ID","ShipAddress":"730 Barnett Street","ShipName":"Powlowski and Sons","OrderDate":"9/6/2016","TotalPayment":"$649539.60","Status":1,"Type":1},{"OrderID":"0781-5311","ShipCountry":"PH","ShipAddress":"2476 Scofield Street","ShipName":"Bartoletti Group","OrderDate":"11/23/2017","TotalPayment":"$75470.34","Status":2,"Type":1}]},\n{"RecordID":98,"FirstName":"Justis","LastName":"Nisbith","Company":"Linktype","Email":"jnisbith2p@amazonaws.com","Phone":"839-577-2833","Status":2,"Type":1,"Orders":[{"OrderID":"54868-1362","ShipCountry":"SI","ShipAddress":"51131 Oakridge Hill","ShipName":"Kris-Grant","OrderDate":"7/29/2017","TotalPayment":"$558522.49","Status":3,"Type":3},{"OrderID":"36987-1678","ShipCountry":"RU","ShipAddress":"13196 Fair Oaks Terrace","ShipName":"Towne, Dare and O\'Kon","OrderDate":"6/17/2017","TotalPayment":"$333307.86","Status":4,"Type":1},{"OrderID":"51143-296","ShipCountry":"CN","ShipAddress":"24330 Parkside Crossing","ShipName":"Cummerata Group","OrderDate":"3/24/2016","TotalPayment":"$1089056.77","Status":2,"Type":2},{"OrderID":"11673-230","ShipCountry":"SE","ShipAddress":"1259 Erie Terrace","ShipName":"Mertz, Walker and Mueller","OrderDate":"3/29/2016","TotalPayment":"$1087498.16","Status":2,"Type":2},{"OrderID":"68745-1046","ShipCountry":"MN","ShipAddress":"199 3rd Park","ShipName":"Smith Inc","OrderDate":"3/23/2017","TotalPayment":"$289840.91","Status":4,"Type":1},{"OrderID":"49288-0248","ShipCountry":"ID","ShipAddress":"59350 Sugar Circle","ShipName":"Runte LLC","OrderDate":"12/14/2017","TotalPayment":"$323198.84","Status":4,"Type":1},{"OrderID":"14060-002","ShipCountry":"PH","ShipAddress":"3229 Summit Crossing","ShipName":"Barrows Inc","OrderDate":"8/10/2017","TotalPayment":"$504532.87","Status":6,"Type":3},{"OrderID":"50438-400","ShipCountry":"AF","ShipAddress":"04 Messerschmidt Lane","ShipName":"Gleichner-Lakin","OrderDate":"3/10/2016","TotalPayment":"$437054.77","Status":5,"Type":1},{"OrderID":"0363-0306","ShipCountry":"MA","ShipAddress":"55 Russell Court","ShipName":"Cole, Mraz and Romaguera","OrderDate":"5/2/2016","TotalPayment":"$565789.97","Status":1,"Type":2},{"OrderID":"0224-1866","ShipCountry":"SE","ShipAddress":"23441 Meadow Ridge Crossing","ShipName":"Watsica, Schulist and Boyle","OrderDate":"7/28/2016","TotalPayment":"$589391.99","Status":2,"Type":2},{"OrderID":"63517-160","ShipCountry":"MN","ShipAddress":"64299 Westend Park","ShipName":"Zboncak-Satterfield","OrderDate":"3/29/2016","TotalPayment":"$457636.51","Status":2,"Type":3},{"OrderID":"55154-5434","ShipCountry":"RU","ShipAddress":"939 Paget Street","ShipName":"Becker Inc","OrderDate":"6/25/2016","TotalPayment":"$195024.63","Status":5,"Type":2},{"OrderID":"0006-4943","ShipCountry":"PL","ShipAddress":"20886 Moulton Plaza","ShipName":"Mante, Upton and Anderson","OrderDate":"8/25/2016","TotalPayment":"$918116.45","Status":5,"Type":2},{"OrderID":"56062-602","ShipCountry":"CN","ShipAddress":"9 Moland Trail","ShipName":"Ruecker, Bernier and Lubowitz","OrderDate":"11/1/2017","TotalPayment":"$1004782.88","Status":1,"Type":1},{"OrderID":"54235-204","ShipCountry":"CN","ShipAddress":"73072 Mcbride Point","ShipName":"Kilback-Mann","OrderDate":"4/28/2016","TotalPayment":"$903662.48","Status":2,"Type":3},{"OrderID":"54569-1056","ShipCountry":"PH","ShipAddress":"9 Lakewood Gardens Road","ShipName":"Harris-Hudson","OrderDate":"6/22/2016","TotalPayment":"$825792.33","Status":5,"Type":1},{"OrderID":"17630-2025","ShipCountry":"AM","ShipAddress":"2 Donald Park","ShipName":"Paucek, Blick and Jones","OrderDate":"12/9/2017","TotalPayment":"$1174344.68","Status":1,"Type":2}]},\n{"RecordID":99,"FirstName":"Romola","LastName":"Alman","Company":"Meetz","Email":"ralman2q@thetimes.co.uk","Phone":"411-805-2589","Status":4,"Type":3,"Orders":[{"OrderID":"0641-0929","ShipCountry":"NG","ShipAddress":"4032 Schurz Hill","ShipName":"Heaney-Collins","OrderDate":"2/14/2017","TotalPayment":"$1071862.39","Status":1,"Type":2},{"OrderID":"52862-303","ShipCountry":"AM","ShipAddress":"673 Doe Crossing Hill","ShipName":"Durgan, Barrows and Littel","OrderDate":"11/19/2016","TotalPayment":"$558546.39","Status":2,"Type":3},{"OrderID":"63629-4089","ShipCountry":"PH","ShipAddress":"6308 Reinke Crossing","ShipName":"Parker Group","OrderDate":"10/24/2016","TotalPayment":"$232703.99","Status":1,"Type":1},{"OrderID":"11673-882","ShipCountry":"ID","ShipAddress":"25429 Birchwood Lane","ShipName":"Funk, Bergstrom and Quigley","OrderDate":"8/14/2017","TotalPayment":"$983974.55","Status":4,"Type":1},{"OrderID":"63550-191","ShipCountry":"ID","ShipAddress":"5 Northland Park","ShipName":"Collier-Gottlieb","OrderDate":"7/19/2016","TotalPayment":"$1113597.44","Status":5,"Type":1},{"OrderID":"60429-101","ShipCountry":"ID","ShipAddress":"47 Carpenter Road","ShipName":"Bauch, Hammes and Wehner","OrderDate":"7/10/2016","TotalPayment":"$206192.89","Status":1,"Type":2}]},\n{"RecordID":100,"FirstName":"Starla","LastName":"Marrows","Company":"Dabshots","Email":"smarrows2r@jalbum.net","Phone":"627-415-9760","Status":2,"Type":1,"Orders":[{"OrderID":"0603-4210","ShipCountry":"BR","ShipAddress":"26418 Macpherson Place","ShipName":"Schuppe-Prohaska","OrderDate":"8/11/2017","TotalPayment":"$873735.12","Status":6,"Type":1},{"OrderID":"64117-121","ShipCountry":"BG","ShipAddress":"8 Gateway Crossing","ShipName":"Wisoky-Lynch","OrderDate":"5/24/2016","TotalPayment":"$843360.37","Status":4,"Type":3},{"OrderID":"49035-007","ShipCountry":"FR","ShipAddress":"588 Superior Parkway","ShipName":"Kerluke, Lehner and Miller","OrderDate":"1/30/2017","TotalPayment":"$12987.89","Status":3,"Type":3},{"OrderID":"55253-801","ShipCountry":"XK","ShipAddress":"90 Waubesa Point","ShipName":"Yost-Considine","OrderDate":"4/19/2017","TotalPayment":"$440975.42","Status":5,"Type":1},{"OrderID":"55741-412","ShipCountry":"CN","ShipAddress":"8732 Springview Circle","ShipName":"Trantow, Leffler and Williamson","OrderDate":"3/20/2017","TotalPayment":"$833143.21","Status":2,"Type":2},{"OrderID":"53723-0001","ShipCountry":"FR","ShipAddress":"76 Ludington Pass","ShipName":"Jast Inc","OrderDate":"4/27/2017","TotalPayment":"$991927.23","Status":6,"Type":3},{"OrderID":"11822-2160","ShipCountry":"JP","ShipAddress":"26 Barnett Circle","ShipName":"Stracke LLC","OrderDate":"8/17/2017","TotalPayment":"$823641.75","Status":4,"Type":1},{"OrderID":"0054-0211","ShipCountry":"RU","ShipAddress":"10 Spohn Lane","ShipName":"Parisian LLC","OrderDate":"12/2/2017","TotalPayment":"$884005.07","Status":2,"Type":2},{"OrderID":"64942-1154","ShipCountry":"PH","ShipAddress":"30192 Mifflin Trail","ShipName":"Bergnaum-O\'Conner","OrderDate":"5/8/2017","TotalPayment":"$156595.27","Status":3,"Type":2}]},\n{"RecordID":101,"FirstName":"Mozes","LastName":"Van Salzberger","Company":"Reallinks","Email":"mvansalzberger2s@shop-pro.jp","Phone":"839-240-1855","Status":5,"Type":3,"Orders":[{"OrderID":"66336-608","ShipCountry":"PL","ShipAddress":"1298 3rd Plaza","ShipName":"Wehner, Spinka and O\'Kon","OrderDate":"11/16/2016","TotalPayment":"$364235.64","Status":5,"Type":3},{"OrderID":"65044-1213","ShipCountry":"CN","ShipAddress":"8 Leroy Alley","ShipName":"Cole and Sons","OrderDate":"6/12/2017","TotalPayment":"$903074.73","Status":4,"Type":3},{"OrderID":"67510-0172","ShipCountry":"BR","ShipAddress":"93300 Hansons Point","ShipName":"Jakubowski-Keeling","OrderDate":"3/22/2016","TotalPayment":"$302983.62","Status":6,"Type":2},{"OrderID":"68462-455","ShipCountry":"PF","ShipAddress":"498 Cardinal Drive","ShipName":"Denesik, Ziemann and Schinner","OrderDate":"10/26/2017","TotalPayment":"$967496.44","Status":3,"Type":2},{"OrderID":"52268-400","ShipCountry":"CN","ShipAddress":"77 Thackeray Circle","ShipName":"Pagac and Sons","OrderDate":"11/9/2016","TotalPayment":"$493580.73","Status":4,"Type":2},{"OrderID":"33261-994","ShipCountry":"RU","ShipAddress":"8 Kropf Circle","ShipName":"Anderson LLC","OrderDate":"10/29/2017","TotalPayment":"$875558.87","Status":6,"Type":3},{"OrderID":"58160-830","ShipCountry":"CN","ShipAddress":"738 Eastwood Crossing","ShipName":"Emmerich Group","OrderDate":"2/18/2017","TotalPayment":"$952171.71","Status":2,"Type":1},{"OrderID":"64616-101","ShipCountry":"GR","ShipAddress":"6 Kings Alley","ShipName":"Goyette, Romaguera and Block","OrderDate":"5/25/2016","TotalPayment":"$837784.89","Status":1,"Type":3}]},\n{"RecordID":102,"FirstName":"Darby","LastName":"Edis","Company":"Skimia","Email":"dedis2t@gmpg.org","Phone":"686-750-2419","Status":4,"Type":3,"Orders":[{"OrderID":"13537-262","ShipCountry":"MN","ShipAddress":"51 Thierer Road","ShipName":"Mraz, Bechtelar and Lubowitz","OrderDate":"11/23/2016","TotalPayment":"$338109.13","Status":2,"Type":1},{"OrderID":"46122-201","ShipCountry":"ID","ShipAddress":"36 Darwin Hill","ShipName":"Crist-Zemlak","OrderDate":"8/15/2016","TotalPayment":"$570437.74","Status":4,"Type":2},{"OrderID":"35356-851","ShipCountry":"CZ","ShipAddress":"0 Anzinger Way","ShipName":"Kub, Abshire and Carroll","OrderDate":"1/7/2016","TotalPayment":"$1153461.46","Status":5,"Type":3},{"OrderID":"63824-417","ShipCountry":"GT","ShipAddress":"7161 Buhler Court","ShipName":"Crist-Kub","OrderDate":"5/5/2016","TotalPayment":"$597534.49","Status":4,"Type":1},{"OrderID":"51138-045","ShipCountry":"BR","ShipAddress":"3874 Westend Point","ShipName":"Shanahan-Fadel","OrderDate":"6/22/2016","TotalPayment":"$1181674.61","Status":6,"Type":1},{"OrderID":"43857-0157","ShipCountry":"UA","ShipAddress":"1391 Bartillon Alley","ShipName":"Borer, Kemmer and Frami","OrderDate":"7/21/2017","TotalPayment":"$972546.24","Status":4,"Type":2},{"OrderID":"63323-300","ShipCountry":"ID","ShipAddress":"94 Johnson Lane","ShipName":"Schowalter, Stanton and Frami","OrderDate":"10/12/2016","TotalPayment":"$1095878.84","Status":6,"Type":1},{"OrderID":"49348-634","ShipCountry":"ID","ShipAddress":"8 Brentwood Center","ShipName":"Kuhlman-Hansen","OrderDate":"5/4/2016","TotalPayment":"$219656.17","Status":2,"Type":1},{"OrderID":"54868-4985","ShipCountry":"CN","ShipAddress":"6641 Haas Lane","ShipName":"Upton Inc","OrderDate":"6/22/2017","TotalPayment":"$487066.62","Status":4,"Type":1},{"OrderID":"53808-0618","ShipCountry":"PT","ShipAddress":"2017 Marquette Street","ShipName":"Fritsch, Carter and Hirthe","OrderDate":"2/13/2017","TotalPayment":"$534313.91","Status":5,"Type":2},{"OrderID":"52125-466","ShipCountry":"CA","ShipAddress":"2908 Farragut Park","ShipName":"Bashirian-Leuschke","OrderDate":"9/24/2016","TotalPayment":"$26343.68","Status":1,"Type":1},{"OrderID":"63868-935","ShipCountry":"ID","ShipAddress":"3 Utah Avenue","ShipName":"Mraz-Crooks","OrderDate":"7/20/2016","TotalPayment":"$947268.41","Status":1,"Type":3},{"OrderID":"10742-8669","ShipCountry":"RU","ShipAddress":"6 Fair Oaks Avenue","ShipName":"Wiegand, Boyle and Turcotte","OrderDate":"10/6/2017","TotalPayment":"$290125.66","Status":5,"Type":1},{"OrderID":"68472-129","ShipCountry":"PH","ShipAddress":"42 Stone Corner Circle","ShipName":"Reichert Inc","OrderDate":"10/30/2016","TotalPayment":"$664406.09","Status":4,"Type":2},{"OrderID":"59779-392","ShipCountry":"GM","ShipAddress":"004 Schurz Center","ShipName":"Reynolds-Greenholt","OrderDate":"6/9/2017","TotalPayment":"$921075.04","Status":2,"Type":1},{"OrderID":"69016-001","ShipCountry":"BR","ShipAddress":"9 Paget Road","ShipName":"Rice and Sons","OrderDate":"12/18/2017","TotalPayment":"$674714.67","Status":1,"Type":3}]},\n{"RecordID":103,"FirstName":"Cassius","LastName":"McDonand","Company":"Yoveo","Email":"cmcdonand2u@joomla.org","Phone":"351-852-6887","Status":4,"Type":2,"Orders":[{"OrderID":"36987-2421","ShipCountry":"MG","ShipAddress":"1 Boyd Hill","ShipName":"Lueilwitz-Wehner","OrderDate":"4/15/2017","TotalPayment":"$223293.93","Status":2,"Type":2},{"OrderID":"49035-180","ShipCountry":"CA","ShipAddress":"60 Mallard Point","ShipName":"West Group","OrderDate":"6/14/2017","TotalPayment":"$79526.46","Status":2,"Type":1},{"OrderID":"0185-0714","ShipCountry":"CN","ShipAddress":"89482 Sundown Plaza","ShipName":"Mertz Inc","OrderDate":"6/13/2016","TotalPayment":"$230421.44","Status":6,"Type":1},{"OrderID":"61715-118","ShipCountry":"FR","ShipAddress":"5 Lunder Pass","ShipName":"Turner-Greenholt","OrderDate":"6/10/2017","TotalPayment":"$601398.72","Status":1,"Type":3},{"OrderID":"10237-645","ShipCountry":"CN","ShipAddress":"16995 Rowland Junction","ShipName":"Crona-Price","OrderDate":"3/12/2016","TotalPayment":"$55251.54","Status":6,"Type":2}]},\n{"RecordID":104,"FirstName":"Ola","LastName":"Slight","Company":"Centizu","Email":"oslight2v@artisteer.com","Phone":"949-292-5097","Status":3,"Type":1,"Orders":[{"OrderID":"24478-190","ShipCountry":"UA","ShipAddress":"57365 Hayes Lane","ShipName":"Koss-Waters","OrderDate":"10/7/2016","TotalPayment":"$1109297.13","Status":5,"Type":3},{"OrderID":"57520-0939","ShipCountry":"RU","ShipAddress":"76488 3rd Trail","ShipName":"Quigley, Funk and Quigley","OrderDate":"1/29/2016","TotalPayment":"$579830.83","Status":3,"Type":3},{"OrderID":"50991-399","ShipCountry":"CN","ShipAddress":"879 Vidon Road","ShipName":"Moen, Ryan and Konopelski","OrderDate":"8/20/2017","TotalPayment":"$906023.43","Status":1,"Type":2},{"OrderID":"37808-305","ShipCountry":"RU","ShipAddress":"75087 Pawling Park","ShipName":"Ondricka, Vandervort and Green","OrderDate":"8/9/2016","TotalPayment":"$223305.06","Status":5,"Type":3},{"OrderID":"35356-722","ShipCountry":"CN","ShipAddress":"1740 Commercial Court","ShipName":"Crist and Sons","OrderDate":"7/29/2016","TotalPayment":"$521955.71","Status":6,"Type":1},{"OrderID":"0078-0597","ShipCountry":"PE","ShipAddress":"64 Bluestem Terrace","ShipName":"Marquardt and Sons","OrderDate":"3/25/2017","TotalPayment":"$857031.11","Status":1,"Type":3},{"OrderID":"76457-004","ShipCountry":"KE","ShipAddress":"7022 Loeprich Alley","ShipName":"Ziemann-Boehm","OrderDate":"11/10/2017","TotalPayment":"$726381.92","Status":3,"Type":2},{"OrderID":"0904-5230","ShipCountry":"YE","ShipAddress":"70672 Mayfield Way","ShipName":"Gleason and Sons","OrderDate":"1/6/2016","TotalPayment":"$696901.16","Status":3,"Type":2},{"OrderID":"54868-5658","ShipCountry":"VN","ShipAddress":"8649 Browning Road","ShipName":"Dooley Inc","OrderDate":"11/14/2017","TotalPayment":"$572674.00","Status":6,"Type":1},{"OrderID":"0591-2786","ShipCountry":"SE","ShipAddress":"066 Prentice Terrace","ShipName":"Mosciski Inc","OrderDate":"5/3/2017","TotalPayment":"$406605.89","Status":6,"Type":2},{"OrderID":"59640-155","ShipCountry":"CN","ShipAddress":"18276 Union Avenue","ShipName":"Streich-Dach","OrderDate":"12/6/2017","TotalPayment":"$1119663.71","Status":4,"Type":2},{"OrderID":"16590-874","ShipCountry":"GA","ShipAddress":"042 Bultman Point","ShipName":"Gleason, Pagac and Littel","OrderDate":"4/28/2016","TotalPayment":"$734279.56","Status":2,"Type":1},{"OrderID":"11822-6201","ShipCountry":"PT","ShipAddress":"774 Mockingbird Trail","ShipName":"Kozey and Sons","OrderDate":"1/29/2016","TotalPayment":"$352649.26","Status":5,"Type":2},{"OrderID":"65121-495","ShipCountry":"CN","ShipAddress":"354 Dayton Park","ShipName":"Dietrich-Herzog","OrderDate":"6/29/2017","TotalPayment":"$567011.43","Status":4,"Type":1},{"OrderID":"68828-101","ShipCountry":"LT","ShipAddress":"7 Prentice Pass","ShipName":"Schamberger-Mayer","OrderDate":"5/3/2017","TotalPayment":"$539212.76","Status":6,"Type":1},{"OrderID":"0069-0122","ShipCountry":"GT","ShipAddress":"8325 Division Way","ShipName":"Veum, Marvin and Klocko","OrderDate":"11/26/2016","TotalPayment":"$59099.56","Status":6,"Type":2},{"OrderID":"68387-600","ShipCountry":"SY","ShipAddress":"6 Mallory Point","ShipName":"Schimmel Inc","OrderDate":"10/21/2017","TotalPayment":"$22097.89","Status":1,"Type":2},{"OrderID":"42291-526","ShipCountry":"CN","ShipAddress":"4297 Reinke Junction","ShipName":"DuBuque LLC","OrderDate":"2/2/2017","TotalPayment":"$1199686.91","Status":4,"Type":1},{"OrderID":"55154-4559","ShipCountry":"NO","ShipAddress":"90 Sutherland Center","ShipName":"Purdy, Olson and Vandervort","OrderDate":"8/5/2016","TotalPayment":"$111683.71","Status":5,"Type":3},{"OrderID":"60760-983","ShipCountry":"CN","ShipAddress":"18458 Duke Pass","ShipName":"Hyatt and Sons","OrderDate":"4/5/2016","TotalPayment":"$1001796.85","Status":5,"Type":1}]},\n{"RecordID":105,"FirstName":"Edithe","LastName":"Sherington","Company":"Katz","Email":"esherington2w@ed.gov","Phone":"467-103-9518","Status":4,"Type":1,"Orders":[{"OrderID":"55312-489","ShipCountry":"LT","ShipAddress":"5447 Algoma Hill","ShipName":"Walter and Sons","OrderDate":"10/10/2016","TotalPayment":"$716695.61","Status":6,"Type":1},{"OrderID":"50436-6375","ShipCountry":"CN","ShipAddress":"05 Manley Circle","ShipName":"Bednar, Eichmann and Stokes","OrderDate":"3/29/2017","TotalPayment":"$348349.95","Status":1,"Type":3},{"OrderID":"13811-529","ShipCountry":"PL","ShipAddress":"16 Oak Circle","ShipName":"Turcotte Inc","OrderDate":"9/24/2017","TotalPayment":"$116759.65","Status":5,"Type":3},{"OrderID":"57664-399","ShipCountry":"CO","ShipAddress":"913 1st Court","ShipName":"Renner-Pollich","OrderDate":"5/18/2017","TotalPayment":"$1033668.93","Status":2,"Type":2},{"OrderID":"0904-5785","ShipCountry":"JP","ShipAddress":"0 Crest Line Junction","ShipName":"Kemmer Group","OrderDate":"12/19/2017","TotalPayment":"$216527.02","Status":4,"Type":2},{"OrderID":"65841-069","ShipCountry":"PT","ShipAddress":"415 Kropf Lane","ShipName":"Cronin, Carter and Sawayn","OrderDate":"10/18/2017","TotalPayment":"$205108.47","Status":4,"Type":3}]},\n{"RecordID":106,"FirstName":"Yank","LastName":"Arens","Company":"Livepath","Email":"yarens2x@illinois.edu","Phone":"758-792-8983","Status":4,"Type":2,"Orders":[{"OrderID":"49349-534","ShipCountry":"CN","ShipAddress":"32 Russell Street","ShipName":"Deckow Inc","OrderDate":"11/18/2016","TotalPayment":"$455427.57","Status":5,"Type":3},{"OrderID":"50051-0014","ShipCountry":"BA","ShipAddress":"338 American Alley","ShipName":"Crona and Sons","OrderDate":"1/28/2016","TotalPayment":"$949994.98","Status":2,"Type":2},{"OrderID":"54868-4507","ShipCountry":"GR","ShipAddress":"76 Lukken Point","ShipName":"Daugherty, Lowe and Vandervort","OrderDate":"7/13/2016","TotalPayment":"$866890.38","Status":1,"Type":2},{"OrderID":"51393-7633","ShipCountry":"CN","ShipAddress":"849 Cottonwood Junction","ShipName":"Harber-Veum","OrderDate":"9/25/2017","TotalPayment":"$46235.19","Status":4,"Type":1},{"OrderID":"47335-509","ShipCountry":"CF","ShipAddress":"48011 Kedzie Crossing","ShipName":"Ankunding, Kreiger and Schimmel","OrderDate":"10/16/2017","TotalPayment":"$603200.44","Status":2,"Type":3},{"OrderID":"42002-213","ShipCountry":"CN","ShipAddress":"7 Clarendon Hill","ShipName":"Predovic, Anderson and Green","OrderDate":"11/8/2016","TotalPayment":"$366373.00","Status":5,"Type":2},{"OrderID":"68040-705","ShipCountry":"AS","ShipAddress":"2 Corry Terrace","ShipName":"Stroman and Sons","OrderDate":"8/2/2016","TotalPayment":"$977109.41","Status":5,"Type":3},{"OrderID":"0781-5181","ShipCountry":"ID","ShipAddress":"938 Veith Center","ShipName":"Paucek, Wehner and Schumm","OrderDate":"12/25/2016","TotalPayment":"$1004225.78","Status":3,"Type":3},{"OrderID":"64745-001","ShipCountry":"HN","ShipAddress":"2 Northfield Crossing","ShipName":"Powlowski Inc","OrderDate":"5/1/2016","TotalPayment":"$638398.81","Status":1,"Type":1},{"OrderID":"0078-0240","ShipCountry":"RS","ShipAddress":"4 Park Meadow Hill","ShipName":"Schumm, O\'Kon and Hane","OrderDate":"2/2/2017","TotalPayment":"$448117.64","Status":6,"Type":1}]},\n{"RecordID":107,"FirstName":"Jack","LastName":"Bunney","Company":"Mita","Email":"jbunney2y@csmonitor.com","Phone":"389-306-9112","Status":2,"Type":3,"Orders":[{"OrderID":"43406-0072","ShipCountry":"RU","ShipAddress":"908 Sage Junction","ShipName":"Bode-Weissnat","OrderDate":"3/25/2017","TotalPayment":"$657361.25","Status":4,"Type":1},{"OrderID":"49288-0185","ShipCountry":"AZ","ShipAddress":"05 Badeau Plaza","ShipName":"Wolf-Kub","OrderDate":"9/26/2016","TotalPayment":"$867319.13","Status":5,"Type":3},{"OrderID":"37808-964","ShipCountry":"CA","ShipAddress":"72015 Helena Avenue","ShipName":"Sauer and Sons","OrderDate":"5/12/2017","TotalPayment":"$769244.78","Status":2,"Type":2},{"OrderID":"60760-749","ShipCountry":"CN","ShipAddress":"5145 Kim Center","ShipName":"Littel-Bauch","OrderDate":"5/7/2017","TotalPayment":"$900962.95","Status":2,"Type":1},{"OrderID":"58118-2530","ShipCountry":"SL","ShipAddress":"190 Derek Park","ShipName":"Cruickshank-Wilderman","OrderDate":"4/13/2016","TotalPayment":"$508598.82","Status":6,"Type":2},{"OrderID":"0268-0895","ShipCountry":"CN","ShipAddress":"4 Badeau Way","ShipName":"O\'Hara, Tromp and Aufderhar","OrderDate":"2/25/2017","TotalPayment":"$442518.90","Status":5,"Type":2},{"OrderID":"55648-974","ShipCountry":"CN","ShipAddress":"8717 Prairie Rose Hill","ShipName":"Gusikowski-Buckridge","OrderDate":"6/6/2017","TotalPayment":"$1096132.15","Status":4,"Type":3},{"OrderID":"45802-245","ShipCountry":"CN","ShipAddress":"92 Larry Junction","ShipName":"Schmidt, Muller and Corwin","OrderDate":"2/19/2016","TotalPayment":"$512403.40","Status":4,"Type":2},{"OrderID":"60429-098","ShipCountry":"CN","ShipAddress":"6 Roxbury Circle","ShipName":"Walker LLC","OrderDate":"5/30/2017","TotalPayment":"$468406.64","Status":2,"Type":2}]},\n{"RecordID":108,"FirstName":"Correy","LastName":"Tilt","Company":"Dabshots","Email":"ctilt2z@barnesandnoble.com","Phone":"835-261-5227","Status":5,"Type":3,"Orders":[{"OrderID":"0116-2994","ShipCountry":"RU","ShipAddress":"3981 Doe Crossing Street","ShipName":"Treutel-Wiza","OrderDate":"7/20/2016","TotalPayment":"$777739.91","Status":3,"Type":2},{"OrderID":"50181-0004","ShipCountry":"PH","ShipAddress":"70 5th Avenue","ShipName":"Hermiston and Sons","OrderDate":"5/8/2017","TotalPayment":"$170734.55","Status":1,"Type":3},{"OrderID":"12462-300","ShipCountry":"MY","ShipAddress":"726 Sommers Crossing","ShipName":"McLaughlin-Leannon","OrderDate":"8/3/2016","TotalPayment":"$35090.88","Status":5,"Type":3},{"OrderID":"21695-935","ShipCountry":"CN","ShipAddress":"01877 Moose Terrace","ShipName":"Rosenbaum, Hettinger and Gleason","OrderDate":"6/11/2017","TotalPayment":"$50710.02","Status":4,"Type":2},{"OrderID":"12634-191","ShipCountry":"PE","ShipAddress":"8868 Spaight Alley","ShipName":"Hammes, Fritsch and Beer","OrderDate":"8/2/2017","TotalPayment":"$227303.33","Status":6,"Type":1},{"OrderID":"58118-0106","ShipCountry":"CZ","ShipAddress":"9905 La Follette Street","ShipName":"Reilly and Sons","OrderDate":"6/28/2016","TotalPayment":"$1115256.20","Status":4,"Type":2},{"OrderID":"46708-031","ShipCountry":"CN","ShipAddress":"5 Melby Junction","ShipName":"Rau-Kling","OrderDate":"5/26/2017","TotalPayment":"$85823.20","Status":5,"Type":3},{"OrderID":"49348-818","ShipCountry":"PL","ShipAddress":"333 Longview Crossing","ShipName":"Paucek Group","OrderDate":"1/17/2016","TotalPayment":"$750963.96","Status":3,"Type":1},{"OrderID":"62011-0133","ShipCountry":"CN","ShipAddress":"6 Kenwood Lane","ShipName":"Pouros Group","OrderDate":"3/21/2016","TotalPayment":"$567401.88","Status":5,"Type":2},{"OrderID":"64141-001","ShipCountry":"KZ","ShipAddress":"47 Sullivan Point","ShipName":"Anderson Group","OrderDate":"1/27/2017","TotalPayment":"$1102267.89","Status":3,"Type":2},{"OrderID":"59779-980","ShipCountry":"BS","ShipAddress":"041 Summit Center","ShipName":"Lakin-Ebert","OrderDate":"1/13/2017","TotalPayment":"$1044141.64","Status":5,"Type":3},{"OrderID":"55319-015","ShipCountry":"CZ","ShipAddress":"623 Loftsgordon Court","ShipName":"Metz, Feest and Cummings","OrderDate":"8/22/2017","TotalPayment":"$592896.19","Status":5,"Type":2},{"OrderID":"63941-378","ShipCountry":"CO","ShipAddress":"8616 American Terrace","ShipName":"Emard, Schmeler and Abernathy","OrderDate":"7/21/2016","TotalPayment":"$763965.13","Status":6,"Type":2},{"OrderID":"36800-656","ShipCountry":"IT","ShipAddress":"664 Farragut Trail","ShipName":"Wolff, Lakin and Hansen","OrderDate":"6/21/2017","TotalPayment":"$535430.94","Status":5,"Type":1},{"OrderID":"33261-838","ShipCountry":"PE","ShipAddress":"37922 Grasskamp Parkway","ShipName":"Zulauf Inc","OrderDate":"3/28/2017","TotalPayment":"$541141.06","Status":3,"Type":1},{"OrderID":"0268-0829","ShipCountry":"ID","ShipAddress":"8267 5th Place","ShipName":"Lehner, Feil and Russel","OrderDate":"9/8/2016","TotalPayment":"$1194093.56","Status":6,"Type":1},{"OrderID":"63981-306","ShipCountry":"TH","ShipAddress":"1587 Northport Pass","ShipName":"Leannon, Mills and Nader","OrderDate":"9/30/2016","TotalPayment":"$541685.46","Status":6,"Type":3}]},\n{"RecordID":109,"FirstName":"Rhea","LastName":"Dallaghan","Company":"Demizz","Email":"rdallaghan30@theguardian.com","Phone":"686-756-4673","Status":3,"Type":1,"Orders":[{"OrderID":"53113-550","ShipCountry":"SE","ShipAddress":"5 Ryan Road","ShipName":"Kerluke-Koss","OrderDate":"6/11/2016","TotalPayment":"$639247.12","Status":1,"Type":2},{"OrderID":"43063-222","ShipCountry":"RU","ShipAddress":"892 Red Cloud Plaza","ShipName":"Quigley, Johnson and Wyman","OrderDate":"1/10/2017","TotalPayment":"$692470.85","Status":1,"Type":3},{"OrderID":"68308-219","ShipCountry":"US","ShipAddress":"7156 Nevada Lane","ShipName":"Schiller, Emmerich and Welch","OrderDate":"2/15/2017","TotalPayment":"$962045.15","Status":5,"Type":3},{"OrderID":"41520-092","ShipCountry":"BR","ShipAddress":"80102 Springs Place","ShipName":"Wolff-Morar","OrderDate":"6/26/2017","TotalPayment":"$1026418.82","Status":5,"Type":3},{"OrderID":"0065-0656","ShipCountry":"CO","ShipAddress":"35040 Algoma Court","ShipName":"Torphy Inc","OrderDate":"1/10/2016","TotalPayment":"$840254.68","Status":4,"Type":3},{"OrderID":"52125-744","ShipCountry":"FR","ShipAddress":"65 Hagan Hill","ShipName":"Rutherford, Jones and Vandervort","OrderDate":"6/19/2017","TotalPayment":"$838971.55","Status":1,"Type":2},{"OrderID":"68405-098","ShipCountry":"AR","ShipAddress":"6 Myrtle Point","ShipName":"Smith-Ernser","OrderDate":"9/17/2017","TotalPayment":"$789700.18","Status":1,"Type":3},{"OrderID":"66336-567","ShipCountry":"CN","ShipAddress":"176 Judy Trail","ShipName":"King-Parker","OrderDate":"5/10/2017","TotalPayment":"$975186.02","Status":3,"Type":3},{"OrderID":"47124-295","ShipCountry":"UA","ShipAddress":"91 Clarendon Park","ShipName":"Spencer, Lynch and Kilback","OrderDate":"9/14/2017","TotalPayment":"$712092.66","Status":5,"Type":2},{"OrderID":"0115-9822","ShipCountry":"CN","ShipAddress":"779 Main Center","ShipName":"Simonis, Dach and Krajcik","OrderDate":"10/3/2017","TotalPayment":"$1017868.11","Status":6,"Type":1},{"OrderID":"58517-300","ShipCountry":"CN","ShipAddress":"229 Sullivan Alley","ShipName":"Mante-Gibson","OrderDate":"9/22/2016","TotalPayment":"$700082.78","Status":3,"Type":3}]},\n{"RecordID":110,"FirstName":"Boris","LastName":"Bramah","Company":"Jayo","Email":"bbramah31@bravesites.com","Phone":"717-255-1844","Status":2,"Type":1,"Orders":[{"OrderID":"43406-0112","ShipCountry":"FR","ShipAddress":"62123 Forest Run Avenue","ShipName":"Hartmann-Osinski","OrderDate":"2/8/2016","TotalPayment":"$213201.23","Status":3,"Type":2},{"OrderID":"0268-1214","ShipCountry":"US","ShipAddress":"82449 Westridge Parkway","ShipName":"Konopelski and Sons","OrderDate":"7/10/2016","TotalPayment":"$886952.32","Status":5,"Type":2},{"OrderID":"64540-011","ShipCountry":"IT","ShipAddress":"128 Annamark Lane","ShipName":"Hartmann-Jast","OrderDate":"12/7/2016","TotalPayment":"$1137122.44","Status":4,"Type":1},{"OrderID":"55513-267","ShipCountry":"PL","ShipAddress":"5911 Morningstar Terrace","ShipName":"Koelpin-Wisoky","OrderDate":"7/19/2017","TotalPayment":"$519933.67","Status":3,"Type":1},{"OrderID":"61957-1023","ShipCountry":"CN","ShipAddress":"1096 Blaine Pass","ShipName":"Orn-Douglas","OrderDate":"7/10/2017","TotalPayment":"$1174389.42","Status":4,"Type":1},{"OrderID":"0378-4001","ShipCountry":"ID","ShipAddress":"62978 Melby Crossing","ShipName":"Dietrich, Boehm and Upton","OrderDate":"2/19/2016","TotalPayment":"$360158.76","Status":1,"Type":2},{"OrderID":"61748-111","ShipCountry":"PE","ShipAddress":"3 Graedel Parkway","ShipName":"Gorczany-Streich","OrderDate":"8/12/2016","TotalPayment":"$1068686.29","Status":4,"Type":2},{"OrderID":"67296-0649","ShipCountry":"FR","ShipAddress":"98 Shopko Crossing","ShipName":"Quigley Inc","OrderDate":"2/19/2016","TotalPayment":"$404220.73","Status":1,"Type":1},{"OrderID":"16590-859","ShipCountry":"SE","ShipAddress":"55712 Lawn Hill","ShipName":"Labadie, Roberts and Schoen","OrderDate":"1/1/2017","TotalPayment":"$394666.83","Status":5,"Type":3},{"OrderID":"35356-608","ShipCountry":"ID","ShipAddress":"530 Boyd Plaza","ShipName":"Hoppe-Johnson","OrderDate":"5/17/2016","TotalPayment":"$1044454.62","Status":4,"Type":2},{"OrderID":"64997-150","ShipCountry":"PH","ShipAddress":"71 Old Gate Way","ShipName":"Steuber-Fisher","OrderDate":"1/12/2017","TotalPayment":"$1151182.35","Status":6,"Type":3},{"OrderID":"11701-025","ShipCountry":"CN","ShipAddress":"7 Vermont Hill","ShipName":"Conn, Waters and Howell","OrderDate":"5/18/2016","TotalPayment":"$1120354.79","Status":5,"Type":2},{"OrderID":"37012-059","ShipCountry":"NG","ShipAddress":"94820 Merrick Alley","ShipName":"Mosciski-Brekke","OrderDate":"12/9/2017","TotalPayment":"$985040.45","Status":2,"Type":1},{"OrderID":"55566-5020","ShipCountry":"ID","ShipAddress":"45 Fuller Alley","ShipName":"O\'Hara, Heathcote and Walsh","OrderDate":"12/24/2017","TotalPayment":"$441288.14","Status":5,"Type":1},{"OrderID":"54868-4451","ShipCountry":"SD","ShipAddress":"81383 Alpine Plaza","ShipName":"Toy-Russel","OrderDate":"7/27/2017","TotalPayment":"$280973.51","Status":1,"Type":2},{"OrderID":"54868-4384","ShipCountry":"CU","ShipAddress":"583 Schmedeman Street","ShipName":"Moen Group","OrderDate":"2/27/2016","TotalPayment":"$395364.76","Status":5,"Type":3},{"OrderID":"36987-2434","ShipCountry":"SI","ShipAddress":"78 Grasskamp Plaza","ShipName":"Kihn-Mueller","OrderDate":"7/11/2017","TotalPayment":"$663029.82","Status":5,"Type":1}]},\n{"RecordID":111,"FirstName":"Gordy","LastName":"Lipgens","Company":"Wordpedia","Email":"glipgens32@shareasale.com","Phone":"255-153-2683","Status":6,"Type":2,"Orders":[{"OrderID":"43474-001","ShipCountry":"NO","ShipAddress":"8591 Ryan Avenue","ShipName":"Gleichner, Schaden and Stehr","OrderDate":"12/26/2016","TotalPayment":"$134143.89","Status":2,"Type":2},{"OrderID":"61221-010","ShipCountry":"SE","ShipAddress":"63 Dovetail Crossing","ShipName":"Wilkinson LLC","OrderDate":"12/6/2016","TotalPayment":"$73414.59","Status":4,"Type":3},{"OrderID":"36987-3316","ShipCountry":"HN","ShipAddress":"350 Miller Center","ShipName":"Bernhard, Nienow and O\'Reilly","OrderDate":"6/16/2017","TotalPayment":"$77246.96","Status":6,"Type":1},{"OrderID":"68788-9025","ShipCountry":"CN","ShipAddress":"2442 Miller Lane","ShipName":"Willms-Renner","OrderDate":"10/18/2017","TotalPayment":"$953948.67","Status":6,"Type":3},{"OrderID":"68180-137","ShipCountry":"CZ","ShipAddress":"72502 Northridge Avenue","ShipName":"Smitham-Rempel","OrderDate":"9/29/2017","TotalPayment":"$824538.31","Status":3,"Type":3},{"OrderID":"64764-890","ShipCountry":"IR","ShipAddress":"648 Fair Oaks Court","ShipName":"Hahn, Hansen and Stanton","OrderDate":"8/2/2017","TotalPayment":"$696716.72","Status":6,"Type":3},{"OrderID":"36987-2426","ShipCountry":"VE","ShipAddress":"5288 Logan Lane","ShipName":"Steuber-Quitzon","OrderDate":"1/19/2017","TotalPayment":"$503080.51","Status":5,"Type":2},{"OrderID":"49230-212","ShipCountry":"JP","ShipAddress":"18 Elmside Lane","ShipName":"Kling Group","OrderDate":"6/9/2017","TotalPayment":"$546332.16","Status":6,"Type":3},{"OrderID":"0054-4180","ShipCountry":"ID","ShipAddress":"90914 Dennis Hill","ShipName":"Russel, Greenfelder and VonRueden","OrderDate":"12/1/2017","TotalPayment":"$918750.26","Status":1,"Type":3},{"OrderID":"51655-560","ShipCountry":"RU","ShipAddress":"37 Nelson Road","ShipName":"Spencer, Hickle and Bernier","OrderDate":"3/27/2017","TotalPayment":"$1030443.29","Status":5,"Type":3},{"OrderID":"68084-833","ShipCountry":"CN","ShipAddress":"21904 Shelley Terrace","ShipName":"Altenwerth, Schmidt and Miller","OrderDate":"2/8/2017","TotalPayment":"$1130934.10","Status":1,"Type":2},{"OrderID":"54868-4341","ShipCountry":"MX","ShipAddress":"56781 Glacier Hill Drive","ShipName":"Miller, Tremblay and Gerlach","OrderDate":"2/23/2017","TotalPayment":"$559694.45","Status":1,"Type":1},{"OrderID":"43353-802","ShipCountry":"MX","ShipAddress":"42 Southridge Circle","ShipName":"Nienow and Sons","OrderDate":"4/24/2017","TotalPayment":"$64248.08","Status":2,"Type":3},{"OrderID":"43846-0032","ShipCountry":"ID","ShipAddress":"13 Arrowood Street","ShipName":"Sauer-Hansen","OrderDate":"1/22/2016","TotalPayment":"$851491.04","Status":4,"Type":3},{"OrderID":"10096-0158","ShipCountry":"BA","ShipAddress":"592 Trailsway Hill","ShipName":"Rutherford, Farrell and Connelly","OrderDate":"7/26/2017","TotalPayment":"$330081.49","Status":3,"Type":1},{"OrderID":"67457-425","ShipCountry":"ID","ShipAddress":"43 Grayhawk Crossing","ShipName":"Gottlieb, Hauck and Stokes","OrderDate":"6/10/2017","TotalPayment":"$1122253.75","Status":1,"Type":3},{"OrderID":"45802-061","ShipCountry":"IR","ShipAddress":"58788 Green Ridge Avenue","ShipName":"Morissette and Sons","OrderDate":"9/19/2016","TotalPayment":"$248231.45","Status":4,"Type":1},{"OrderID":"66854-015","ShipCountry":"PL","ShipAddress":"74909 Cody Crossing","ShipName":"Murphy, Schulist and Grant","OrderDate":"12/29/2017","TotalPayment":"$901315.05","Status":4,"Type":1},{"OrderID":"57955-2291","ShipCountry":"MX","ShipAddress":"53 Duke Center","ShipName":"DuBuque Inc","OrderDate":"7/18/2016","TotalPayment":"$834526.52","Status":5,"Type":1},{"OrderID":"37000-233","ShipCountry":"CN","ShipAddress":"32009 Ilene Crossing","ShipName":"Jacobi, Lind and Witting","OrderDate":"5/4/2017","TotalPayment":"$1157098.23","Status":3,"Type":3}]},\n{"RecordID":112,"FirstName":"Estevan","LastName":"Avrahamian","Company":"Oyoyo","Email":"eavrahamian33@chron.com","Phone":"779-135-4701","Status":5,"Type":3,"Orders":[{"OrderID":"0603-5914","ShipCountry":"AM","ShipAddress":"42 Kings Center","ShipName":"Lebsack-Koch","OrderDate":"10/2/2017","TotalPayment":"$91803.53","Status":5,"Type":2},{"OrderID":"36800-176","ShipCountry":"ID","ShipAddress":"64 Glendale Court","ShipName":"Crooks LLC","OrderDate":"1/9/2017","TotalPayment":"$1103135.65","Status":6,"Type":2},{"OrderID":"42507-478","ShipCountry":"AR","ShipAddress":"618 Sycamore Alley","ShipName":"Windler, Collier and Wilderman","OrderDate":"12/22/2016","TotalPayment":"$622328.46","Status":3,"Type":3},{"OrderID":"42719-345","ShipCountry":"RU","ShipAddress":"4 Florence Trail","ShipName":"Borer LLC","OrderDate":"3/28/2016","TotalPayment":"$396986.58","Status":4,"Type":1},{"OrderID":"48951-4075","ShipCountry":"ID","ShipAddress":"740 Scoville Avenue","ShipName":"Effertz-Lowe","OrderDate":"3/23/2017","TotalPayment":"$460219.71","Status":1,"Type":1},{"OrderID":"55648-990","ShipCountry":"LU","ShipAddress":"59 Hanson Point","ShipName":"Sawayn Group","OrderDate":"4/26/2016","TotalPayment":"$441692.40","Status":1,"Type":1},{"OrderID":"0037-4401","ShipCountry":"ES","ShipAddress":"42 Farwell Lane","ShipName":"Nader-Schimmel","OrderDate":"3/19/2017","TotalPayment":"$61295.33","Status":3,"Type":1},{"OrderID":"60429-074","ShipCountry":"ID","ShipAddress":"85565 Bellgrove Crossing","ShipName":"Hackett, Cassin and Farrell","OrderDate":"8/9/2017","TotalPayment":"$101040.22","Status":6,"Type":3},{"OrderID":"68788-9940","ShipCountry":"MN","ShipAddress":"12 Oxford Hill","ShipName":"Auer, Muller and Mraz","OrderDate":"4/21/2016","TotalPayment":"$494391.45","Status":4,"Type":1},{"OrderID":"37000-908","ShipCountry":"DO","ShipAddress":"68 Ridgeway Parkway","ShipName":"Johns, Marquardt and Harris","OrderDate":"9/3/2017","TotalPayment":"$423911.20","Status":5,"Type":2},{"OrderID":"21695-155","ShipCountry":"CA","ShipAddress":"56 Reinke Plaza","ShipName":"Schneider and Sons","OrderDate":"7/30/2017","TotalPayment":"$1126684.32","Status":2,"Type":2},{"OrderID":"75981-153","ShipCountry":"CD","ShipAddress":"7 Dakota Circle","ShipName":"Dach LLC","OrderDate":"11/5/2016","TotalPayment":"$635803.91","Status":6,"Type":2},{"OrderID":"10297-001","ShipCountry":"GT","ShipAddress":"5 Gateway Lane","ShipName":"Beatty LLC","OrderDate":"5/30/2016","TotalPayment":"$359232.90","Status":5,"Type":2},{"OrderID":"11673-722","ShipCountry":"HN","ShipAddress":"59689 Logan Crossing","ShipName":"Cruickshank, Schimmel and Prohaska","OrderDate":"5/28/2016","TotalPayment":"$45306.54","Status":5,"Type":3},{"OrderID":"11673-980","ShipCountry":"CN","ShipAddress":"0962 Center Trail","ShipName":"Altenwerth-Ziemann","OrderDate":"5/28/2017","TotalPayment":"$715013.09","Status":4,"Type":1}]},\n{"RecordID":113,"FirstName":"Farand","LastName":"Trask","Company":"Meedoo","Email":"ftrask34@booking.com","Phone":"282-156-9089","Status":6,"Type":2,"Orders":[{"OrderID":"36987-3393","ShipCountry":"CN","ShipAddress":"8017 Sauthoff Place","ShipName":"Vandervort LLC","OrderDate":"12/9/2017","TotalPayment":"$162594.03","Status":2,"Type":1},{"OrderID":"51545-120","ShipCountry":"PH","ShipAddress":"5001 Nancy Way","ShipName":"Lehner-Feest","OrderDate":"11/25/2016","TotalPayment":"$1024059.96","Status":1,"Type":2},{"OrderID":"0363-0223","ShipCountry":"CN","ShipAddress":"92388 Mccormick Alley","ShipName":"Cummings, Witting and Pfannerstill","OrderDate":"2/26/2016","TotalPayment":"$240500.96","Status":5,"Type":1},{"OrderID":"49404-111","ShipCountry":"BA","ShipAddress":"163 Fremont Parkway","ShipName":"Jerde, Jacobi and Heidenreich","OrderDate":"12/5/2016","TotalPayment":"$1024917.85","Status":4,"Type":1},{"OrderID":"0409-7171","ShipCountry":"PK","ShipAddress":"796 Harbort Way","ShipName":"Schumm Group","OrderDate":"11/22/2016","TotalPayment":"$295962.51","Status":2,"Type":3},{"OrderID":"0023-0506","ShipCountry":"VE","ShipAddress":"673 Cascade Crossing","ShipName":"Huels-Lynch","OrderDate":"4/19/2017","TotalPayment":"$635850.99","Status":6,"Type":3},{"OrderID":"67226-2230","ShipCountry":"FR","ShipAddress":"2 Sutherland Hill","ShipName":"Emmerich and Sons","OrderDate":"11/21/2016","TotalPayment":"$592691.86","Status":3,"Type":1},{"OrderID":"0268-6198","ShipCountry":"WS","ShipAddress":"668 Hanson Place","ShipName":"Dibbert Group","OrderDate":"7/18/2017","TotalPayment":"$542742.36","Status":4,"Type":1},{"OrderID":"10370-210","ShipCountry":"CN","ShipAddress":"54375 Butternut Hill","ShipName":"McKenzie, Cummings and Boyer","OrderDate":"1/31/2017","TotalPayment":"$936961.00","Status":5,"Type":2},{"OrderID":"54575-400","ShipCountry":"CN","ShipAddress":"2 Nelson Circle","ShipName":"Kub-Metz","OrderDate":"12/2/2017","TotalPayment":"$679692.29","Status":3,"Type":1},{"OrderID":"36987-1427","ShipCountry":"TN","ShipAddress":"08720 Lerdahl Circle","ShipName":"Nicolas and Sons","OrderDate":"12/29/2016","TotalPayment":"$1016371.54","Status":1,"Type":1},{"OrderID":"16590-056","ShipCountry":"CR","ShipAddress":"89 Anderson Trail","ShipName":"Corkery-Funk","OrderDate":"1/16/2016","TotalPayment":"$893208.93","Status":2,"Type":2}]},\n{"RecordID":114,"FirstName":"Antonio","LastName":"Easeman","Company":"Bubbletube","Email":"aeaseman35@is.gd","Phone":"759-399-7050","Status":6,"Type":3,"Orders":[{"OrderID":"0168-0293","ShipCountry":"MX","ShipAddress":"085 Clemons Pass","ShipName":"Franecki LLC","OrderDate":"2/9/2017","TotalPayment":"$37671.72","Status":2,"Type":2},{"OrderID":"55154-5412","ShipCountry":"SE","ShipAddress":"7017 Erie Alley","ShipName":"Bergstrom-Gutkowski","OrderDate":"3/22/2017","TotalPayment":"$1027765.76","Status":2,"Type":2},{"OrderID":"60637-018","ShipCountry":"PE","ShipAddress":"544 Ridge Oak Point","ShipName":"Weimann-Spinka","OrderDate":"2/3/2017","TotalPayment":"$940014.96","Status":5,"Type":2},{"OrderID":"49288-0231","ShipCountry":"PH","ShipAddress":"7 Pawling Hill","ShipName":"Schaden, Daugherty and Moore","OrderDate":"2/11/2017","TotalPayment":"$980508.22","Status":1,"Type":1},{"OrderID":"0642-0077","ShipCountry":"RU","ShipAddress":"51 Lunder Street","ShipName":"Lynch, Lowe and Adams","OrderDate":"7/20/2016","TotalPayment":"$505558.40","Status":2,"Type":3},{"OrderID":"0536-1000","ShipCountry":"RU","ShipAddress":"33 Farwell Lane","ShipName":"Ritchie-Pouros","OrderDate":"5/25/2017","TotalPayment":"$725541.95","Status":2,"Type":2},{"OrderID":"51079-881","ShipCountry":"BR","ShipAddress":"0 Basil Road","ShipName":"Krajcik-Kreiger","OrderDate":"2/19/2017","TotalPayment":"$1098729.65","Status":5,"Type":1}]},\n{"RecordID":115,"FirstName":"Torie","LastName":"Loos","Company":"Quinu","Email":"tloos36@dell.com","Phone":"205-754-2684","Status":4,"Type":2,"Orders":[{"OrderID":"0268-0606","ShipCountry":"CN","ShipAddress":"2592 Southridge Street","ShipName":"Conroy-Brekke","OrderDate":"12/15/2017","TotalPayment":"$798762.45","Status":1,"Type":1},{"OrderID":"63824-112","ShipCountry":"UA","ShipAddress":"40 Carpenter Circle","ShipName":"Lockman Inc","OrderDate":"12/16/2017","TotalPayment":"$129554.31","Status":5,"Type":1},{"OrderID":"23360-160","ShipCountry":"US","ShipAddress":"9927 Golf Terrace","ShipName":"Bruen-Hermann","OrderDate":"10/29/2016","TotalPayment":"$941929.65","Status":2,"Type":1},{"OrderID":"51346-145","ShipCountry":"PL","ShipAddress":"12526 Meadow Ridge Place","ShipName":"Rippin, Lemke and Glover","OrderDate":"11/7/2017","TotalPayment":"$823968.18","Status":2,"Type":1},{"OrderID":"68788-9926","ShipCountry":"BG","ShipAddress":"36 Dexter Trail","ShipName":"Towne Group","OrderDate":"1/15/2016","TotalPayment":"$1009245.07","Status":2,"Type":3},{"OrderID":"10096-0229","ShipCountry":"ID","ShipAddress":"82484 Londonderry Terrace","ShipName":"Boehm LLC","OrderDate":"1/9/2017","TotalPayment":"$244033.78","Status":4,"Type":3},{"OrderID":"63323-738","ShipCountry":"CN","ShipAddress":"5 Sage Circle","ShipName":"Hyatt Inc","OrderDate":"10/9/2016","TotalPayment":"$1146194.18","Status":4,"Type":1},{"OrderID":"13668-158","ShipCountry":"CN","ShipAddress":"78 Lotheville Drive","ShipName":"Blick-Bernhard","OrderDate":"3/6/2016","TotalPayment":"$395227.96","Status":1,"Type":2},{"OrderID":"68703-114","ShipCountry":"HR","ShipAddress":"28078 Northridge Drive","ShipName":"Koelpin, Kertzmann and Mueller","OrderDate":"12/9/2016","TotalPayment":"$117759.65","Status":6,"Type":1},{"OrderID":"10888-5003","ShipCountry":"CN","ShipAddress":"2 Dayton Alley","ShipName":"Langworth Group","OrderDate":"12/6/2016","TotalPayment":"$235730.08","Status":1,"Type":3},{"OrderID":"76174-130","ShipCountry":"KZ","ShipAddress":"2 Hayes Way","ShipName":"Ritchie LLC","OrderDate":"8/25/2017","TotalPayment":"$276203.97","Status":2,"Type":3},{"OrderID":"68428-151","ShipCountry":"PT","ShipAddress":"4627 Ludington Hill","ShipName":"Schmidt, Welch and Marvin","OrderDate":"1/6/2017","TotalPayment":"$742467.70","Status":1,"Type":3}]},\n{"RecordID":116,"FirstName":"Alley","LastName":"Bage","Company":"Thoughtsphere","Email":"abage37@cocolog-nifty.com","Phone":"717-668-5493","Status":5,"Type":2,"Orders":[{"OrderID":"30142-321","ShipCountry":"FR","ShipAddress":"1126 Coleman Lane","ShipName":"Gerhold-Braun","OrderDate":"10/2/2017","TotalPayment":"$816724.59","Status":5,"Type":3},{"OrderID":"50458-541","ShipCountry":"CN","ShipAddress":"21266 Fisk Crossing","ShipName":"Bruen and Sons","OrderDate":"6/8/2016","TotalPayment":"$690481.77","Status":5,"Type":3},{"OrderID":"0268-0606","ShipCountry":"RU","ShipAddress":"8848 Bonner Terrace","ShipName":"Ankunding, Stroman and Raynor","OrderDate":"4/27/2016","TotalPayment":"$528012.23","Status":3,"Type":1},{"OrderID":"29300-241","ShipCountry":"CR","ShipAddress":"66 Manley Trail","ShipName":"Corkery, Morar and Waters","OrderDate":"12/25/2016","TotalPayment":"$334532.39","Status":5,"Type":3},{"OrderID":"63187-044","ShipCountry":"CN","ShipAddress":"8 South Junction","ShipName":"Heidenreich LLC","OrderDate":"1/11/2017","TotalPayment":"$487085.33","Status":1,"Type":3},{"OrderID":"57650-159","ShipCountry":"HN","ShipAddress":"0371 Helena Avenue","ShipName":"Douglas-Bernhard","OrderDate":"11/9/2016","TotalPayment":"$478948.11","Status":1,"Type":3},{"OrderID":"59779-279","ShipCountry":"TH","ShipAddress":"0 Evergreen Center","ShipName":"Keebler-Rice","OrderDate":"12/9/2016","TotalPayment":"$868507.41","Status":6,"Type":1},{"OrderID":"33342-092","ShipCountry":"CL","ShipAddress":"221 Brown Alley","ShipName":"Klein Group","OrderDate":"5/29/2017","TotalPayment":"$694583.16","Status":4,"Type":3},{"OrderID":"43063-090","ShipCountry":"ID","ShipAddress":"028 7th Park","ShipName":"Herzog-Spencer","OrderDate":"1/3/2017","TotalPayment":"$453258.26","Status":3,"Type":3},{"OrderID":"66689-403","ShipCountry":"JP","ShipAddress":"47 Eliot Plaza","ShipName":"Considine and Sons","OrderDate":"4/10/2017","TotalPayment":"$251817.62","Status":2,"Type":2},{"OrderID":"0363-0243","ShipCountry":"CN","ShipAddress":"3 Forest Dale Road","ShipName":"Schultz-Kris","OrderDate":"6/4/2017","TotalPayment":"$375189.89","Status":3,"Type":3},{"OrderID":"49884-428","ShipCountry":"MX","ShipAddress":"9 Mariners Cove Drive","ShipName":"Kuhlman-Boyle","OrderDate":"8/2/2016","TotalPayment":"$972935.79","Status":5,"Type":2},{"OrderID":"51621-039","ShipCountry":"PT","ShipAddress":"507 Rusk Parkway","ShipName":"Durgan, Kovacek and Jacobson","OrderDate":"2/23/2016","TotalPayment":"$433218.42","Status":1,"Type":2},{"OrderID":"58593-781","ShipCountry":"CN","ShipAddress":"458 Nancy Place","ShipName":"Dietrich-Dickinson","OrderDate":"9/5/2016","TotalPayment":"$235824.28","Status":4,"Type":1},{"OrderID":"64942-1148","ShipCountry":"ID","ShipAddress":"3327 Manitowish Point","ShipName":"Lesch, Bednar and Abshire","OrderDate":"3/11/2016","TotalPayment":"$585752.92","Status":1,"Type":1},{"OrderID":"0591-2070","ShipCountry":"AR","ShipAddress":"83 Emmet Junction","ShipName":"Kohler, Jacobson and Corwin","OrderDate":"3/2/2016","TotalPayment":"$938636.74","Status":5,"Type":1},{"OrderID":"54569-4816","ShipCountry":"CA","ShipAddress":"4 Pepper Wood Park","ShipName":"Quigley-Mueller","OrderDate":"2/28/2016","TotalPayment":"$1103636.02","Status":5,"Type":2},{"OrderID":"33261-132","ShipCountry":"CA","ShipAddress":"5 Kropf Place","ShipName":"Larson LLC","OrderDate":"2/11/2017","TotalPayment":"$1089298.44","Status":4,"Type":1},{"OrderID":"65862-148","ShipCountry":"ID","ShipAddress":"440 Washington Lane","ShipName":"Kulas, Windler and Dickinson","OrderDate":"9/1/2016","TotalPayment":"$502823.71","Status":4,"Type":3}]},\n{"RecordID":117,"FirstName":"Randell","LastName":"Guidini","Company":"Jazzy","Email":"rguidini38@redcross.org","Phone":"662-493-4263","Status":2,"Type":1,"Orders":[{"OrderID":"0054-0002","ShipCountry":"CN","ShipAddress":"74026 Del Sol Alley","ShipName":"Herzog-Becker","OrderDate":"10/30/2016","TotalPayment":"$398358.84","Status":3,"Type":2},{"OrderID":"0065-0429","ShipCountry":"TH","ShipAddress":"24795 Kings Court","ShipName":"Windler, Reynolds and Luettgen","OrderDate":"10/12/2016","TotalPayment":"$363683.75","Status":6,"Type":2},{"OrderID":"60793-854","ShipCountry":"CO","ShipAddress":"02 Ohio Alley","ShipName":"Turner, Spencer and McCullough","OrderDate":"4/23/2017","TotalPayment":"$777032.92","Status":1,"Type":3},{"OrderID":"11673-160","ShipCountry":"PA","ShipAddress":"43 Huxley Junction","ShipName":"Robel, Tremblay and Orn","OrderDate":"5/31/2016","TotalPayment":"$116569.54","Status":1,"Type":2},{"OrderID":"59535-5001","ShipCountry":"CN","ShipAddress":"049 Nancy Terrace","ShipName":"Brown LLC","OrderDate":"7/24/2016","TotalPayment":"$128038.41","Status":2,"Type":1},{"OrderID":"24488-001","ShipCountry":"RU","ShipAddress":"50384 Beilfuss Terrace","ShipName":"Bogan-Gerlach","OrderDate":"1/2/2016","TotalPayment":"$547262.41","Status":1,"Type":1},{"OrderID":"57955-1804","ShipCountry":"CN","ShipAddress":"3274 Valley Edge Hill","ShipName":"Becker Inc","OrderDate":"2/1/2017","TotalPayment":"$133729.75","Status":4,"Type":3},{"OrderID":"76329-3013","ShipCountry":"PA","ShipAddress":"81103 Scofield Court","ShipName":"Oberbrunner, Ledner and Cartwright","OrderDate":"12/21/2017","TotalPayment":"$208474.17","Status":1,"Type":2},{"OrderID":"11559-020","ShipCountry":"CL","ShipAddress":"6423 Utah Way","ShipName":"Morar, Koss and Bernier","OrderDate":"11/18/2016","TotalPayment":"$1182193.15","Status":6,"Type":2},{"OrderID":"16590-230","ShipCountry":"BD","ShipAddress":"44843 Helena Street","ShipName":"Jacobi-Torphy","OrderDate":"5/14/2016","TotalPayment":"$1196232.36","Status":6,"Type":1},{"OrderID":"62175-570","ShipCountry":"ID","ShipAddress":"76 Bultman Pass","ShipName":"Herzog, Kling and Hoeger","OrderDate":"6/18/2017","TotalPayment":"$665155.70","Status":2,"Type":3},{"OrderID":"65841-631","ShipCountry":"JP","ShipAddress":"854 Surrey Crossing","ShipName":"Rice, MacGyver and Tillman","OrderDate":"11/20/2016","TotalPayment":"$508760.26","Status":6,"Type":3},{"OrderID":"49349-779","ShipCountry":"RU","ShipAddress":"29 Gale Junction","ShipName":"Schamberger Inc","OrderDate":"1/2/2016","TotalPayment":"$147583.12","Status":6,"Type":3},{"OrderID":"41250-959","ShipCountry":"CN","ShipAddress":"4412 Troy Road","ShipName":"Kuvalis-Towne","OrderDate":"5/23/2017","TotalPayment":"$577874.99","Status":6,"Type":2},{"OrderID":"0378-3020","ShipCountry":"MA","ShipAddress":"6187 Dwight Way","ShipName":"Ledner Inc","OrderDate":"7/20/2017","TotalPayment":"$1063539.45","Status":2,"Type":1},{"OrderID":"76138-104","ShipCountry":"CN","ShipAddress":"6826 Barby Avenue","ShipName":"O\'Connell-Adams","OrderDate":"1/31/2017","TotalPayment":"$542363.32","Status":3,"Type":3},{"OrderID":"49349-790","ShipCountry":"RU","ShipAddress":"3 Vahlen Lane","ShipName":"Zulauf, O\'Keefe and Ernser","OrderDate":"10/3/2016","TotalPayment":"$195388.35","Status":6,"Type":1},{"OrderID":"61062-0008","ShipCountry":"UA","ShipAddress":"11048 Summit Center","ShipName":"Ondricka-Kerluke","OrderDate":"1/8/2017","TotalPayment":"$156274.48","Status":3,"Type":3},{"OrderID":"63187-114","ShipCountry":"MX","ShipAddress":"39 Hallows Court","ShipName":"Casper Inc","OrderDate":"11/22/2017","TotalPayment":"$1110387.71","Status":2,"Type":2},{"OrderID":"36987-2247","ShipCountry":"RU","ShipAddress":"2 Sommers Center","ShipName":"Pfeffer Group","OrderDate":"9/16/2017","TotalPayment":"$1157405.88","Status":4,"Type":2}]},\n{"RecordID":118,"FirstName":"Cecily","LastName":"Pinkie","Company":"Fadeo","Email":"cpinkie39@earthlink.net","Phone":"443-263-4334","Status":1,"Type":2,"Orders":[{"OrderID":"69153-020","ShipCountry":"CN","ShipAddress":"45379 Hermina Park","ShipName":"Harris, Mosciski and White","OrderDate":"12/1/2016","TotalPayment":"$683959.81","Status":2,"Type":3},{"OrderID":"13267-123","ShipCountry":"CN","ShipAddress":"5118 Bobwhite Avenue","ShipName":"Thompson and Sons","OrderDate":"6/21/2017","TotalPayment":"$253839.37","Status":6,"Type":3},{"OrderID":"67777-214","ShipCountry":"TZ","ShipAddress":"74187 Sheridan Circle","ShipName":"Runte LLC","OrderDate":"1/13/2016","TotalPayment":"$769638.97","Status":5,"Type":3},{"OrderID":"53808-0707","ShipCountry":"RU","ShipAddress":"8 Erie Place","ShipName":"Hintz-VonRueden","OrderDate":"8/27/2016","TotalPayment":"$659561.87","Status":4,"Type":2},{"OrderID":"59535-1051","ShipCountry":"BA","ShipAddress":"33 Summerview Place","ShipName":"Boyle LLC","OrderDate":"7/4/2016","TotalPayment":"$101769.98","Status":1,"Type":3},{"OrderID":"68788-9219","ShipCountry":"TH","ShipAddress":"6167 Sycamore Court","ShipName":"Herman-Tillman","OrderDate":"9/2/2016","TotalPayment":"$674513.01","Status":6,"Type":3},{"OrderID":"68645-483","ShipCountry":"FR","ShipAddress":"68756 Schurz Point","ShipName":"Mosciski, Stehr and Corkery","OrderDate":"3/19/2017","TotalPayment":"$1020130.89","Status":6,"Type":3},{"OrderID":"50436-3155","ShipCountry":"FR","ShipAddress":"6 Northport Center","ShipName":"Simonis, Emmerich and Wolf","OrderDate":"11/6/2017","TotalPayment":"$640544.47","Status":2,"Type":1},{"OrderID":"66993-464","ShipCountry":"CN","ShipAddress":"9 Manitowish Alley","ShipName":"O\'Reilly, Hodkiewicz and Heaney","OrderDate":"6/23/2017","TotalPayment":"$230347.50","Status":6,"Type":1},{"OrderID":"48951-7051","ShipCountry":"CN","ShipAddress":"21 Utah Center","ShipName":"Kautzer and Sons","OrderDate":"8/12/2017","TotalPayment":"$857645.46","Status":1,"Type":2},{"OrderID":"63539-183","ShipCountry":"PH","ShipAddress":"54 Summerview Road","ShipName":"Gusikowski Inc","OrderDate":"10/17/2017","TotalPayment":"$631111.33","Status":3,"Type":1},{"OrderID":"55390-194","ShipCountry":"UA","ShipAddress":"324 Sherman Road","ShipName":"Wuckert, Kozey and Schimmel","OrderDate":"6/10/2016","TotalPayment":"$484452.04","Status":6,"Type":3}]},\n{"RecordID":119,"FirstName":"Welch","LastName":"Demageard","Company":"Innojam","Email":"wdemageard3a@twitter.com","Phone":"537-759-3449","Status":1,"Type":1,"Orders":[{"OrderID":"60778-010","ShipCountry":"AL","ShipAddress":"6841 Sachtjen Alley","ShipName":"Corwin Group","OrderDate":"5/13/2017","TotalPayment":"$441561.46","Status":6,"Type":2},{"OrderID":"37000-845","ShipCountry":"FR","ShipAddress":"00 David Plaza","ShipName":"Zieme-Considine","OrderDate":"10/2/2016","TotalPayment":"$79006.68","Status":4,"Type":3},{"OrderID":"48951-9015","ShipCountry":"PY","ShipAddress":"3800 Lakewood Gardens Drive","ShipName":"Hills, Lesch and Lockman","OrderDate":"12/28/2017","TotalPayment":"$654299.71","Status":4,"Type":1},{"OrderID":"49035-447","ShipCountry":"CN","ShipAddress":"26376 Montana Pass","ShipName":"Pfeffer, Kemmer and Leannon","OrderDate":"3/21/2017","TotalPayment":"$237588.01","Status":1,"Type":2},{"OrderID":"37012-227","ShipCountry":"RU","ShipAddress":"07164 South Park","ShipName":"Bahringer Inc","OrderDate":"8/28/2017","TotalPayment":"$1130012.52","Status":1,"Type":2},{"OrderID":"49348-276","ShipCountry":"CN","ShipAddress":"51 Coleman Place","ShipName":"Turner-Stroman","OrderDate":"11/25/2016","TotalPayment":"$142365.07","Status":6,"Type":3},{"OrderID":"0703-5046","ShipCountry":"PL","ShipAddress":"1766 Rutledge Drive","ShipName":"Stamm, Schaden and Flatley","OrderDate":"10/5/2017","TotalPayment":"$913548.88","Status":4,"Type":3},{"OrderID":"65044-2631","ShipCountry":"CO","ShipAddress":"72778 Anhalt Road","ShipName":"Shields, Treutel and Bins","OrderDate":"6/10/2016","TotalPayment":"$222135.91","Status":4,"Type":3},{"OrderID":"37205-719","ShipCountry":"IE","ShipAddress":"67 Village Point","ShipName":"McKenzie-Walter","OrderDate":"4/4/2017","TotalPayment":"$1052775.85","Status":4,"Type":2},{"OrderID":"0363-8480","ShipCountry":"CL","ShipAddress":"957 Monument Hill","ShipName":"Okuneva-Senger","OrderDate":"7/4/2016","TotalPayment":"$575992.01","Status":2,"Type":2},{"OrderID":"11527-161","ShipCountry":"CN","ShipAddress":"9038 Tennyson Circle","ShipName":"Volkman-Gleichner","OrderDate":"10/30/2017","TotalPayment":"$1113166.69","Status":6,"Type":3},{"OrderID":"41190-477","ShipCountry":"CZ","ShipAddress":"69409 5th Avenue","ShipName":"Hansen, Monahan and Nitzsche","OrderDate":"4/4/2017","TotalPayment":"$1073139.30","Status":2,"Type":2},{"OrderID":"43742-0136","ShipCountry":"RU","ShipAddress":"050 Melody Lane","ShipName":"Kassulke-Beatty","OrderDate":"5/19/2016","TotalPayment":"$854570.14","Status":1,"Type":1},{"OrderID":"59735-314","ShipCountry":"PL","ShipAddress":"7 Spohn Point","ShipName":"Walker-Carter","OrderDate":"12/11/2016","TotalPayment":"$788551.03","Status":2,"Type":2},{"OrderID":"54868-3230","ShipCountry":"BH","ShipAddress":"91 Longview Lane","ShipName":"Haley Group","OrderDate":"9/11/2017","TotalPayment":"$305037.84","Status":2,"Type":1},{"OrderID":"64942-1122","ShipCountry":"US","ShipAddress":"9562 Di Loreto Circle","ShipName":"Crona-Nikolaus","OrderDate":"4/13/2016","TotalPayment":"$1192061.30","Status":4,"Type":1},{"OrderID":"68828-142","ShipCountry":"SE","ShipAddress":"73 Oakridge Street","ShipName":"Volkman, Barrows and Schuster","OrderDate":"7/15/2017","TotalPayment":"$987848.70","Status":1,"Type":3}]},\n{"RecordID":120,"FirstName":"Tybi","LastName":"Izacenko","Company":"Buzzster","Email":"tizacenko3b@pen.io","Phone":"540-411-1230","Status":3,"Type":2,"Orders":[{"OrderID":"11822-0397","ShipCountry":"PT","ShipAddress":"0081 Mallard Trail","ShipName":"Maggio-Wunsch","OrderDate":"3/23/2016","TotalPayment":"$913132.87","Status":2,"Type":1},{"OrderID":"17518-056","ShipCountry":"SE","ShipAddress":"6 Little Fleur Way","ShipName":"Cassin, Koelpin and Corkery","OrderDate":"10/21/2016","TotalPayment":"$869918.88","Status":5,"Type":2},{"OrderID":"0268-6732","ShipCountry":"RU","ShipAddress":"3925 Eliot Drive","ShipName":"Murphy-Kuhlman","OrderDate":"12/2/2017","TotalPayment":"$64182.96","Status":5,"Type":1},{"OrderID":"0363-0452","ShipCountry":"BR","ShipAddress":"466 Homewood Trail","ShipName":"Schmidt, Wintheiser and Casper","OrderDate":"10/3/2016","TotalPayment":"$437818.67","Status":3,"Type":1},{"OrderID":"0115-9611","ShipCountry":"PH","ShipAddress":"1954 Katie Way","ShipName":"Wilkinson, Hegmann and Beatty","OrderDate":"12/28/2017","TotalPayment":"$1179874.84","Status":1,"Type":2},{"OrderID":"0363-0698","ShipCountry":"AU","ShipAddress":"0 Northridge Avenue","ShipName":"Ankunding, Crist and Hessel","OrderDate":"6/12/2016","TotalPayment":"$1118420.91","Status":4,"Type":1},{"OrderID":"48878-4020","ShipCountry":"JP","ShipAddress":"66 Amoth Avenue","ShipName":"Renner Inc","OrderDate":"1/17/2016","TotalPayment":"$1127342.65","Status":6,"Type":3},{"OrderID":"64117-213","ShipCountry":"PL","ShipAddress":"96 Monica Pass","ShipName":"Cruickshank-Dooley","OrderDate":"4/19/2017","TotalPayment":"$202143.17","Status":2,"Type":3},{"OrderID":"55154-4728","ShipCountry":"PH","ShipAddress":"055 Morrow Crossing","ShipName":"Fritsch LLC","OrderDate":"11/26/2017","TotalPayment":"$168356.17","Status":4,"Type":3},{"OrderID":"0078-0325","ShipCountry":"GR","ShipAddress":"02 Superior Park","ShipName":"Bernier Inc","OrderDate":"10/24/2016","TotalPayment":"$901834.89","Status":4,"Type":3},{"OrderID":"68151-0526","ShipCountry":"BR","ShipAddress":"815 Sage Junction","ShipName":"Wehner, Nikolaus and Fisher","OrderDate":"1/12/2017","TotalPayment":"$726327.73","Status":3,"Type":1},{"OrderID":"43419-034","ShipCountry":"TH","ShipAddress":"89642 Talmadge Street","ShipName":"Keeling, D\'Amore and Senger","OrderDate":"8/14/2017","TotalPayment":"$857283.01","Status":2,"Type":1},{"OrderID":"65044-2126","ShipCountry":"BR","ShipAddress":"2 Marcy Parkway","ShipName":"Cruickshank LLC","OrderDate":"1/23/2017","TotalPayment":"$1058633.63","Status":2,"Type":2},{"OrderID":"76058-101","ShipCountry":"CN","ShipAddress":"9 Hudson Court","ShipName":"Treutel and Sons","OrderDate":"8/27/2017","TotalPayment":"$1031333.28","Status":1,"Type":1},{"OrderID":"54868-6157","ShipCountry":"CN","ShipAddress":"31847 Scoville Parkway","ShipName":"Schuster-Ledner","OrderDate":"8/13/2016","TotalPayment":"$482608.75","Status":1,"Type":2},{"OrderID":"37808-085","ShipCountry":"MX","ShipAddress":"82 Oakridge Lane","ShipName":"Ruecker, Buckridge and Kub","OrderDate":"2/8/2017","TotalPayment":"$604069.62","Status":3,"Type":2},{"OrderID":"52125-957","ShipCountry":"CN","ShipAddress":"6681 Arapahoe Junction","ShipName":"Zieme-Kemmer","OrderDate":"2/22/2017","TotalPayment":"$475675.59","Status":5,"Type":3}]},\n{"RecordID":121,"FirstName":"Mercy","LastName":"Blakeden","Company":"Edgeblab","Email":"mblakeden3c@apple.com","Phone":"582-443-0925","Status":2,"Type":3,"Orders":[{"OrderID":"0591-0397","ShipCountry":"PL","ShipAddress":"9271 Cherokee Trail","ShipName":"Goodwin-Monahan","OrderDate":"12/30/2017","TotalPayment":"$94214.30","Status":1,"Type":2},{"OrderID":"0378-9080","ShipCountry":"CZ","ShipAddress":"0493 Caliangt Court","ShipName":"Bergstrom, Wolff and Braun","OrderDate":"5/20/2017","TotalPayment":"$399495.51","Status":4,"Type":1},{"OrderID":"55154-4787","ShipCountry":"US","ShipAddress":"5 Hoffman Circle","ShipName":"Runolfsdottir-Robel","OrderDate":"7/17/2017","TotalPayment":"$989598.47","Status":1,"Type":1},{"OrderID":"52125-335","ShipCountry":"FI","ShipAddress":"1 Dexter Terrace","ShipName":"Breitenberg-Skiles","OrderDate":"2/17/2016","TotalPayment":"$760962.50","Status":2,"Type":2},{"OrderID":"13668-149","ShipCountry":"RU","ShipAddress":"850 Redwing Place","ShipName":"Kautzer, VonRueden and Hessel","OrderDate":"4/18/2016","TotalPayment":"$168570.70","Status":2,"Type":2},{"OrderID":"65862-186","ShipCountry":"UA","ShipAddress":"37 Menomonie Center","ShipName":"Farrell LLC","OrderDate":"12/8/2016","TotalPayment":"$743720.11","Status":6,"Type":3},{"OrderID":"0591-0860","ShipCountry":"IS","ShipAddress":"8542 Florence Point","ShipName":"Frami-Jacobi","OrderDate":"2/2/2016","TotalPayment":"$165660.23","Status":3,"Type":3},{"OrderID":"54569-0330","ShipCountry":"CZ","ShipAddress":"7 Atwood Plaza","ShipName":"Barrows Group","OrderDate":"9/25/2016","TotalPayment":"$889252.39","Status":5,"Type":2},{"OrderID":"23155-196","ShipCountry":"HN","ShipAddress":"4 Fulton Junction","ShipName":"Moen Inc","OrderDate":"7/27/2017","TotalPayment":"$367813.40","Status":5,"Type":2},{"OrderID":"49349-607","ShipCountry":"ID","ShipAddress":"5490 Mccormick Trail","ShipName":"Crooks-Cummings","OrderDate":"6/26/2017","TotalPayment":"$1104780.46","Status":2,"Type":2}]},\n{"RecordID":122,"FirstName":"Dusty","LastName":"Stailey","Company":"Kazu","Email":"dstailey3d@bigcartel.com","Phone":"188-497-1628","Status":4,"Type":1,"Orders":[{"OrderID":"43386-712","ShipCountry":"CN","ShipAddress":"82 Tennyson Alley","ShipName":"Boehm Inc","OrderDate":"12/15/2016","TotalPayment":"$960379.91","Status":2,"Type":2},{"OrderID":"60760-429","ShipCountry":"CN","ShipAddress":"090 Cordelia Place","ShipName":"Keeling, Carter and Haag","OrderDate":"4/14/2017","TotalPayment":"$1026759.17","Status":6,"Type":3},{"OrderID":"59779-087","ShipCountry":"AZ","ShipAddress":"05 Tennyson Avenue","ShipName":"Rippin-Bruen","OrderDate":"7/5/2017","TotalPayment":"$478596.47","Status":5,"Type":1},{"OrderID":"33261-756","ShipCountry":"CN","ShipAddress":"257 Anniversary Road","ShipName":"Schaden-Runolfsson","OrderDate":"2/12/2016","TotalPayment":"$968094.77","Status":1,"Type":1},{"OrderID":"0074-3079","ShipCountry":"NG","ShipAddress":"86042 Fulton Park","ShipName":"Kub, Thiel and Thiel","OrderDate":"3/3/2016","TotalPayment":"$310592.46","Status":1,"Type":2},{"OrderID":"63783-400","ShipCountry":"JM","ShipAddress":"8333 Thackeray Place","ShipName":"Hintz-Rowe","OrderDate":"11/14/2017","TotalPayment":"$449804.81","Status":4,"Type":3},{"OrderID":"65923-012","ShipCountry":"BR","ShipAddress":"34 Dryden Drive","ShipName":"Herzog Group","OrderDate":"10/16/2017","TotalPayment":"$716772.27","Status":1,"Type":2},{"OrderID":"0093-5851","ShipCountry":"CN","ShipAddress":"6315 Derek Plaza","ShipName":"Rolfson Inc","OrderDate":"5/13/2017","TotalPayment":"$780421.26","Status":6,"Type":3},{"OrderID":"43478-241","ShipCountry":"PT","ShipAddress":"5 Brown Place","ShipName":"Buckridge-Denesik","OrderDate":"12/1/2017","TotalPayment":"$1096223.13","Status":2,"Type":2},{"OrderID":"30142-702","ShipCountry":"BR","ShipAddress":"5 Mcbride Road","ShipName":"Ruecker, Lakin and Boyer","OrderDate":"3/22/2016","TotalPayment":"$310927.49","Status":1,"Type":2},{"OrderID":"0615-7584","ShipCountry":"CN","ShipAddress":"90611 Sutherland Avenue","ShipName":"Runolfsson-Gusikowski","OrderDate":"12/27/2016","TotalPayment":"$782488.33","Status":6,"Type":3},{"OrderID":"68828-091","ShipCountry":"IL","ShipAddress":"5642 Memorial Hill","ShipName":"Boyle, Hintz and Streich","OrderDate":"2/25/2016","TotalPayment":"$431930.00","Status":1,"Type":1},{"OrderID":"11673-458","ShipCountry":"VE","ShipAddress":"79713 Judy Street","ShipName":"Dickinson-Armstrong","OrderDate":"6/2/2016","TotalPayment":"$384070.94","Status":3,"Type":3},{"OrderID":"76214-009","ShipCountry":"DK","ShipAddress":"9 Bartillon Plaza","ShipName":"Frami, Kunze and Greenfelder","OrderDate":"7/31/2017","TotalPayment":"$766397.21","Status":6,"Type":3},{"OrderID":"63739-964","ShipCountry":"PH","ShipAddress":"1 American Ash Way","ShipName":"Lubowitz-Rosenbaum","OrderDate":"9/19/2017","TotalPayment":"$863453.32","Status":5,"Type":1},{"OrderID":"16714-314","ShipCountry":"ID","ShipAddress":"12399 Bellgrove Court","ShipName":"Bode and Sons","OrderDate":"5/19/2016","TotalPayment":"$399420.85","Status":4,"Type":1}]},\n{"RecordID":123,"FirstName":"Ileane","LastName":"Culkin","Company":"Rhyzio","Email":"iculkin3e@utexas.edu","Phone":"361-836-2234","Status":3,"Type":1,"Orders":[{"OrderID":"45861-100","ShipCountry":"US","ShipAddress":"0231 Manitowish Junction","ShipName":"Hintz-Smith","OrderDate":"9/23/2017","TotalPayment":"$221401.39","Status":5,"Type":2},{"OrderID":"0186-1092","ShipCountry":"PT","ShipAddress":"19 Hooker Lane","ShipName":"Collins and Sons","OrderDate":"8/17/2017","TotalPayment":"$673320.78","Status":6,"Type":3},{"OrderID":"55714-8006","ShipCountry":"FR","ShipAddress":"42 Vernon Lane","ShipName":"Maggio-Torp","OrderDate":"7/16/2017","TotalPayment":"$589053.06","Status":6,"Type":1},{"OrderID":"0268-1435","ShipCountry":"RU","ShipAddress":"72 Vernon Hill","ShipName":"Schumm and Sons","OrderDate":"11/5/2017","TotalPayment":"$989835.47","Status":5,"Type":2},{"OrderID":"43742-0015","ShipCountry":"AM","ShipAddress":"32 Fairfield Court","ShipName":"Schultz, Cummings and Torphy","OrderDate":"7/17/2017","TotalPayment":"$740110.06","Status":1,"Type":3},{"OrderID":"68084-703","ShipCountry":"SE","ShipAddress":"8 Ludington Avenue","ShipName":"Heaney-Brekke","OrderDate":"6/14/2016","TotalPayment":"$243159.57","Status":4,"Type":1},{"OrderID":"49349-777","ShipCountry":"CN","ShipAddress":"55097 Melrose Pass","ShipName":"Little, Cormier and Fay","OrderDate":"6/23/2016","TotalPayment":"$1171651.75","Status":5,"Type":1},{"OrderID":"0338-1005","ShipCountry":"VE","ShipAddress":"17 Oneill Trail","ShipName":"Feest Inc","OrderDate":"10/4/2016","TotalPayment":"$1062960.61","Status":6,"Type":2},{"OrderID":"0338-0695","ShipCountry":"HU","ShipAddress":"504 Thierer Parkway","ShipName":"Wyman, Huels and Trantow","OrderDate":"1/17/2017","TotalPayment":"$109992.81","Status":4,"Type":3},{"OrderID":"58668-4101","ShipCountry":"MG","ShipAddress":"336 Luster Street","ShipName":"Collier Inc","OrderDate":"5/12/2016","TotalPayment":"$988503.27","Status":2,"Type":3},{"OrderID":"43853-0005","ShipCountry":"RU","ShipAddress":"77 Tennessee Street","ShipName":"Feil Group","OrderDate":"4/6/2017","TotalPayment":"$64272.93","Status":5,"Type":3},{"OrderID":"48951-1202","ShipCountry":"BO","ShipAddress":"803 Moose Place","ShipName":"Torp-Jacobson","OrderDate":"12/10/2017","TotalPayment":"$1125500.27","Status":1,"Type":1},{"OrderID":"51009-111","ShipCountry":"GR","ShipAddress":"829 Sloan Pass","ShipName":"VonRueden, Hudson and Williamson","OrderDate":"4/24/2017","TotalPayment":"$1095412.16","Status":5,"Type":3},{"OrderID":"52125-567","ShipCountry":"KR","ShipAddress":"249 Spohn Lane","ShipName":"Volkman and Sons","OrderDate":"11/1/2016","TotalPayment":"$588788.40","Status":5,"Type":3},{"OrderID":"66129-840","ShipCountry":"PH","ShipAddress":"0 Golf Course Way","ShipName":"Dare-Sipes","OrderDate":"4/11/2017","TotalPayment":"$367334.36","Status":1,"Type":3},{"OrderID":"52686-310","ShipCountry":"ZA","ShipAddress":"456 Lindbergh Center","ShipName":"Klein Group","OrderDate":"12/21/2016","TotalPayment":"$194501.65","Status":6,"Type":3},{"OrderID":"57344-133","ShipCountry":"PH","ShipAddress":"991 Raven Center","ShipName":"Williamson LLC","OrderDate":"5/31/2017","TotalPayment":"$901552.12","Status":6,"Type":1},{"OrderID":"68151-4488","ShipCountry":"CN","ShipAddress":"77373 Northfield Park","ShipName":"Muller LLC","OrderDate":"8/27/2017","TotalPayment":"$720130.06","Status":2,"Type":2},{"OrderID":"15127-595","ShipCountry":"SE","ShipAddress":"4 Old Gate Avenue","ShipName":"DuBuque, Greenfelder and Balistreri","OrderDate":"6/2/2017","TotalPayment":"$89390.86","Status":6,"Type":3}]},\n{"RecordID":124,"FirstName":"Avie","LastName":"Beric","Company":"Viva","Email":"aberic3f@google.com","Phone":"202-543-2464","Status":4,"Type":3,"Orders":[{"OrderID":"54973-3174","ShipCountry":"PL","ShipAddress":"1 Elka Way","ShipName":"Zboncak-Torp","OrderDate":"10/4/2017","TotalPayment":"$75383.16","Status":5,"Type":3},{"OrderID":"65862-228","ShipCountry":"TG","ShipAddress":"7 Jay Point","ShipName":"Marks Group","OrderDate":"1/13/2016","TotalPayment":"$405448.69","Status":2,"Type":3},{"OrderID":"43269-902","ShipCountry":"RU","ShipAddress":"74 Talisman Way","ShipName":"Mills Inc","OrderDate":"11/21/2017","TotalPayment":"$239545.89","Status":4,"Type":1},{"OrderID":"0264-4001","ShipCountry":"FI","ShipAddress":"9892 Susan Court","ShipName":"Howell-Mante","OrderDate":"6/5/2016","TotalPayment":"$497726.68","Status":4,"Type":1},{"OrderID":"16590-174","ShipCountry":"LT","ShipAddress":"33 Oak Drive","ShipName":"Witting LLC","OrderDate":"10/4/2016","TotalPayment":"$715587.89","Status":3,"Type":2},{"OrderID":"64942-1233","ShipCountry":"RU","ShipAddress":"2321 Tennyson Parkway","ShipName":"Quigley, Kutch and Mann","OrderDate":"3/27/2017","TotalPayment":"$690292.75","Status":5,"Type":3},{"OrderID":"98132-706","ShipCountry":"FI","ShipAddress":"01 Golf View Way","ShipName":"Kertzmann LLC","OrderDate":"9/12/2017","TotalPayment":"$438411.22","Status":1,"Type":3},{"OrderID":"43857-0166","ShipCountry":"RU","ShipAddress":"99 Sunbrook Junction","ShipName":"McLaughlin-Trantow","OrderDate":"6/23/2017","TotalPayment":"$307569.40","Status":1,"Type":3},{"OrderID":"55289-298","ShipCountry":"CN","ShipAddress":"610 Parkside Crossing","ShipName":"Langosh Inc","OrderDate":"9/6/2017","TotalPayment":"$692586.02","Status":3,"Type":2},{"OrderID":"49349-612","ShipCountry":"UG","ShipAddress":"1012 Rieder Place","ShipName":"Abernathy Group","OrderDate":"5/5/2016","TotalPayment":"$205787.49","Status":6,"Type":1}]},\n{"RecordID":125,"FirstName":"Gardiner","LastName":"Gorrie","Company":"Yodo","Email":"ggorrie3g@psu.edu","Phone":"703-624-6153","Status":2,"Type":2,"Orders":[{"OrderID":"54575-963","ShipCountry":"CR","ShipAddress":"40152 Muir Drive","ShipName":"Marks, Emard and Fay","OrderDate":"3/21/2017","TotalPayment":"$990299.45","Status":5,"Type":1},{"OrderID":"37205-308","ShipCountry":"PH","ShipAddress":"331 Harbort Crossing","ShipName":"Hoeger-Bode","OrderDate":"10/9/2017","TotalPayment":"$848108.31","Status":5,"Type":2},{"OrderID":"10578-032","ShipCountry":"CN","ShipAddress":"9345 Grasskamp Hill","ShipName":"Haley-Harris","OrderDate":"3/26/2017","TotalPayment":"$335821.14","Status":5,"Type":1},{"OrderID":"43386-530","ShipCountry":"ID","ShipAddress":"363 Westport Pass","ShipName":"Williamson, Sawayn and Prosacco","OrderDate":"7/5/2016","TotalPayment":"$808962.70","Status":3,"Type":2},{"OrderID":"76378-017","ShipCountry":"ID","ShipAddress":"797 Sachs Point","ShipName":"Schmitt Inc","OrderDate":"9/7/2017","TotalPayment":"$986373.86","Status":5,"Type":3},{"OrderID":"64159-6970","ShipCountry":"PH","ShipAddress":"967 Hermina Road","ShipName":"Goodwin Group","OrderDate":"2/8/2016","TotalPayment":"$733486.10","Status":2,"Type":2},{"OrderID":"10096-0253","ShipCountry":"CN","ShipAddress":"9942 Schurz Center","ShipName":"Schmidt-Bins","OrderDate":"3/13/2017","TotalPayment":"$251234.25","Status":3,"Type":1},{"OrderID":"37000-123","ShipCountry":"PH","ShipAddress":"29948 Forest Court","ShipName":"Pollich, Lesch and Lemke","OrderDate":"8/27/2017","TotalPayment":"$1013778.00","Status":3,"Type":1},{"OrderID":"49999-035","ShipCountry":"NL","ShipAddress":"1167 Kropf Trail","ShipName":"Murazik-Murray","OrderDate":"3/18/2017","TotalPayment":"$975004.31","Status":6,"Type":1},{"OrderID":"50111-326","ShipCountry":"PE","ShipAddress":"9 Scoville Junction","ShipName":"Smitham LLC","OrderDate":"5/22/2016","TotalPayment":"$1022474.85","Status":3,"Type":1},{"OrderID":"21695-477","ShipCountry":"PL","ShipAddress":"0 Steensland Way","ShipName":"Christiansen Inc","OrderDate":"7/8/2017","TotalPayment":"$979013.11","Status":4,"Type":2},{"OrderID":"60429-012","ShipCountry":"AM","ShipAddress":"64 Eggendart Crossing","ShipName":"Armstrong, Leannon and Stanton","OrderDate":"1/23/2016","TotalPayment":"$708305.00","Status":6,"Type":2},{"OrderID":"76439-269","ShipCountry":"RU","ShipAddress":"80 Green Avenue","ShipName":"Kihn, Lebsack and Gulgowski","OrderDate":"4/21/2017","TotalPayment":"$1010158.79","Status":4,"Type":2},{"OrderID":"60429-247","ShipCountry":"CA","ShipAddress":"69422 Eastwood Hill","ShipName":"Grimes-Yost","OrderDate":"7/11/2017","TotalPayment":"$533159.43","Status":4,"Type":2},{"OrderID":"68084-603","ShipCountry":"CN","ShipAddress":"6601 Mcguire Plaza","ShipName":"Lang LLC","OrderDate":"11/14/2017","TotalPayment":"$1020230.69","Status":5,"Type":3}]},\n{"RecordID":126,"FirstName":"Suzi","LastName":"Noseworthy","Company":"Aivee","Email":"snoseworthy3h@lycos.com","Phone":"670-352-0018","Status":4,"Type":2,"Orders":[{"OrderID":"41250-352","ShipCountry":"FR","ShipAddress":"09188 Pawling Crossing","ShipName":"Russel, Shields and Fisher","OrderDate":"1/24/2017","TotalPayment":"$800703.87","Status":6,"Type":3},{"OrderID":"52731-7050","ShipCountry":"RU","ShipAddress":"6 Gerald Terrace","ShipName":"Kub, Gutkowski and Greenholt","OrderDate":"9/9/2016","TotalPayment":"$369642.16","Status":2,"Type":3},{"OrderID":"59779-811","ShipCountry":"PE","ShipAddress":"72 Larry Terrace","ShipName":"Quigley, Predovic and Jaskolski","OrderDate":"11/3/2017","TotalPayment":"$839557.95","Status":6,"Type":1},{"OrderID":"54868-6222","ShipCountry":"FR","ShipAddress":"9 Carpenter Plaza","ShipName":"Walter, Hane and Waelchi","OrderDate":"6/25/2017","TotalPayment":"$164969.57","Status":5,"Type":2},{"OrderID":"49738-206","ShipCountry":"US","ShipAddress":"189 Westridge Street","ShipName":"Walker-Maggio","OrderDate":"4/16/2017","TotalPayment":"$182865.46","Status":2,"Type":2},{"OrderID":"0051-8425","ShipCountry":"CN","ShipAddress":"6 Porter Drive","ShipName":"Bernhard, Bernhard and Zemlak","OrderDate":"3/9/2016","TotalPayment":"$996835.51","Status":5,"Type":2},{"OrderID":"11084-533","ShipCountry":"CN","ShipAddress":"714 Elka Circle","ShipName":"Kohler-Gulgowski","OrderDate":"11/14/2017","TotalPayment":"$420169.01","Status":3,"Type":3},{"OrderID":"55319-510","ShipCountry":"HU","ShipAddress":"00062 Graceland Lane","ShipName":"Streich, Bernhard and Hyatt","OrderDate":"12/12/2017","TotalPayment":"$784793.73","Status":3,"Type":3}]},\n{"RecordID":127,"FirstName":"Leola","LastName":"Audenis","Company":"Gabspot","Email":"laudenis3i@irs.gov","Phone":"709-249-8178","Status":3,"Type":1,"Orders":[{"OrderID":"55312-358","ShipCountry":"CR","ShipAddress":"3558 Loomis Road","ShipName":"Will, Kutch and Kassulke","OrderDate":"3/26/2017","TotalPayment":"$557390.42","Status":5,"Type":1},{"OrderID":"37000-606","ShipCountry":"PH","ShipAddress":"9284 Mosinee Trail","ShipName":"Friesen-Denesik","OrderDate":"11/28/2016","TotalPayment":"$846856.24","Status":4,"Type":1},{"OrderID":"59078-028","ShipCountry":"US","ShipAddress":"32 Michigan Parkway","ShipName":"D\'Amore-Johnson","OrderDate":"1/12/2016","TotalPayment":"$1130994.35","Status":5,"Type":1},{"OrderID":"0268-1062","ShipCountry":"RU","ShipAddress":"3184 Hanson Terrace","ShipName":"Kilback, Sauer and Dare","OrderDate":"1/15/2016","TotalPayment":"$618206.91","Status":4,"Type":2},{"OrderID":"51334-0001","ShipCountry":"CN","ShipAddress":"9067 Lakewood Lane","ShipName":"Rowe Group","OrderDate":"12/30/2017","TotalPayment":"$326162.55","Status":6,"Type":3},{"OrderID":"41163-173","ShipCountry":"JP","ShipAddress":"7985 Mallard Hill","ShipName":"Macejkovic, Rutherford and Ward","OrderDate":"3/25/2016","TotalPayment":"$1014820.07","Status":2,"Type":2},{"OrderID":"0143-1765","ShipCountry":"CN","ShipAddress":"0160 Anniversary Avenue","ShipName":"Carroll, Carroll and Bednar","OrderDate":"5/16/2017","TotalPayment":"$864452.99","Status":5,"Type":3},{"OrderID":"54868-6745","ShipCountry":"BR","ShipAddress":"049 Katie Junction","ShipName":"Gleason, Kerluke and Gutkowski","OrderDate":"4/11/2016","TotalPayment":"$1136115.08","Status":1,"Type":2},{"OrderID":"55154-0910","ShipCountry":"PK","ShipAddress":"0 Waxwing Alley","ShipName":"Gleason, Okuneva and Willms","OrderDate":"4/17/2017","TotalPayment":"$471296.57","Status":5,"Type":3},{"OrderID":"52544-930","ShipCountry":"CL","ShipAddress":"7 Transport Place","ShipName":"Kutch and Sons","OrderDate":"7/29/2016","TotalPayment":"$108988.26","Status":5,"Type":2},{"OrderID":"55312-843","ShipCountry":"SY","ShipAddress":"91745 Lakeland Center","ShipName":"Moore-Huel","OrderDate":"12/29/2017","TotalPayment":"$345058.30","Status":2,"Type":2},{"OrderID":"51808-206","ShipCountry":"CN","ShipAddress":"998 Mandrake Crossing","ShipName":"Feest, Boehm and Torphy","OrderDate":"3/4/2016","TotalPayment":"$1174200.13","Status":1,"Type":3},{"OrderID":"0591-3494","ShipCountry":"CN","ShipAddress":"5 Parkside Lane","ShipName":"Trantow, Haag and Williamson","OrderDate":"9/11/2017","TotalPayment":"$39212.01","Status":3,"Type":2},{"OrderID":"36987-3278","ShipCountry":"BR","ShipAddress":"6356 North Avenue","ShipName":"Feest-Abshire","OrderDate":"8/2/2016","TotalPayment":"$238230.92","Status":2,"Type":3},{"OrderID":"68428-156","ShipCountry":"CN","ShipAddress":"586 Sheridan Lane","ShipName":"Rolfson-Schiller","OrderDate":"12/24/2017","TotalPayment":"$936629.83","Status":4,"Type":2},{"OrderID":"42254-190","ShipCountry":"CZ","ShipAddress":"279 Pepper Wood Alley","ShipName":"Herzog, Denesik and Fadel","OrderDate":"2/15/2017","TotalPayment":"$227065.49","Status":1,"Type":1}]},\n{"RecordID":128,"FirstName":"Catie","LastName":"Mapstone","Company":"Latz","Email":"cmapstone3j@uiuc.edu","Phone":"595-921-8691","Status":4,"Type":3,"Orders":[{"OrderID":"24338-300","ShipCountry":"KP","ShipAddress":"7949 Ludington Pass","ShipName":"Romaguera-Wuckert","OrderDate":"6/11/2017","TotalPayment":"$1112687.03","Status":5,"Type":1},{"OrderID":"61442-171","ShipCountry":"ID","ShipAddress":"4 Bayside Center","ShipName":"Beahan LLC","OrderDate":"1/7/2016","TotalPayment":"$656246.45","Status":6,"Type":1},{"OrderID":"46123-006","ShipCountry":"BR","ShipAddress":"2131 Browning Circle","ShipName":"Schuppe, Konopelski and Johnson","OrderDate":"7/8/2017","TotalPayment":"$1064465.35","Status":6,"Type":2},{"OrderID":"64942-1186","ShipCountry":"PH","ShipAddress":"5 Union Court","ShipName":"Gerlach, Batz and Nicolas","OrderDate":"10/13/2016","TotalPayment":"$678329.02","Status":1,"Type":1},{"OrderID":"0781-2865","ShipCountry":"UA","ShipAddress":"43305 Pearson Way","ShipName":"Weimann, Marks and Thiel","OrderDate":"3/19/2017","TotalPayment":"$679657.38","Status":2,"Type":1},{"OrderID":"21695-801","ShipCountry":"SI","ShipAddress":"812 Hintze Crossing","ShipName":"Hodkiewicz, Littel and Hartmann","OrderDate":"7/26/2016","TotalPayment":"$1110397.93","Status":5,"Type":1},{"OrderID":"43353-757","ShipCountry":"ID","ShipAddress":"9669 Ludington Court","ShipName":"Sawayn and Sons","OrderDate":"1/2/2017","TotalPayment":"$763290.33","Status":1,"Type":2},{"OrderID":"0093-4030","ShipCountry":"SV","ShipAddress":"0707 Huxley Plaza","ShipName":"Keebler-Padberg","OrderDate":"8/24/2016","TotalPayment":"$1084459.73","Status":4,"Type":2},{"OrderID":"65310-002","ShipCountry":"ID","ShipAddress":"3776 Dorton Junction","ShipName":"Bahringer, Gottlieb and Johnston","OrderDate":"8/5/2017","TotalPayment":"$381154.24","Status":2,"Type":2},{"OrderID":"0703-4686","ShipCountry":"SY","ShipAddress":"70296 Sheridan Street","ShipName":"Mills-Ward","OrderDate":"6/16/2017","TotalPayment":"$331409.44","Status":4,"Type":2},{"OrderID":"49035-014","ShipCountry":"ID","ShipAddress":"54072 Pleasure Place","ShipName":"Goyette-Will","OrderDate":"9/13/2016","TotalPayment":"$1104359.76","Status":4,"Type":1},{"OrderID":"14783-272","ShipCountry":"VE","ShipAddress":"65 Boyd Plaza","ShipName":"Swift-Gutmann","OrderDate":"12/6/2016","TotalPayment":"$11031.31","Status":1,"Type":2},{"OrderID":"10096-0221","ShipCountry":"PH","ShipAddress":"4972 Red Cloud Street","ShipName":"Langworth, Borer and Corkery","OrderDate":"12/9/2016","TotalPayment":"$785314.17","Status":4,"Type":1},{"OrderID":"44911-0042","ShipCountry":"JP","ShipAddress":"217 Sage Crossing","ShipName":"Bruen Inc","OrderDate":"12/15/2017","TotalPayment":"$983034.00","Status":1,"Type":2},{"OrderID":"68472-108","ShipCountry":"CN","ShipAddress":"834 Dexter Point","ShipName":"Christiansen and Sons","OrderDate":"3/26/2016","TotalPayment":"$511734.18","Status":5,"Type":1},{"OrderID":"0085-0314","ShipCountry":"CZ","ShipAddress":"2 Packers Center","ShipName":"Upton-Jacobs","OrderDate":"12/1/2016","TotalPayment":"$959233.76","Status":1,"Type":2},{"OrderID":"64117-138","ShipCountry":"TH","ShipAddress":"889 Stephen Hill","ShipName":"Bode-Little","OrderDate":"6/18/2017","TotalPayment":"$626006.72","Status":2,"Type":2}]},\n{"RecordID":129,"FirstName":"Barny","LastName":"Trevan","Company":"Fatz","Email":"btrevan3k@scribd.com","Phone":"313-456-4274","Status":2,"Type":3,"Orders":[{"OrderID":"68788-9871","ShipCountry":"PE","ShipAddress":"55 Nobel Center","ShipName":"Schuster, Kunze and Lebsack","OrderDate":"7/16/2017","TotalPayment":"$1006476.19","Status":3,"Type":2},{"OrderID":"65044-2101","ShipCountry":"AM","ShipAddress":"75 Mallory Alley","ShipName":"Robel Group","OrderDate":"2/12/2017","TotalPayment":"$256811.31","Status":4,"Type":3},{"OrderID":"42291-801","ShipCountry":"CN","ShipAddress":"96738 Lotheville Place","ShipName":"Beatty, Luettgen and Koch","OrderDate":"7/5/2016","TotalPayment":"$824205.11","Status":2,"Type":3},{"OrderID":"50988-170","ShipCountry":"ME","ShipAddress":"4 Eliot Way","ShipName":"Bashirian and Sons","OrderDate":"4/7/2017","TotalPayment":"$1088212.02","Status":4,"Type":1},{"OrderID":"24286-1521","ShipCountry":"CZ","ShipAddress":"9 Sundown Trail","ShipName":"Kohler, Cassin and Hilll","OrderDate":"11/15/2017","TotalPayment":"$711456.21","Status":6,"Type":3},{"OrderID":"63481-907","ShipCountry":"JP","ShipAddress":"1542 East Circle","ShipName":"Moen, Bergstrom and Franecki","OrderDate":"12/26/2017","TotalPayment":"$330710.18","Status":4,"Type":3},{"OrderID":"58668-1971","ShipCountry":"GR","ShipAddress":"617 Merry Way","ShipName":"Haag, Osinski and Quigley","OrderDate":"5/22/2017","TotalPayment":"$881469.73","Status":2,"Type":3}]},\n{"RecordID":130,"FirstName":"Patience","LastName":"Haken","Company":"Mynte","Email":"phaken3l@state.tx.us","Phone":"796-932-3331","Status":3,"Type":1,"Orders":[{"OrderID":"0268-6319","ShipCountry":"US","ShipAddress":"5280 Chinook Terrace","ShipName":"Barton-Langosh","OrderDate":"6/13/2016","TotalPayment":"$1112416.97","Status":6,"Type":1},{"OrderID":"0378-2071","ShipCountry":"ID","ShipAddress":"6 Ronald Regan Terrace","ShipName":"Cartwright, Daniel and Wisoky","OrderDate":"3/19/2017","TotalPayment":"$905027.60","Status":5,"Type":3},{"OrderID":"53489-387","ShipCountry":"ID","ShipAddress":"5823 Crowley Circle","ShipName":"Bins Group","OrderDate":"5/15/2016","TotalPayment":"$437682.93","Status":1,"Type":2},{"OrderID":"51079-128","ShipCountry":"RU","ShipAddress":"72 Stoughton Junction","ShipName":"Hand LLC","OrderDate":"3/10/2017","TotalPayment":"$829066.11","Status":6,"Type":2},{"OrderID":"0603-0851","ShipCountry":"IS","ShipAddress":"520 Hauk Crossing","ShipName":"Jakubowski, Hayes and Prosacco","OrderDate":"2/17/2017","TotalPayment":"$768559.57","Status":1,"Type":2},{"OrderID":"0603-4381","ShipCountry":"ID","ShipAddress":"9108 Northridge Trail","ShipName":"Paucek, Bashirian and Thiel","OrderDate":"7/16/2016","TotalPayment":"$437647.39","Status":6,"Type":2},{"OrderID":"54868-4867","ShipCountry":"PL","ShipAddress":"8 Esch Pass","ShipName":"Hilll-Bailey","OrderDate":"3/10/2017","TotalPayment":"$683266.11","Status":2,"Type":3},{"OrderID":"57955-0758","ShipCountry":"ID","ShipAddress":"5257 Cody Circle","ShipName":"Crist, Gislason and Sipes","OrderDate":"1/3/2016","TotalPayment":"$1155453.28","Status":3,"Type":2},{"OrderID":"41250-917","ShipCountry":"JP","ShipAddress":"84 Summerview Terrace","ShipName":"Wilkinson Inc","OrderDate":"3/6/2017","TotalPayment":"$557086.82","Status":4,"Type":2},{"OrderID":"57520-1021","ShipCountry":"RU","ShipAddress":"3545 Clove Court","ShipName":"Osinski-Skiles","OrderDate":"1/3/2017","TotalPayment":"$651791.70","Status":3,"Type":1},{"OrderID":"0268-0805","ShipCountry":"ID","ShipAddress":"6 Spenser Plaza","ShipName":"Durgan and Sons","OrderDate":"3/15/2017","TotalPayment":"$799331.56","Status":2,"Type":1},{"OrderID":"48951-9048","ShipCountry":"DO","ShipAddress":"0 Golf View Lane","ShipName":"Balistreri Group","OrderDate":"11/24/2016","TotalPayment":"$616619.75","Status":2,"Type":3},{"OrderID":"0143-9756","ShipCountry":"CN","ShipAddress":"92473 Boyd Lane","ShipName":"Windler-Will","OrderDate":"4/8/2017","TotalPayment":"$583357.49","Status":6,"Type":1},{"OrderID":"57520-1029","ShipCountry":"PH","ShipAddress":"3357 Morrow Place","ShipName":"Nolan and Sons","OrderDate":"5/6/2016","TotalPayment":"$119880.83","Status":3,"Type":1},{"OrderID":"49288-0377","ShipCountry":"MG","ShipAddress":"98515 Sheridan Crossing","ShipName":"Marquardt-Kling","OrderDate":"9/23/2016","TotalPayment":"$1060570.06","Status":1,"Type":2},{"OrderID":"68788-9802","ShipCountry":"SE","ShipAddress":"8562 Pankratz Park","ShipName":"Botsford, Padberg and Torp","OrderDate":"10/5/2017","TotalPayment":"$600666.98","Status":1,"Type":2},{"OrderID":"17452-390","ShipCountry":"PT","ShipAddress":"65617 Old Shore Lane","ShipName":"Price-Huel","OrderDate":"1/31/2017","TotalPayment":"$605519.84","Status":3,"Type":1},{"OrderID":"55154-5976","ShipCountry":"NG","ShipAddress":"7 Spaight Drive","ShipName":"Konopelski-Wyman","OrderDate":"11/2/2017","TotalPayment":"$165604.21","Status":1,"Type":1},{"OrderID":"59779-488","ShipCountry":"CN","ShipAddress":"2 Randy Avenue","ShipName":"Simonis-Stehr","OrderDate":"7/15/2016","TotalPayment":"$58261.81","Status":5,"Type":2}]},\n{"RecordID":131,"FirstName":"Ward","LastName":"Darrach","Company":"Skippad","Email":"wdarrach3m@mlb.com","Phone":"898-211-1223","Status":2,"Type":2,"Orders":[{"OrderID":"49483-330","ShipCountry":"ID","ShipAddress":"43 Fallview Drive","ShipName":"Skiles LLC","OrderDate":"5/17/2017","TotalPayment":"$1112158.80","Status":5,"Type":1},{"OrderID":"65162-998","ShipCountry":"CN","ShipAddress":"67378 Drewry Pass","ShipName":"Beier, Ortiz and Rodriguez","OrderDate":"9/11/2016","TotalPayment":"$910409.74","Status":6,"Type":2},{"OrderID":"10337-395","ShipCountry":"CU","ShipAddress":"889 Pearson Court","ShipName":"Carroll, Huels and Bosco","OrderDate":"3/19/2016","TotalPayment":"$531678.63","Status":3,"Type":2},{"OrderID":"52125-047","ShipCountry":"ID","ShipAddress":"9 Sullivan Crossing","ShipName":"Hand-Dickinson","OrderDate":"6/8/2017","TotalPayment":"$642593.10","Status":2,"Type":1},{"OrderID":"63323-285","ShipCountry":"CN","ShipAddress":"00722 Randy Junction","ShipName":"Ferry and Sons","OrderDate":"1/28/2017","TotalPayment":"$274006.82","Status":6,"Type":1},{"OrderID":"10019-953","ShipCountry":"ID","ShipAddress":"9 Browning Street","ShipName":"Hudson Group","OrderDate":"3/2/2017","TotalPayment":"$554177.24","Status":3,"Type":1},{"OrderID":"48951-6045","ShipCountry":"CN","ShipAddress":"8851 Mallory Way","ShipName":"Zulauf LLC","OrderDate":"7/13/2016","TotalPayment":"$382962.13","Status":5,"Type":2},{"OrderID":"55714-4630","ShipCountry":"KR","ShipAddress":"2089 Dennis Parkway","ShipName":"Yundt Inc","OrderDate":"5/13/2016","TotalPayment":"$543496.58","Status":2,"Type":2},{"OrderID":"37205-750","ShipCountry":"CN","ShipAddress":"82378 Rieder Junction","ShipName":"Kihn, Legros and Ratke","OrderDate":"4/19/2017","TotalPayment":"$904593.54","Status":1,"Type":3},{"OrderID":"0115-1471","ShipCountry":"LY","ShipAddress":"7485 Fremont Hill","ShipName":"Yundt, Pagac and Zulauf","OrderDate":"2/26/2017","TotalPayment":"$837934.36","Status":3,"Type":2},{"OrderID":"34666-040","ShipCountry":"CN","ShipAddress":"7520 South Pass","ShipName":"Feeney-Hane","OrderDate":"4/19/2017","TotalPayment":"$324505.82","Status":1,"Type":3},{"OrderID":"55315-127","ShipCountry":"UA","ShipAddress":"48067 Chive Trail","ShipName":"Sporer, Heller and Ratke","OrderDate":"10/23/2016","TotalPayment":"$984428.53","Status":3,"Type":2}]},\n{"RecordID":132,"FirstName":"Jillane","LastName":"Fitzroy","Company":"JumpXS","Email":"jfitzroy3n@walmart.com","Phone":"342-347-5469","Status":3,"Type":2,"Orders":[{"OrderID":"0268-6229","ShipCountry":"CO","ShipAddress":"8 Doe Crossing Drive","ShipName":"Rath Inc","OrderDate":"2/6/2016","TotalPayment":"$181671.12","Status":3,"Type":3},{"OrderID":"37012-845","ShipCountry":"CN","ShipAddress":"1071 Monterey Circle","ShipName":"Jaskolski-Herzog","OrderDate":"5/26/2016","TotalPayment":"$1064428.92","Status":2,"Type":1},{"OrderID":"65193-939","ShipCountry":"ID","ShipAddress":"9047 Lyons Circle","ShipName":"Jacobs-Kuvalis","OrderDate":"9/13/2016","TotalPayment":"$504739.93","Status":6,"Type":2},{"OrderID":"50563-163","ShipCountry":"VN","ShipAddress":"719 Sheridan Drive","ShipName":"Feeney-Collins","OrderDate":"2/2/2017","TotalPayment":"$208595.57","Status":4,"Type":2},{"OrderID":"0781-2811","ShipCountry":"RU","ShipAddress":"61606 Moland Parkway","ShipName":"Armstrong, Considine and Schmidt","OrderDate":"10/12/2016","TotalPayment":"$1094995.84","Status":1,"Type":2},{"OrderID":"10738-101","ShipCountry":"BJ","ShipAddress":"97 Dottie Alley","ShipName":"Kihn, Gutmann and Wilderman","OrderDate":"1/13/2017","TotalPayment":"$811764.72","Status":2,"Type":1},{"OrderID":"36987-3043","ShipCountry":"CU","ShipAddress":"3 Judy Junction","ShipName":"Konopelski Group","OrderDate":"10/9/2017","TotalPayment":"$67675.60","Status":5,"Type":2},{"OrderID":"67046-714","ShipCountry":"HN","ShipAddress":"47 Cherokee Alley","ShipName":"Fay, Waters and Heaney","OrderDate":"11/15/2017","TotalPayment":"$644986.52","Status":6,"Type":1},{"OrderID":"52204-103","ShipCountry":"RU","ShipAddress":"50300 Mendota Lane","ShipName":"Mante-Ward","OrderDate":"8/8/2016","TotalPayment":"$709194.37","Status":1,"Type":2},{"OrderID":"63304-460","ShipCountry":"ID","ShipAddress":"4 Almo Junction","ShipName":"Runolfsson and Sons","OrderDate":"11/16/2016","TotalPayment":"$109055.82","Status":3,"Type":2},{"OrderID":"47682-810","ShipCountry":"UA","ShipAddress":"06531 Fulton Lane","ShipName":"Lebsack Group","OrderDate":"7/30/2016","TotalPayment":"$430441.76","Status":6,"Type":2},{"OrderID":"60742-473","ShipCountry":"CO","ShipAddress":"299 Green Ridge Parkway","ShipName":"Satterfield Inc","OrderDate":"4/27/2016","TotalPayment":"$420939.16","Status":1,"Type":2}]},\n{"RecordID":133,"FirstName":"Merilee","LastName":"Tuffley","Company":"Yodel","Email":"mtuffley3o@google.es","Phone":"273-436-0567","Status":1,"Type":3,"Orders":[{"OrderID":"0904-6269","ShipCountry":"ID","ShipAddress":"3 Becker Circle","ShipName":"Feil Group","OrderDate":"9/21/2017","TotalPayment":"$811102.68","Status":4,"Type":3},{"OrderID":"41163-531","ShipCountry":"UG","ShipAddress":"19 Hanson Pass","ShipName":"Ebert, DuBuque and Abbott","OrderDate":"1/4/2017","TotalPayment":"$519125.02","Status":5,"Type":2},{"OrderID":"59779-282","ShipCountry":"AR","ShipAddress":"063 Michigan Place","ShipName":"Kohler Inc","OrderDate":"9/8/2017","TotalPayment":"$645471.38","Status":6,"Type":1},{"OrderID":"46122-279","ShipCountry":"SE","ShipAddress":"890 8th Circle","ShipName":"Becker LLC","OrderDate":"2/29/2016","TotalPayment":"$277431.81","Status":1,"Type":3},{"OrderID":"0781-5181","ShipCountry":"PH","ShipAddress":"40358 Bunting Drive","ShipName":"Berge LLC","OrderDate":"1/23/2017","TotalPayment":"$285326.36","Status":4,"Type":3},{"OrderID":"62011-0021","ShipCountry":"BR","ShipAddress":"15550 Washington Terrace","ShipName":"Becker, Will and Upton","OrderDate":"7/29/2016","TotalPayment":"$1010184.32","Status":3,"Type":1},{"OrderID":"0904-6169","ShipCountry":"LB","ShipAddress":"05 Clemons Point","ShipName":"Dickens, Hansen and Will","OrderDate":"7/13/2016","TotalPayment":"$193194.68","Status":6,"Type":2},{"OrderID":"49288-0636","ShipCountry":"RU","ShipAddress":"21 Cottonwood Crossing","ShipName":"Ankunding-Orn","OrderDate":"8/2/2016","TotalPayment":"$923981.04","Status":3,"Type":3},{"OrderID":"63739-167","ShipCountry":"AM","ShipAddress":"06815 Walton Avenue","ShipName":"Zulauf Inc","OrderDate":"8/27/2017","TotalPayment":"$22336.00","Status":2,"Type":3},{"OrderID":"52544-732","ShipCountry":"CN","ShipAddress":"3079 Bunting Way","ShipName":"Kirlin, Corwin and Abernathy","OrderDate":"10/12/2016","TotalPayment":"$550560.55","Status":1,"Type":3},{"OrderID":"0409-1161","ShipCountry":"AR","ShipAddress":"62591 Union Point","ShipName":"Gutmann-Cummings","OrderDate":"4/9/2016","TotalPayment":"$469235.26","Status":1,"Type":3},{"OrderID":"76126-075","ShipCountry":"CN","ShipAddress":"6509 High Crossing Way","ShipName":"McClure, Kunde and Lockman","OrderDate":"7/7/2017","TotalPayment":"$948674.19","Status":2,"Type":1},{"OrderID":"63629-4028","ShipCountry":"CN","ShipAddress":"00285 Vera Point","ShipName":"Ruecker-Smith","OrderDate":"3/8/2016","TotalPayment":"$1102560.18","Status":3,"Type":2},{"OrderID":"44224-0006","ShipCountry":"PT","ShipAddress":"1 Fordem Lane","ShipName":"Reichel, Mraz and Stehr","OrderDate":"8/2/2016","TotalPayment":"$76152.12","Status":2,"Type":3},{"OrderID":"17156-524","ShipCountry":"RU","ShipAddress":"7888 Sutteridge Point","ShipName":"Conn, Erdman and Bergnaum","OrderDate":"2/27/2016","TotalPayment":"$228548.10","Status":5,"Type":3}]},\n{"RecordID":134,"FirstName":"Christian","LastName":"Marusik","Company":"Yodoo","Email":"cmarusik3p@eepurl.com","Phone":"490-516-3249","Status":4,"Type":3,"Orders":[{"OrderID":"49349-649","ShipCountry":"ID","ShipAddress":"8065 Del Sol Trail","ShipName":"Paucek, Lakin and Corkery","OrderDate":"1/10/2017","TotalPayment":"$448532.31","Status":5,"Type":1},{"OrderID":"41163-075","ShipCountry":"PE","ShipAddress":"40 Riverside Junction","ShipName":"Reynolds-Klocko","OrderDate":"5/25/2017","TotalPayment":"$126444.16","Status":4,"Type":1},{"OrderID":"0603-1393","ShipCountry":"BR","ShipAddress":"50 Raven Place","ShipName":"Corkery, Hansen and Corwin","OrderDate":"8/15/2017","TotalPayment":"$317256.51","Status":1,"Type":2},{"OrderID":"51655-414","ShipCountry":"IE","ShipAddress":"0590 Mandrake Way","ShipName":"Keeling, Fadel and Toy","OrderDate":"4/20/2016","TotalPayment":"$232978.06","Status":3,"Type":1},{"OrderID":"62032-118","ShipCountry":"BR","ShipAddress":"47 Butterfield Alley","ShipName":"Stokes, Ryan and Heathcote","OrderDate":"4/13/2017","TotalPayment":"$317603.39","Status":6,"Type":3},{"OrderID":"36987-3331","ShipCountry":"AL","ShipAddress":"8076 Mccormick Lane","ShipName":"Considine LLC","OrderDate":"4/25/2017","TotalPayment":"$16526.60","Status":1,"Type":2},{"OrderID":"76282-323","ShipCountry":"RU","ShipAddress":"4231 Graedel Junction","ShipName":"Schiller, Volkman and Heller","OrderDate":"10/31/2016","TotalPayment":"$721368.52","Status":4,"Type":3},{"OrderID":"0093-7387","ShipCountry":"NG","ShipAddress":"67 Beilfuss Crossing","ShipName":"Ortiz-Brakus","OrderDate":"8/8/2017","TotalPayment":"$536264.90","Status":5,"Type":3},{"OrderID":"0603-4415","ShipCountry":"PL","ShipAddress":"3 Waywood Street","ShipName":"Durgan-Reinger","OrderDate":"2/12/2016","TotalPayment":"$109927.20","Status":5,"Type":1},{"OrderID":"10967-583","ShipCountry":"PT","ShipAddress":"1 Messerschmidt Trail","ShipName":"Bergnaum, Steuber and Windler","OrderDate":"2/16/2016","TotalPayment":"$624045.83","Status":4,"Type":2},{"OrderID":"21695-068","ShipCountry":"RU","ShipAddress":"9 Fair Oaks Pass","ShipName":"Farrell-Bahringer","OrderDate":"8/7/2017","TotalPayment":"$210940.68","Status":3,"Type":3},{"OrderID":"0615-6593","ShipCountry":"CN","ShipAddress":"35408 Almo Pass","ShipName":"Effertz-Green","OrderDate":"9/17/2017","TotalPayment":"$466778.99","Status":4,"Type":1},{"OrderID":"41167-0262","ShipCountry":"CN","ShipAddress":"32 Magdeline Place","ShipName":"Harvey-Okuneva","OrderDate":"8/1/2017","TotalPayment":"$363289.55","Status":5,"Type":2}]},\n{"RecordID":135,"FirstName":"Ingamar","LastName":"Wasielewicz","Company":"Avavee","Email":"iwasielewicz3q@tumblr.com","Phone":"772-516-4409","Status":2,"Type":1,"Orders":[{"OrderID":"57237-014","ShipCountry":"BY","ShipAddress":"58 Sutteridge Park","ShipName":"Marvin-Denesik","OrderDate":"12/9/2017","TotalPayment":"$641539.92","Status":5,"Type":2},{"OrderID":"57520-0444","ShipCountry":"PT","ShipAddress":"00622 Northport Avenue","ShipName":"Stamm, Hegmann and Wisozk","OrderDate":"4/28/2016","TotalPayment":"$627212.14","Status":4,"Type":1},{"OrderID":"10216-3110","ShipCountry":"PY","ShipAddress":"26 Alpine Avenue","ShipName":"Shanahan Group","OrderDate":"1/10/2016","TotalPayment":"$324622.08","Status":4,"Type":2},{"OrderID":"63629-5436","ShipCountry":"CN","ShipAddress":"899 Carey Center","ShipName":"Cartwright-Krajcik","OrderDate":"6/17/2017","TotalPayment":"$796994.35","Status":1,"Type":2},{"OrderID":"24338-300","ShipCountry":"CN","ShipAddress":"12 Nobel Court","ShipName":"Stehr Inc","OrderDate":"6/13/2016","TotalPayment":"$888659.58","Status":5,"Type":2},{"OrderID":"55346-2904","ShipCountry":"PH","ShipAddress":"0613 North Trail","ShipName":"Hayes-Buckridge","OrderDate":"5/6/2016","TotalPayment":"$326212.83","Status":3,"Type":2},{"OrderID":"24236-720","ShipCountry":"RU","ShipAddress":"4090 Grayhawk Point","ShipName":"Reinger, Ryan and Ward","OrderDate":"5/27/2016","TotalPayment":"$1187606.57","Status":5,"Type":1},{"OrderID":"64764-250","ShipCountry":"AD","ShipAddress":"0 Gale Circle","ShipName":"Heller and Sons","OrderDate":"9/9/2016","TotalPayment":"$1007067.09","Status":6,"Type":3},{"OrderID":"59999-001","ShipCountry":"ID","ShipAddress":"47 Little Fleur Point","ShipName":"Hoeger and Sons","OrderDate":"6/14/2016","TotalPayment":"$868586.30","Status":4,"Type":3},{"OrderID":"24236-624","ShipCountry":"CN","ShipAddress":"88 Monument Trail","ShipName":"Hand Group","OrderDate":"6/19/2017","TotalPayment":"$1051410.65","Status":6,"Type":1},{"OrderID":"0603-1588","ShipCountry":"CN","ShipAddress":"51356 Tennessee Crossing","ShipName":"Stamm, Hoeger and Windler","OrderDate":"2/22/2016","TotalPayment":"$747676.96","Status":3,"Type":1},{"OrderID":"49288-0354","ShipCountry":"GN","ShipAddress":"7 Colorado Point","ShipName":"Kovacek, Haley and Upton","OrderDate":"3/21/2016","TotalPayment":"$71506.07","Status":5,"Type":2},{"OrderID":"66689-695","ShipCountry":"US","ShipAddress":"813 Harbort Center","ShipName":"Greenholt and Sons","OrderDate":"6/8/2017","TotalPayment":"$329422.98","Status":6,"Type":1},{"OrderID":"0591-3562","ShipCountry":"MY","ShipAddress":"74408 Jackson Place","ShipName":"Morissette-Jacobson","OrderDate":"10/6/2016","TotalPayment":"$210451.46","Status":6,"Type":1},{"OrderID":"36987-3172","ShipCountry":"CA","ShipAddress":"1698 Prairie Rose Crossing","ShipName":"Collins-Simonis","OrderDate":"11/4/2017","TotalPayment":"$940831.47","Status":3,"Type":1},{"OrderID":"54868-6026","ShipCountry":"CN","ShipAddress":"67695 Basil Park","ShipName":"Schaden-Tremblay","OrderDate":"9/13/2016","TotalPayment":"$87230.58","Status":5,"Type":2},{"OrderID":"58118-9839","ShipCountry":"CN","ShipAddress":"427 Holmberg Road","ShipName":"Pollich-Bayer","OrderDate":"12/11/2017","TotalPayment":"$781613.93","Status":1,"Type":2},{"OrderID":"0078-0327","ShipCountry":"RU","ShipAddress":"35044 Annamark Circle","ShipName":"Parisian-Reynolds","OrderDate":"8/20/2017","TotalPayment":"$919974.45","Status":3,"Type":3},{"OrderID":"50114-0110","ShipCountry":"CN","ShipAddress":"6354 Victoria Avenue","ShipName":"Mayert-Prosacco","OrderDate":"2/28/2017","TotalPayment":"$164166.22","Status":6,"Type":1}]},\n{"RecordID":136,"FirstName":"Christal","LastName":"Rickards","Company":"Zoombeat","Email":"crickards3r@4shared.com","Phone":"847-718-6074","Status":1,"Type":2,"Orders":[{"OrderID":"10685-978","ShipCountry":"IE","ShipAddress":"15712 Sherman Drive","ShipName":"Marvin, Cummings and Johns","OrderDate":"3/7/2017","TotalPayment":"$46093.90","Status":4,"Type":2},{"OrderID":"49967-382","ShipCountry":"CA","ShipAddress":"44478 Sutteridge Street","ShipName":"Borer-Pfannerstill","OrderDate":"11/17/2016","TotalPayment":"$769112.18","Status":3,"Type":3},{"OrderID":"11822-0294","ShipCountry":"MN","ShipAddress":"47372 Sugar Alley","ShipName":"Wiza, Harvey and Mayer","OrderDate":"11/2/2017","TotalPayment":"$342294.16","Status":1,"Type":2},{"OrderID":"51393-7333","ShipCountry":"US","ShipAddress":"1520 Badeau Terrace","ShipName":"Jacobs-Pacocha","OrderDate":"11/28/2016","TotalPayment":"$51745.64","Status":2,"Type":3},{"OrderID":"36800-285","ShipCountry":"ET","ShipAddress":"9 Gale Street","ShipName":"Klocko-Jones","OrderDate":"2/24/2016","TotalPayment":"$201669.47","Status":4,"Type":3},{"OrderID":"10742-1442","ShipCountry":"PL","ShipAddress":"7 Gulseth Lane","ShipName":"Hamill, Waelchi and Collins","OrderDate":"11/14/2017","TotalPayment":"$553010.85","Status":3,"Type":1}]},\n{"RecordID":137,"FirstName":"Kelsy","LastName":"Canizares","Company":"Gabtune","Email":"kcanizares3s@imageshack.us","Phone":"450-531-8258","Status":3,"Type":3,"Orders":[{"OrderID":"16590-266","ShipCountry":"PS","ShipAddress":"86904 Onsgard Park","ShipName":"Waters Group","OrderDate":"11/15/2016","TotalPayment":"$1008824.91","Status":3,"Type":2},{"OrderID":"61098-020","ShipCountry":"PH","ShipAddress":"6 Utah Way","ShipName":"Yundt-Wolff","OrderDate":"6/6/2016","TotalPayment":"$994412.19","Status":4,"Type":2},{"OrderID":"36987-1123","ShipCountry":"SE","ShipAddress":"694 Arapahoe Court","ShipName":"Zieme Group","OrderDate":"11/7/2016","TotalPayment":"$496282.92","Status":1,"Type":1},{"OrderID":"60681-2402","ShipCountry":"UA","ShipAddress":"30 Southridge Lane","ShipName":"Hand LLC","OrderDate":"10/31/2016","TotalPayment":"$405135.54","Status":4,"Type":3},{"OrderID":"23155-488","ShipCountry":"CU","ShipAddress":"29459 Boyd Court","ShipName":"Jacobs, Cormier and Ferry","OrderDate":"7/13/2016","TotalPayment":"$530294.16","Status":1,"Type":1},{"OrderID":"49999-799","ShipCountry":"SY","ShipAddress":"389 Maple Parkway","ShipName":"Lakin-Grady","OrderDate":"2/26/2016","TotalPayment":"$59257.60","Status":6,"Type":1},{"OrderID":"0093-3107","ShipCountry":"UA","ShipAddress":"447 Cottonwood Terrace","ShipName":"Veum LLC","OrderDate":"10/4/2017","TotalPayment":"$439619.39","Status":4,"Type":1},{"OrderID":"52438-011","ShipCountry":"VE","ShipAddress":"8239 Esch Avenue","ShipName":"Wyman, Dickinson and Cole","OrderDate":"8/9/2017","TotalPayment":"$143122.28","Status":5,"Type":3},{"OrderID":"11673-117","ShipCountry":"CN","ShipAddress":"80 Leroy Trail","ShipName":"Purdy and Sons","OrderDate":"5/26/2017","TotalPayment":"$1012372.68","Status":4,"Type":3},{"OrderID":"11523-7272","ShipCountry":"NL","ShipAddress":"97 Bultman Court","ShipName":"Kirlin, Towne and Feeney","OrderDate":"6/18/2016","TotalPayment":"$1187484.78","Status":6,"Type":1},{"OrderID":"49349-424","ShipCountry":"BO","ShipAddress":"1889 Towne Plaza","ShipName":"Skiles, Hoeger and Gleason","OrderDate":"2/20/2017","TotalPayment":"$611817.79","Status":5,"Type":2},{"OrderID":"54868-5994","ShipCountry":"CN","ShipAddress":"72203 Lakewood Place","ShipName":"Hegmann-Cormier","OrderDate":"10/12/2017","TotalPayment":"$922965.28","Status":2,"Type":2},{"OrderID":"13537-107","ShipCountry":"BR","ShipAddress":"0 Paget Center","ShipName":"Rowe and Sons","OrderDate":"5/5/2017","TotalPayment":"$482562.15","Status":2,"Type":1},{"OrderID":"51389-250","ShipCountry":"PH","ShipAddress":"70 Packers Alley","ShipName":"Becker-Robel","OrderDate":"7/13/2017","TotalPayment":"$568392.75","Status":6,"Type":2},{"OrderID":"0115-2122","ShipCountry":"ID","ShipAddress":"51489 Stephen Way","ShipName":"Yundt Inc","OrderDate":"1/17/2017","TotalPayment":"$511300.91","Status":2,"Type":1},{"OrderID":"11822-0669","ShipCountry":"ID","ShipAddress":"20601 Mallory Parkway","ShipName":"Gislason-Bahringer","OrderDate":"11/1/2016","TotalPayment":"$357147.69","Status":6,"Type":2},{"OrderID":"0268-1364","ShipCountry":"CN","ShipAddress":"3 Canary Alley","ShipName":"Jones Inc","OrderDate":"4/18/2017","TotalPayment":"$1116751.57","Status":4,"Type":2},{"OrderID":"54569-4953","ShipCountry":"ID","ShipAddress":"3063 High Crossing Court","ShipName":"Corwin LLC","OrderDate":"4/3/2016","TotalPayment":"$55057.95","Status":4,"Type":1},{"OrderID":"47335-902","ShipCountry":"CN","ShipAddress":"2530 Sutherland Road","ShipName":"Lakin Group","OrderDate":"1/20/2017","TotalPayment":"$1030245.77","Status":5,"Type":2}]},\n{"RecordID":138,"FirstName":"Laryssa","LastName":"Halton","Company":"Meembee","Email":"lhalton3t@cargocollective.com","Phone":"665-659-2350","Status":1,"Type":2,"Orders":[{"OrderID":"67046-590","ShipCountry":"US","ShipAddress":"8753 Maple Wood Center","ShipName":"Ratke, Wilkinson and Jones","OrderDate":"9/21/2016","TotalPayment":"$296936.55","Status":3,"Type":1},{"OrderID":"0074-3072","ShipCountry":"CZ","ShipAddress":"20 Forest Run Alley","ShipName":"Kub-Bode","OrderDate":"2/4/2016","TotalPayment":"$254676.02","Status":5,"Type":1},{"OrderID":"50845-0109","ShipCountry":"CN","ShipAddress":"4232 Mendota Parkway","ShipName":"Rohan Inc","OrderDate":"1/10/2017","TotalPayment":"$906459.39","Status":3,"Type":3},{"OrderID":"49738-617","ShipCountry":"JP","ShipAddress":"5747 Banding Avenue","ShipName":"Keeling Inc","OrderDate":"1/7/2017","TotalPayment":"$1030599.21","Status":5,"Type":3},{"OrderID":"49035-892","ShipCountry":"DO","ShipAddress":"9147 Luster Alley","ShipName":"Schowalter and Sons","OrderDate":"8/12/2017","TotalPayment":"$837067.86","Status":2,"Type":2},{"OrderID":"66831-123","ShipCountry":"PT","ShipAddress":"7780 Debra Pass","ShipName":"MacGyver, Von and Lesch","OrderDate":"7/16/2017","TotalPayment":"$316955.95","Status":2,"Type":3},{"OrderID":"0228-3660","ShipCountry":"ID","ShipAddress":"71 Bonner Court","ShipName":"Bartell LLC","OrderDate":"7/21/2017","TotalPayment":"$823976.57","Status":5,"Type":1},{"OrderID":"0187-3013","ShipCountry":"PL","ShipAddress":"19397 Pine View Drive","ShipName":"Greenholt LLC","OrderDate":"10/5/2017","TotalPayment":"$130780.38","Status":4,"Type":2},{"OrderID":"51004-1051","ShipCountry":"BR","ShipAddress":"4 Manley Avenue","ShipName":"Thompson Group","OrderDate":"1/8/2016","TotalPayment":"$549291.30","Status":1,"Type":1},{"OrderID":"54868-2131","ShipCountry":"IR","ShipAddress":"4 Waywood Avenue","ShipName":"Homenick, Kirlin and Hammes","OrderDate":"8/27/2016","TotalPayment":"$547537.49","Status":4,"Type":2},{"OrderID":"0009-0352","ShipCountry":"FR","ShipAddress":"893 Vahlen Junction","ShipName":"Von Group","OrderDate":"12/26/2017","TotalPayment":"$856418.25","Status":6,"Type":2},{"OrderID":"55301-519","ShipCountry":"MX","ShipAddress":"37 Colorado Terrace","ShipName":"Cole, Veum and Jast","OrderDate":"9/18/2017","TotalPayment":"$298258.82","Status":5,"Type":3},{"OrderID":"58668-2031","ShipCountry":"CN","ShipAddress":"20469 Warrior Circle","ShipName":"Kirlin and Sons","OrderDate":"5/9/2016","TotalPayment":"$35575.54","Status":6,"Type":2},{"OrderID":"42884-456","ShipCountry":"ER","ShipAddress":"048 Cardinal Pass","ShipName":"Lueilwitz, Bednar and Hansen","OrderDate":"9/9/2016","TotalPayment":"$357423.48","Status":2,"Type":2},{"OrderID":"0093-1172","ShipCountry":"ID","ShipAddress":"9072 Crest Line Way","ShipName":"O\'Conner, Medhurst and Dooley","OrderDate":"5/24/2017","TotalPayment":"$517201.77","Status":4,"Type":1}]},\n{"RecordID":139,"FirstName":"Colin","LastName":"Baskeyfied","Company":"Cogibox","Email":"cbaskeyfied3u@networksolutions.com","Phone":"101-733-9331","Status":4,"Type":3,"Orders":[{"OrderID":"55289-039","ShipCountry":"US","ShipAddress":"0306 Goodland Terrace","ShipName":"Kreiger, Kub and Leffler","OrderDate":"9/18/2016","TotalPayment":"$948384.76","Status":2,"Type":2},{"OrderID":"68001-201","ShipCountry":"BR","ShipAddress":"771 Eastlawn Circle","ShipName":"Botsford Inc","OrderDate":"3/5/2017","TotalPayment":"$248230.37","Status":4,"Type":2},{"OrderID":"67475-212","ShipCountry":"ID","ShipAddress":"5926 Thackeray Drive","ShipName":"Brekke, Johnson and Fahey","OrderDate":"8/27/2017","TotalPayment":"$556444.55","Status":4,"Type":2},{"OrderID":"60429-712","ShipCountry":"AR","ShipAddress":"0963 Haas Street","ShipName":"Turner, Zulauf and Stark","OrderDate":"2/12/2016","TotalPayment":"$1134604.38","Status":6,"Type":3},{"OrderID":"55154-3430","ShipCountry":"PT","ShipAddress":"9 Anniversary Road","ShipName":"Zboncak Inc","OrderDate":"3/9/2016","TotalPayment":"$627592.77","Status":5,"Type":1},{"OrderID":"0268-6600","ShipCountry":"BY","ShipAddress":"3358 Calypso Way","ShipName":"Kub Inc","OrderDate":"2/2/2017","TotalPayment":"$603607.60","Status":3,"Type":2},{"OrderID":"58411-218","ShipCountry":"BG","ShipAddress":"204 4th Lane","ShipName":"Lowe, Green and Luettgen","OrderDate":"6/6/2016","TotalPayment":"$1009082.65","Status":4,"Type":2},{"OrderID":"47593-263","ShipCountry":"AR","ShipAddress":"69125 Hooker Court","ShipName":"Turcotte Inc","OrderDate":"1/5/2016","TotalPayment":"$569830.11","Status":4,"Type":1},{"OrderID":"68788-9813","ShipCountry":"PS","ShipAddress":"9303 Hayes Trail","ShipName":"Hane Inc","OrderDate":"8/22/2017","TotalPayment":"$309763.18","Status":6,"Type":2},{"OrderID":"43063-371","ShipCountry":"CN","ShipAddress":"3193 Farmco Center","ShipName":"Legros, Boyer and Bernier","OrderDate":"9/1/2017","TotalPayment":"$655882.80","Status":6,"Type":2},{"OrderID":"11822-0637","ShipCountry":"WS","ShipAddress":"67 Londonderry Park","ShipName":"Hodkiewicz, Rohan and Dare","OrderDate":"1/3/2016","TotalPayment":"$857467.09","Status":2,"Type":3},{"OrderID":"54569-2285","ShipCountry":"HR","ShipAddress":"7 La Follette Hill","ShipName":"McDermott Group","OrderDate":"4/22/2016","TotalPayment":"$192691.70","Status":5,"Type":1},{"OrderID":"66215-201","ShipCountry":"SE","ShipAddress":"3 Bartelt Center","ShipName":"Gerlach, Connelly and Ziemann","OrderDate":"9/2/2017","TotalPayment":"$216100.59","Status":6,"Type":1},{"OrderID":"17478-503","ShipCountry":"BR","ShipAddress":"8 North Park","ShipName":"Fahey Inc","OrderDate":"8/13/2017","TotalPayment":"$789226.92","Status":5,"Type":2},{"OrderID":"59726-190","ShipCountry":"PS","ShipAddress":"0 Crownhardt Hill","ShipName":"Koepp, Pagac and Feest","OrderDate":"5/11/2017","TotalPayment":"$1109540.46","Status":2,"Type":3},{"OrderID":"55714-1714","ShipCountry":"CN","ShipAddress":"1937 Memorial Crossing","ShipName":"Dooley-Rogahn","OrderDate":"3/9/2017","TotalPayment":"$100525.03","Status":6,"Type":3},{"OrderID":"64679-736","ShipCountry":"ID","ShipAddress":"95853 Morrow Terrace","ShipName":"Kulas and Sons","OrderDate":"2/20/2016","TotalPayment":"$739704.42","Status":5,"Type":1}]},\n{"RecordID":140,"FirstName":"Fleurette","LastName":"Grace","Company":"Aivee","Email":"fgrace3v@cocolog-nifty.com","Phone":"144-467-8577","Status":4,"Type":1,"Orders":[{"OrderID":"17478-065","ShipCountry":"NG","ShipAddress":"232 Dayton Plaza","ShipName":"Lakin LLC","OrderDate":"2/12/2017","TotalPayment":"$864352.29","Status":4,"Type":2},{"OrderID":"11410-413","ShipCountry":"EE","ShipAddress":"27277 Straubel Alley","ShipName":"Mante, Wuckert and Christiansen","OrderDate":"12/23/2017","TotalPayment":"$714690.46","Status":1,"Type":2},{"OrderID":"52125-639","ShipCountry":"AU","ShipAddress":"56521 Bowman Junction","ShipName":"Treutel-Gerlach","OrderDate":"2/29/2016","TotalPayment":"$722608.39","Status":4,"Type":3},{"OrderID":"52686-318","ShipCountry":"ME","ShipAddress":"328 Butterfield Crossing","ShipName":"Stroman Group","OrderDate":"12/14/2016","TotalPayment":"$1133164.25","Status":2,"Type":1},{"OrderID":"65649-511","ShipCountry":"ID","ShipAddress":"69120 Melody Point","ShipName":"Block LLC","OrderDate":"9/2/2017","TotalPayment":"$1026687.82","Status":2,"Type":2},{"OrderID":"55312-118","ShipCountry":"KW","ShipAddress":"38 Marquette Plaza","ShipName":"Grady, Cole and Mante","OrderDate":"10/31/2017","TotalPayment":"$58433.51","Status":1,"Type":3},{"OrderID":"53499-5273","ShipCountry":"CN","ShipAddress":"4 Oriole Center","ShipName":"Willms LLC","OrderDate":"6/3/2016","TotalPayment":"$735688.46","Status":6,"Type":2},{"OrderID":"37808-535","ShipCountry":"ID","ShipAddress":"75400 Village Court","ShipName":"Tremblay-Lynch","OrderDate":"4/18/2017","TotalPayment":"$349145.31","Status":5,"Type":3},{"OrderID":"30142-218","ShipCountry":"PY","ShipAddress":"4592 Birchwood Circle","ShipName":"Kling and Sons","OrderDate":"3/30/2017","TotalPayment":"$709648.61","Status":2,"Type":3},{"OrderID":"17312-027","ShipCountry":"BG","ShipAddress":"4 Merchant Hill","ShipName":"Rice-Bogan","OrderDate":"11/11/2016","TotalPayment":"$309365.13","Status":6,"Type":1},{"OrderID":"50438-401","ShipCountry":"ID","ShipAddress":"8238 Holmberg Pass","ShipName":"Hermiston-Koch","OrderDate":"8/5/2017","TotalPayment":"$1157604.27","Status":6,"Type":1},{"OrderID":"66467-9730","ShipCountry":"MX","ShipAddress":"7 Summer Ridge Center","ShipName":"Yundt, Feest and Beahan","OrderDate":"9/22/2017","TotalPayment":"$43470.47","Status":1,"Type":2},{"OrderID":"50580-679","ShipCountry":"CO","ShipAddress":"310 Del Mar Crossing","ShipName":"Ratke-Simonis","OrderDate":"9/29/2017","TotalPayment":"$568090.05","Status":6,"Type":2},{"OrderID":"0904-5892","ShipCountry":"ID","ShipAddress":"6 Cherokee Hill","ShipName":"Weimann-Johnston","OrderDate":"11/6/2017","TotalPayment":"$918100.41","Status":2,"Type":3},{"OrderID":"36800-759","ShipCountry":"AR","ShipAddress":"770 Elmside Terrace","ShipName":"Hansen and Sons","OrderDate":"1/4/2017","TotalPayment":"$252676.33","Status":6,"Type":3},{"OrderID":"49643-422","ShipCountry":"CN","ShipAddress":"12 Memorial Lane","ShipName":"Quitzon LLC","OrderDate":"1/2/2016","TotalPayment":"$502075.62","Status":5,"Type":3},{"OrderID":"0363-0522","ShipCountry":"RU","ShipAddress":"926 Knutson Avenue","ShipName":"Lang Group","OrderDate":"6/14/2017","TotalPayment":"$1006706.35","Status":2,"Type":3},{"OrderID":"60429-317","ShipCountry":"RU","ShipAddress":"7 Alpine Plaza","ShipName":"Beer, Sawayn and Stokes","OrderDate":"9/29/2017","TotalPayment":"$1128380.05","Status":3,"Type":2}]},\n{"RecordID":141,"FirstName":"Penny","LastName":"Lavall","Company":"Zooveo","Email":"plavall3w@mashable.com","Phone":"600-365-1174","Status":4,"Type":3,"Orders":[{"OrderID":"54312-270","ShipCountry":"CA","ShipAddress":"5 Hollow Ridge Court","ShipName":"Hartmann, Windler and Robel","OrderDate":"10/6/2017","TotalPayment":"$896041.86","Status":4,"Type":3},{"OrderID":"62756-755","ShipCountry":"ID","ShipAddress":"077 Old Shore Trail","ShipName":"Wilkinson Group","OrderDate":"11/22/2016","TotalPayment":"$596272.72","Status":5,"Type":2},{"OrderID":"57896-778","ShipCountry":"PS","ShipAddress":"2 Iowa Lane","ShipName":"Effertz-Mayert","OrderDate":"2/27/2017","TotalPayment":"$768611.97","Status":6,"Type":2},{"OrderID":"52125-039","ShipCountry":"CN","ShipAddress":"152 Fallview Road","ShipName":"Brakus-Hegmann","OrderDate":"12/21/2017","TotalPayment":"$315038.77","Status":2,"Type":2},{"OrderID":"52959-053","ShipCountry":"AF","ShipAddress":"1 Havey Court","ShipName":"Gusikowski, Lockman and Yundt","OrderDate":"7/20/2016","TotalPayment":"$437230.43","Status":3,"Type":2},{"OrderID":"30142-809","ShipCountry":"PH","ShipAddress":"58112 Birchwood Crossing","ShipName":"Cartwright, Borer and Rosenbaum","OrderDate":"10/11/2016","TotalPayment":"$11837.93","Status":2,"Type":2},{"OrderID":"53808-0752","ShipCountry":"CN","ShipAddress":"1696 La Follette Crossing","ShipName":"Deckow and Sons","OrderDate":"6/12/2017","TotalPayment":"$809096.90","Status":6,"Type":1},{"OrderID":"43596-0003","ShipCountry":"ID","ShipAddress":"9794 Michigan Parkway","ShipName":"Wilderman, Goodwin and McDermott","OrderDate":"7/6/2016","TotalPayment":"$1194094.50","Status":2,"Type":1},{"OrderID":"50845-0205","ShipCountry":"RU","ShipAddress":"6520 Darwin Crossing","ShipName":"Wuckert Inc","OrderDate":"4/16/2016","TotalPayment":"$582057.62","Status":4,"Type":1},{"OrderID":"57955-5113","ShipCountry":"MG","ShipAddress":"017 Clyde Gallagher Lane","ShipName":"Johnson-Toy","OrderDate":"11/10/2016","TotalPayment":"$973659.90","Status":1,"Type":1},{"OrderID":"43742-0179","ShipCountry":"BR","ShipAddress":"4339 Kim Lane","ShipName":"Gleason-DuBuque","OrderDate":"5/30/2017","TotalPayment":"$731161.46","Status":6,"Type":1},{"OrderID":"24385-541","ShipCountry":"GR","ShipAddress":"907 Fair Oaks Pass","ShipName":"Lebsack-Lang","OrderDate":"12/12/2016","TotalPayment":"$223133.96","Status":2,"Type":2},{"OrderID":"52380-1614","ShipCountry":"AR","ShipAddress":"79 Hauk Road","ShipName":"Schultz Inc","OrderDate":"11/14/2017","TotalPayment":"$624932.69","Status":4,"Type":3},{"OrderID":"61727-052","ShipCountry":"AL","ShipAddress":"56270 Daystar Park","ShipName":"Tillman, O\'Reilly and Fadel","OrderDate":"7/14/2017","TotalPayment":"$476990.01","Status":6,"Type":1},{"OrderID":"64380-742","ShipCountry":"CN","ShipAddress":"02487 Commercial Trail","ShipName":"Hagenes and Sons","OrderDate":"2/27/2016","TotalPayment":"$257578.17","Status":3,"Type":3}]},\n{"RecordID":142,"FirstName":"Courtnay","LastName":"Hessentaler","Company":"Quamba","Email":"chessentaler3x@mapquest.com","Phone":"624-491-5114","Status":2,"Type":2,"Orders":[{"OrderID":"0268-6619","ShipCountry":"GR","ShipAddress":"06 Independence Crossing","ShipName":"Steuber Inc","OrderDate":"11/12/2017","TotalPayment":"$1060720.22","Status":2,"Type":1},{"OrderID":"63739-167","ShipCountry":"US","ShipAddress":"3 Leroy Alley","ShipName":"Zemlak-Bailey","OrderDate":"8/11/2016","TotalPayment":"$707378.37","Status":3,"Type":1},{"OrderID":"49999-153","ShipCountry":"IR","ShipAddress":"01695 Magdeline Plaza","ShipName":"Brekke-Effertz","OrderDate":"12/19/2016","TotalPayment":"$49966.14","Status":5,"Type":2},{"OrderID":"66382-223","ShipCountry":"PG","ShipAddress":"95 Cardinal Trail","ShipName":"Cruickshank-Turcotte","OrderDate":"10/10/2016","TotalPayment":"$1031029.55","Status":5,"Type":2},{"OrderID":"63783-501","ShipCountry":"GR","ShipAddress":"764 Buhler Plaza","ShipName":"Wiza-Paucek","OrderDate":"4/8/2017","TotalPayment":"$167282.52","Status":6,"Type":3},{"OrderID":"68169-4059","ShipCountry":"RS","ShipAddress":"808 Hooker Circle","ShipName":"Larkin, Tromp and Roob","OrderDate":"5/31/2016","TotalPayment":"$190729.63","Status":1,"Type":3},{"OrderID":"64159-6348","ShipCountry":"SE","ShipAddress":"337 Mcbride Plaza","ShipName":"Mraz-Lind","OrderDate":"1/5/2016","TotalPayment":"$973742.20","Status":6,"Type":2},{"OrderID":"49349-950","ShipCountry":"TJ","ShipAddress":"66547 Mcbride Point","ShipName":"Ledner-Rau","OrderDate":"4/18/2017","TotalPayment":"$866600.57","Status":3,"Type":2},{"OrderID":"53499-6371","ShipCountry":"ID","ShipAddress":"633 Burrows Avenue","ShipName":"Rohan, Sporer and Effertz","OrderDate":"10/13/2016","TotalPayment":"$1158579.58","Status":4,"Type":2}]},\n{"RecordID":143,"FirstName":"Joli","LastName":"Parmiter","Company":"Jazzy","Email":"jparmiter3y@lulu.com","Phone":"460-647-3671","Status":1,"Type":3,"Orders":[{"OrderID":"35000-800","ShipCountry":"JP","ShipAddress":"04 Hauk Place","ShipName":"Hane, Stanton and Ebert","OrderDate":"12/1/2017","TotalPayment":"$175221.31","Status":4,"Type":1},{"OrderID":"0944-4351","ShipCountry":"PL","ShipAddress":"67 Golf View Street","ShipName":"Stiedemann, Stanton and Turcotte","OrderDate":"5/2/2017","TotalPayment":"$353955.35","Status":6,"Type":3},{"OrderID":"33342-015","ShipCountry":"ID","ShipAddress":"10 Vermont Terrace","ShipName":"Hyatt, Franecki and Funk","OrderDate":"5/9/2016","TotalPayment":"$588748.09","Status":5,"Type":2},{"OrderID":"0363-1007","ShipCountry":"KP","ShipAddress":"378 Ryan Parkway","ShipName":"Schmidt-Gleichner","OrderDate":"10/19/2017","TotalPayment":"$987273.57","Status":3,"Type":1},{"OrderID":"63941-242","ShipCountry":"RU","ShipAddress":"4 Pond Way","ShipName":"McGlynn-Grady","OrderDate":"3/4/2017","TotalPayment":"$998099.96","Status":1,"Type":1},{"OrderID":"37000-771","ShipCountry":"BR","ShipAddress":"77 Packers Plaza","ShipName":"Ward, Casper and Schultz","OrderDate":"11/22/2016","TotalPayment":"$293558.79","Status":2,"Type":2},{"OrderID":"58411-161","ShipCountry":"MX","ShipAddress":"249 Schurz Center","ShipName":"Johns, Bode and Daniel","OrderDate":"5/22/2016","TotalPayment":"$366170.52","Status":3,"Type":1},{"OrderID":"54575-375","ShipCountry":"UG","ShipAddress":"12 Stone Corner Parkway","ShipName":"Tromp, Kshlerin and Block","OrderDate":"9/21/2017","TotalPayment":"$479315.69","Status":3,"Type":3},{"OrderID":"58737-104","ShipCountry":"NI","ShipAddress":"268 Redwing Circle","ShipName":"Keeling-O\'Kon","OrderDate":"3/18/2016","TotalPayment":"$72789.87","Status":3,"Type":3},{"OrderID":"0185-0932","ShipCountry":"CN","ShipAddress":"6660 Briar Crest Alley","ShipName":"Hagenes, Robel and Lockman","OrderDate":"10/1/2016","TotalPayment":"$902970.82","Status":4,"Type":3},{"OrderID":"49967-129","ShipCountry":"ID","ShipAddress":"80 Hayes Junction","ShipName":"Gaylord, Hegmann and Williamson","OrderDate":"4/6/2017","TotalPayment":"$302943.45","Status":1,"Type":3},{"OrderID":"25021-157","ShipCountry":"TJ","ShipAddress":"4518 American Ash Hill","ShipName":"Smitham and Sons","OrderDate":"8/27/2016","TotalPayment":"$541972.32","Status":4,"Type":3},{"OrderID":"30142-802","ShipCountry":"ID","ShipAddress":"204 Sachs Avenue","ShipName":"Buckridge Group","OrderDate":"11/1/2016","TotalPayment":"$99766.59","Status":5,"Type":2},{"OrderID":"43772-0017","ShipCountry":"PT","ShipAddress":"1087 Sachs Plaza","ShipName":"Greenfelder, Goyette and Bahringer","OrderDate":"9/7/2016","TotalPayment":"$131232.69","Status":4,"Type":3},{"OrderID":"52007-240","ShipCountry":"CN","ShipAddress":"33535 Fieldstone Park","ShipName":"Feil, McKenzie and Brown","OrderDate":"5/27/2017","TotalPayment":"$754601.38","Status":5,"Type":1}]},\n{"RecordID":144,"FirstName":"Welch","LastName":"Yanshonok","Company":"Yodo","Email":"wyanshonok3z@statcounter.com","Phone":"881-662-7128","Status":6,"Type":3,"Orders":[{"OrderID":"60681-3601","ShipCountry":"ID","ShipAddress":"96 Springview Park","ShipName":"Dach, Auer and O\'Reilly","OrderDate":"7/28/2017","TotalPayment":"$1161032.64","Status":3,"Type":1},{"OrderID":"10742-8214","ShipCountry":"CN","ShipAddress":"2415 Buhler Plaza","ShipName":"Balistreri-Heller","OrderDate":"10/24/2017","TotalPayment":"$681518.48","Status":6,"Type":3},{"OrderID":"65923-132","ShipCountry":"PE","ShipAddress":"58609 Mcguire Terrace","ShipName":"Farrell-Nitzsche","OrderDate":"4/22/2016","TotalPayment":"$329777.49","Status":4,"Type":3},{"OrderID":"54235-204","ShipCountry":"CN","ShipAddress":"94 Darwin Road","ShipName":"Streich-Satterfield","OrderDate":"3/17/2017","TotalPayment":"$514140.05","Status":5,"Type":2},{"OrderID":"52125-384","ShipCountry":"CO","ShipAddress":"01 Jackson Road","ShipName":"Ratke-Baumbach","OrderDate":"11/25/2016","TotalPayment":"$1182063.39","Status":2,"Type":1},{"OrderID":"67475-112","ShipCountry":"CN","ShipAddress":"81 Swallow Court","ShipName":"Graham, Sanford and Parisian","OrderDate":"6/19/2016","TotalPayment":"$180518.39","Status":1,"Type":2},{"OrderID":"59039-002","ShipCountry":"NG","ShipAddress":"5 Toban Alley","ShipName":"Beahan, Pagac and Howell","OrderDate":"12/3/2017","TotalPayment":"$534602.89","Status":6,"Type":2},{"OrderID":"55316-407","ShipCountry":"FR","ShipAddress":"55752 Logan Way","ShipName":"Mohr and Sons","OrderDate":"8/15/2016","TotalPayment":"$480925.78","Status":2,"Type":2},{"OrderID":"55379-407","ShipCountry":"MU","ShipAddress":"98 Grayhawk Road","ShipName":"Koch Group","OrderDate":"11/12/2017","TotalPayment":"$474472.31","Status":5,"Type":2},{"OrderID":"41163-496","ShipCountry":"CN","ShipAddress":"04 Service Trail","ShipName":"Hammes, Bosco and Friesen","OrderDate":"5/16/2017","TotalPayment":"$344836.63","Status":5,"Type":2},{"OrderID":"59735-306","ShipCountry":"TH","ShipAddress":"6 Carpenter Crossing","ShipName":"Glover Inc","OrderDate":"1/30/2016","TotalPayment":"$885762.58","Status":5,"Type":3},{"OrderID":"68258-6031","ShipCountry":"BR","ShipAddress":"521 Lotheville Street","ShipName":"Marvin, Denesik and Boyer","OrderDate":"8/22/2017","TotalPayment":"$796089.54","Status":4,"Type":3},{"OrderID":"55154-8270","ShipCountry":"LU","ShipAddress":"92 Ridgeview Circle","ShipName":"Berge Group","OrderDate":"4/15/2016","TotalPayment":"$553779.79","Status":1,"Type":1},{"OrderID":"43526-113","ShipCountry":"HN","ShipAddress":"929 Monterey Drive","ShipName":"Stehr and Sons","OrderDate":"7/27/2017","TotalPayment":"$583186.25","Status":4,"Type":1},{"OrderID":"53808-0931","ShipCountry":"PT","ShipAddress":"53 Graceland Drive","ShipName":"Mann, Bailey and Treutel","OrderDate":"4/6/2017","TotalPayment":"$69574.66","Status":2,"Type":2},{"OrderID":"55154-6276","ShipCountry":"CR","ShipAddress":"420 Fremont Crossing","ShipName":"Zulauf, Schmitt and Hilll","OrderDate":"10/19/2016","TotalPayment":"$44679.76","Status":5,"Type":1}]},\n{"RecordID":145,"FirstName":"Hyacintha","LastName":"Heinish","Company":"Skipstorm","Email":"hheinish40@t-online.de","Phone":"488-328-2353","Status":5,"Type":1,"Orders":[{"OrderID":"24208-399","ShipCountry":"PT","ShipAddress":"79 Banding Point","ShipName":"Powlowski and Sons","OrderDate":"9/4/2017","TotalPayment":"$508603.36","Status":4,"Type":2},{"OrderID":"16714-601","ShipCountry":"GB","ShipAddress":"40 Chive Circle","ShipName":"Deckow, Hoppe and Stark","OrderDate":"11/27/2016","TotalPayment":"$857218.89","Status":3,"Type":1},{"OrderID":"69153-060","ShipCountry":"CN","ShipAddress":"5 Mandrake Junction","ShipName":"Mayert Inc","OrderDate":"3/9/2016","TotalPayment":"$136144.77","Status":5,"Type":2},{"OrderID":"0904-6391","ShipCountry":"EC","ShipAddress":"90 Glacier Hill Place","ShipName":"Stiedemann and Sons","OrderDate":"1/14/2016","TotalPayment":"$811280.15","Status":1,"Type":3},{"OrderID":"68084-470","ShipCountry":"CN","ShipAddress":"10570 3rd Pass","ShipName":"Schaden-Kihn","OrderDate":"10/5/2016","TotalPayment":"$372467.51","Status":1,"Type":2},{"OrderID":"49349-518","ShipCountry":"KM","ShipAddress":"5033 Nelson Street","ShipName":"Hermann, Mraz and Little","OrderDate":"10/21/2017","TotalPayment":"$267064.17","Status":2,"Type":2},{"OrderID":"0998-0225","ShipCountry":"CN","ShipAddress":"3 Dwight Point","ShipName":"Kertzmann, Mayer and Block","OrderDate":"7/5/2016","TotalPayment":"$475080.74","Status":2,"Type":2},{"OrderID":"0024-0393","ShipCountry":"SE","ShipAddress":"36483 Maywood Drive","ShipName":"Wilkinson-Powlowski","OrderDate":"10/9/2017","TotalPayment":"$1139569.04","Status":3,"Type":1},{"OrderID":"57955-0162","ShipCountry":"PL","ShipAddress":"3988 Bunting Place","ShipName":"Schumm, Lindgren and Hilll","OrderDate":"10/24/2016","TotalPayment":"$673808.11","Status":3,"Type":3},{"OrderID":"55111-467","ShipCountry":"PH","ShipAddress":"7 Homewood Terrace","ShipName":"Ledner and Sons","OrderDate":"1/29/2016","TotalPayment":"$580770.60","Status":1,"Type":1},{"OrderID":"52125-499","ShipCountry":"RU","ShipAddress":"39 Darwin Way","ShipName":"Mueller-Hagenes","OrderDate":"11/9/2016","TotalPayment":"$1172519.78","Status":1,"Type":3},{"OrderID":"51655-362","ShipCountry":"ID","ShipAddress":"3693 Debs Street","ShipName":"Hansen-Goldner","OrderDate":"10/4/2017","TotalPayment":"$992339.95","Status":6,"Type":2},{"OrderID":"24236-204","ShipCountry":"ID","ShipAddress":"786 Declaration Alley","ShipName":"Deckow Group","OrderDate":"7/20/2016","TotalPayment":"$703397.06","Status":2,"Type":3},{"OrderID":"65643-329","ShipCountry":"ID","ShipAddress":"98 Westend Avenue","ShipName":"Kling-Leannon","OrderDate":"11/11/2016","TotalPayment":"$523260.31","Status":3,"Type":1},{"OrderID":"54868-4562","ShipCountry":"PL","ShipAddress":"399 Russell Drive","ShipName":"Skiles, Quitzon and VonRueden","OrderDate":"4/23/2016","TotalPayment":"$1136978.08","Status":6,"Type":3},{"OrderID":"58503-045","ShipCountry":"JP","ShipAddress":"3 Northridge Way","ShipName":"Ward, Sporer and Emard","OrderDate":"4/30/2016","TotalPayment":"$119546.70","Status":2,"Type":3},{"OrderID":"52810-201","ShipCountry":"ID","ShipAddress":"52 Vernon Parkway","ShipName":"Rodriguez-Reilly","OrderDate":"2/5/2017","TotalPayment":"$635123.24","Status":6,"Type":3},{"OrderID":"42291-709","ShipCountry":"PH","ShipAddress":"1395 Hanover Center","ShipName":"Baumbach, Feil and Larkin","OrderDate":"5/19/2016","TotalPayment":"$273875.59","Status":2,"Type":3}]},\n{"RecordID":146,"FirstName":"Gardie","LastName":"Snewin","Company":"Dynabox","Email":"gsnewin41@oakley.com","Phone":"382-922-9253","Status":3,"Type":3,"Orders":[{"OrderID":"68809-544","ShipCountry":"CN","ShipAddress":"48 Mayfield Crossing","ShipName":"Dach-O\'Hara","OrderDate":"12/14/2016","TotalPayment":"$308508.44","Status":6,"Type":2},{"OrderID":"11673-367","ShipCountry":"MX","ShipAddress":"3 Fordem Avenue","ShipName":"Dibbert, Gislason and Schultz","OrderDate":"8/24/2017","TotalPayment":"$723458.89","Status":5,"Type":2},{"OrderID":"68828-137","ShipCountry":"AF","ShipAddress":"27 Monument Crossing","ShipName":"Koepp, Farrell and Stanton","OrderDate":"2/1/2016","TotalPayment":"$1184297.92","Status":4,"Type":2},{"OrderID":"60505-3222","ShipCountry":"CZ","ShipAddress":"8 8th Pass","ShipName":"Greenfelder, Runte and Ledner","OrderDate":"7/26/2017","TotalPayment":"$1005918.94","Status":6,"Type":1},{"OrderID":"60793-801","ShipCountry":"ID","ShipAddress":"206 Summerview Crossing","ShipName":"Christiansen, Rempel and Kutch","OrderDate":"11/4/2016","TotalPayment":"$621774.35","Status":2,"Type":3},{"OrderID":"0145-0061","ShipCountry":"ID","ShipAddress":"0003 Cherokee Center","ShipName":"Gutmann-Purdy","OrderDate":"5/27/2017","TotalPayment":"$854811.00","Status":3,"Type":3},{"OrderID":"10337-153","ShipCountry":"JP","ShipAddress":"2362 Prentice Alley","ShipName":"Medhurst, Cormier and Bartell","OrderDate":"10/11/2017","TotalPayment":"$813160.59","Status":5,"Type":1},{"OrderID":"49288-0933","ShipCountry":"CN","ShipAddress":"30 Bartelt Point","ShipName":"Altenwerth LLC","OrderDate":"12/13/2016","TotalPayment":"$531547.97","Status":5,"Type":2},{"OrderID":"33261-222","ShipCountry":"ID","ShipAddress":"53 Toban Point","ShipName":"Borer, Maggio and Gerhold","OrderDate":"5/12/2016","TotalPayment":"$1093667.87","Status":2,"Type":1},{"OrderID":"0641-6143","ShipCountry":"ID","ShipAddress":"7 Hoard Parkway","ShipName":"Kirlin and Sons","OrderDate":"4/23/2017","TotalPayment":"$190645.97","Status":1,"Type":1},{"OrderID":"49035-352","ShipCountry":"ID","ShipAddress":"135 Brown Lane","ShipName":"Ankunding-DuBuque","OrderDate":"5/20/2017","TotalPayment":"$826070.35","Status":1,"Type":2},{"OrderID":"0904-6184","ShipCountry":"RU","ShipAddress":"40 Golf Course Circle","ShipName":"Brekke-Heaney","OrderDate":"5/5/2016","TotalPayment":"$874044.14","Status":3,"Type":1}]},\n{"RecordID":147,"FirstName":"Mandi","LastName":"Brounsell","Company":"Aibox","Email":"mbrounsell42@constantcontact.com","Phone":"160-127-3864","Status":1,"Type":3,"Orders":[{"OrderID":"55316-647","ShipCountry":"US","ShipAddress":"9 Forster Plaza","ShipName":"Mueller-Boyle","OrderDate":"10/27/2017","TotalPayment":"$787779.16","Status":1,"Type":3},{"OrderID":"0487-2784","ShipCountry":"PL","ShipAddress":"256 Fremont Lane","ShipName":"Wolff-Collier","OrderDate":"1/25/2017","TotalPayment":"$78437.53","Status":4,"Type":3},{"OrderID":"24208-342","ShipCountry":"AR","ShipAddress":"44 Hoepker Hill","ShipName":"Herzog-Rohan","OrderDate":"8/18/2016","TotalPayment":"$805086.34","Status":1,"Type":2},{"OrderID":"21695-867","ShipCountry":"PH","ShipAddress":"8 Dawn Parkway","ShipName":"Cummings Group","OrderDate":"5/27/2016","TotalPayment":"$337502.12","Status":5,"Type":2},{"OrderID":"63402-711","ShipCountry":"PH","ShipAddress":"53 Almo Center","ShipName":"Leannon, Flatley and Rowe","OrderDate":"5/11/2017","TotalPayment":"$148746.02","Status":3,"Type":2},{"OrderID":"13925-104","ShipCountry":"CN","ShipAddress":"6 Hagan Place","ShipName":"Kozey-Dach","OrderDate":"11/9/2016","TotalPayment":"$1129044.93","Status":6,"Type":3},{"OrderID":"43063-442","ShipCountry":"PY","ShipAddress":"884 Mallard Hill","ShipName":"Bartell-Kutch","OrderDate":"6/10/2016","TotalPayment":"$245645.08","Status":2,"Type":2},{"OrderID":"51655-626","ShipCountry":"UG","ShipAddress":"2117 Beilfuss Point","ShipName":"Lindgren-Bashirian","OrderDate":"4/12/2017","TotalPayment":"$802753.26","Status":3,"Type":3},{"OrderID":"67253-200","ShipCountry":"ID","ShipAddress":"900 Portage Crossing","ShipName":"Toy, Hoeger and Batz","OrderDate":"10/11/2017","TotalPayment":"$110681.80","Status":6,"Type":1},{"OrderID":"68180-181","ShipCountry":"VN","ShipAddress":"49 Hudson Junction","ShipName":"Toy Group","OrderDate":"8/18/2016","TotalPayment":"$581245.64","Status":1,"Type":1},{"OrderID":"55154-6263","ShipCountry":"PH","ShipAddress":"62046 Bartillon Parkway","ShipName":"Ryan, Bosco and Kunde","OrderDate":"3/31/2016","TotalPayment":"$115637.28","Status":4,"Type":3},{"OrderID":"63629-4442","ShipCountry":"PK","ShipAddress":"8433 Atwood Hill","ShipName":"Grimes-Langworth","OrderDate":"9/11/2017","TotalPayment":"$615258.44","Status":6,"Type":3},{"OrderID":"61734-415","ShipCountry":"RU","ShipAddress":"00 Morningstar Pass","ShipName":"Walter Inc","OrderDate":"9/3/2016","TotalPayment":"$24094.71","Status":5,"Type":1},{"OrderID":"75981-210","ShipCountry":"PY","ShipAddress":"75 Hudson Crossing","ShipName":"Christiansen Group","OrderDate":"9/15/2016","TotalPayment":"$72963.58","Status":6,"Type":3},{"OrderID":"49348-026","ShipCountry":"FR","ShipAddress":"8293 Jenifer Lane","ShipName":"Goodwin, Fay and Gulgowski","OrderDate":"10/20/2017","TotalPayment":"$1077094.87","Status":1,"Type":2},{"OrderID":"24090-491","ShipCountry":"CO","ShipAddress":"368 Grayhawk Park","ShipName":"Satterfield, Kuvalis and Stanton","OrderDate":"12/30/2016","TotalPayment":"$194354.67","Status":4,"Type":3}]},\n{"RecordID":148,"FirstName":"Moshe","LastName":"Gerram","Company":"Thoughtstorm","Email":"mgerram43@zimbio.com","Phone":"549-209-2093","Status":5,"Type":3,"Orders":[{"OrderID":"43419-864","ShipCountry":"RU","ShipAddress":"48407 Heath Drive","ShipName":"Gaylord Group","OrderDate":"8/21/2017","TotalPayment":"$666580.02","Status":5,"Type":2},{"OrderID":"11673-884","ShipCountry":"CN","ShipAddress":"56700 Sunnyside Trail","ShipName":"Brekke, Wunsch and Smith","OrderDate":"4/14/2016","TotalPayment":"$1021500.05","Status":2,"Type":2},{"OrderID":"57520-0069","ShipCountry":"AF","ShipAddress":"79800 Spaight Circle","ShipName":"Cole, Hoeger and Murphy","OrderDate":"2/18/2017","TotalPayment":"$150530.36","Status":1,"Type":2},{"OrderID":"55648-903","ShipCountry":"BR","ShipAddress":"0 Cordelia Circle","ShipName":"Prosacco-McCullough","OrderDate":"6/10/2016","TotalPayment":"$269788.07","Status":5,"Type":3},{"OrderID":"0009-3449","ShipCountry":"PT","ShipAddress":"12258 Dottie Road","ShipName":"McClure-Kuphal","OrderDate":"5/11/2017","TotalPayment":"$525646.62","Status":5,"Type":3},{"OrderID":"53157-100","ShipCountry":"PT","ShipAddress":"7 Upham Plaza","ShipName":"Lang Inc","OrderDate":"12/2/2016","TotalPayment":"$28412.28","Status":1,"Type":3},{"OrderID":"63739-416","ShipCountry":"CN","ShipAddress":"428 Grayhawk Trail","ShipName":"Gulgowski LLC","OrderDate":"9/23/2016","TotalPayment":"$317514.05","Status":5,"Type":2},{"OrderID":"48951-1026","ShipCountry":"CN","ShipAddress":"93 Mockingbird Crossing","ShipName":"O\'Keefe-Pfeffer","OrderDate":"2/18/2017","TotalPayment":"$806052.43","Status":3,"Type":2},{"OrderID":"50268-696","ShipCountry":"SE","ShipAddress":"0 Rieder Place","ShipName":"Bahringer, Auer and Will","OrderDate":"9/8/2016","TotalPayment":"$849801.29","Status":5,"Type":2}]},\n{"RecordID":149,"FirstName":"Kimble","LastName":"Haley","Company":"Tazz","Email":"khaley44@bizjournals.com","Phone":"351-819-2694","Status":4,"Type":3,"Orders":[{"OrderID":"0078-0423","ShipCountry":"TH","ShipAddress":"5117 Anthes Circle","ShipName":"Miller-Frami","OrderDate":"10/30/2016","TotalPayment":"$656477.30","Status":1,"Type":2},{"OrderID":"0093-3129","ShipCountry":"PT","ShipAddress":"25295 Colorado Plaza","ShipName":"Heaney-Kuhlman","OrderDate":"5/13/2017","TotalPayment":"$1063453.07","Status":1,"Type":3},{"OrderID":"63783-011","ShipCountry":"HR","ShipAddress":"40 Bellgrove Crossing","ShipName":"Farrell, Hudson and Bode","OrderDate":"5/15/2017","TotalPayment":"$527732.06","Status":6,"Type":1},{"OrderID":"50436-5015","ShipCountry":"CN","ShipAddress":"447 Pierstorff Drive","ShipName":"Pfannerstill-Boyle","OrderDate":"6/29/2016","TotalPayment":"$41131.37","Status":5,"Type":3},{"OrderID":"59779-367","ShipCountry":"IR","ShipAddress":"24810 Hansons Road","ShipName":"Corkery and Sons","OrderDate":"12/24/2017","TotalPayment":"$829313.82","Status":4,"Type":2},{"OrderID":"63459-205","ShipCountry":"CN","ShipAddress":"6653 Calypso Terrace","ShipName":"Herman-Cartwright","OrderDate":"9/24/2017","TotalPayment":"$422122.37","Status":3,"Type":3},{"OrderID":"67858-001","ShipCountry":"ID","ShipAddress":"73 Crest Line Point","ShipName":"Prosacco, Wintheiser and Prohaska","OrderDate":"2/3/2016","TotalPayment":"$761377.05","Status":2,"Type":3},{"OrderID":"49288-0715","ShipCountry":"DE","ShipAddress":"69035 Rieder Crossing","ShipName":"Gislason-Daugherty","OrderDate":"9/7/2017","TotalPayment":"$320897.14","Status":4,"Type":2},{"OrderID":"55714-2286","ShipCountry":"BR","ShipAddress":"05329 Badeau Point","ShipName":"Kerluke and Sons","OrderDate":"10/1/2017","TotalPayment":"$1096813.56","Status":6,"Type":1},{"OrderID":"63776-415","ShipCountry":"AR","ShipAddress":"0307 Oak Valley Junction","ShipName":"Morar Inc","OrderDate":"4/18/2017","TotalPayment":"$1166882.39","Status":4,"Type":2},{"OrderID":"61958-1701","ShipCountry":"SE","ShipAddress":"62 Leroy Court","ShipName":"Rath LLC","OrderDate":"1/21/2017","TotalPayment":"$963347.68","Status":1,"Type":3},{"OrderID":"52343-021","ShipCountry":"CO","ShipAddress":"8044 Everett Hill","ShipName":"Becker, Howe and Hamill","OrderDate":"8/1/2017","TotalPayment":"$960737.45","Status":5,"Type":2}]},\n{"RecordID":150,"FirstName":"Maud","LastName":"Seabrocke","Company":"Gabtune","Email":"mseabrocke45@mlb.com","Phone":"863-325-2784","Status":5,"Type":3,"Orders":[{"OrderID":"33261-972","ShipCountry":"ID","ShipAddress":"5648 Katie Avenue","ShipName":"Larkin-Kemmer","OrderDate":"8/29/2016","TotalPayment":"$232681.08","Status":4,"Type":1},{"OrderID":"36987-3283","ShipCountry":"ID","ShipAddress":"85175 Mayer Street","ShipName":"Little, Gerhold and Little","OrderDate":"12/9/2016","TotalPayment":"$1172380.07","Status":4,"Type":2},{"OrderID":"60691-116","ShipCountry":"CU","ShipAddress":"441 Daystar Drive","ShipName":"Zboncak, Ryan and Schmeler","OrderDate":"9/1/2017","TotalPayment":"$954202.04","Status":2,"Type":3},{"OrderID":"63941-180","ShipCountry":"PE","ShipAddress":"8155 Sycamore Court","ShipName":"Runolfsson and Sons","OrderDate":"10/3/2016","TotalPayment":"$932709.77","Status":3,"Type":2},{"OrderID":"41167-0625","ShipCountry":"US","ShipAddress":"39457 Anderson Terrace","ShipName":"Borer Inc","OrderDate":"8/16/2017","TotalPayment":"$414424.08","Status":3,"Type":3},{"OrderID":"50268-180","ShipCountry":"CM","ShipAddress":"7009 Sachs Center","ShipName":"Marvin, Renner and Sauer","OrderDate":"3/21/2016","TotalPayment":"$963666.77","Status":1,"Type":3}]},\n{"RecordID":151,"FirstName":"Marissa","LastName":"Maren","Company":"Quimba","Email":"mmaren46@webs.com","Phone":"171-128-0030","Status":5,"Type":2,"Orders":[{"OrderID":"64735-011","ShipCountry":"PH","ShipAddress":"68698 Shopko Center","ShipName":"Bode and Sons","OrderDate":"3/21/2017","TotalPayment":"$95196.23","Status":2,"Type":1},{"OrderID":"58411-197","ShipCountry":"RU","ShipAddress":"5 Hoepker Junction","ShipName":"Walker, Sauer and Dicki","OrderDate":"10/12/2017","TotalPayment":"$1044102.74","Status":5,"Type":3},{"OrderID":"64679-775","ShipCountry":"RE","ShipAddress":"74 Gulseth Plaza","ShipName":"Abbott-Lowe","OrderDate":"9/16/2016","TotalPayment":"$804732.76","Status":2,"Type":3},{"OrderID":"0498-0010","ShipCountry":"UG","ShipAddress":"75874 Gateway Street","ShipName":"Mann-Volkman","OrderDate":"5/9/2017","TotalPayment":"$692910.31","Status":1,"Type":2},{"OrderID":"49738-536","ShipCountry":"IT","ShipAddress":"7 Steensland Park","ShipName":"Schroeder LLC","OrderDate":"10/27/2016","TotalPayment":"$993560.12","Status":6,"Type":1}]},\n{"RecordID":152,"FirstName":"Dorothee","LastName":"Athowe","Company":"Yoveo","Email":"dathowe47@google.com.br","Phone":"849-640-3501","Status":4,"Type":1,"Orders":[{"OrderID":"50580-536","ShipCountry":"RU","ShipAddress":"8 Westridge Way","ShipName":"Mante-Bahringer","OrderDate":"5/13/2017","TotalPayment":"$397238.79","Status":4,"Type":3},{"OrderID":"0363-0348","ShipCountry":"CN","ShipAddress":"1 Havey Way","ShipName":"Medhurst, O\'Conner and Halvorson","OrderDate":"11/14/2017","TotalPayment":"$577412.05","Status":5,"Type":2},{"OrderID":"10812-359","ShipCountry":"ZA","ShipAddress":"39 Oneill Junction","ShipName":"Padberg and Sons","OrderDate":"8/17/2016","TotalPayment":"$1183197.56","Status":1,"Type":3},{"OrderID":"60505-2512","ShipCountry":"HN","ShipAddress":"15 Nancy Terrace","ShipName":"Legros-Breitenberg","OrderDate":"3/7/2017","TotalPayment":"$943791.44","Status":4,"Type":2},{"OrderID":"65862-374","ShipCountry":"AR","ShipAddress":"6761 Daystar Junction","ShipName":"Balistreri, Dooley and Herman","OrderDate":"6/4/2017","TotalPayment":"$1099102.34","Status":3,"Type":3},{"OrderID":"68084-086","ShipCountry":"MG","ShipAddress":"5 Reindahl Terrace","ShipName":"Pouros and Sons","OrderDate":"3/31/2016","TotalPayment":"$195981.11","Status":3,"Type":3},{"OrderID":"59779-711","ShipCountry":"UG","ShipAddress":"67 Gateway Hill","ShipName":"Nader Group","OrderDate":"11/5/2017","TotalPayment":"$187444.00","Status":5,"Type":2},{"OrderID":"52862-014","ShipCountry":"ID","ShipAddress":"772 Stuart Way","ShipName":"Wunsch, Ledner and Kautzer","OrderDate":"8/1/2017","TotalPayment":"$411778.81","Status":4,"Type":2},{"OrderID":"62011-0094","ShipCountry":"CN","ShipAddress":"5990 Westport Street","ShipName":"Erdman, Ernser and Powlowski","OrderDate":"6/3/2017","TotalPayment":"$376639.96","Status":3,"Type":2},{"OrderID":"55700-003","ShipCountry":"RU","ShipAddress":"20282 Brentwood Plaza","ShipName":"McKenzie-Conn","OrderDate":"7/7/2016","TotalPayment":"$540152.96","Status":3,"Type":2},{"OrderID":"31722-339","ShipCountry":"US","ShipAddress":"534 Doe Crossing Park","ShipName":"Cummerata Group","OrderDate":"6/25/2017","TotalPayment":"$231450.19","Status":1,"Type":2},{"OrderID":"0363-6170","ShipCountry":"PH","ShipAddress":"33 Milwaukee Street","ShipName":"Bayer LLC","OrderDate":"4/2/2016","TotalPayment":"$347383.65","Status":5,"Type":1},{"OrderID":"42546-180","ShipCountry":"PH","ShipAddress":"51 Swallow Circle","ShipName":"Monahan-Veum","OrderDate":"1/26/2016","TotalPayment":"$621599.57","Status":4,"Type":3},{"OrderID":"50813-0004","ShipCountry":"TM","ShipAddress":"80 Brentwood Court","ShipName":"Murphy, Hills and Farrell","OrderDate":"8/13/2017","TotalPayment":"$821571.72","Status":3,"Type":1},{"OrderID":"55154-1492","ShipCountry":"PH","ShipAddress":"87862 Scofield Circle","ShipName":"Botsford, Cormier and Muller","OrderDate":"10/1/2016","TotalPayment":"$730189.83","Status":3,"Type":3},{"OrderID":"60681-2810","ShipCountry":"PT","ShipAddress":"38964 Rusk Lane","ShipName":"Price, Will and Lind","OrderDate":"7/14/2016","TotalPayment":"$904608.65","Status":6,"Type":2},{"OrderID":"60760-278","ShipCountry":"FR","ShipAddress":"525 Thackeray Crossing","ShipName":"Heidenreich, MacGyver and Pfannerstill","OrderDate":"5/1/2017","TotalPayment":"$1128594.71","Status":5,"Type":2},{"OrderID":"57344-156","ShipCountry":"ID","ShipAddress":"23532 Florence Plaza","ShipName":"Barrows, Heaney and Gibson","OrderDate":"1/13/2017","TotalPayment":"$482075.42","Status":1,"Type":3},{"OrderID":"52125-616","ShipCountry":"CZ","ShipAddress":"6 Springs Lane","ShipName":"Hintz LLC","OrderDate":"1/14/2017","TotalPayment":"$1196624.12","Status":3,"Type":1}]},\n{"RecordID":153,"FirstName":"Merle","LastName":"Demaine","Company":"Shufflebeat","Email":"mdemaine48@is.gd","Phone":"813-581-2207","Status":1,"Type":2,"Orders":[{"OrderID":"68151-1494","ShipCountry":"ID","ShipAddress":"4483 Buell Court","ShipName":"Jaskolski-Lebsack","OrderDate":"1/9/2016","TotalPayment":"$1181167.37","Status":6,"Type":2},{"OrderID":"53346-1337","ShipCountry":"MX","ShipAddress":"04872 Green Road","ShipName":"Tremblay-Runte","OrderDate":"10/9/2017","TotalPayment":"$994173.52","Status":5,"Type":3},{"OrderID":"57627-164","ShipCountry":"PT","ShipAddress":"80343 Burning Wood Place","ShipName":"Moen, Heaney and Goldner","OrderDate":"8/25/2016","TotalPayment":"$1103550.06","Status":4,"Type":3},{"OrderID":"65585-577","ShipCountry":"NP","ShipAddress":"4 Mockingbird Drive","ShipName":"Ruecker, Lehner and Feest","OrderDate":"1/6/2016","TotalPayment":"$297342.59","Status":2,"Type":1},{"OrderID":"65954-534","ShipCountry":"ID","ShipAddress":"7 Meadow Valley Road","ShipName":"Abbott, Bernier and Walker","OrderDate":"9/19/2017","TotalPayment":"$642363.99","Status":5,"Type":3},{"OrderID":"0363-0610","ShipCountry":"ID","ShipAddress":"72 Loeprich Road","ShipName":"Witting-Ziemann","OrderDate":"5/31/2016","TotalPayment":"$447632.05","Status":5,"Type":2},{"OrderID":"55154-4056","ShipCountry":"SA","ShipAddress":"27375 Sherman Pass","ShipName":"Murray Group","OrderDate":"12/30/2016","TotalPayment":"$112987.29","Status":4,"Type":2}]},\n{"RecordID":154,"FirstName":"Teresa","LastName":"Kirimaa","Company":"Geba","Email":"tkirimaa49@ustream.tv","Phone":"531-728-2996","Status":2,"Type":2,"Orders":[{"OrderID":"57337-017","ShipCountry":"CN","ShipAddress":"99 Westport Lane","ShipName":"Block and Sons","OrderDate":"3/9/2016","TotalPayment":"$683113.18","Status":6,"Type":2},{"OrderID":"52125-327","ShipCountry":"CO","ShipAddress":"28359 Sherman Pass","ShipName":"Kautzer and Sons","OrderDate":"11/6/2017","TotalPayment":"$559034.21","Status":3,"Type":2},{"OrderID":"43419-381","ShipCountry":"CN","ShipAddress":"45250 Arizona Place","ShipName":"Dibbert-Pacocha","OrderDate":"7/11/2017","TotalPayment":"$499470.83","Status":5,"Type":2},{"OrderID":"24090-496","ShipCountry":"ID","ShipAddress":"86 Rigney Street","ShipName":"Dooley, Boyer and Deckow","OrderDate":"9/21/2016","TotalPayment":"$452524.93","Status":5,"Type":1},{"OrderID":"0228-2981","ShipCountry":"CN","ShipAddress":"64345 Helena Crossing","ShipName":"Hahn-Schroeder","OrderDate":"1/15/2017","TotalPayment":"$1190088.58","Status":3,"Type":3},{"OrderID":"66685-1002","ShipCountry":"HK","ShipAddress":"8 Graedel Circle","ShipName":"Blanda Group","OrderDate":"4/19/2017","TotalPayment":"$721477.19","Status":5,"Type":1},{"OrderID":"54569-2095","ShipCountry":"TJ","ShipAddress":"50228 Onsgard Place","ShipName":"Krajcik and Sons","OrderDate":"1/4/2016","TotalPayment":"$1040556.38","Status":5,"Type":1},{"OrderID":"36987-2517","ShipCountry":"DK","ShipAddress":"988 Morning Place","ShipName":"Dickinson, Smitham and McGlynn","OrderDate":"6/15/2017","TotalPayment":"$1071084.94","Status":2,"Type":2},{"OrderID":"24286-1561","ShipCountry":"RU","ShipAddress":"199 Hallows Street","ShipName":"Zboncak and Sons","OrderDate":"10/15/2017","TotalPayment":"$608311.91","Status":4,"Type":1},{"OrderID":"68084-230","ShipCountry":"RU","ShipAddress":"57457 Toban Hill","ShipName":"Marvin-Kemmer","OrderDate":"2/16/2016","TotalPayment":"$348071.15","Status":6,"Type":3},{"OrderID":"64117-744","ShipCountry":"MY","ShipAddress":"9228 Fairview Plaza","ShipName":"Miller, Bartell and Ankunding","OrderDate":"11/19/2017","TotalPayment":"$894992.39","Status":4,"Type":1},{"OrderID":"55910-449","ShipCountry":"PA","ShipAddress":"05127 Mayfield Street","ShipName":"Romaguera LLC","OrderDate":"9/13/2017","TotalPayment":"$1075958.79","Status":2,"Type":2}]},\n{"RecordID":155,"FirstName":"Krispin","LastName":"Mabbe","Company":"Browsetype","Email":"kmabbe4a@abc.net.au","Phone":"129-198-3421","Status":3,"Type":1,"Orders":[{"OrderID":"37000-849","ShipCountry":"ID","ShipAddress":"04302 Parkside Junction","ShipName":"Kilback-Schoen","OrderDate":"5/24/2016","TotalPayment":"$36773.27","Status":5,"Type":1},{"OrderID":"41520-490","ShipCountry":"SE","ShipAddress":"76394 West Avenue","ShipName":"Dibbert Group","OrderDate":"11/5/2017","TotalPayment":"$658181.10","Status":2,"Type":2},{"OrderID":"65044-2679","ShipCountry":"CN","ShipAddress":"87546 Mcguire Trail","ShipName":"Metz LLC","OrderDate":"5/29/2017","TotalPayment":"$1173954.63","Status":4,"Type":2},{"OrderID":"0591-3228","ShipCountry":"MY","ShipAddress":"400 Vidon Avenue","ShipName":"Romaguera Inc","OrderDate":"8/30/2016","TotalPayment":"$241156.09","Status":4,"Type":3},{"OrderID":"0268-1456","ShipCountry":"CN","ShipAddress":"384 Arkansas Lane","ShipName":"Boyer-Barrows","OrderDate":"2/3/2017","TotalPayment":"$1022072.94","Status":1,"Type":1},{"OrderID":"52533-107","ShipCountry":"RU","ShipAddress":"7174 Lyons Trail","ShipName":"Kling, Cronin and Beer","OrderDate":"6/30/2017","TotalPayment":"$77236.48","Status":3,"Type":1},{"OrderID":"76029-002","ShipCountry":"TH","ShipAddress":"5 Lindbergh Street","ShipName":"Rath-Schmitt","OrderDate":"9/8/2016","TotalPayment":"$1073095.17","Status":6,"Type":3},{"OrderID":"63739-080","ShipCountry":"PH","ShipAddress":"201 Meadow Valley Court","ShipName":"Gusikowski-Morar","OrderDate":"8/29/2016","TotalPayment":"$708372.82","Status":3,"Type":3}]},\n{"RecordID":156,"FirstName":"Constantia","LastName":"Langstone","Company":"Thoughtstorm","Email":"clangstone4b@mac.com","Phone":"935-903-0056","Status":1,"Type":2,"Orders":[{"OrderID":"0268-6401","ShipCountry":"PY","ShipAddress":"13645 Marquette Court","ShipName":"Ebert, Torphy and Lang","OrderDate":"10/29/2016","TotalPayment":"$376556.46","Status":3,"Type":2},{"OrderID":"63629-4694","ShipCountry":"GR","ShipAddress":"419 Dorton Drive","ShipName":"Walsh, Torphy and Lubowitz","OrderDate":"2/2/2016","TotalPayment":"$612126.72","Status":2,"Type":1},{"OrderID":"64117-305","ShipCountry":"CA","ShipAddress":"9 Monument Trail","ShipName":"Crona Inc","OrderDate":"3/20/2016","TotalPayment":"$17183.61","Status":3,"Type":2},{"OrderID":"61047-825","ShipCountry":"JP","ShipAddress":"7246 Westerfield Park","ShipName":"Ankunding LLC","OrderDate":"2/25/2017","TotalPayment":"$564426.15","Status":4,"Type":2},{"OrderID":"42254-125","ShipCountry":"IS","ShipAddress":"19 Cherokee Plaza","ShipName":"Connelly LLC","OrderDate":"12/24/2017","TotalPayment":"$415349.56","Status":5,"Type":1},{"OrderID":"10578-055","ShipCountry":"IS","ShipAddress":"2143 7th Parkway","ShipName":"Raynor Group","OrderDate":"11/27/2016","TotalPayment":"$729290.79","Status":3,"Type":3},{"OrderID":"58118-0409","ShipCountry":"CA","ShipAddress":"761 Oriole Center","ShipName":"Reichert-DuBuque","OrderDate":"4/13/2016","TotalPayment":"$954344.27","Status":5,"Type":2},{"OrderID":"0363-0664","ShipCountry":"VN","ShipAddress":"29906 Iowa Circle","ShipName":"Bogisich-Stanton","OrderDate":"9/29/2016","TotalPayment":"$183669.44","Status":3,"Type":1},{"OrderID":"59779-648","ShipCountry":"LT","ShipAddress":"49 Hintze Trail","ShipName":"Beier, Ferry and Eichmann","OrderDate":"10/10/2017","TotalPayment":"$1046095.77","Status":5,"Type":2},{"OrderID":"62011-0084","ShipCountry":"RU","ShipAddress":"1 Vidon Place","ShipName":"Parisian-Pfannerstill","OrderDate":"1/30/2016","TotalPayment":"$460247.59","Status":6,"Type":3},{"OrderID":"0311-0585","ShipCountry":"TN","ShipAddress":"28320 Sutherland Trail","ShipName":"Mayert-Hyatt","OrderDate":"12/9/2016","TotalPayment":"$442430.65","Status":4,"Type":2},{"OrderID":"0131-3265","ShipCountry":"DJ","ShipAddress":"0 Petterle Parkway","ShipName":"Kling, Gerlach and Robel","OrderDate":"11/30/2016","TotalPayment":"$25185.33","Status":6,"Type":2},{"OrderID":"50845-0092","ShipCountry":"CN","ShipAddress":"10042 Del Sol Alley","ShipName":"Blanda and Sons","OrderDate":"4/17/2016","TotalPayment":"$411918.88","Status":6,"Type":1},{"OrderID":"67046-268","ShipCountry":"CN","ShipAddress":"6586 Elmside Court","ShipName":"Dicki and Sons","OrderDate":"1/2/2017","TotalPayment":"$739744.26","Status":6,"Type":3},{"OrderID":"47593-383","ShipCountry":"ID","ShipAddress":"20 Prentice Drive","ShipName":"Koepp LLC","OrderDate":"1/5/2016","TotalPayment":"$515040.94","Status":3,"Type":2},{"OrderID":"0185-0134","ShipCountry":"SY","ShipAddress":"0851 Tomscot Center","ShipName":"Leuschke, Okuneva and Bergnaum","OrderDate":"5/17/2016","TotalPayment":"$987132.14","Status":1,"Type":2},{"OrderID":"53240-151","ShipCountry":"CN","ShipAddress":"9102 Shelley Hill","ShipName":"Eichmann LLC","OrderDate":"8/13/2017","TotalPayment":"$812244.63","Status":1,"Type":3}]},\n{"RecordID":157,"FirstName":"Heloise","LastName":"Blewett","Company":"Dabshots","Email":"hblewett4c@ezinearticles.com","Phone":"276-901-8947","Status":2,"Type":1,"Orders":[{"OrderID":"59158-723","ShipCountry":"ID","ShipAddress":"3171 Fulton Avenue","ShipName":"Effertz-Sipes","OrderDate":"1/12/2017","TotalPayment":"$636103.96","Status":1,"Type":1},{"OrderID":"37205-535","ShipCountry":"UA","ShipAddress":"92 Southridge Terrace","ShipName":"Green Inc","OrderDate":"4/11/2017","TotalPayment":"$978748.73","Status":5,"Type":1},{"OrderID":"50436-9101","ShipCountry":"PE","ShipAddress":"5 Meadow Vale Street","ShipName":"Torp Inc","OrderDate":"4/30/2016","TotalPayment":"$541999.87","Status":4,"Type":3},{"OrderID":"10544-608","ShipCountry":"HT","ShipAddress":"24980 Grasskamp Center","ShipName":"Casper-Medhurst","OrderDate":"12/30/2017","TotalPayment":"$85216.39","Status":2,"Type":1},{"OrderID":"10144-604","ShipCountry":"PL","ShipAddress":"6481 Wayridge Trail","ShipName":"Morar, Wyman and Emard","OrderDate":"2/8/2017","TotalPayment":"$998173.51","Status":1,"Type":1},{"OrderID":"36987-1747","ShipCountry":"CN","ShipAddress":"044 Moose Circle","ShipName":"Wintheiser LLC","OrderDate":"3/26/2016","TotalPayment":"$153773.91","Status":6,"Type":3},{"OrderID":"58668-2211","ShipCountry":"ET","ShipAddress":"706 Reindahl Circle","ShipName":"Hettinger, Buckridge and Heller","OrderDate":"4/12/2016","TotalPayment":"$285170.46","Status":1,"Type":1},{"OrderID":"60505-0209","ShipCountry":"UA","ShipAddress":"921 Hudson Road","ShipName":"Steuber, Bednar and Koelpin","OrderDate":"2/15/2016","TotalPayment":"$189476.29","Status":1,"Type":3},{"OrderID":"63629-3639","ShipCountry":"JP","ShipAddress":"262 Scofield Lane","ShipName":"Nitzsche LLC","OrderDate":"5/26/2016","TotalPayment":"$701166.79","Status":2,"Type":2},{"OrderID":"13925-101","ShipCountry":"BR","ShipAddress":"97286 Arrowood Parkway","ShipName":"Heidenreich, Kuhlman and Satterfield","OrderDate":"6/17/2017","TotalPayment":"$191107.09","Status":4,"Type":3},{"OrderID":"55714-2355","ShipCountry":"CN","ShipAddress":"3 Sunnyside Center","ShipName":"Barton-Leannon","OrderDate":"4/10/2017","TotalPayment":"$544148.76","Status":2,"Type":1},{"OrderID":"68788-9816","ShipCountry":"PL","ShipAddress":"572 Moulton Trail","ShipName":"Davis Group","OrderDate":"3/15/2016","TotalPayment":"$566600.97","Status":3,"Type":2}]},\n{"RecordID":158,"FirstName":"Lucy","LastName":"Osgorby","Company":"Talane","Email":"losgorby4d@comsenz.com","Phone":"962-841-3463","Status":1,"Type":2,"Orders":[{"OrderID":"52343-002","ShipCountry":"PL","ShipAddress":"76 Buell Court","ShipName":"Schulist-Miller","OrderDate":"4/28/2017","TotalPayment":"$546593.75","Status":1,"Type":1},{"OrderID":"58118-1344","ShipCountry":"FR","ShipAddress":"29564 Twin Pines Plaza","ShipName":"Pagac LLC","OrderDate":"10/4/2016","TotalPayment":"$1193295.50","Status":5,"Type":3},{"OrderID":"50021-243","ShipCountry":"IR","ShipAddress":"4814 Mitchell Crossing","ShipName":"Cartwright Inc","OrderDate":"5/25/2016","TotalPayment":"$548040.50","Status":6,"Type":2},{"OrderID":"49349-849","ShipCountry":"JP","ShipAddress":"8345 Buhler Alley","ShipName":"Hand-Cole","OrderDate":"10/24/2016","TotalPayment":"$422993.93","Status":3,"Type":2},{"OrderID":"0085-1291","ShipCountry":"CN","ShipAddress":"9 Sauthoff Alley","ShipName":"Schultz Inc","OrderDate":"6/23/2017","TotalPayment":"$29651.35","Status":5,"Type":3},{"OrderID":"0074-3457","ShipCountry":"CA","ShipAddress":"2840 Summer Ridge Road","ShipName":"Wyman, Weimann and Klocko","OrderDate":"7/4/2016","TotalPayment":"$614774.13","Status":6,"Type":3},{"OrderID":"57525-016","ShipCountry":"FR","ShipAddress":"1907 Nova Hill","ShipName":"Muller, Ryan and Ledner","OrderDate":"8/20/2016","TotalPayment":"$19886.89","Status":2,"Type":1},{"OrderID":"68645-261","ShipCountry":"AZ","ShipAddress":"75472 Cordelia Trail","ShipName":"Schulist, Bartell and O\'Kon","OrderDate":"5/13/2017","TotalPayment":"$737725.80","Status":4,"Type":3},{"OrderID":"55312-546","ShipCountry":"RU","ShipAddress":"2 Northridge Plaza","ShipName":"Koelpin, Barrows and Predovic","OrderDate":"9/30/2016","TotalPayment":"$269138.14","Status":6,"Type":2},{"OrderID":"21695-143","ShipCountry":"ID","ShipAddress":"28 Jay Parkway","ShipName":"Ebert, Lynch and Friesen","OrderDate":"2/2/2017","TotalPayment":"$1116938.56","Status":5,"Type":1},{"OrderID":"50845-0197","ShipCountry":"RS","ShipAddress":"49 Golf Course Crossing","ShipName":"Spinka-Reinger","OrderDate":"12/11/2017","TotalPayment":"$300011.38","Status":4,"Type":3},{"OrderID":"65841-740","ShipCountry":"CN","ShipAddress":"20 Stephen Pass","ShipName":"D\'Amore Group","OrderDate":"4/25/2017","TotalPayment":"$742267.45","Status":1,"Type":3},{"OrderID":"55154-2828","ShipCountry":"CN","ShipAddress":"66 Shoshone Circle","ShipName":"Mayer LLC","OrderDate":"5/21/2017","TotalPayment":"$510673.85","Status":1,"Type":3}]},\n{"RecordID":159,"FirstName":"Grazia","LastName":"Frascone","Company":"Yodel","Email":"gfrascone4e@sbwire.com","Phone":"703-883-7151","Status":4,"Type":1,"Orders":[{"OrderID":"43353-856","ShipCountry":"PE","ShipAddress":"2587 Crescent Oaks Trail","ShipName":"Sipes-Bruen","OrderDate":"1/26/2016","TotalPayment":"$956071.07","Status":2,"Type":1},{"OrderID":"16590-998","ShipCountry":"RU","ShipAddress":"24 Tennessee Lane","ShipName":"Murray, Anderson and Blick","OrderDate":"4/11/2016","TotalPayment":"$86687.22","Status":5,"Type":1},{"OrderID":"50114-6085","ShipCountry":"CA","ShipAddress":"3917 Washington Trail","ShipName":"Ortiz LLC","OrderDate":"9/18/2017","TotalPayment":"$311136.21","Status":6,"Type":1},{"OrderID":"24385-213","ShipCountry":"KG","ShipAddress":"75 Anthes Lane","ShipName":"Gutmann Inc","OrderDate":"7/25/2016","TotalPayment":"$360502.94","Status":3,"Type":3},{"OrderID":"36987-2551","ShipCountry":"FI","ShipAddress":"8726 Dennis Plaza","ShipName":"Satterfield-Towne","OrderDate":"11/20/2017","TotalPayment":"$1003125.07","Status":6,"Type":2},{"OrderID":"0264-7865","ShipCountry":"CN","ShipAddress":"9488 Sullivan Hill","ShipName":"Christiansen, Heathcote and Waters","OrderDate":"7/6/2017","TotalPayment":"$423794.88","Status":3,"Type":3},{"OrderID":"57955-6012","ShipCountry":"ZA","ShipAddress":"0244 Shasta Drive","ShipName":"Abbott, Lockman and Conn","OrderDate":"4/28/2017","TotalPayment":"$117457.26","Status":1,"Type":3},{"OrderID":"22840-0039","ShipCountry":"CN","ShipAddress":"70 Golf View Terrace","ShipName":"Predovic, Schimmel and Veum","OrderDate":"9/5/2017","TotalPayment":"$901260.15","Status":6,"Type":2},{"OrderID":"49349-902","ShipCountry":"CN","ShipAddress":"42 Arapahoe Place","ShipName":"Gerhold-Koss","OrderDate":"6/23/2017","TotalPayment":"$332874.28","Status":5,"Type":3},{"OrderID":"0187-5172","ShipCountry":"NZ","ShipAddress":"4407 Glendale Street","ShipName":"Hilpert, Keebler and Lemke","OrderDate":"4/18/2017","TotalPayment":"$39828.66","Status":3,"Type":2},{"OrderID":"76472-1152","ShipCountry":"RU","ShipAddress":"0 Del Sol Place","ShipName":"Bartoletti, Lang and Durgan","OrderDate":"10/3/2017","TotalPayment":"$42971.15","Status":2,"Type":1},{"OrderID":"34022-101","ShipCountry":"PL","ShipAddress":"63577 Johnson Hill","ShipName":"Stiedemann, Marvin and Dicki","OrderDate":"9/10/2016","TotalPayment":"$516273.51","Status":5,"Type":3},{"OrderID":"60505-0833","ShipCountry":"BG","ShipAddress":"113 Manufacturers Drive","ShipName":"Schaefer-Boyle","OrderDate":"6/5/2017","TotalPayment":"$888904.38","Status":1,"Type":2}]},\n{"RecordID":160,"FirstName":"Dani","LastName":"Manicomb","Company":"Browseblab","Email":"dmanicomb4f@google.de","Phone":"252-183-7241","Status":4,"Type":2,"Orders":[{"OrderID":"0025-2752","ShipCountry":"RU","ShipAddress":"7988 Steensland Pass","ShipName":"Weimann, Jakubowski and Von","OrderDate":"4/13/2016","TotalPayment":"$1106269.87","Status":5,"Type":3},{"OrderID":"10812-198","ShipCountry":"ID","ShipAddress":"7 Lukken Center","ShipName":"Hickle-Romaguera","OrderDate":"10/20/2017","TotalPayment":"$274401.23","Status":1,"Type":2},{"OrderID":"30014-104","ShipCountry":"PT","ShipAddress":"60425 Lawn Alley","ShipName":"Weber-Tremblay","OrderDate":"1/6/2016","TotalPayment":"$834581.29","Status":6,"Type":2},{"OrderID":"42254-149","ShipCountry":"TL","ShipAddress":"45 Mesta Terrace","ShipName":"Littel Group","OrderDate":"6/5/2016","TotalPayment":"$96884.74","Status":3,"Type":1},{"OrderID":"49781-011","ShipCountry":"PL","ShipAddress":"3374 Aberg Drive","ShipName":"Fisher-Gulgowski","OrderDate":"4/15/2016","TotalPayment":"$845177.14","Status":1,"Type":1},{"OrderID":"0363-0650","ShipCountry":"ZM","ShipAddress":"4916 Center Lane","ShipName":"Schumm-Corkery","OrderDate":"10/19/2016","TotalPayment":"$712651.64","Status":5,"Type":2},{"OrderID":"61601-1217","ShipCountry":"PE","ShipAddress":"4851 Namekagon Trail","ShipName":"Cremin-Waters","OrderDate":"9/21/2016","TotalPayment":"$78523.80","Status":5,"Type":2},{"OrderID":"64616-105","ShipCountry":"MX","ShipAddress":"9469 Butterfield Pass","ShipName":"Pouros-Simonis","OrderDate":"10/9/2017","TotalPayment":"$173307.83","Status":3,"Type":1},{"OrderID":"37808-110","ShipCountry":"ID","ShipAddress":"5894 Judy Parkway","ShipName":"Parker, Kuvalis and McCullough","OrderDate":"9/2/2017","TotalPayment":"$269668.73","Status":4,"Type":2},{"OrderID":"67618-300","ShipCountry":"JP","ShipAddress":"749 Ohio Terrace","ShipName":"Denesik-Schimmel","OrderDate":"7/29/2016","TotalPayment":"$994283.14","Status":4,"Type":1},{"OrderID":"66083-741","ShipCountry":"PT","ShipAddress":"7406 Briar Crest Junction","ShipName":"Nienow, Armstrong and Bauch","OrderDate":"7/23/2017","TotalPayment":"$240411.02","Status":6,"Type":1},{"OrderID":"0185-5050","ShipCountry":"RU","ShipAddress":"7 Randy Point","ShipName":"Hansen, Larkin and Pagac","OrderDate":"7/29/2017","TotalPayment":"$139859.74","Status":3,"Type":1},{"OrderID":"51346-184","ShipCountry":"AM","ShipAddress":"8 Bartelt Parkway","ShipName":"Jacobs Inc","OrderDate":"10/10/2016","TotalPayment":"$586074.20","Status":5,"Type":2},{"OrderID":"24658-304","ShipCountry":"TZ","ShipAddress":"85635 Hayes Place","ShipName":"Effertz, Bode and Larson","OrderDate":"11/30/2017","TotalPayment":"$409400.23","Status":2,"Type":2},{"OrderID":"0615-3596","ShipCountry":"JP","ShipAddress":"37815 2nd Lane","ShipName":"Yundt and Sons","OrderDate":"8/31/2017","TotalPayment":"$1177664.10","Status":3,"Type":1},{"OrderID":"67938-1085","ShipCountry":"JP","ShipAddress":"0009 Forest Dale Junction","ShipName":"Schroeder LLC","OrderDate":"3/27/2017","TotalPayment":"$1120850.95","Status":5,"Type":1},{"OrderID":"43074-207","ShipCountry":"PH","ShipAddress":"39736 Anderson Junction","ShipName":"Fahey-Corkery","OrderDate":"11/10/2017","TotalPayment":"$1038615.45","Status":5,"Type":2},{"OrderID":"76173-1005","ShipCountry":"GR","ShipAddress":"1812 Melrose Avenue","ShipName":"Padberg, Mertz and Heaney","OrderDate":"9/17/2016","TotalPayment":"$1180134.89","Status":3,"Type":2}]},\n{"RecordID":161,"FirstName":"Karine","LastName":"Lindegard","Company":"Chatterpoint","Email":"klindegard4g@chronoengine.com","Phone":"626-296-7353","Status":5,"Type":1,"Orders":[{"OrderID":"68276-004","ShipCountry":"CO","ShipAddress":"5 Debs Street","ShipName":"Jacobson Group","OrderDate":"1/8/2017","TotalPayment":"$327436.90","Status":4,"Type":2},{"OrderID":"55111-133","ShipCountry":"PT","ShipAddress":"9 Novick Plaza","ShipName":"O\'Hara, King and Hahn","OrderDate":"2/28/2017","TotalPayment":"$349539.84","Status":1,"Type":1},{"OrderID":"36987-1899","ShipCountry":"US","ShipAddress":"172 Glendale Trail","ShipName":"Ritchie, Maggio and Lowe","OrderDate":"12/7/2017","TotalPayment":"$1167184.76","Status":4,"Type":1},{"OrderID":"53603-2003","ShipCountry":"BR","ShipAddress":"3 Scoville Hill","ShipName":"Goyette-Koss","OrderDate":"8/23/2016","TotalPayment":"$1197264.67","Status":2,"Type":3},{"OrderID":"62362-159","ShipCountry":"CN","ShipAddress":"439 Ryan Junction","ShipName":"Towne Inc","OrderDate":"9/21/2016","TotalPayment":"$47089.49","Status":3,"Type":3},{"OrderID":"68745-1153","ShipCountry":"FR","ShipAddress":"0 Huxley Park","ShipName":"Hintz, Lakin and Breitenberg","OrderDate":"7/11/2016","TotalPayment":"$868302.82","Status":5,"Type":1},{"OrderID":"55315-600","ShipCountry":"PL","ShipAddress":"6 Grayhawk Junction","ShipName":"Will, Corwin and Kunde","OrderDate":"7/1/2016","TotalPayment":"$1197695.65","Status":4,"Type":2},{"OrderID":"64616-098","ShipCountry":"BR","ShipAddress":"250 Dunning Point","ShipName":"Becker, Morissette and Graham","OrderDate":"6/22/2017","TotalPayment":"$837012.51","Status":6,"Type":2},{"OrderID":"11523-7302","ShipCountry":"PT","ShipAddress":"15755 Forest Pass","ShipName":"Schinner, Ritchie and Schumm","OrderDate":"9/25/2016","TotalPayment":"$95430.27","Status":4,"Type":3},{"OrderID":"0603-2110","ShipCountry":"RS","ShipAddress":"185 Roth Trail","ShipName":"Mueller Group","OrderDate":"6/17/2017","TotalPayment":"$815097.00","Status":1,"Type":2}]},\n{"RecordID":162,"FirstName":"Lennard","LastName":"Duffan","Company":"Tagpad","Email":"lduffan4h@diigo.com","Phone":"573-297-1345","Status":3,"Type":1,"Orders":[{"OrderID":"55111-282","ShipCountry":"UA","ShipAddress":"61446 Derek Court","ShipName":"Hudson-Gaylord","OrderDate":"7/22/2017","TotalPayment":"$503731.00","Status":1,"Type":2},{"OrderID":"68788-9085","ShipCountry":"CN","ShipAddress":"85929 Thackeray Drive","ShipName":"Block Group","OrderDate":"2/5/2017","TotalPayment":"$1181023.68","Status":3,"Type":2},{"OrderID":"54868-2271","ShipCountry":"SY","ShipAddress":"52 Packers Trail","ShipName":"Orn-Mueller","OrderDate":"1/2/2017","TotalPayment":"$117031.08","Status":5,"Type":1},{"OrderID":"53746-219","ShipCountry":"PT","ShipAddress":"10 Lakewood Street","ShipName":"Rutherford Group","OrderDate":"5/2/2016","TotalPayment":"$1114104.86","Status":2,"Type":3},{"OrderID":"37000-522","ShipCountry":"ID","ShipAddress":"484 Tennessee Court","ShipName":"Ruecker Group","OrderDate":"6/1/2016","TotalPayment":"$226798.07","Status":1,"Type":2},{"OrderID":"68084-020","ShipCountry":"FR","ShipAddress":"8933 Troy Circle","ShipName":"Spencer-Okuneva","OrderDate":"7/11/2017","TotalPayment":"$170235.61","Status":2,"Type":1},{"OrderID":"66969-6022","ShipCountry":"ID","ShipAddress":"667 Bellgrove Circle","ShipName":"DuBuque Inc","OrderDate":"5/27/2017","TotalPayment":"$641933.93","Status":1,"Type":3},{"OrderID":"51079-651","ShipCountry":"HR","ShipAddress":"2854 Anderson Court","ShipName":"McLaughlin-Kovacek","OrderDate":"3/13/2017","TotalPayment":"$1083945.75","Status":4,"Type":1},{"OrderID":"57520-0054","ShipCountry":"DE","ShipAddress":"08 Morningstar Alley","ShipName":"Romaguera, McKenzie and Sauer","OrderDate":"2/14/2016","TotalPayment":"$866786.34","Status":1,"Type":1},{"OrderID":"0615-7549","ShipCountry":"PH","ShipAddress":"2754 Carberry Pass","ShipName":"Rogahn-Cole","OrderDate":"8/8/2017","TotalPayment":"$136727.95","Status":4,"Type":1},{"OrderID":"49999-049","ShipCountry":"US","ShipAddress":"1408 Chinook Crossing","ShipName":"Kunze, Sauer and Koepp","OrderDate":"1/5/2016","TotalPayment":"$253533.22","Status":1,"Type":2},{"OrderID":"11673-311","ShipCountry":"ID","ShipAddress":"8 Ronald Regan Plaza","ShipName":"Kunze and Sons","OrderDate":"6/12/2016","TotalPayment":"$364517.44","Status":2,"Type":2},{"OrderID":"0703-9105","ShipCountry":"CN","ShipAddress":"97 Sachtjen Avenue","ShipName":"Gottlieb and Sons","OrderDate":"12/19/2017","TotalPayment":"$1189295.37","Status":1,"Type":1},{"OrderID":"68745-1044","ShipCountry":"PK","ShipAddress":"241 Elka Center","ShipName":"Goldner Inc","OrderDate":"6/3/2016","TotalPayment":"$1038504.95","Status":3,"Type":2},{"OrderID":"36987-2825","ShipCountry":"PL","ShipAddress":"4845 Surrey Park","ShipName":"Carter-Stanton","OrderDate":"4/25/2016","TotalPayment":"$311707.99","Status":4,"Type":2},{"OrderID":"59746-348","ShipCountry":"BR","ShipAddress":"058 Westend Lane","ShipName":"West-D\'Amore","OrderDate":"3/20/2016","TotalPayment":"$370995.08","Status":1,"Type":2},{"OrderID":"54569-5418","ShipCountry":"CN","ShipAddress":"39 Golden Leaf Avenue","ShipName":"Cormier, Sanford and Thiel","OrderDate":"8/29/2016","TotalPayment":"$426167.14","Status":5,"Type":2}]},\n{"RecordID":163,"FirstName":"Luci","LastName":"Baily","Company":"Gevee","Email":"lbaily4i@facebook.com","Phone":"555-486-6648","Status":6,"Type":2,"Orders":[{"OrderID":"0113-0516","ShipCountry":"HN","ShipAddress":"5 Anhalt Court","ShipName":"Ledner, Nitzsche and Sanford","OrderDate":"7/2/2016","TotalPayment":"$317206.62","Status":4,"Type":2},{"OrderID":"44523-415","ShipCountry":"CR","ShipAddress":"7 Harbort Alley","ShipName":"Block, Powlowski and Moore","OrderDate":"5/19/2017","TotalPayment":"$215212.50","Status":2,"Type":2},{"OrderID":"46122-182","ShipCountry":"CM","ShipAddress":"371 Farragut Pass","ShipName":"Orn, Jakubowski and Smitham","OrderDate":"3/31/2017","TotalPayment":"$755893.16","Status":1,"Type":3},{"OrderID":"65044-0843","ShipCountry":"MX","ShipAddress":"66 High Crossing Street","ShipName":"Walker, Huels and Smitham","OrderDate":"3/18/2016","TotalPayment":"$614528.33","Status":6,"Type":2},{"OrderID":"11822-0471","ShipCountry":"VE","ShipAddress":"6 Bultman Circle","ShipName":"Connelly-Schuster","OrderDate":"5/1/2016","TotalPayment":"$51542.85","Status":4,"Type":2},{"OrderID":"36987-3319","ShipCountry":"HT","ShipAddress":"10 Eggendart Drive","ShipName":"Flatley-Howe","OrderDate":"2/28/2017","TotalPayment":"$1150160.58","Status":2,"Type":1},{"OrderID":"54868-2817","ShipCountry":"ID","ShipAddress":"1 Bultman Court","ShipName":"Heaney-Hermiston","OrderDate":"12/19/2017","TotalPayment":"$465175.00","Status":4,"Type":1}]},\n{"RecordID":164,"FirstName":"Nevile","LastName":"Goodbanne","Company":"Twitterbeat","Email":"ngoodbanne4j@yolasite.com","Phone":"352-110-5536","Status":4,"Type":2,"Orders":[{"OrderID":"0904-5806","ShipCountry":"PL","ShipAddress":"962 Meadow Vale Court","ShipName":"Lakin Inc","OrderDate":"2/20/2016","TotalPayment":"$462719.36","Status":4,"Type":2},{"OrderID":"53329-822","ShipCountry":"ID","ShipAddress":"53 Steensland Road","ShipName":"Hermiston, Cassin and Adams","OrderDate":"1/16/2017","TotalPayment":"$314828.42","Status":5,"Type":1},{"OrderID":"48951-3054","ShipCountry":"CN","ShipAddress":"6098 Sycamore Parkway","ShipName":"Koepp-Parker","OrderDate":"10/23/2016","TotalPayment":"$864468.79","Status":2,"Type":1},{"OrderID":"52584-039","ShipCountry":"US","ShipAddress":"629 Boyd Drive","ShipName":"Miller and Sons","OrderDate":"5/30/2017","TotalPayment":"$988478.15","Status":3,"Type":3},{"OrderID":"0440-7465","ShipCountry":"AL","ShipAddress":"967 John Wall Trail","ShipName":"Mosciski and Sons","OrderDate":"3/7/2016","TotalPayment":"$918699.01","Status":6,"Type":2},{"OrderID":"24385-623","ShipCountry":"FR","ShipAddress":"6178 Forest Parkway","ShipName":"Fisher LLC","OrderDate":"1/5/2016","TotalPayment":"$794768.49","Status":1,"Type":2},{"OrderID":"54575-121","ShipCountry":"CN","ShipAddress":"49 Daystar Lane","ShipName":"Bogan, Purdy and Stanton","OrderDate":"10/7/2017","TotalPayment":"$702999.42","Status":3,"Type":3},{"OrderID":"53808-0345","ShipCountry":"DO","ShipAddress":"76997 Marquette Place","ShipName":"Turcotte and Sons","OrderDate":"3/13/2016","TotalPayment":"$84059.25","Status":2,"Type":3},{"OrderID":"52731-7004","ShipCountry":"NI","ShipAddress":"8 Straubel Drive","ShipName":"Thompson, Murazik and Stroman","OrderDate":"4/28/2017","TotalPayment":"$503330.45","Status":5,"Type":3}]},\n{"RecordID":165,"FirstName":"Allyson","LastName":"Hansley","Company":"Realfire","Email":"ahansley4k@i2i.jp","Phone":"149-570-3990","Status":5,"Type":2,"Orders":[{"OrderID":"49035-516","ShipCountry":"KH","ShipAddress":"69 Pankratz Hill","ShipName":"Spinka-Denesik","OrderDate":"10/13/2017","TotalPayment":"$842807.00","Status":3,"Type":1},{"OrderID":"54868-3230","ShipCountry":"CN","ShipAddress":"5 Kenwood Pass","ShipName":"Lang, Schmidt and Jast","OrderDate":"12/30/2017","TotalPayment":"$367788.28","Status":2,"Type":1},{"OrderID":"0527-1383","ShipCountry":"CN","ShipAddress":"1 Westridge Avenue","ShipName":"Senger and Sons","OrderDate":"4/1/2016","TotalPayment":"$588778.81","Status":1,"Type":2},{"OrderID":"57297-201","ShipCountry":"CN","ShipAddress":"1175 Hazelcrest Crossing","ShipName":"Cummerata Group","OrderDate":"10/9/2016","TotalPayment":"$921101.32","Status":2,"Type":3},{"OrderID":"64525-0560","ShipCountry":"ID","ShipAddress":"397 West Parkway","ShipName":"Howell, Kertzmann and Goyette","OrderDate":"4/2/2016","TotalPayment":"$287502.46","Status":6,"Type":3},{"OrderID":"0179-0015","ShipCountry":"CN","ShipAddress":"86244 Talmadge Road","ShipName":"Conroy LLC","OrderDate":"4/7/2016","TotalPayment":"$915611.80","Status":1,"Type":2},{"OrderID":"76354-001","ShipCountry":"AR","ShipAddress":"72684 Packers Way","ShipName":"Gaylord-Bartell","OrderDate":"7/24/2016","TotalPayment":"$785020.16","Status":2,"Type":3},{"OrderID":"0555-0808","ShipCountry":"RU","ShipAddress":"80141 Mariners Cove Avenue","ShipName":"Frami-Boehm","OrderDate":"3/31/2017","TotalPayment":"$1158102.08","Status":6,"Type":3}]},\n{"RecordID":166,"FirstName":"Nari","LastName":"Kehri","Company":"Youbridge","Email":"nkehri4l@ehow.com","Phone":"262-783-8457","Status":3,"Type":3,"Orders":[{"OrderID":"50666-009","ShipCountry":"MA","ShipAddress":"316 Tennessee Road","ShipName":"Konopelski Group","OrderDate":"7/3/2017","TotalPayment":"$359573.69","Status":2,"Type":1},{"OrderID":"10078-001","ShipCountry":"PT","ShipAddress":"9484 Muir Trail","ShipName":"Gleason, Erdman and McKenzie","OrderDate":"11/5/2017","TotalPayment":"$1027913.81","Status":4,"Type":1},{"OrderID":"49738-210","ShipCountry":"CN","ShipAddress":"1 Bluestem Plaza","ShipName":"Balistreri, Wyman and Kautzer","OrderDate":"9/7/2017","TotalPayment":"$621839.76","Status":1,"Type":3},{"OrderID":"0069-0468","ShipCountry":"SE","ShipAddress":"96205 American Ash Junction","ShipName":"Frami Group","OrderDate":"5/5/2017","TotalPayment":"$662462.49","Status":3,"Type":2},{"OrderID":"36987-2758","ShipCountry":"PH","ShipAddress":"1 Swallow Road","ShipName":"Feest-Bailey","OrderDate":"3/8/2017","TotalPayment":"$558521.38","Status":3,"Type":1},{"OrderID":"0078-0385","ShipCountry":"SE","ShipAddress":"92 Tennessee Pass","ShipName":"Rogahn, Cummings and Bernier","OrderDate":"12/15/2016","TotalPayment":"$608382.40","Status":6,"Type":1},{"OrderID":"56062-160","ShipCountry":"ID","ShipAddress":"09224 Loftsgordon Court","ShipName":"Lebsack-Donnelly","OrderDate":"9/2/2017","TotalPayment":"$1140093.15","Status":4,"Type":3},{"OrderID":"44911-0075","ShipCountry":"MY","ShipAddress":"602 Southridge Point","ShipName":"Thiel, Raynor and Bode","OrderDate":"9/30/2016","TotalPayment":"$628333.36","Status":2,"Type":1},{"OrderID":"55651-028","ShipCountry":"RU","ShipAddress":"1 Novick Place","ShipName":"Monahan, O\'Conner and O\'Reilly","OrderDate":"12/6/2016","TotalPayment":"$15847.09","Status":5,"Type":3},{"OrderID":"0068-0011","ShipCountry":"CN","ShipAddress":"1603 Esker Point","ShipName":"Goldner, Rippin and Cartwright","OrderDate":"1/24/2017","TotalPayment":"$279123.50","Status":5,"Type":3},{"OrderID":"43857-0149","ShipCountry":"ID","ShipAddress":"33 Hoard Circle","ShipName":"Koepp, Dicki and Kreiger","OrderDate":"4/16/2016","TotalPayment":"$156152.69","Status":5,"Type":3},{"OrderID":"49738-372","ShipCountry":"NO","ShipAddress":"251 Maywood Street","ShipName":"VonRueden, Mraz and Conn","OrderDate":"7/23/2016","TotalPayment":"$1109575.85","Status":3,"Type":3},{"OrderID":"0032-1708","ShipCountry":"ID","ShipAddress":"30 Jenna Way","ShipName":"Gottlieb, Little and Johns","OrderDate":"12/8/2017","TotalPayment":"$729797.50","Status":5,"Type":3},{"OrderID":"46122-181","ShipCountry":"RS","ShipAddress":"86 Dahle Place","ShipName":"Wehner and Sons","OrderDate":"10/16/2016","TotalPayment":"$283193.93","Status":2,"Type":3},{"OrderID":"24987-435","ShipCountry":"CA","ShipAddress":"57 Village Road","ShipName":"Johnston, Denesik and O\'Connell","OrderDate":"1/14/2017","TotalPayment":"$573257.82","Status":5,"Type":2},{"OrderID":"65113-2373","ShipCountry":"ID","ShipAddress":"7 Corscot Hill","ShipName":"Hettinger, Hodkiewicz and Purdy","OrderDate":"7/2/2017","TotalPayment":"$766973.49","Status":3,"Type":3},{"OrderID":"55319-341","ShipCountry":"CZ","ShipAddress":"2570 Donald Place","ShipName":"Powlowski and Sons","OrderDate":"10/20/2017","TotalPayment":"$1059986.78","Status":1,"Type":2},{"OrderID":"0378-0215","ShipCountry":"MX","ShipAddress":"36 Russell Junction","ShipName":"Glover Group","OrderDate":"12/16/2016","TotalPayment":"$686632.91","Status":2,"Type":1}]},\n{"RecordID":167,"FirstName":"Chickie","LastName":"Waulker","Company":"Trudeo","Email":"cwaulker4m@harvard.edu","Phone":"604-747-5710","Status":1,"Type":1,"Orders":[{"OrderID":"50580-198","ShipCountry":"CN","ShipAddress":"72 Texas Hill","ShipName":"Parker, Farrell and Hilpert","OrderDate":"9/18/2016","TotalPayment":"$170627.02","Status":6,"Type":3},{"OrderID":"54973-3114","ShipCountry":"CA","ShipAddress":"88 Pierstorff Center","ShipName":"Bahringer, King and Casper","OrderDate":"9/7/2017","TotalPayment":"$752875.53","Status":2,"Type":1},{"OrderID":"49897-160","ShipCountry":"PT","ShipAddress":"7 Coolidge Street","ShipName":"Gottlieb, Daugherty and Von","OrderDate":"4/23/2017","TotalPayment":"$981942.07","Status":5,"Type":2},{"OrderID":"50436-6579","ShipCountry":"AZ","ShipAddress":"48413 Mallory Park","ShipName":"Funk-Wisozk","OrderDate":"3/16/2017","TotalPayment":"$1137530.44","Status":1,"Type":3},{"OrderID":"17630-2002","ShipCountry":"BA","ShipAddress":"8 Moose Place","ShipName":"Satterfield Inc","OrderDate":"8/27/2017","TotalPayment":"$1114487.32","Status":6,"Type":2},{"OrderID":"0517-0132","ShipCountry":"ID","ShipAddress":"060 Reinke Trail","ShipName":"Daniel Inc","OrderDate":"5/20/2016","TotalPayment":"$222095.28","Status":3,"Type":1},{"OrderID":"62584-747","ShipCountry":"AR","ShipAddress":"6350 Longview Plaza","ShipName":"Ebert-Runolfsson","OrderDate":"3/11/2016","TotalPayment":"$498777.40","Status":5,"Type":2},{"OrderID":"55910-105","ShipCountry":"PL","ShipAddress":"11872 Orin Alley","ShipName":"Davis LLC","OrderDate":"7/14/2017","TotalPayment":"$351937.58","Status":3,"Type":1},{"OrderID":"61543-2285","ShipCountry":"US","ShipAddress":"02070 Aberg Park","ShipName":"Zboncak Inc","OrderDate":"6/10/2017","TotalPayment":"$1013232.84","Status":4,"Type":2},{"OrderID":"59762-0047","ShipCountry":"PH","ShipAddress":"88498 Division Plaza","ShipName":"Bernier, Hettinger and Bogan","OrderDate":"12/20/2017","TotalPayment":"$522271.08","Status":2,"Type":2},{"OrderID":"68703-116","ShipCountry":"VE","ShipAddress":"0 Acker Avenue","ShipName":"Watsica, Marquardt and Roob","OrderDate":"8/14/2016","TotalPayment":"$1037635.67","Status":3,"Type":1},{"OrderID":"35356-050","ShipCountry":"BR","ShipAddress":"8 Brickson Park Trail","ShipName":"Streich-Balistreri","OrderDate":"11/16/2016","TotalPayment":"$155850.02","Status":1,"Type":2},{"OrderID":"68968-6625","ShipCountry":"ID","ShipAddress":"94766 Mayfield Circle","ShipName":"Oberbrunner Group","OrderDate":"5/6/2017","TotalPayment":"$212860.39","Status":2,"Type":2},{"OrderID":"0006-0711","ShipCountry":"GT","ShipAddress":"4557 Gulseth Trail","ShipName":"Gleichner, Ratke and Crist","OrderDate":"9/16/2016","TotalPayment":"$1052041.03","Status":1,"Type":2},{"OrderID":"55154-2058","ShipCountry":"RU","ShipAddress":"009 Mayfield Drive","ShipName":"Jenkins-Murray","OrderDate":"4/11/2016","TotalPayment":"$618296.50","Status":1,"Type":2},{"OrderID":"43857-0246","ShipCountry":"ID","ShipAddress":"896 Independence Center","ShipName":"Collins Inc","OrderDate":"12/6/2017","TotalPayment":"$478480.50","Status":2,"Type":3},{"OrderID":"55714-4485","ShipCountry":"BD","ShipAddress":"572 Lunder Hill","ShipName":"Schmidt-Kozey","OrderDate":"10/7/2017","TotalPayment":"$835269.81","Status":3,"Type":3}]},\n{"RecordID":168,"FirstName":"Emilie","LastName":"Cornall","Company":"Kwinu","Email":"ecornall4n@bloomberg.com","Phone":"880-221-7943","Status":6,"Type":2,"Orders":[{"OrderID":"0224-1801","ShipCountry":"CN","ShipAddress":"5840 Coolidge Hill","ShipName":"Larson, O\'Connell and Swaniawski","OrderDate":"2/25/2016","TotalPayment":"$94068.20","Status":1,"Type":1},{"OrderID":"68682-370","ShipCountry":"RU","ShipAddress":"9 Graceland Center","ShipName":"Runolfsson LLC","OrderDate":"9/23/2016","TotalPayment":"$286740.72","Status":5,"Type":2},{"OrderID":"36987-1337","ShipCountry":"BO","ShipAddress":"7 Myrtle Hill","ShipName":"Kassulke-Kessler","OrderDate":"5/11/2016","TotalPayment":"$731389.69","Status":2,"Type":3},{"OrderID":"16590-659","ShipCountry":"CN","ShipAddress":"0401 Iowa Junction","ShipName":"Ernser-Dare","OrderDate":"6/28/2017","TotalPayment":"$1198633.68","Status":4,"Type":1},{"OrderID":"58406-455","ShipCountry":"RU","ShipAddress":"39098 Carberry Circle","ShipName":"O\'Conner-Walsh","OrderDate":"2/1/2016","TotalPayment":"$899693.10","Status":4,"Type":1},{"OrderID":"51346-227","ShipCountry":"PH","ShipAddress":"65450 Meadow Vale Trail","ShipName":"Eichmann-Hagenes","OrderDate":"6/13/2017","TotalPayment":"$621045.95","Status":1,"Type":2},{"OrderID":"0378-3131","ShipCountry":"IQ","ShipAddress":"07655 Talmadge Point","ShipName":"Mayer, Gutmann and Conroy","OrderDate":"2/2/2017","TotalPayment":"$1040441.87","Status":6,"Type":2},{"OrderID":"11559-021","ShipCountry":"CN","ShipAddress":"28 Morning Hill","ShipName":"Halvorson-Mueller","OrderDate":"9/22/2016","TotalPayment":"$802737.68","Status":1,"Type":3}]},\n{"RecordID":169,"FirstName":"Ines","LastName":"Perrin","Company":"Eazzy","Email":"iperrin4o@census.gov","Phone":"657-453-0202","Status":6,"Type":1,"Orders":[{"OrderID":"41167-4131","ShipCountry":"PL","ShipAddress":"73 Westport Hill","ShipName":"Blick, Gislason and Hoeger","OrderDate":"8/25/2017","TotalPayment":"$446772.45","Status":1,"Type":1},{"OrderID":"49349-096","ShipCountry":"FR","ShipAddress":"2914 Graceland Circle","ShipName":"Ortiz Inc","OrderDate":"1/7/2016","TotalPayment":"$767245.71","Status":2,"Type":1},{"OrderID":"52533-005","ShipCountry":"SY","ShipAddress":"1 Tomscot Court","ShipName":"Hoeger-Zemlak","OrderDate":"10/13/2016","TotalPayment":"$1030940.40","Status":5,"Type":1},{"OrderID":"50730-8204","ShipCountry":"GB","ShipAddress":"6546 Roth Parkway","ShipName":"Kling-Koss","OrderDate":"8/23/2016","TotalPayment":"$282596.70","Status":5,"Type":3},{"OrderID":"0051-0023","ShipCountry":"ID","ShipAddress":"77 Armistice Lane","ShipName":"Lueilwitz-Towne","OrderDate":"7/5/2016","TotalPayment":"$347616.00","Status":4,"Type":1},{"OrderID":"44009-801","ShipCountry":"FR","ShipAddress":"5250 Spohn Place","ShipName":"Russel, Wuckert and White","OrderDate":"3/19/2016","TotalPayment":"$192741.96","Status":5,"Type":3},{"OrderID":"68180-722","ShipCountry":"SI","ShipAddress":"02022 Oxford Place","ShipName":"Yost-Metz","OrderDate":"2/10/2016","TotalPayment":"$879278.77","Status":2,"Type":3},{"OrderID":"13537-423","ShipCountry":"GH","ShipAddress":"48440 Maple Wood Parkway","ShipName":"Oberbrunner-Halvorson","OrderDate":"3/20/2016","TotalPayment":"$534092.54","Status":6,"Type":1},{"OrderID":"36987-1444","ShipCountry":"CN","ShipAddress":"68 Old Gate Crossing","ShipName":"Zboncak and Sons","OrderDate":"1/3/2017","TotalPayment":"$1179692.75","Status":2,"Type":2},{"OrderID":"55154-1347","ShipCountry":"CN","ShipAddress":"79 Magdeline Avenue","ShipName":"Macejkovic and Sons","OrderDate":"6/30/2016","TotalPayment":"$389251.26","Status":3,"Type":2},{"OrderID":"57691-110","ShipCountry":"ID","ShipAddress":"31 Gulseth Pass","ShipName":"Keeling-Veum","OrderDate":"7/9/2017","TotalPayment":"$89418.52","Status":4,"Type":1},{"OrderID":"62211-338","ShipCountry":"PL","ShipAddress":"1 Donald Park","ShipName":"Ortiz-Bruen","OrderDate":"12/13/2017","TotalPayment":"$756326.18","Status":4,"Type":3},{"OrderID":"42291-655","ShipCountry":"CN","ShipAddress":"94927 Bashford Hill","ShipName":"Aufderhar and Sons","OrderDate":"8/3/2017","TotalPayment":"$872891.74","Status":6,"Type":3},{"OrderID":"21130-556","ShipCountry":"GR","ShipAddress":"5712 Swallow Junction","ShipName":"Lueilwitz Group","OrderDate":"4/12/2016","TotalPayment":"$42766.15","Status":2,"Type":2},{"OrderID":"63830-221","ShipCountry":"CN","ShipAddress":"42366 Division Place","ShipName":"Brakus, McCullough and Brakus","OrderDate":"6/14/2017","TotalPayment":"$385273.00","Status":6,"Type":3},{"OrderID":"57520-0528","ShipCountry":"ZA","ShipAddress":"088 Carberry Place","ShipName":"Torp Group","OrderDate":"1/11/2017","TotalPayment":"$356929.21","Status":5,"Type":1}]},\n{"RecordID":170,"FirstName":"Andras","LastName":"Bunn","Company":"Topdrive","Email":"abunn4p@exblog.jp","Phone":"109-143-1017","Status":2,"Type":3,"Orders":[{"OrderID":"11559-769","ShipCountry":"CN","ShipAddress":"2 Mallory Crossing","ShipName":"Hand-Hills","OrderDate":"8/18/2016","TotalPayment":"$50424.46","Status":3,"Type":2},{"OrderID":"0173-0478","ShipCountry":"RU","ShipAddress":"126 Lakeland Way","ShipName":"Walsh, Boyer and Eichmann","OrderDate":"2/8/2016","TotalPayment":"$338335.60","Status":6,"Type":1},{"OrderID":"0113-0578","ShipCountry":"PL","ShipAddress":"046 Browning Pass","ShipName":"Leannon-Haley","OrderDate":"7/26/2016","TotalPayment":"$158095.36","Status":6,"Type":2},{"OrderID":"36987-2396","ShipCountry":"CN","ShipAddress":"18 Mcbride Park","ShipName":"Hoeger, Spencer and Ryan","OrderDate":"7/25/2017","TotalPayment":"$1024111.07","Status":1,"Type":1},{"OrderID":"54868-4126","ShipCountry":"BR","ShipAddress":"8 Eastwood Court","ShipName":"Langworth, Gerhold and Kessler","OrderDate":"2/20/2017","TotalPayment":"$415616.18","Status":5,"Type":1},{"OrderID":"50730-8744","ShipCountry":"SI","ShipAddress":"25 Bunting Hill","ShipName":"Tremblay, Feil and Krajcik","OrderDate":"8/7/2016","TotalPayment":"$384724.70","Status":4,"Type":2},{"OrderID":"59115-044","ShipCountry":"ID","ShipAddress":"59 Straubel Point","ShipName":"Sawayn-Jaskolski","OrderDate":"4/15/2016","TotalPayment":"$36235.31","Status":4,"Type":2},{"OrderID":"0781-1496","ShipCountry":"ID","ShipAddress":"5 Pleasure Drive","ShipName":"Jakubowski, Deckow and Carroll","OrderDate":"4/24/2017","TotalPayment":"$1040711.02","Status":3,"Type":1},{"OrderID":"52125-099","ShipCountry":"RU","ShipAddress":"96327 Milwaukee Park","ShipName":"Koch-Durgan","OrderDate":"9/6/2017","TotalPayment":"$649409.15","Status":2,"Type":1},{"OrderID":"98132-176","ShipCountry":"ID","ShipAddress":"715 Burning Wood Pass","ShipName":"Schultz and Sons","OrderDate":"12/31/2016","TotalPayment":"$369723.81","Status":1,"Type":1},{"OrderID":"21695-662","ShipCountry":"AL","ShipAddress":"3136 Algoma Point","ShipName":"Ratke Group","OrderDate":"7/14/2016","TotalPayment":"$682917.61","Status":5,"Type":3},{"OrderID":"60760-141","ShipCountry":"IR","ShipAddress":"1 Mcbride Parkway","ShipName":"Lueilwitz-Homenick","OrderDate":"7/19/2016","TotalPayment":"$984551.60","Status":1,"Type":2},{"OrderID":"10454-712","ShipCountry":"CN","ShipAddress":"46981 Moland Point","ShipName":"Jacobson, O\'Connell and Farrell","OrderDate":"1/22/2016","TotalPayment":"$210831.37","Status":3,"Type":3},{"OrderID":"68788-9500","ShipCountry":"US","ShipAddress":"22 Luster Parkway","ShipName":"Keeling Group","OrderDate":"10/14/2017","TotalPayment":"$360797.72","Status":3,"Type":1},{"OrderID":"65044-2622","ShipCountry":"NG","ShipAddress":"3294 Dayton Terrace","ShipName":"Spencer Inc","OrderDate":"4/25/2016","TotalPayment":"$427552.81","Status":1,"Type":2},{"OrderID":"64942-1114","ShipCountry":"CN","ShipAddress":"293 Clarendon Drive","ShipName":"Hammes, Kirlin and Hyatt","OrderDate":"5/7/2016","TotalPayment":"$1195316.37","Status":3,"Type":1},{"OrderID":"76439-260","ShipCountry":"CZ","ShipAddress":"427 Nancy Hill","ShipName":"Koch LLC","OrderDate":"1/13/2016","TotalPayment":"$271708.15","Status":2,"Type":3},{"OrderID":"59779-216","ShipCountry":"CA","ShipAddress":"95 Lakewood Gardens Avenue","ShipName":"Upton-Cummings","OrderDate":"4/25/2016","TotalPayment":"$450732.04","Status":6,"Type":3},{"OrderID":"49349-276","ShipCountry":"JP","ShipAddress":"8062 Dahle Avenue","ShipName":"Stark LLC","OrderDate":"5/12/2017","TotalPayment":"$497994.65","Status":3,"Type":3},{"OrderID":"63629-1263","ShipCountry":"TH","ShipAddress":"73140 Fordem Road","ShipName":"Haley Inc","OrderDate":"2/9/2017","TotalPayment":"$307355.83","Status":6,"Type":2}]},\n{"RecordID":171,"FirstName":"Morse","LastName":"Chappelle","Company":"Browsebug","Email":"mchappelle4q@amazonaws.com","Phone":"349-963-7857","Status":2,"Type":3,"Orders":[{"OrderID":"51389-252","ShipCountry":"ID","ShipAddress":"7492 David Junction","ShipName":"Heaney, Mitchell and Muller","OrderDate":"5/19/2016","TotalPayment":"$293902.08","Status":2,"Type":3},{"OrderID":"13734-132","ShipCountry":"CN","ShipAddress":"43 Sutherland Circle","ShipName":"Thompson-Beahan","OrderDate":"1/12/2016","TotalPayment":"$1027999.97","Status":4,"Type":1},{"OrderID":"0378-5425","ShipCountry":"VE","ShipAddress":"1697 Hermina Park","ShipName":"Langworth LLC","OrderDate":"9/17/2016","TotalPayment":"$724689.47","Status":5,"Type":1},{"OrderID":"16590-659","ShipCountry":"FM","ShipAddress":"0 Karstens Street","ShipName":"Ledner LLC","OrderDate":"11/5/2017","TotalPayment":"$1100721.16","Status":2,"Type":3},{"OrderID":"0615-7709","ShipCountry":"ID","ShipAddress":"43 Buell Point","ShipName":"Bayer, Upton and Schulist","OrderDate":"1/9/2017","TotalPayment":"$167476.49","Status":1,"Type":1},{"OrderID":"55714-4551","ShipCountry":"CN","ShipAddress":"8171 Fremont Center","ShipName":"Abbott-Upton","OrderDate":"1/3/2016","TotalPayment":"$426569.72","Status":3,"Type":3},{"OrderID":"37012-470","ShipCountry":"CN","ShipAddress":"171 Carey Junction","ShipName":"Kshlerin-Gislason","OrderDate":"2/18/2016","TotalPayment":"$581328.46","Status":4,"Type":2},{"OrderID":"11673-245","ShipCountry":"PE","ShipAddress":"3 Eggendart Place","ShipName":"Kihn LLC","OrderDate":"9/15/2017","TotalPayment":"$895300.98","Status":1,"Type":1},{"OrderID":"36000-064","ShipCountry":"ID","ShipAddress":"542 Park Meadow Trail","ShipName":"Watsica, O\'Conner and Wolf","OrderDate":"3/23/2016","TotalPayment":"$149028.00","Status":5,"Type":2},{"OrderID":"0409-1782","ShipCountry":"HR","ShipAddress":"90 Victoria Avenue","ShipName":"Muller and Sons","OrderDate":"6/22/2017","TotalPayment":"$1147703.99","Status":5,"Type":2},{"OrderID":"60505-3723","ShipCountry":"ID","ShipAddress":"2622 Ridgeview Alley","ShipName":"Leuschke, Renner and King","OrderDate":"6/11/2016","TotalPayment":"$827938.64","Status":2,"Type":2}]},\n{"RecordID":172,"FirstName":"Son","LastName":"Leopold","Company":"Mybuzz","Email":"sleopold4r@istockphoto.com","Phone":"861-380-7717","Status":4,"Type":1,"Orders":[{"OrderID":"55111-688","ShipCountry":"MD","ShipAddress":"0027 Macpherson Way","ShipName":"Conn-Trantow","OrderDate":"5/16/2016","TotalPayment":"$718633.19","Status":3,"Type":2},{"OrderID":"41250-090","ShipCountry":"BR","ShipAddress":"8 Bluejay Court","ShipName":"Herzog, Russel and Wuckert","OrderDate":"5/5/2017","TotalPayment":"$461605.92","Status":2,"Type":3},{"OrderID":"68330-001","ShipCountry":"AR","ShipAddress":"8045 Buell Way","ShipName":"Wiza Group","OrderDate":"6/4/2017","TotalPayment":"$51632.61","Status":5,"Type":1},{"OrderID":"11822-0416","ShipCountry":"ID","ShipAddress":"17306 Nevada Pass","ShipName":"Wiegand LLC","OrderDate":"12/18/2016","TotalPayment":"$1119947.34","Status":4,"Type":2},{"OrderID":"50332-0127","ShipCountry":"CN","ShipAddress":"918 Mendota Hill","ShipName":"Hane Group","OrderDate":"6/8/2017","TotalPayment":"$1030059.78","Status":1,"Type":2},{"OrderID":"43269-759","ShipCountry":"RU","ShipAddress":"06 Mifflin Alley","ShipName":"Johnson-Reichert","OrderDate":"4/24/2017","TotalPayment":"$626588.91","Status":2,"Type":1},{"OrderID":"0378-3422","ShipCountry":"PS","ShipAddress":"019 Gulseth Park","ShipName":"Kling LLC","OrderDate":"6/4/2016","TotalPayment":"$414907.81","Status":2,"Type":1},{"OrderID":"54868-3049","ShipCountry":"SL","ShipAddress":"50 La Follette Point","ShipName":"Schuster, Stamm and Kiehn","OrderDate":"6/28/2016","TotalPayment":"$1074568.16","Status":6,"Type":3},{"OrderID":"60681-1407","ShipCountry":"CN","ShipAddress":"1 Maywood Court","ShipName":"Haley Group","OrderDate":"6/23/2017","TotalPayment":"$389817.15","Status":5,"Type":1},{"OrderID":"49349-892","ShipCountry":"RU","ShipAddress":"081 Birchwood Court","ShipName":"Torphy and Sons","OrderDate":"10/18/2016","TotalPayment":"$863341.50","Status":3,"Type":2},{"OrderID":"10544-219","ShipCountry":"CI","ShipAddress":"816 Everett Park","ShipName":"Streich Inc","OrderDate":"10/28/2017","TotalPayment":"$850148.42","Status":2,"Type":1},{"OrderID":"55154-4622","ShipCountry":"CN","ShipAddress":"87 Green Point","ShipName":"Kautzer-Reynolds","OrderDate":"1/23/2016","TotalPayment":"$34839.56","Status":3,"Type":2},{"OrderID":"64169-001","ShipCountry":"CF","ShipAddress":"924 Paget Drive","ShipName":"Sporer-Boehm","OrderDate":"6/17/2017","TotalPayment":"$323272.13","Status":2,"Type":1},{"OrderID":"55289-007","ShipCountry":"CN","ShipAddress":"840 1st Park","ShipName":"Hyatt-Funk","OrderDate":"10/1/2016","TotalPayment":"$397260.29","Status":1,"Type":3},{"OrderID":"37808-455","ShipCountry":"MY","ShipAddress":"9 Northridge Road","ShipName":"Bergstrom, Gutmann and Gorczany","OrderDate":"1/23/2017","TotalPayment":"$33863.33","Status":3,"Type":3},{"OrderID":"58411-105","ShipCountry":"CV","ShipAddress":"16208 Derek Alley","ShipName":"Renner and Sons","OrderDate":"12/21/2016","TotalPayment":"$905307.17","Status":3,"Type":2},{"OrderID":"59779-190","ShipCountry":"AM","ShipAddress":"94 Buena Vista Center","ShipName":"Huel, Toy and O\'Conner","OrderDate":"11/26/2017","TotalPayment":"$582004.47","Status":5,"Type":1},{"OrderID":"65044-3596","ShipCountry":"CN","ShipAddress":"65 Troy Alley","ShipName":"Keeling LLC","OrderDate":"5/28/2016","TotalPayment":"$33410.70","Status":5,"Type":2}]},\n{"RecordID":173,"FirstName":"Jimmie","LastName":"O\' Mahony","Company":"Tambee","Email":"jomahony4s@pbs.org","Phone":"359-797-4879","Status":5,"Type":3,"Orders":[{"OrderID":"49685-928","ShipCountry":"TT","ShipAddress":"66 International Park","ShipName":"Hoeger-Cremin","OrderDate":"11/6/2017","TotalPayment":"$1014109.67","Status":3,"Type":3},{"OrderID":"0904-6068","ShipCountry":"PH","ShipAddress":"83 Utah Plaza","ShipName":"Sporer Inc","OrderDate":"12/28/2017","TotalPayment":"$69215.93","Status":4,"Type":2},{"OrderID":"13734-125","ShipCountry":"ID","ShipAddress":"4 Larry Way","ShipName":"Sauer and Sons","OrderDate":"2/25/2016","TotalPayment":"$653446.03","Status":3,"Type":3},{"OrderID":"11673-145","ShipCountry":"GR","ShipAddress":"3 Express Junction","ShipName":"Buckridge-Zulauf","OrderDate":"2/2/2016","TotalPayment":"$554033.58","Status":1,"Type":3},{"OrderID":"0641-6142","ShipCountry":"ID","ShipAddress":"31 3rd Parkway","ShipName":"Jerde, Morissette and Fay","OrderDate":"11/26/2017","TotalPayment":"$543016.78","Status":5,"Type":1},{"OrderID":"0025-2752","ShipCountry":"PH","ShipAddress":"424 Golf Course Place","ShipName":"Schinner and Sons","OrderDate":"7/26/2016","TotalPayment":"$501435.49","Status":3,"Type":3},{"OrderID":"76049-877","ShipCountry":"CN","ShipAddress":"2054 Artisan Crossing","ShipName":"McCullough, Witting and Ortiz","OrderDate":"6/25/2017","TotalPayment":"$801187.22","Status":5,"Type":1},{"OrderID":"12634-943","ShipCountry":"RU","ShipAddress":"42 Eastlawn Place","ShipName":"Wilkinson, Padberg and Herzog","OrderDate":"12/31/2016","TotalPayment":"$97694.24","Status":5,"Type":1},{"OrderID":"36987-2182","ShipCountry":"BR","ShipAddress":"420 Dennis Parkway","ShipName":"Boyer-Kiehn","OrderDate":"7/27/2017","TotalPayment":"$85939.32","Status":1,"Type":3},{"OrderID":"63286-0134","ShipCountry":"CN","ShipAddress":"008 Summer Ridge Trail","ShipName":"Morissette, Marks and Mills","OrderDate":"8/15/2017","TotalPayment":"$345252.34","Status":3,"Type":3},{"OrderID":"0904-5354","ShipCountry":"TJ","ShipAddress":"83 Tennessee Park","ShipName":"Mayert, Casper and Thiel","OrderDate":"4/30/2017","TotalPayment":"$669209.27","Status":4,"Type":1},{"OrderID":"0009-0090","ShipCountry":"US","ShipAddress":"5 Montana Way","ShipName":"Grant-Hackett","OrderDate":"5/28/2017","TotalPayment":"$531761.29","Status":5,"Type":2},{"OrderID":"65974-163","ShipCountry":"IL","ShipAddress":"56628 Havey Hill","ShipName":"Zboncak Group","OrderDate":"7/22/2017","TotalPayment":"$1180652.03","Status":4,"Type":3},{"OrderID":"23155-201","ShipCountry":"ID","ShipAddress":"7 Huxley Place","ShipName":"Christiansen Group","OrderDate":"8/29/2016","TotalPayment":"$452179.59","Status":5,"Type":1},{"OrderID":"21695-740","ShipCountry":"RU","ShipAddress":"23184 Elgar Court","ShipName":"Bosco LLC","OrderDate":"11/2/2017","TotalPayment":"$708204.17","Status":1,"Type":1},{"OrderID":"63629-4719","ShipCountry":"FR","ShipAddress":"7602 Kingsford Place","ShipName":"Rippin-Zboncak","OrderDate":"3/15/2016","TotalPayment":"$54783.14","Status":5,"Type":2}]},\n{"RecordID":174,"FirstName":"Paquito","LastName":"Culshew","Company":"Dabshots","Email":"pculshew4t@studiopress.com","Phone":"650-664-5023","Status":3,"Type":2,"Orders":[{"OrderID":"66336-238","ShipCountry":"CN","ShipAddress":"87 Bellgrove Place","ShipName":"Jacobs Inc","OrderDate":"12/9/2016","TotalPayment":"$971266.16","Status":4,"Type":2},{"OrderID":"56136-007","ShipCountry":"US","ShipAddress":"332 Basil Court","ShipName":"Ritchie and Sons","OrderDate":"1/23/2016","TotalPayment":"$246100.97","Status":1,"Type":3},{"OrderID":"10889-111","ShipCountry":"PT","ShipAddress":"967 Troy Parkway","ShipName":"Blanda-Schmeler","OrderDate":"9/23/2016","TotalPayment":"$750249.44","Status":4,"Type":3},{"OrderID":"0187-3758","ShipCountry":"ID","ShipAddress":"80859 Petterle Trail","ShipName":"Pouros, Kassulke and Muller","OrderDate":"7/19/2017","TotalPayment":"$471326.66","Status":2,"Type":1},{"OrderID":"46581-730","ShipCountry":"SE","ShipAddress":"2231 Mosinee Road","ShipName":"Hamill-Gutmann","OrderDate":"5/17/2017","TotalPayment":"$1010490.32","Status":5,"Type":3},{"OrderID":"0591-3770","ShipCountry":"PT","ShipAddress":"3 Pleasure Circle","ShipName":"Kertzmann and Sons","OrderDate":"8/2/2017","TotalPayment":"$351166.96","Status":4,"Type":2},{"OrderID":"49738-176","ShipCountry":"ID","ShipAddress":"8 Redwing Trail","ShipName":"Boyer-Prohaska","OrderDate":"7/7/2016","TotalPayment":"$618830.48","Status":2,"Type":1},{"OrderID":"54569-0289","ShipCountry":"CN","ShipAddress":"5 Sachs Avenue","ShipName":"Prohaska Inc","OrderDate":"9/11/2016","TotalPayment":"$22270.22","Status":5,"Type":3},{"OrderID":"0462-0277","ShipCountry":"GR","ShipAddress":"833 Dovetail Avenue","ShipName":"Yundt-Feest","OrderDate":"7/29/2016","TotalPayment":"$1073296.27","Status":5,"Type":3},{"OrderID":"24794-107","ShipCountry":"CN","ShipAddress":"77 Vahlen Hill","ShipName":"Bruen-Bergnaum","OrderDate":"7/13/2017","TotalPayment":"$186156.15","Status":5,"Type":3},{"OrderID":"30142-532","ShipCountry":"MX","ShipAddress":"3165 Northwestern Circle","ShipName":"Pacocha, Gislason and McLaughlin","OrderDate":"11/3/2016","TotalPayment":"$1031872.61","Status":3,"Type":3},{"OrderID":"66685-1012","ShipCountry":"RU","ShipAddress":"12791 Paget Terrace","ShipName":"Nicolas, Harber and Gislason","OrderDate":"6/8/2017","TotalPayment":"$181793.28","Status":4,"Type":2},{"OrderID":"32909-186","ShipCountry":"PL","ShipAddress":"17388 Anthes Center","ShipName":"Shields Inc","OrderDate":"11/27/2016","TotalPayment":"$931269.98","Status":5,"Type":2},{"OrderID":"0338-0125","ShipCountry":"AL","ShipAddress":"65840 Portage Lane","ShipName":"Koepp LLC","OrderDate":"1/14/2016","TotalPayment":"$110811.30","Status":6,"Type":1},{"OrderID":"44911-0065","ShipCountry":"JP","ShipAddress":"477 Stoughton Crossing","ShipName":"Rempel-Nader","OrderDate":"1/10/2016","TotalPayment":"$45942.92","Status":4,"Type":2},{"OrderID":"36987-1055","ShipCountry":"IR","ShipAddress":"371 Rieder Avenue","ShipName":"Dibbert Inc","OrderDate":"7/18/2017","TotalPayment":"$815541.11","Status":3,"Type":3},{"OrderID":"67510-0665","ShipCountry":"CN","ShipAddress":"4 Tennyson Road","ShipName":"Schaden LLC","OrderDate":"9/7/2017","TotalPayment":"$799690.89","Status":4,"Type":2},{"OrderID":"43063-012","ShipCountry":"LB","ShipAddress":"978 Northview Park","ShipName":"Marquardt, Considine and Toy","OrderDate":"3/28/2016","TotalPayment":"$1098157.59","Status":5,"Type":1},{"OrderID":"0591-3760","ShipCountry":"RU","ShipAddress":"7404 Arrowood Terrace","ShipName":"Brekke Inc","OrderDate":"12/22/2017","TotalPayment":"$727182.56","Status":4,"Type":2},{"OrderID":"43105-1000","ShipCountry":"CN","ShipAddress":"2571 Logan Park","ShipName":"Reinger Group","OrderDate":"4/10/2016","TotalPayment":"$261815.99","Status":3,"Type":3}]},\n{"RecordID":175,"FirstName":"Susie","LastName":"Hammonds","Company":"Meezzy","Email":"shammonds4u@bandcamp.com","Phone":"870-264-6213","Status":6,"Type":2,"Orders":[{"OrderID":"11822-0499","ShipCountry":"RU","ShipAddress":"8314 Waubesa Lane","ShipName":"Little Group","OrderDate":"9/2/2017","TotalPayment":"$1141960.50","Status":5,"Type":1},{"OrderID":"68382-537","ShipCountry":"RU","ShipAddress":"54824 Redwing Avenue","ShipName":"Schroeder, Douglas and Rempel","OrderDate":"2/4/2017","TotalPayment":"$242880.12","Status":6,"Type":1},{"OrderID":"49288-0878","ShipCountry":"HU","ShipAddress":"153 Birchwood Trail","ShipName":"Cronin LLC","OrderDate":"5/14/2017","TotalPayment":"$1006286.96","Status":1,"Type":3},{"OrderID":"56062-422","ShipCountry":"PL","ShipAddress":"710 Tennyson Center","ShipName":"Kohler, Lakin and Kassulke","OrderDate":"8/26/2017","TotalPayment":"$38701.98","Status":2,"Type":1},{"OrderID":"50268-330","ShipCountry":"CN","ShipAddress":"53625 Twin Pines Street","ShipName":"Thompson-Lueilwitz","OrderDate":"1/1/2016","TotalPayment":"$298152.32","Status":3,"Type":1},{"OrderID":"68016-135","ShipCountry":"MT","ShipAddress":"59 Drewry Avenue","ShipName":"Pouros-Volkman","OrderDate":"4/8/2016","TotalPayment":"$207620.88","Status":4,"Type":1},{"OrderID":"0781-5311","ShipCountry":"ID","ShipAddress":"54 High Crossing Crossing","ShipName":"Marvin, Gottlieb and Daugherty","OrderDate":"7/29/2017","TotalPayment":"$1008707.62","Status":4,"Type":1},{"OrderID":"60505-0686","ShipCountry":"PH","ShipAddress":"181 Vera Pass","ShipName":"Koelpin-Schuppe","OrderDate":"8/30/2016","TotalPayment":"$615135.93","Status":6,"Type":3},{"OrderID":"17312-027","ShipCountry":"CD","ShipAddress":"3248 Montana Parkway","ShipName":"Grady-Ratke","OrderDate":"11/11/2017","TotalPayment":"$506793.39","Status":5,"Type":2},{"OrderID":"0641-6143","ShipCountry":"ID","ShipAddress":"86 Rigney Circle","ShipName":"Nolan, Cruickshank and Senger","OrderDate":"3/30/2016","TotalPayment":"$842592.10","Status":4,"Type":1},{"OrderID":"55301-370","ShipCountry":"AZ","ShipAddress":"3087 Myrtle Drive","ShipName":"Walsh, O\'Connell and Weber","OrderDate":"11/23/2017","TotalPayment":"$128976.50","Status":4,"Type":3},{"OrderID":"49288-0650","ShipCountry":"RU","ShipAddress":"660 Merrick Alley","ShipName":"Heidenreich-Wilkinson","OrderDate":"12/19/2017","TotalPayment":"$808851.09","Status":1,"Type":1},{"OrderID":"43857-0300","ShipCountry":"SE","ShipAddress":"262 Grasskamp Plaza","ShipName":"Jacobi-Boehm","OrderDate":"9/19/2016","TotalPayment":"$928229.29","Status":6,"Type":3},{"OrderID":"33261-817","ShipCountry":"ID","ShipAddress":"2562 Stoughton Parkway","ShipName":"Lakin-Hane","OrderDate":"5/31/2017","TotalPayment":"$892650.16","Status":6,"Type":1},{"OrderID":"52000-013","ShipCountry":"BR","ShipAddress":"85 Macpherson Street","ShipName":"Altenwerth Group","OrderDate":"8/25/2016","TotalPayment":"$619419.57","Status":5,"Type":2},{"OrderID":"17856-0067","ShipCountry":"US","ShipAddress":"83319 Almo Circle","ShipName":"Kuhn LLC","OrderDate":"11/17/2017","TotalPayment":"$39455.62","Status":6,"Type":1},{"OrderID":"14783-327","ShipCountry":"BF","ShipAddress":"62396 Nobel Circle","ShipName":"Ullrich-Lakin","OrderDate":"10/2/2017","TotalPayment":"$1092159.14","Status":2,"Type":2}]},\n{"RecordID":176,"FirstName":"Allina","LastName":"Hoggin","Company":"Zoomcast","Email":"ahoggin4v@cbc.ca","Phone":"263-941-2673","Status":4,"Type":1,"Orders":[{"OrderID":"59779-991","ShipCountry":"BR","ShipAddress":"4511 Bunting Parkway","ShipName":"Hodkiewicz, Dicki and Ullrich","OrderDate":"7/15/2016","TotalPayment":"$844313.61","Status":3,"Type":1},{"OrderID":"49349-722","ShipCountry":"FR","ShipAddress":"1 Center Plaza","ShipName":"Barrows-Ryan","OrderDate":"11/15/2016","TotalPayment":"$634811.61","Status":4,"Type":1},{"OrderID":"68258-3998","ShipCountry":"TH","ShipAddress":"520 Schurz Terrace","ShipName":"Turcotte and Sons","OrderDate":"7/14/2017","TotalPayment":"$174215.94","Status":2,"Type":1},{"OrderID":"59779-932","ShipCountry":"AF","ShipAddress":"2 Schlimgen Park","ShipName":"Bashirian, Kuhn and Willms","OrderDate":"2/13/2017","TotalPayment":"$260788.46","Status":6,"Type":2},{"OrderID":"0069-0104","ShipCountry":"CO","ShipAddress":"0560 Coleman Road","ShipName":"Will and Sons","OrderDate":"5/1/2016","TotalPayment":"$177986.52","Status":6,"Type":2}]},\n{"RecordID":177,"FirstName":"Arlie","LastName":"Lutman","Company":"Cogidoo","Email":"alutman4w@arizona.edu","Phone":"132-288-0971","Status":4,"Type":3,"Orders":[{"OrderID":"61314-646","ShipCountry":"ID","ShipAddress":"573 Center Road","ShipName":"Barrows-Monahan","OrderDate":"2/12/2016","TotalPayment":"$746065.12","Status":2,"Type":3},{"OrderID":"76436-202","ShipCountry":"IR","ShipAddress":"4 Holmberg Parkway","ShipName":"Veum, Berge and Mraz","OrderDate":"8/28/2016","TotalPayment":"$947968.60","Status":1,"Type":3},{"OrderID":"59316-104","ShipCountry":"AR","ShipAddress":"164 Lakewood Gardens Alley","ShipName":"Bernhard Group","OrderDate":"3/16/2016","TotalPayment":"$92454.05","Status":2,"Type":3},{"OrderID":"0113-0133","ShipCountry":"US","ShipAddress":"047 Portage Junction","ShipName":"Herman-Stark","OrderDate":"1/2/2016","TotalPayment":"$39757.89","Status":6,"Type":2},{"OrderID":"43742-0207","ShipCountry":"CN","ShipAddress":"45665 Blackbird Place","ShipName":"Schuster-Hessel","OrderDate":"8/20/2016","TotalPayment":"$987460.21","Status":4,"Type":1},{"OrderID":"36987-2158","ShipCountry":"PH","ShipAddress":"8 Carberry Crossing","ShipName":"Fritsch Group","OrderDate":"9/10/2017","TotalPayment":"$1170223.68","Status":3,"Type":1},{"OrderID":"68776-1003","ShipCountry":"BR","ShipAddress":"738 Carioca Crossing","ShipName":"Bartoletti and Sons","OrderDate":"1/8/2017","TotalPayment":"$70841.40","Status":4,"Type":2},{"OrderID":"64942-1350","ShipCountry":"PT","ShipAddress":"6 Dixon Avenue","ShipName":"Satterfield Inc","OrderDate":"12/25/2016","TotalPayment":"$1089213.28","Status":6,"Type":3},{"OrderID":"59779-936","ShipCountry":"PT","ShipAddress":"2 Dunning Place","ShipName":"Brekke, Wilkinson and Steuber","OrderDate":"2/12/2016","TotalPayment":"$945072.87","Status":2,"Type":3},{"OrderID":"61919-478","ShipCountry":"PH","ShipAddress":"3567 Parkside Terrace","ShipName":"Breitenberg-Beier","OrderDate":"4/18/2016","TotalPayment":"$331148.16","Status":2,"Type":3},{"OrderID":"64616-106","ShipCountry":"PH","ShipAddress":"98935 South Way","ShipName":"Pollich LLC","OrderDate":"3/8/2017","TotalPayment":"$617009.38","Status":4,"Type":3},{"OrderID":"68085-8012","ShipCountry":"IE","ShipAddress":"26 Pankratz Terrace","ShipName":"Bosco Inc","OrderDate":"6/29/2016","TotalPayment":"$234329.79","Status":5,"Type":2},{"OrderID":"36987-1982","ShipCountry":"IE","ShipAddress":"9384 Vahlen Avenue","ShipName":"Leannon Group","OrderDate":"4/30/2016","TotalPayment":"$572993.85","Status":3,"Type":2},{"OrderID":"60905-0021","ShipCountry":"CN","ShipAddress":"56620 Bashford Circle","ShipName":"Cummings-Dickinson","OrderDate":"12/17/2016","TotalPayment":"$64867.28","Status":1,"Type":3},{"OrderID":"30142-400","ShipCountry":"UG","ShipAddress":"25411 Fordem Park","ShipName":"Feest-Considine","OrderDate":"2/2/2017","TotalPayment":"$198988.68","Status":2,"Type":1},{"OrderID":"43353-032","ShipCountry":"UA","ShipAddress":"8745 Little Fleur Lane","ShipName":"Roob Group","OrderDate":"4/19/2017","TotalPayment":"$47531.36","Status":2,"Type":2},{"OrderID":"49288-0383","ShipCountry":"ID","ShipAddress":"824 Cambridge Point","ShipName":"Beier-Jakubowski","OrderDate":"6/19/2016","TotalPayment":"$1013812.00","Status":4,"Type":2}]},\n{"RecordID":178,"FirstName":"Audie","LastName":"Anderbrugge","Company":"Yodo","Email":"aanderbrugge4x@ustream.tv","Phone":"729-903-0156","Status":6,"Type":3,"Orders":[{"OrderID":"42043-191","ShipCountry":"ET","ShipAddress":"56880 Vidon Place","ShipName":"Bashirian, Tromp and Emmerich","OrderDate":"9/30/2017","TotalPayment":"$785270.12","Status":1,"Type":2},{"OrderID":"50436-4165","ShipCountry":"RU","ShipAddress":"88 Oak Point","ShipName":"Bogan LLC","OrderDate":"2/7/2016","TotalPayment":"$564460.95","Status":5,"Type":2},{"OrderID":"57955-8325","ShipCountry":"AU","ShipAddress":"5 Fisk Crossing","ShipName":"Jast, Orn and McClure","OrderDate":"5/19/2017","TotalPayment":"$791278.10","Status":6,"Type":2},{"OrderID":"36987-2740","ShipCountry":"IR","ShipAddress":"07159 Pearson Center","ShipName":"Lemke, Goyette and Johns","OrderDate":"7/23/2017","TotalPayment":"$1025691.50","Status":1,"Type":3},{"OrderID":"42549-534","ShipCountry":"BA","ShipAddress":"8 Reinke Avenue","ShipName":"Parisian Group","OrderDate":"8/5/2016","TotalPayment":"$504209.84","Status":6,"Type":1},{"OrderID":"41163-182","ShipCountry":"DE","ShipAddress":"46 Corscot Hill","ShipName":"Maggio, Farrell and Conn","OrderDate":"11/29/2017","TotalPayment":"$574860.70","Status":1,"Type":2},{"OrderID":"16781-389","ShipCountry":"ET","ShipAddress":"806 Springview Center","ShipName":"Jakubowski-Hansen","OrderDate":"5/9/2016","TotalPayment":"$1021824.57","Status":1,"Type":2},{"OrderID":"63629-1609","ShipCountry":"MA","ShipAddress":"2 Merrick Lane","ShipName":"Weber, Nader and Abernathy","OrderDate":"3/11/2016","TotalPayment":"$1008036.37","Status":3,"Type":2},{"OrderID":"63941-159","ShipCountry":"FR","ShipAddress":"05 Spenser Park","ShipName":"Torp Group","OrderDate":"9/10/2017","TotalPayment":"$20737.54","Status":5,"Type":3}]},\n{"RecordID":179,"FirstName":"Christopher","LastName":"Caddens","Company":"Blognation","Email":"ccaddens4y@addtoany.com","Phone":"792-722-7018","Status":6,"Type":1,"Orders":[{"OrderID":"55038-002","ShipCountry":"CD","ShipAddress":"21 Cottonwood Plaza","ShipName":"Boyle-Schmidt","OrderDate":"7/30/2017","TotalPayment":"$116771.62","Status":5,"Type":1},{"OrderID":"33261-829","ShipCountry":"CN","ShipAddress":"01 Marcy Place","ShipName":"Ratke and Sons","OrderDate":"11/6/2017","TotalPayment":"$381516.38","Status":2,"Type":3},{"OrderID":"55045-3848","ShipCountry":"TZ","ShipAddress":"4 Columbus Avenue","ShipName":"Kertzmann Group","OrderDate":"6/3/2016","TotalPayment":"$1060012.65","Status":6,"Type":1},{"OrderID":"42507-611","ShipCountry":"FR","ShipAddress":"06222 Jenna Court","ShipName":"Welch-Jacobs","OrderDate":"1/18/2017","TotalPayment":"$725141.40","Status":1,"Type":2},{"OrderID":"41163-411","ShipCountry":"AU","ShipAddress":"07 Village Way","ShipName":"Murazik and Sons","OrderDate":"10/23/2016","TotalPayment":"$1122169.68","Status":6,"Type":3},{"OrderID":"52125-765","ShipCountry":"CN","ShipAddress":"7698 Packers Park","ShipName":"Anderson Group","OrderDate":"9/30/2017","TotalPayment":"$625803.70","Status":5,"Type":1},{"OrderID":"0220-9313","ShipCountry":"RS","ShipAddress":"1 8th Road","ShipName":"Turner, Williamson and Schultz","OrderDate":"2/3/2017","TotalPayment":"$119429.94","Status":1,"Type":1},{"OrderID":"67510-0156","ShipCountry":"PH","ShipAddress":"309 Hoepker Trail","ShipName":"Hansen, Schultz and Lubowitz","OrderDate":"1/4/2017","TotalPayment":"$886719.32","Status":3,"Type":3},{"OrderID":"55138-011","ShipCountry":"PT","ShipAddress":"100 Talmadge Trail","ShipName":"Reilly Group","OrderDate":"10/7/2017","TotalPayment":"$58389.62","Status":5,"Type":2},{"OrderID":"62037-833","ShipCountry":"RU","ShipAddress":"4643 Independence Lane","ShipName":"Nolan LLC","OrderDate":"11/3/2017","TotalPayment":"$1094900.10","Status":5,"Type":3},{"OrderID":"42254-220","ShipCountry":"AR","ShipAddress":"754 Utah Avenue","ShipName":"Weber, Harris and Russel","OrderDate":"10/2/2016","TotalPayment":"$428627.56","Status":6,"Type":3},{"OrderID":"61722-041","ShipCountry":"GR","ShipAddress":"898 Straubel Terrace","ShipName":"Stark LLC","OrderDate":"2/19/2016","TotalPayment":"$866711.57","Status":1,"Type":1},{"OrderID":"50114-0114","ShipCountry":"CZ","ShipAddress":"29 Luster Point","ShipName":"Cummerata Inc","OrderDate":"4/27/2016","TotalPayment":"$609914.54","Status":4,"Type":3},{"OrderID":"63029-075","ShipCountry":"CN","ShipAddress":"88097 Butternut Circle","ShipName":"Bernhard Group","OrderDate":"3/14/2016","TotalPayment":"$740252.91","Status":3,"Type":1}]},\n{"RecordID":180,"FirstName":"Lorie","LastName":"Glanton","Company":"Geba","Email":"lglanton4z@barnesandnoble.com","Phone":"468-393-7544","Status":6,"Type":3,"Orders":[{"OrderID":"13734-032","ShipCountry":"VN","ShipAddress":"05 6th Crossing","ShipName":"Vandervort-Terry","OrderDate":"1/14/2017","TotalPayment":"$592651.99","Status":4,"Type":1},{"OrderID":"61442-112","ShipCountry":"CN","ShipAddress":"600 Warner Plaza","ShipName":"Lynch Group","OrderDate":"10/16/2017","TotalPayment":"$549027.43","Status":4,"Type":1},{"OrderID":"0527-1354","ShipCountry":"PE","ShipAddress":"7 Sage Point","ShipName":"King, Leannon and Gerhold","OrderDate":"7/11/2017","TotalPayment":"$926169.45","Status":1,"Type":1},{"OrderID":"54973-3109","ShipCountry":"RU","ShipAddress":"36193 Duke Street","ShipName":"Nitzsche LLC","OrderDate":"11/14/2017","TotalPayment":"$787771.82","Status":2,"Type":1},{"OrderID":"24385-337","ShipCountry":"ID","ShipAddress":"378 Reinke Plaza","ShipName":"Robel-D\'Amore","OrderDate":"8/23/2017","TotalPayment":"$411639.39","Status":5,"Type":3},{"OrderID":"63868-939","ShipCountry":"CN","ShipAddress":"692 Crest Line Terrace","ShipName":"Sawayn LLC","OrderDate":"10/4/2016","TotalPayment":"$994330.30","Status":3,"Type":3}]},\n{"RecordID":181,"FirstName":"Gweneth","LastName":"Francescozzi","Company":"Dynazzy","Email":"gfrancescozzi50@blogspot.com","Phone":"876-651-8422","Status":6,"Type":2,"Orders":[{"OrderID":"64942-1179","ShipCountry":"BG","ShipAddress":"49379 Badeau Terrace","ShipName":"Rodriguez-Ward","OrderDate":"6/22/2016","TotalPayment":"$958387.53","Status":6,"Type":1},{"OrderID":"0270-1111","ShipCountry":"HR","ShipAddress":"5515 Banding Parkway","ShipName":"Mraz, O\'Kon and Ortiz","OrderDate":"10/4/2017","TotalPayment":"$1085803.28","Status":2,"Type":1},{"OrderID":"49349-743","ShipCountry":"RS","ShipAddress":"4 Wayridge Avenue","ShipName":"Hayes-Kihn","OrderDate":"2/14/2017","TotalPayment":"$854739.55","Status":6,"Type":1},{"OrderID":"43857-0171","ShipCountry":"ZA","ShipAddress":"4 Lyons Trail","ShipName":"Orn, Wolff and Zemlak","OrderDate":"1/9/2016","TotalPayment":"$804463.91","Status":6,"Type":1},{"OrderID":"59779-220","ShipCountry":"GH","ShipAddress":"127 Merry Center","ShipName":"Huels, Blick and Heaney","OrderDate":"12/1/2017","TotalPayment":"$288704.98","Status":3,"Type":1},{"OrderID":"37000-502","ShipCountry":"FR","ShipAddress":"62896 Northview Way","ShipName":"Bartell Group","OrderDate":"1/24/2017","TotalPayment":"$64612.99","Status":1,"Type":3},{"OrderID":"57955-4022","ShipCountry":"BR","ShipAddress":"9598 Oak Crossing","ShipName":"Stroman-Cruickshank","OrderDate":"3/12/2017","TotalPayment":"$450748.31","Status":2,"Type":2},{"OrderID":"63940-202","ShipCountry":"BD","ShipAddress":"3 Darwin Terrace","ShipName":"Jakubowski-Christiansen","OrderDate":"3/18/2016","TotalPayment":"$264943.82","Status":2,"Type":2},{"OrderID":"67046-714","ShipCountry":"RU","ShipAddress":"2891 Novick Way","ShipName":"Corkery LLC","OrderDate":"6/14/2016","TotalPayment":"$241239.73","Status":4,"Type":1},{"OrderID":"62382-0308","ShipCountry":"PT","ShipAddress":"41540 Westerfield Road","ShipName":"Cronin-Renner","OrderDate":"7/12/2016","TotalPayment":"$1107059.74","Status":3,"Type":1},{"OrderID":"70253-112","ShipCountry":"BR","ShipAddress":"4269 Hallows Circle","ShipName":"Ullrich LLC","OrderDate":"8/1/2017","TotalPayment":"$945010.94","Status":4,"Type":3},{"OrderID":"0363-0434","ShipCountry":"TH","ShipAddress":"0083 Merrick Lane","ShipName":"Hessel, Ruecker and Kris","OrderDate":"9/20/2017","TotalPayment":"$608853.80","Status":3,"Type":2},{"OrderID":"0363-0169","ShipCountry":"RU","ShipAddress":"2063 Independence Lane","ShipName":"Sawayn, Cremin and Berge","OrderDate":"10/20/2016","TotalPayment":"$319149.43","Status":1,"Type":2},{"OrderID":"0078-0458","ShipCountry":"VE","ShipAddress":"876 Monterey Circle","ShipName":"Ondricka Group","OrderDate":"5/15/2017","TotalPayment":"$72040.63","Status":6,"Type":3},{"OrderID":"0536-1008","ShipCountry":"CN","ShipAddress":"2 Cottonwood Terrace","ShipName":"Walker-Kris","OrderDate":"12/14/2017","TotalPayment":"$1081643.09","Status":2,"Type":2},{"OrderID":"49999-048","ShipCountry":"NG","ShipAddress":"91 Ridge Oak Point","ShipName":"Sanford and Sons","OrderDate":"7/12/2017","TotalPayment":"$1063349.88","Status":5,"Type":3},{"OrderID":"36987-1708","ShipCountry":"MX","ShipAddress":"5 Twin Pines Court","ShipName":"Lakin, Gaylord and Ryan","OrderDate":"4/18/2017","TotalPayment":"$1134589.52","Status":2,"Type":2},{"OrderID":"60986-1013","ShipCountry":"MN","ShipAddress":"933 Dawn Avenue","ShipName":"Quitzon-Ondricka","OrderDate":"4/2/2016","TotalPayment":"$1066089.06","Status":4,"Type":3},{"OrderID":"29485-2828","ShipCountry":"BR","ShipAddress":"7 Butternut Junction","ShipName":"Kilback LLC","OrderDate":"3/2/2016","TotalPayment":"$717783.98","Status":6,"Type":1},{"OrderID":"55154-5878","ShipCountry":"CN","ShipAddress":"46 Warbler Road","ShipName":"Lang, Hartmann and Hudson","OrderDate":"12/2/2017","TotalPayment":"$55533.73","Status":3,"Type":1}]},\n{"RecordID":182,"FirstName":"Laina","LastName":"Hainey`","Company":"Flipopia","Email":"lhainey51@newsvine.com","Phone":"424-205-0737","Status":5,"Type":3,"Orders":[{"OrderID":"10893-240","ShipCountry":"PL","ShipAddress":"9 Toban Pass","ShipName":"Hirthe Group","OrderDate":"8/18/2017","TotalPayment":"$124558.20","Status":3,"Type":2},{"OrderID":"0378-3266","ShipCountry":"FR","ShipAddress":"80079 Sullivan Place","ShipName":"Muller LLC","OrderDate":"5/26/2016","TotalPayment":"$74559.20","Status":1,"Type":3},{"OrderID":"0944-4212","ShipCountry":"PH","ShipAddress":"51 Ruskin Avenue","ShipName":"Crist LLC","OrderDate":"11/1/2016","TotalPayment":"$993519.04","Status":4,"Type":1},{"OrderID":"33758-001","ShipCountry":"PS","ShipAddress":"6 New Castle Alley","ShipName":"Baumbach, Schmidt and Senger","OrderDate":"3/31/2017","TotalPayment":"$393304.45","Status":3,"Type":3},{"OrderID":"0113-0498","ShipCountry":"ID","ShipAddress":"274 Goodland Plaza","ShipName":"Cartwright Inc","OrderDate":"12/20/2016","TotalPayment":"$755262.80","Status":6,"Type":3}]},\n{"RecordID":183,"FirstName":"Caldwell","LastName":"Naseby","Company":"Realfire","Email":"cnaseby52@thetimes.co.uk","Phone":"324-908-1039","Status":6,"Type":2,"Orders":[{"OrderID":"11673-808","ShipCountry":"RU","ShipAddress":"1083 John Wall Park","ShipName":"Leffler and Sons","OrderDate":"4/28/2016","TotalPayment":"$183608.19","Status":3,"Type":3},{"OrderID":"49349-566","ShipCountry":"AM","ShipAddress":"19 Coolidge Court","ShipName":"Schoen-Effertz","OrderDate":"6/5/2016","TotalPayment":"$476926.87","Status":3,"Type":2},{"OrderID":"64092-204","ShipCountry":"CU","ShipAddress":"720 Boyd Drive","ShipName":"Prosacco, Sipes and Hilpert","OrderDate":"12/22/2017","TotalPayment":"$859711.28","Status":5,"Type":2},{"OrderID":"20276-044","ShipCountry":"PH","ShipAddress":"430 La Follette Way","ShipName":"Huel-Koch","OrderDate":"2/19/2016","TotalPayment":"$1044147.12","Status":4,"Type":3},{"OrderID":"36800-423","ShipCountry":"BR","ShipAddress":"49 Northview Road","ShipName":"Howell-Dibbert","OrderDate":"10/16/2017","TotalPayment":"$598010.28","Status":4,"Type":1},{"OrderID":"54868-5343","ShipCountry":"MG","ShipAddress":"08806 Hoffman Court","ShipName":"Kerluke, Hermiston and Durgan","OrderDate":"12/30/2016","TotalPayment":"$1133973.74","Status":4,"Type":1},{"OrderID":"51393-7333","ShipCountry":"ID","ShipAddress":"5 Cardinal Terrace","ShipName":"Johnston and Sons","OrderDate":"4/11/2016","TotalPayment":"$836434.82","Status":2,"Type":3},{"OrderID":"52584-463","ShipCountry":"PL","ShipAddress":"110 Erie Terrace","ShipName":"Goyette, Lindgren and Wisoky","OrderDate":"12/4/2016","TotalPayment":"$564515.59","Status":5,"Type":3}]},\n{"RecordID":184,"FirstName":"Krystalle","LastName":"Riseam","Company":"Voonyx","Email":"kriseam53@etsy.com","Phone":"309-925-1298","Status":3,"Type":2,"Orders":[{"OrderID":"41250-072","ShipCountry":"ID","ShipAddress":"8713 Michigan Street","ShipName":"Jaskolski-Ratke","OrderDate":"3/6/2016","TotalPayment":"$593169.59","Status":6,"Type":2},{"OrderID":"10812-612","ShipCountry":"GR","ShipAddress":"95 Pawling Parkway","ShipName":"Watsica-Hoeger","OrderDate":"2/13/2017","TotalPayment":"$500547.19","Status":1,"Type":2},{"OrderID":"63629-3768","ShipCountry":"CN","ShipAddress":"56 Sunbrook Way","ShipName":"Emmerich LLC","OrderDate":"1/27/2017","TotalPayment":"$336274.50","Status":2,"Type":3},{"OrderID":"36987-1031","ShipCountry":"CN","ShipAddress":"3 Boyd Plaza","ShipName":"Cormier Group","OrderDate":"8/8/2016","TotalPayment":"$487861.74","Status":2,"Type":3},{"OrderID":"41163-201","ShipCountry":"CZ","ShipAddress":"882 Knutson Plaza","ShipName":"Kemmer, Wuckert and Schumm","OrderDate":"9/6/2017","TotalPayment":"$456493.20","Status":1,"Type":1},{"OrderID":"60505-0027","ShipCountry":"PL","ShipAddress":"8930 Arkansas Center","ShipName":"Marvin and Sons","OrderDate":"5/12/2017","TotalPayment":"$239993.65","Status":1,"Type":1},{"OrderID":"53208-471","ShipCountry":"ID","ShipAddress":"350 Barnett Lane","ShipName":"VonRueden-Moore","OrderDate":"10/15/2017","TotalPayment":"$249088.47","Status":6,"Type":2},{"OrderID":"64578-0102","ShipCountry":"CN","ShipAddress":"597 Donald Plaza","ShipName":"Kemmer Inc","OrderDate":"8/11/2016","TotalPayment":"$76278.75","Status":4,"Type":1},{"OrderID":"76335-004","ShipCountry":"ID","ShipAddress":"78699 Magdeline Way","ShipName":"Collins-Pollich","OrderDate":"4/30/2017","TotalPayment":"$1044105.67","Status":3,"Type":1},{"OrderID":"52904-470","ShipCountry":"CA","ShipAddress":"58875 Dapin Circle","ShipName":"Streich and Sons","OrderDate":"10/31/2016","TotalPayment":"$466011.94","Status":6,"Type":1},{"OrderID":"59746-040","ShipCountry":"UZ","ShipAddress":"6 Nancy Center","ShipName":"Feil-Stark","OrderDate":"11/22/2016","TotalPayment":"$526199.85","Status":5,"Type":2},{"OrderID":"67253-383","ShipCountry":"HN","ShipAddress":"33064 Eagle Crest Avenue","ShipName":"Hintz, Hayes and Mraz","OrderDate":"2/19/2017","TotalPayment":"$914053.93","Status":4,"Type":1},{"OrderID":"64942-1129","ShipCountry":"UG","ShipAddress":"34 Evergreen Road","ShipName":"Haag LLC","OrderDate":"12/24/2016","TotalPayment":"$680174.62","Status":5,"Type":1}]},\n{"RecordID":185,"FirstName":"Lazare","LastName":"Simms","Company":"Dynabox","Email":"lsimms54@github.com","Phone":"114-497-5567","Status":1,"Type":2,"Orders":[{"OrderID":"10370-102","ShipCountry":"ID","ShipAddress":"398 Pearson Place","ShipName":"Schmitt-Ebert","OrderDate":"9/28/2017","TotalPayment":"$521000.97","Status":1,"Type":3},{"OrderID":"0363-0784","ShipCountry":"CZ","ShipAddress":"16997 Donald Road","ShipName":"Osinski and Sons","OrderDate":"7/7/2016","TotalPayment":"$996936.46","Status":2,"Type":3},{"OrderID":"52959-008","ShipCountry":"CN","ShipAddress":"41622 Steensland Trail","ShipName":"Gerlach Group","OrderDate":"7/29/2016","TotalPayment":"$294542.01","Status":5,"Type":3},{"OrderID":"30142-219","ShipCountry":"ID","ShipAddress":"5942 Maple Wood Terrace","ShipName":"Considine-Grady","OrderDate":"12/25/2016","TotalPayment":"$283122.37","Status":6,"Type":3},{"OrderID":"10237-819","ShipCountry":"PH","ShipAddress":"8935 Briar Crest Drive","ShipName":"Dooley Inc","OrderDate":"5/1/2017","TotalPayment":"$569138.54","Status":2,"Type":1},{"OrderID":"63940-897","ShipCountry":"RU","ShipAddress":"037 Hazelcrest Road","ShipName":"Stiedemann, Lind and Kuhic","OrderDate":"7/4/2017","TotalPayment":"$627785.73","Status":5,"Type":2}]},\n{"RecordID":186,"FirstName":"Panchito","LastName":"Stenners","Company":"Leexo","Email":"pstenners55@ebay.com","Phone":"366-560-3338","Status":1,"Type":3,"Orders":[{"OrderID":"50436-6924","ShipCountry":"CZ","ShipAddress":"383 Prentice Road","ShipName":"Mann, Schmidt and Satterfield","OrderDate":"5/24/2017","TotalPayment":"$679838.05","Status":1,"Type":2},{"OrderID":"36987-2195","ShipCountry":"CN","ShipAddress":"05 Cottonwood Junction","ShipName":"Nienow Inc","OrderDate":"3/8/2017","TotalPayment":"$364615.10","Status":2,"Type":1},{"OrderID":"49781-111","ShipCountry":"FR","ShipAddress":"3250 Bartelt Terrace","ShipName":"Sanford, Hodkiewicz and Waelchi","OrderDate":"1/18/2017","TotalPayment":"$723401.06","Status":3,"Type":2},{"OrderID":"10096-0233","ShipCountry":"PT","ShipAddress":"66625 Florence Trail","ShipName":"Williamson Group","OrderDate":"6/23/2016","TotalPayment":"$359355.11","Status":5,"Type":1},{"OrderID":"52125-250","ShipCountry":"ID","ShipAddress":"95267 Nancy Pass","ShipName":"Rolfson LLC","OrderDate":"8/23/2016","TotalPayment":"$106909.08","Status":6,"Type":2},{"OrderID":"49781-075","ShipCountry":"BR","ShipAddress":"034 Pankratz Park","ShipName":"Ferry, Kilback and Mohr","OrderDate":"12/28/2017","TotalPayment":"$126435.54","Status":6,"Type":3},{"OrderID":"36987-3268","ShipCountry":"CN","ShipAddress":"7251 Shasta Circle","ShipName":"Greenholt LLC","OrderDate":"2/11/2017","TotalPayment":"$1144236.51","Status":3,"Type":2}]},\n{"RecordID":187,"FirstName":"Clemmie","LastName":"Pizey","Company":"Feednation","Email":"cpizey56@meetup.com","Phone":"919-832-8274","Status":3,"Type":2,"Orders":[{"OrderID":"0049-0116","ShipCountry":"LT","ShipAddress":"611 Killdeer Junction","ShipName":"Dickens and Sons","OrderDate":"5/2/2017","TotalPayment":"$362355.23","Status":4,"Type":3},{"OrderID":"68788-9056","ShipCountry":"ID","ShipAddress":"27604 Russell Circle","ShipName":"Spencer-Hane","OrderDate":"7/27/2016","TotalPayment":"$459255.78","Status":2,"Type":1},{"OrderID":"0378-3750","ShipCountry":"CN","ShipAddress":"84813 Amoth Avenue","ShipName":"Auer LLC","OrderDate":"1/18/2016","TotalPayment":"$132826.92","Status":6,"Type":2},{"OrderID":"54868-4703","ShipCountry":"CN","ShipAddress":"84767 Fallview Crossing","ShipName":"Towne Group","OrderDate":"6/14/2017","TotalPayment":"$913371.95","Status":6,"Type":1},{"OrderID":"0002-4454","ShipCountry":"VN","ShipAddress":"4595 Myrtle Alley","ShipName":"Witting, Schroeder and Stamm","OrderDate":"2/26/2016","TotalPayment":"$111135.46","Status":3,"Type":1},{"OrderID":"0065-0643","ShipCountry":"PE","ShipAddress":"11 1st Parkway","ShipName":"Wunsch Inc","OrderDate":"7/3/2016","TotalPayment":"$672915.92","Status":1,"Type":3},{"OrderID":"41250-648","ShipCountry":"RU","ShipAddress":"2 Westridge Park","ShipName":"Daugherty-McGlynn","OrderDate":"10/12/2017","TotalPayment":"$356199.38","Status":1,"Type":2},{"OrderID":"0409-1179","ShipCountry":"CN","ShipAddress":"6675 Bay Court","ShipName":"Bechtelar, Aufderhar and Kuhic","OrderDate":"12/3/2016","TotalPayment":"$387524.58","Status":6,"Type":2},{"OrderID":"36987-1784","ShipCountry":"GT","ShipAddress":"9 Oriole Street","ShipName":"Orn-Crist","OrderDate":"10/17/2017","TotalPayment":"$150038.96","Status":5,"Type":3},{"OrderID":"65044-1544","ShipCountry":"CN","ShipAddress":"39 Shoshone Trail","ShipName":"Osinski Group","OrderDate":"4/17/2016","TotalPayment":"$901493.13","Status":2,"Type":1},{"OrderID":"0591-2224","ShipCountry":"PT","ShipAddress":"14 Magdeline Center","ShipName":"Kshlerin LLC","OrderDate":"7/10/2016","TotalPayment":"$270503.43","Status":2,"Type":2},{"OrderID":"0904-5495","ShipCountry":"PK","ShipAddress":"4 Packers Drive","ShipName":"Kirlin, Schmidt and Nienow","OrderDate":"2/21/2017","TotalPayment":"$495217.00","Status":5,"Type":3},{"OrderID":"0093-8036","ShipCountry":"PE","ShipAddress":"54 Waywood Pass","ShipName":"Schaden-Steuber","OrderDate":"11/14/2017","TotalPayment":"$812127.38","Status":5,"Type":3},{"OrderID":"16714-032","ShipCountry":"NL","ShipAddress":"9232 Manufacturers Trail","ShipName":"Gislason-Wiegand","OrderDate":"9/18/2017","TotalPayment":"$1140362.33","Status":4,"Type":3},{"OrderID":"41163-120","ShipCountry":"PT","ShipAddress":"8856 Truax Plaza","ShipName":"Ward-Bartell","OrderDate":"4/22/2016","TotalPayment":"$390475.48","Status":6,"Type":2},{"OrderID":"37808-182","ShipCountry":"CN","ShipAddress":"438 Sutteridge Alley","ShipName":"Cartwright-Kerluke","OrderDate":"10/28/2016","TotalPayment":"$873799.61","Status":6,"Type":2}]},\n{"RecordID":188,"FirstName":"Ambrosius","LastName":"Brabender","Company":"Buzzdog","Email":"abrabender57@networkadvertising.org","Phone":"732-142-8611","Status":6,"Type":2,"Orders":[{"OrderID":"10544-503","ShipCountry":"TH","ShipAddress":"354 Myrtle Hill","ShipName":"Brakus and Sons","OrderDate":"9/24/2017","TotalPayment":"$638948.05","Status":1,"Type":3},{"OrderID":"55154-3425","ShipCountry":"CA","ShipAddress":"7573 Bultman Drive","ShipName":"Zboncak, Paucek and Murazik","OrderDate":"5/19/2016","TotalPayment":"$890107.66","Status":6,"Type":2},{"OrderID":"59450-315","ShipCountry":"PT","ShipAddress":"21954 Westerfield Park","ShipName":"Conroy, Jerde and Kihn","OrderDate":"4/25/2017","TotalPayment":"$690346.78","Status":6,"Type":1},{"OrderID":"42507-177","ShipCountry":"MX","ShipAddress":"83 Londonderry Junction","ShipName":"Legros-Schuster","OrderDate":"3/30/2017","TotalPayment":"$108424.09","Status":4,"Type":1},{"OrderID":"58593-826","ShipCountry":"PH","ShipAddress":"74961 Messerschmidt Trail","ShipName":"Berge-Wunsch","OrderDate":"6/23/2017","TotalPayment":"$562052.41","Status":6,"Type":3},{"OrderID":"0615-1359","ShipCountry":"CN","ShipAddress":"244 Del Sol Parkway","ShipName":"Cartwright LLC","OrderDate":"3/2/2016","TotalPayment":"$697281.12","Status":1,"Type":3},{"OrderID":"0268-0808","ShipCountry":"RU","ShipAddress":"39651 Heath Point","ShipName":"Rippin-Hermiston","OrderDate":"3/20/2017","TotalPayment":"$281375.74","Status":6,"Type":3},{"OrderID":"55714-4618","ShipCountry":"BR","ShipAddress":"0 Messerschmidt Avenue","ShipName":"Hessel, Emard and Bradtke","OrderDate":"3/4/2016","TotalPayment":"$158942.45","Status":4,"Type":1},{"OrderID":"41167-0662","ShipCountry":"MY","ShipAddress":"3112 Vernon Point","ShipName":"Doyle Group","OrderDate":"11/10/2016","TotalPayment":"$180670.19","Status":1,"Type":2},{"OrderID":"57691-161","ShipCountry":"AR","ShipAddress":"80 Doe Crossing Way","ShipName":"King-Ernser","OrderDate":"4/30/2016","TotalPayment":"$101407.25","Status":6,"Type":1}]},\n{"RecordID":189,"FirstName":"Weider","LastName":"Borrill","Company":"Kanoodle","Email":"wborrill58@alexa.com","Phone":"210-554-1921","Status":5,"Type":1,"Orders":[{"OrderID":"0259-2202","ShipCountry":"CN","ShipAddress":"98956 Meadow Valley Lane","ShipName":"Langosh, Frami and Kohler","OrderDate":"5/7/2017","TotalPayment":"$40611.93","Status":6,"Type":1},{"OrderID":"63323-145","ShipCountry":"KM","ShipAddress":"51384 Gina Hill","ShipName":"Dooley Group","OrderDate":"12/6/2017","TotalPayment":"$327035.06","Status":3,"Type":1},{"OrderID":"29336-910","ShipCountry":"MK","ShipAddress":"489 Straubel Center","ShipName":"Frami-Cummings","OrderDate":"8/24/2017","TotalPayment":"$95534.37","Status":4,"Type":3},{"OrderID":"11822-9013","ShipCountry":"CN","ShipAddress":"076 Namekagon Plaza","ShipName":"Stamm, Schuster and Marvin","OrderDate":"3/9/2016","TotalPayment":"$579985.35","Status":5,"Type":1},{"OrderID":"59762-5009","ShipCountry":"ID","ShipAddress":"72 Meadow Valley Alley","ShipName":"Koepp and Sons","OrderDate":"7/16/2016","TotalPayment":"$770921.32","Status":2,"Type":1},{"OrderID":"54868-6291","ShipCountry":"US","ShipAddress":"914 Portage Place","ShipName":"Sauer Inc","OrderDate":"2/11/2016","TotalPayment":"$275234.42","Status":1,"Type":1},{"OrderID":"54868-1328","ShipCountry":"RU","ShipAddress":"41413 Nobel Center","ShipName":"Wintheiser-Jakubowski","OrderDate":"4/23/2017","TotalPayment":"$636713.57","Status":6,"Type":1},{"OrderID":"50419-523","ShipCountry":"FR","ShipAddress":"9552 Grasskamp Circle","ShipName":"Hintz and Sons","OrderDate":"2/14/2016","TotalPayment":"$354696.79","Status":1,"Type":3},{"OrderID":"53942-055","ShipCountry":"DO","ShipAddress":"08761 Westport Plaza","ShipName":"Fadel-Jacobi","OrderDate":"5/2/2017","TotalPayment":"$465714.53","Status":1,"Type":1},{"OrderID":"68788-9936","ShipCountry":"CN","ShipAddress":"5803 Raven Trail","ShipName":"Bauch Inc","OrderDate":"3/30/2016","TotalPayment":"$190519.60","Status":1,"Type":2},{"OrderID":"49288-0462","ShipCountry":"CO","ShipAddress":"42 Myrtle Point","ShipName":"Wolff, Harris and Bergnaum","OrderDate":"7/10/2016","TotalPayment":"$322366.46","Status":5,"Type":1},{"OrderID":"0573-1929","ShipCountry":"CN","ShipAddress":"98 Clyde Gallagher Crossing","ShipName":"McDermott and Sons","OrderDate":"7/31/2016","TotalPayment":"$345210.08","Status":5,"Type":2},{"OrderID":"11673-299","ShipCountry":"ID","ShipAddress":"3 Kedzie Street","ShipName":"Wolff, Rutherford and Bins","OrderDate":"1/4/2017","TotalPayment":"$500304.61","Status":6,"Type":3},{"OrderID":"37012-962","ShipCountry":"PL","ShipAddress":"23903 Clove Junction","ShipName":"Turcotte-Koch","OrderDate":"10/9/2016","TotalPayment":"$1060632.48","Status":1,"Type":2}]},\n{"RecordID":190,"FirstName":"Audrie","LastName":"Bosche","Company":"Shuffletag","Email":"abosche59@lulu.com","Phone":"529-576-3143","Status":4,"Type":3,"Orders":[{"OrderID":"36987-1461","ShipCountry":"PH","ShipAddress":"42104 Scoville Crossing","ShipName":"Vandervort and Sons","OrderDate":"11/26/2016","TotalPayment":"$34955.20","Status":2,"Type":2},{"OrderID":"23155-058","ShipCountry":"CA","ShipAddress":"8713 Barby Park","ShipName":"Wolf, Heller and Goodwin","OrderDate":"5/15/2017","TotalPayment":"$118568.29","Status":2,"Type":3},{"OrderID":"0268-1102","ShipCountry":"GR","ShipAddress":"5 Miller Terrace","ShipName":"Lemke-Prohaska","OrderDate":"6/19/2017","TotalPayment":"$561904.11","Status":5,"Type":3},{"OrderID":"55154-9430","ShipCountry":"BW","ShipAddress":"9279 Karstens Court","ShipName":"Hahn-Swaniawski","OrderDate":"9/11/2016","TotalPayment":"$791445.27","Status":1,"Type":3},{"OrderID":"65862-107","ShipCountry":"PH","ShipAddress":"99366 Corscot Crossing","ShipName":"D\'Amore Inc","OrderDate":"3/10/2017","TotalPayment":"$569014.73","Status":2,"Type":3}]},\n{"RecordID":191,"FirstName":"Mateo","LastName":"Lattie","Company":"Youfeed","Email":"mlattie5a@ft.com","Phone":"256-894-6754","Status":4,"Type":3,"Orders":[{"OrderID":"0220-9078","ShipCountry":"BY","ShipAddress":"39120 1st Circle","ShipName":"Muller LLC","OrderDate":"11/5/2017","TotalPayment":"$526109.02","Status":2,"Type":3},{"OrderID":"45802-736","ShipCountry":"CU","ShipAddress":"3 Westport Avenue","ShipName":"Huel LLC","OrderDate":"5/30/2017","TotalPayment":"$953977.70","Status":5,"Type":3},{"OrderID":"0781-6202","ShipCountry":"HN","ShipAddress":"4071 Melody Lane","ShipName":"Harvey-Breitenberg","OrderDate":"12/27/2016","TotalPayment":"$1117520.59","Status":6,"Type":1},{"OrderID":"53746-218","ShipCountry":"IE","ShipAddress":"866 Loomis Pass","ShipName":"Rutherford-Veum","OrderDate":"2/28/2017","TotalPayment":"$841659.06","Status":2,"Type":2},{"OrderID":"57520-0389","ShipCountry":"CN","ShipAddress":"8 Pepper Wood Terrace","ShipName":"Zboncak-Wisoky","OrderDate":"5/29/2017","TotalPayment":"$541992.20","Status":5,"Type":3},{"OrderID":"44087-1117","ShipCountry":"CN","ShipAddress":"016 Pine View Trail","ShipName":"Larkin Inc","OrderDate":"8/8/2017","TotalPayment":"$318868.58","Status":3,"Type":1},{"OrderID":"63187-065","ShipCountry":"CN","ShipAddress":"90735 Bunting Hill","ShipName":"Sanford and Sons","OrderDate":"12/29/2017","TotalPayment":"$760186.74","Status":3,"Type":3},{"OrderID":"33261-131","ShipCountry":"BR","ShipAddress":"4267 Browning Court","ShipName":"Botsford, Block and Emard","OrderDate":"9/17/2016","TotalPayment":"$912181.42","Status":2,"Type":2},{"OrderID":"0781-5818","ShipCountry":"RU","ShipAddress":"1161 Packers Way","ShipName":"Nikolaus LLC","OrderDate":"12/23/2017","TotalPayment":"$273824.25","Status":2,"Type":1},{"OrderID":"68387-545","ShipCountry":"CN","ShipAddress":"0145 Ridge Oak Way","ShipName":"Haag and Sons","OrderDate":"12/15/2017","TotalPayment":"$110548.71","Status":2,"Type":3}]},\n{"RecordID":192,"FirstName":"Tiffie","LastName":"Riddler","Company":"Shufflester","Email":"triddler5b@networksolutions.com","Phone":"564-748-4235","Status":4,"Type":3,"Orders":[{"OrderID":"0071-0513","ShipCountry":"ES","ShipAddress":"0 Oak Valley Junction","ShipName":"Hettinger-Thiel","OrderDate":"5/6/2017","TotalPayment":"$857482.41","Status":6,"Type":3},{"OrderID":"0832-1071","ShipCountry":"KH","ShipAddress":"84 Independence Parkway","ShipName":"Hirthe, Mayer and Hudson","OrderDate":"7/13/2017","TotalPayment":"$608998.13","Status":6,"Type":1},{"OrderID":"64009-334","ShipCountry":"KR","ShipAddress":"92 7th Terrace","ShipName":"Donnelly, Volkman and Wisozk","OrderDate":"11/14/2016","TotalPayment":"$452116.04","Status":2,"Type":3},{"OrderID":"49349-842","ShipCountry":"BG","ShipAddress":"4123 Anhalt Pass","ShipName":"Trantow Inc","OrderDate":"9/22/2016","TotalPayment":"$74518.27","Status":6,"Type":1},{"OrderID":"0363-0470","ShipCountry":"GT","ShipAddress":"71758 Lunder Park","ShipName":"Runolfsson, Dibbert and Hartmann","OrderDate":"12/27/2017","TotalPayment":"$203095.71","Status":2,"Type":1},{"OrderID":"0025-2752","ShipCountry":"CN","ShipAddress":"59576 Hooker Circle","ShipName":"Hudson-Marvin","OrderDate":"9/2/2016","TotalPayment":"$541852.00","Status":4,"Type":3},{"OrderID":"49672-100","ShipCountry":"UA","ShipAddress":"4013 Fair Oaks Way","ShipName":"Kunde-Smitham","OrderDate":"6/24/2017","TotalPayment":"$1130139.16","Status":5,"Type":3},{"OrderID":"68428-013","ShipCountry":"SE","ShipAddress":"75 Rusk Center","ShipName":"Ortiz-Ullrich","OrderDate":"11/7/2017","TotalPayment":"$599438.32","Status":1,"Type":2},{"OrderID":"61481-0450","ShipCountry":"NL","ShipAddress":"629 Meadow Ridge Way","ShipName":"Ryan-Walter","OrderDate":"9/25/2017","TotalPayment":"$60352.32","Status":1,"Type":1},{"OrderID":"67172-595","ShipCountry":"ID","ShipAddress":"2 Knutson Parkway","ShipName":"Barrows-Powlowski","OrderDate":"11/20/2017","TotalPayment":"$507495.47","Status":4,"Type":1}]},\n{"RecordID":193,"FirstName":"Monah","LastName":"Symcox","Company":"Youfeed","Email":"msymcox5c@si.edu","Phone":"645-608-6375","Status":6,"Type":3,"Orders":[{"OrderID":"0067-2021","ShipCountry":"MW","ShipAddress":"7 Hoepker Road","ShipName":"Dooley and Sons","OrderDate":"6/16/2017","TotalPayment":"$492191.79","Status":1,"Type":1},{"OrderID":"54575-381","ShipCountry":"CN","ShipAddress":"7698 Moose Place","ShipName":"Reinger, Kessler and Gerlach","OrderDate":"12/26/2016","TotalPayment":"$459962.40","Status":5,"Type":2},{"OrderID":"11673-498","ShipCountry":"HU","ShipAddress":"9 Northland Pass","ShipName":"Robel, Auer and Kuvalis","OrderDate":"6/21/2016","TotalPayment":"$151246.67","Status":3,"Type":1},{"OrderID":"43857-0102","ShipCountry":"PH","ShipAddress":"30 Troy Center","ShipName":"Hyatt-Jenkins","OrderDate":"1/11/2017","TotalPayment":"$553999.96","Status":5,"Type":3},{"OrderID":"49349-910","ShipCountry":"CN","ShipAddress":"0303 Oxford Drive","ShipName":"Kreiger LLC","OrderDate":"2/28/2017","TotalPayment":"$731528.51","Status":3,"Type":3},{"OrderID":"51346-091","ShipCountry":"PT","ShipAddress":"2041 Rigney Circle","ShipName":"Batz-Orn","OrderDate":"1/13/2016","TotalPayment":"$1166959.60","Status":6,"Type":3},{"OrderID":"66129-149","ShipCountry":"KP","ShipAddress":"683 Arkansas Alley","ShipName":"Schoen and Sons","OrderDate":"3/9/2017","TotalPayment":"$456038.10","Status":5,"Type":1},{"OrderID":"51105-001","ShipCountry":"SE","ShipAddress":"0 Granby Center","ShipName":"Monahan Inc","OrderDate":"10/11/2017","TotalPayment":"$869400.50","Status":3,"Type":2},{"OrderID":"65044-2485","ShipCountry":"UY","ShipAddress":"2282 Lakeland Trail","ShipName":"Rau, DuBuque and Gutmann","OrderDate":"4/16/2016","TotalPayment":"$97822.02","Status":6,"Type":3},{"OrderID":"55714-2334","ShipCountry":"PH","ShipAddress":"2228 Sage Lane","ShipName":"Rodriguez, Goyette and Dibbert","OrderDate":"11/22/2017","TotalPayment":"$255444.98","Status":6,"Type":1},{"OrderID":"55289-629","ShipCountry":"CN","ShipAddress":"8 Little Fleur Terrace","ShipName":"Stoltenberg-Swift","OrderDate":"7/20/2016","TotalPayment":"$70203.40","Status":2,"Type":3},{"OrderID":"0179-0102","ShipCountry":"DE","ShipAddress":"5 Pearson Alley","ShipName":"Stroman, Jenkins and Rempel","OrderDate":"11/14/2016","TotalPayment":"$14500.97","Status":3,"Type":1},{"OrderID":"36987-2492","ShipCountry":"FR","ShipAddress":"735 Orin Way","ShipName":"Will LLC","OrderDate":"10/5/2016","TotalPayment":"$161747.88","Status":5,"Type":1},{"OrderID":"0126-0288","ShipCountry":"GR","ShipAddress":"5931 Ridgeview Park","ShipName":"Leuschke-Simonis","OrderDate":"3/1/2017","TotalPayment":"$517334.13","Status":1,"Type":1},{"OrderID":"51672-4036","ShipCountry":"UA","ShipAddress":"6 American Park","ShipName":"Lowe, Padberg and Armstrong","OrderDate":"5/14/2017","TotalPayment":"$255382.44","Status":5,"Type":2},{"OrderID":"49999-505","ShipCountry":"IR","ShipAddress":"83368 Sutteridge Parkway","ShipName":"Klein, Smith and Dibbert","OrderDate":"10/2/2017","TotalPayment":"$35792.91","Status":3,"Type":3},{"OrderID":"68828-071","ShipCountry":"YE","ShipAddress":"467 Loftsgordon Circle","ShipName":"Kub-Block","OrderDate":"7/28/2017","TotalPayment":"$613021.29","Status":3,"Type":1},{"OrderID":"59535-9701","ShipCountry":"ID","ShipAddress":"06 Mosinee Drive","ShipName":"Macejkovic-Leannon","OrderDate":"12/11/2017","TotalPayment":"$214514.94","Status":3,"Type":1},{"OrderID":"49348-924","ShipCountry":"MY","ShipAddress":"7 Prairieview Lane","ShipName":"Feil-Hegmann","OrderDate":"1/16/2016","TotalPayment":"$133314.75","Status":4,"Type":2},{"OrderID":"55154-1026","ShipCountry":"ZM","ShipAddress":"66450 Schlimgen Point","ShipName":"Barton, Okuneva and Grimes","OrderDate":"6/9/2016","TotalPayment":"$776912.30","Status":1,"Type":2}]},\n{"RecordID":194,"FirstName":"Cozmo","LastName":"Rawe","Company":"Gabvine","Email":"crawe5d@sbwire.com","Phone":"752-594-0697","Status":1,"Type":1,"Orders":[{"OrderID":"0591-0582","ShipCountry":"HR","ShipAddress":"88803 Algoma Lane","ShipName":"Wisozk Group","OrderDate":"10/16/2017","TotalPayment":"$25297.04","Status":1,"Type":3},{"OrderID":"51009-145","ShipCountry":"CN","ShipAddress":"93675 Loomis Terrace","ShipName":"Runte, Graham and Heller","OrderDate":"8/3/2016","TotalPayment":"$533845.72","Status":4,"Type":1},{"OrderID":"59667-0100","ShipCountry":"CL","ShipAddress":"13662 Jay Point","ShipName":"Jones-Torphy","OrderDate":"11/6/2017","TotalPayment":"$1156095.30","Status":3,"Type":2},{"OrderID":"55316-130","ShipCountry":"CZ","ShipAddress":"059 Kenwood Alley","ShipName":"Jaskolski Inc","OrderDate":"8/5/2016","TotalPayment":"$1085048.70","Status":4,"Type":3},{"OrderID":"49288-0903","ShipCountry":"SE","ShipAddress":"736 Logan Junction","ShipName":"Rath, Ritchie and Terry","OrderDate":"9/6/2017","TotalPayment":"$200922.95","Status":2,"Type":2},{"OrderID":"55714-2329","ShipCountry":"PH","ShipAddress":"70 Declaration Crossing","ShipName":"Fahey, Harris and Crona","OrderDate":"2/17/2016","TotalPayment":"$46652.97","Status":5,"Type":2},{"OrderID":"37808-851","ShipCountry":"RU","ShipAddress":"81937 Carberry Lane","ShipName":"Leuschke-Waters","OrderDate":"11/26/2016","TotalPayment":"$246034.68","Status":5,"Type":3},{"OrderID":"60429-028","ShipCountry":"CN","ShipAddress":"3 Montana Place","ShipName":"Spinka and Sons","OrderDate":"4/28/2016","TotalPayment":"$286405.07","Status":3,"Type":3},{"OrderID":"49348-170","ShipCountry":"GR","ShipAddress":"349 Mandrake Crossing","ShipName":"Sipes, Hodkiewicz and Murray","OrderDate":"3/30/2017","TotalPayment":"$372868.38","Status":4,"Type":1},{"OrderID":"46122-027","ShipCountry":"RU","ShipAddress":"290 Mayer Road","ShipName":"Kertzmann Inc","OrderDate":"5/24/2016","TotalPayment":"$554984.33","Status":5,"Type":3},{"OrderID":"0093-7368","ShipCountry":"ID","ShipAddress":"289 Jenna Place","ShipName":"Schoen, Nicolas and Terry","OrderDate":"12/31/2016","TotalPayment":"$787732.60","Status":6,"Type":1},{"OrderID":"36987-2010","ShipCountry":"GR","ShipAddress":"71210 Spaight Center","ShipName":"Spinka-Parisian","OrderDate":"11/19/2016","TotalPayment":"$1180486.55","Status":2,"Type":2},{"OrderID":"0406-0552","ShipCountry":"CN","ShipAddress":"35 Randy Center","ShipName":"Kirlin-Rohan","OrderDate":"3/23/2016","TotalPayment":"$1040381.45","Status":6,"Type":2},{"OrderID":"60760-542","ShipCountry":"PL","ShipAddress":"67346 Dryden Park","ShipName":"Wiegand, Thiel and Crooks","OrderDate":"7/16/2016","TotalPayment":"$1128104.09","Status":2,"Type":1},{"OrderID":"21130-320","ShipCountry":"CN","ShipAddress":"60 Elmside Alley","ShipName":"Cassin, Cremin and Kirlin","OrderDate":"1/12/2017","TotalPayment":"$1044597.33","Status":4,"Type":3},{"OrderID":"49288-0777","ShipCountry":"DO","ShipAddress":"956 Chive Junction","ShipName":"Medhurst, Erdman and Renner","OrderDate":"3/30/2016","TotalPayment":"$133682.80","Status":3,"Type":3}]},\n{"RecordID":195,"FirstName":"Ceciley","LastName":"Lomasney","Company":"Layo","Email":"clomasney5e@yale.edu","Phone":"700-515-0734","Status":5,"Type":1,"Orders":[{"OrderID":"49035-851","ShipCountry":"PT","ShipAddress":"8 Evergreen Park","ShipName":"Quitzon-Conn","OrderDate":"4/5/2016","TotalPayment":"$542951.63","Status":3,"Type":2},{"OrderID":"49035-595","ShipCountry":"SO","ShipAddress":"5 Bartelt Parkway","ShipName":"Ruecker-Kutch","OrderDate":"10/12/2016","TotalPayment":"$1107508.41","Status":5,"Type":2},{"OrderID":"52125-123","ShipCountry":"ID","ShipAddress":"53 Reinke Avenue","ShipName":"Gutkowski, Padberg and Leffler","OrderDate":"7/29/2017","TotalPayment":"$377907.49","Status":4,"Type":2},{"OrderID":"49288-0698","ShipCountry":"RU","ShipAddress":"4 Canary Place","ShipName":"Schuster-Rogahn","OrderDate":"5/28/2017","TotalPayment":"$16175.43","Status":4,"Type":1},{"OrderID":"43063-358","ShipCountry":"ID","ShipAddress":"3981 Commercial Road","ShipName":"Padberg LLC","OrderDate":"11/25/2016","TotalPayment":"$577840.94","Status":4,"Type":1},{"OrderID":"59262-357","ShipCountry":"PK","ShipAddress":"0 Lillian Pass","ShipName":"Jast-Mitchell","OrderDate":"4/11/2017","TotalPayment":"$218149.87","Status":4,"Type":3},{"OrderID":"0781-7054","ShipCountry":"RU","ShipAddress":"3 Golf Street","ShipName":"Roob, Orn and Carroll","OrderDate":"11/8/2017","TotalPayment":"$96510.35","Status":3,"Type":1},{"OrderID":"35356-589","ShipCountry":"CA","ShipAddress":"05 Fulton Lane","ShipName":"Simonis Inc","OrderDate":"11/23/2017","TotalPayment":"$1003789.99","Status":1,"Type":2},{"OrderID":"50419-344","ShipCountry":"PK","ShipAddress":"20206 Blaine Plaza","ShipName":"Ward-Brown","OrderDate":"1/25/2017","TotalPayment":"$1030852.03","Status":2,"Type":2}]},\n{"RecordID":196,"FirstName":"Quint","LastName":"Scuse","Company":"Twitterbeat","Email":"qscuse5f@oakley.com","Phone":"790-981-6932","Status":4,"Type":2,"Orders":[{"OrderID":"36987-2358","ShipCountry":"RU","ShipAddress":"2287 Anthes Way","ShipName":"Rath Inc","OrderDate":"9/12/2017","TotalPayment":"$46774.24","Status":3,"Type":3},{"OrderID":"0603-3508","ShipCountry":"FR","ShipAddress":"0 Colorado Junction","ShipName":"Ernser-Schmeler","OrderDate":"2/12/2017","TotalPayment":"$952066.20","Status":5,"Type":2},{"OrderID":"31645-147","ShipCountry":"JP","ShipAddress":"2 Lotheville Hill","ShipName":"Goyette-Murphy","OrderDate":"11/16/2016","TotalPayment":"$616988.83","Status":6,"Type":2},{"OrderID":"36987-2384","ShipCountry":"ID","ShipAddress":"48 Jenna Terrace","ShipName":"Batz, Leuschke and Monahan","OrderDate":"5/7/2017","TotalPayment":"$692699.01","Status":3,"Type":3},{"OrderID":"43074-101","ShipCountry":"CN","ShipAddress":"53 Scott Street","ShipName":"O\'Kon, Simonis and Lindgren","OrderDate":"12/9/2016","TotalPayment":"$1085642.24","Status":1,"Type":3},{"OrderID":"48951-9158","ShipCountry":"PH","ShipAddress":"55 Quincy Avenue","ShipName":"Rice-Goyette","OrderDate":"10/21/2017","TotalPayment":"$530674.63","Status":3,"Type":1},{"OrderID":"60432-465","ShipCountry":"GT","ShipAddress":"5 Fordem Alley","ShipName":"Zemlak-Collier","OrderDate":"12/12/2017","TotalPayment":"$176294.65","Status":2,"Type":2},{"OrderID":"68405-013","ShipCountry":"AR","ShipAddress":"54 Manufacturers Trail","ShipName":"Tillman, Stokes and Schmeler","OrderDate":"3/4/2017","TotalPayment":"$990042.50","Status":6,"Type":2},{"OrderID":"59779-023","ShipCountry":"RS","ShipAddress":"22160 Columbus Lane","ShipName":"Nader, Mraz and Rath","OrderDate":"11/7/2017","TotalPayment":"$109008.70","Status":5,"Type":3},{"OrderID":"60505-0847","ShipCountry":"BI","ShipAddress":"1529 Oakridge Drive","ShipName":"Greenholt-Schaefer","OrderDate":"6/30/2017","TotalPayment":"$787321.95","Status":4,"Type":2},{"OrderID":"10736-010","ShipCountry":"FR","ShipAddress":"4 Barby Place","ShipName":"Considine, Collier and Kovacek","OrderDate":"1/1/2016","TotalPayment":"$987712.37","Status":1,"Type":3},{"OrderID":"60977-319","ShipCountry":"CN","ShipAddress":"6 Northridge Lane","ShipName":"Reinger, Brekke and Hilll","OrderDate":"6/6/2017","TotalPayment":"$691553.06","Status":6,"Type":2},{"OrderID":"54569-3887","ShipCountry":"SE","ShipAddress":"90149 Mifflin Park","ShipName":"Ratke-Hermiston","OrderDate":"6/17/2016","TotalPayment":"$984144.64","Status":5,"Type":3},{"OrderID":"41190-335","ShipCountry":"ID","ShipAddress":"70591 Victoria Center","ShipName":"Hettinger, Wintheiser and Haag","OrderDate":"11/17/2016","TotalPayment":"$912142.45","Status":4,"Type":2},{"OrderID":"60429-932","ShipCountry":"US","ShipAddress":"2957 Banding Drive","ShipName":"Jenkins-Schoen","OrderDate":"8/2/2016","TotalPayment":"$785063.15","Status":3,"Type":2},{"OrderID":"68016-532","ShipCountry":"CN","ShipAddress":"4474 Bunting Lane","ShipName":"Kerluke LLC","OrderDate":"1/10/2017","TotalPayment":"$1073400.74","Status":2,"Type":3},{"OrderID":"54569-8704","ShipCountry":"FR","ShipAddress":"505 Artisan Road","ShipName":"Rosenbaum-Shields","OrderDate":"2/19/2017","TotalPayment":"$926955.18","Status":2,"Type":1},{"OrderID":"0143-1266","ShipCountry":"TZ","ShipAddress":"3265 Butterfield Terrace","ShipName":"Tremblay-Flatley","OrderDate":"2/15/2016","TotalPayment":"$1063296.10","Status":5,"Type":2},{"OrderID":"10096-0214","ShipCountry":"CN","ShipAddress":"984 Buell Terrace","ShipName":"Harris Group","OrderDate":"1/22/2016","TotalPayment":"$368367.63","Status":5,"Type":2},{"OrderID":"0781-1079","ShipCountry":"ID","ShipAddress":"29 Manitowish Street","ShipName":"Beatty and Sons","OrderDate":"12/29/2016","TotalPayment":"$327469.64","Status":6,"Type":2}]},\n{"RecordID":197,"FirstName":"Mireielle","LastName":"Woodberry","Company":"Voonyx","Email":"mwoodberry5g@icq.com","Phone":"952-720-9160","Status":2,"Type":1,"Orders":[{"OrderID":"0220-3681","ShipCountry":"FR","ShipAddress":"064 Becker Street","ShipName":"Murazik, Jacobi and Little","OrderDate":"9/8/2016","TotalPayment":"$640724.62","Status":3,"Type":3},{"OrderID":"41520-188","ShipCountry":"RS","ShipAddress":"54368 Butterfield Plaza","ShipName":"McClure, O\'Reilly and Hayes","OrderDate":"7/11/2017","TotalPayment":"$86538.80","Status":5,"Type":3},{"OrderID":"67938-1401","ShipCountry":"US","ShipAddress":"88 Crescent Oaks Trail","ShipName":"Bechtelar-Reynolds","OrderDate":"3/30/2017","TotalPayment":"$140481.00","Status":5,"Type":2},{"OrderID":"55154-5088","ShipCountry":"CN","ShipAddress":"21 Florence Place","ShipName":"Boehm-Blanda","OrderDate":"4/11/2016","TotalPayment":"$301694.62","Status":6,"Type":3},{"OrderID":"0591-5708","ShipCountry":"RU","ShipAddress":"2 Sheridan Plaza","ShipName":"Stanton-Blanda","OrderDate":"11/16/2017","TotalPayment":"$1153722.50","Status":3,"Type":1},{"OrderID":"53462-075","ShipCountry":"BR","ShipAddress":"26435 Marquette Road","ShipName":"Kuhn-Weimann","OrderDate":"3/27/2017","TotalPayment":"$136576.03","Status":2,"Type":1},{"OrderID":"51811-363","ShipCountry":"CN","ShipAddress":"4411 Union Drive","ShipName":"Strosin, Bahringer and Johns","OrderDate":"11/11/2017","TotalPayment":"$530586.01","Status":2,"Type":3},{"OrderID":"57520-0161","ShipCountry":"ID","ShipAddress":"99 Homewood Hill","ShipName":"Rowe Inc","OrderDate":"7/17/2016","TotalPayment":"$904558.79","Status":5,"Type":1},{"OrderID":"55714-8007","ShipCountry":"PL","ShipAddress":"46 New Castle Circle","ShipName":"Kertzmann LLC","OrderDate":"5/27/2017","TotalPayment":"$828144.41","Status":1,"Type":2},{"OrderID":"49349-917","ShipCountry":"UZ","ShipAddress":"8755 Di Loreto Crossing","ShipName":"Dibbert and Sons","OrderDate":"8/29/2017","TotalPayment":"$223307.00","Status":1,"Type":2},{"OrderID":"63824-478","ShipCountry":"ID","ShipAddress":"90607 Dovetail Court","ShipName":"Schamberger, Spinka and Dibbert","OrderDate":"7/20/2016","TotalPayment":"$731206.72","Status":5,"Type":2},{"OrderID":"49999-789","ShipCountry":"US","ShipAddress":"028 Farmco Avenue","ShipName":"Lebsack, Rutherford and Waters","OrderDate":"6/15/2017","TotalPayment":"$709187.30","Status":5,"Type":2},{"OrderID":"36987-1287","ShipCountry":"CN","ShipAddress":"5417 Longview Center","ShipName":"Hermiston LLC","OrderDate":"7/26/2017","TotalPayment":"$630004.45","Status":4,"Type":3},{"OrderID":"57520-0951","ShipCountry":"CN","ShipAddress":"05560 5th Pass","ShipName":"Langosh LLC","OrderDate":"8/27/2017","TotalPayment":"$536628.88","Status":6,"Type":1},{"OrderID":"49897-159","ShipCountry":"AR","ShipAddress":"97590 Bluestem Terrace","ShipName":"Hackett, Botsford and Collins","OrderDate":"4/5/2017","TotalPayment":"$528715.86","Status":3,"Type":1}]},\n{"RecordID":198,"FirstName":"Eugene","LastName":"Brownett","Company":"Fatz","Email":"ebrownett5h@dell.com","Phone":"157-876-8514","Status":5,"Type":2,"Orders":[{"OrderID":"52773-236","ShipCountry":"GR","ShipAddress":"80158 Sunbrook Crossing","ShipName":"Casper, Schinner and Mosciski","OrderDate":"3/7/2017","TotalPayment":"$459835.23","Status":4,"Type":2},{"OrderID":"49281-545","ShipCountry":"KR","ShipAddress":"6 Sage Parkway","ShipName":"Purdy Group","OrderDate":"12/28/2016","TotalPayment":"$719078.36","Status":6,"Type":2},{"OrderID":"41163-344","ShipCountry":"FI","ShipAddress":"57 Thompson Crossing","ShipName":"Hoppe, Turner and Beatty","OrderDate":"9/20/2017","TotalPayment":"$1008540.01","Status":2,"Type":1},{"OrderID":"63187-059","ShipCountry":"CN","ShipAddress":"5550 Trailsway Park","ShipName":"Beahan-Nolan","OrderDate":"8/14/2016","TotalPayment":"$612635.71","Status":5,"Type":1},{"OrderID":"0268-1365","ShipCountry":"CN","ShipAddress":"5 Calypso Trail","ShipName":"Torphy, Bayer and Donnelly","OrderDate":"12/16/2017","TotalPayment":"$867860.29","Status":6,"Type":1},{"OrderID":"0703-4246","ShipCountry":"ID","ShipAddress":"287 Gerald Drive","ShipName":"Donnelly Group","OrderDate":"1/1/2016","TotalPayment":"$1078958.40","Status":3,"Type":3},{"OrderID":"42291-750","ShipCountry":"ID","ShipAddress":"06 Mallory Parkway","ShipName":"Howe and Sons","OrderDate":"8/17/2016","TotalPayment":"$905137.39","Status":6,"Type":3},{"OrderID":"0007-4887","ShipCountry":"PH","ShipAddress":"03 Sheridan Center","ShipName":"Grady, Mante and White","OrderDate":"4/14/2017","TotalPayment":"$502327.25","Status":6,"Type":3},{"OrderID":"0363-0666","ShipCountry":"CN","ShipAddress":"496 Fremont Lane","ShipName":"Buckridge and Sons","OrderDate":"11/17/2016","TotalPayment":"$696890.26","Status":5,"Type":2},{"OrderID":"0409-6664","ShipCountry":"RU","ShipAddress":"679 Carpenter Center","ShipName":"Schroeder Group","OrderDate":"7/18/2016","TotalPayment":"$792064.94","Status":6,"Type":2},{"OrderID":"42669-007","ShipCountry":"BJ","ShipAddress":"12286 Moland Crossing","ShipName":"Terry, Smitham and Purdy","OrderDate":"9/18/2017","TotalPayment":"$119133.29","Status":5,"Type":1},{"OrderID":"54569-0559","ShipCountry":"CN","ShipAddress":"6775 Butterfield Crossing","ShipName":"Huel and Sons","OrderDate":"5/5/2016","TotalPayment":"$1030611.53","Status":5,"Type":3},{"OrderID":"51862-229","ShipCountry":"PH","ShipAddress":"6034 Judy Road","ShipName":"Crona Group","OrderDate":"4/10/2017","TotalPayment":"$370062.25","Status":3,"Type":2},{"OrderID":"55154-4057","ShipCountry":"CN","ShipAddress":"60292 Spenser Alley","ShipName":"Frami, Macejkovic and Casper","OrderDate":"9/17/2016","TotalPayment":"$1071943.65","Status":3,"Type":1}]},\n{"RecordID":199,"FirstName":"Daven","LastName":"Anthon","Company":"Twinte","Email":"danthon5i@feedburner.com","Phone":"892-509-3906","Status":1,"Type":1,"Orders":[{"OrderID":"36987-2286","ShipCountry":"CA","ShipAddress":"00998 Goodland Pass","ShipName":"Jaskolski, Hand and Koepp","OrderDate":"9/4/2017","TotalPayment":"$1131868.65","Status":1,"Type":1},{"OrderID":"33261-470","ShipCountry":"MD","ShipAddress":"16556 Elka Center","ShipName":"Gorczany and Sons","OrderDate":"8/17/2017","TotalPayment":"$517031.56","Status":2,"Type":3},{"OrderID":"53746-110","ShipCountry":"PT","ShipAddress":"32 Pawling Circle","ShipName":"Boehm-Jakubowski","OrderDate":"3/15/2017","TotalPayment":"$377968.96","Status":6,"Type":3},{"OrderID":"55316-648","ShipCountry":"FR","ShipAddress":"0168 Cascade Crossing","ShipName":"Eichmann, Runolfsdottir and Heller","OrderDate":"7/9/2016","TotalPayment":"$1172534.56","Status":5,"Type":3},{"OrderID":"64942-1300","ShipCountry":"PH","ShipAddress":"3805 Annamark Drive","ShipName":"Stroman, West and Grimes","OrderDate":"12/23/2017","TotalPayment":"$1192272.60","Status":6,"Type":1},{"OrderID":"53329-816","ShipCountry":"CN","ShipAddress":"9 Spenser Avenue","ShipName":"Hammes Inc","OrderDate":"10/14/2017","TotalPayment":"$809900.31","Status":1,"Type":3},{"OrderID":"43353-924","ShipCountry":"ZM","ShipAddress":"48 Bobwhite Way","ShipName":"Emmerich Inc","OrderDate":"9/13/2017","TotalPayment":"$952511.48","Status":6,"Type":3},{"OrderID":"51285-523","ShipCountry":"CM","ShipAddress":"67 Forest Run Place","ShipName":"Lowe-Price","OrderDate":"11/11/2017","TotalPayment":"$887100.44","Status":2,"Type":3},{"OrderID":"55154-6178","ShipCountry":"PT","ShipAddress":"426 Pierstorff Point","ShipName":"Kessler and Sons","OrderDate":"8/23/2017","TotalPayment":"$969027.53","Status":3,"Type":3},{"OrderID":"49288-9933","ShipCountry":"SE","ShipAddress":"81026 Coolidge Road","ShipName":"Prohaska-Torphy","OrderDate":"1/9/2016","TotalPayment":"$290449.74","Status":6,"Type":3}]},\n{"RecordID":200,"FirstName":"Mendy","LastName":"Gianneschi","Company":"Buzzbean","Email":"mgianneschi5j@devhub.com","Phone":"471-328-4718","Status":5,"Type":1,"Orders":[{"OrderID":"60637-018","ShipCountry":"CN","ShipAddress":"554 Golf View Trail","ShipName":"Moen Group","OrderDate":"11/25/2016","TotalPayment":"$643495.68","Status":4,"Type":1},{"OrderID":"64942-1287","ShipCountry":"RU","ShipAddress":"030 Ramsey Alley","ShipName":"Schuppe-Glover","OrderDate":"9/3/2017","TotalPayment":"$464247.47","Status":1,"Type":1},{"OrderID":"68400-207","ShipCountry":"PL","ShipAddress":"0 Schiller Avenue","ShipName":"Cormier, Doyle and Waelchi","OrderDate":"9/18/2016","TotalPayment":"$1124213.74","Status":5,"Type":3},{"OrderID":"51442-531","ShipCountry":"LK","ShipAddress":"591 American Ash Street","ShipName":"Lemke-Kunze","OrderDate":"10/20/2017","TotalPayment":"$292506.27","Status":5,"Type":2},{"OrderID":"0268-1077","ShipCountry":"US","ShipAddress":"9373 Thompson Road","ShipName":"Smith-Corkery","OrderDate":"1/17/2017","TotalPayment":"$1157983.71","Status":5,"Type":2},{"OrderID":"57520-1040","ShipCountry":"MH","ShipAddress":"091 Doe Crossing Crossing","ShipName":"Kub-Schneider","OrderDate":"10/5/2016","TotalPayment":"$588516.14","Status":6,"Type":2},{"OrderID":"49738-160","ShipCountry":"CN","ShipAddress":"7 Arizona Road","ShipName":"Reilly, Dooley and Hermiston","OrderDate":"10/11/2017","TotalPayment":"$1166316.43","Status":5,"Type":1},{"OrderID":"51861-103","ShipCountry":"RU","ShipAddress":"01 Susan Road","ShipName":"O\'Connell Group","OrderDate":"11/4/2016","TotalPayment":"$490724.62","Status":4,"Type":2},{"OrderID":"63730-113","ShipCountry":"US","ShipAddress":"64257 Schurz Road","ShipName":"Pollich-Hauck","OrderDate":"3/28/2017","TotalPayment":"$242690.66","Status":3,"Type":1},{"OrderID":"0703-3986","ShipCountry":"SE","ShipAddress":"87794 Lawn Way","ShipName":"Sipes, Zboncak and Tremblay","OrderDate":"4/30/2017","TotalPayment":"$1026805.78","Status":2,"Type":1},{"OrderID":"55714-4536","ShipCountry":"PH","ShipAddress":"9063 Clyde Gallagher Avenue","ShipName":"Prosacco and Sons","OrderDate":"8/31/2016","TotalPayment":"$551939.47","Status":2,"Type":3},{"OrderID":"60637-001","ShipCountry":"GR","ShipAddress":"73 Montana Court","ShipName":"Harris-O\'Keefe","OrderDate":"1/9/2017","TotalPayment":"$471589.83","Status":2,"Type":3},{"OrderID":"60867-105","ShipCountry":"KG","ShipAddress":"0613 Parkside Place","ShipName":"Kessler, Grimes and Rempel","OrderDate":"8/18/2017","TotalPayment":"$975339.97","Status":4,"Type":3},{"OrderID":"0085-4347","ShipCountry":"VN","ShipAddress":"45 Kropf Court","ShipName":"Pacocha, Trantow and Kerluke","OrderDate":"9/11/2016","TotalPayment":"$836061.31","Status":2,"Type":1},{"OrderID":"49349-911","ShipCountry":"RU","ShipAddress":"080 Charing Cross Parkway","ShipName":"Quitzon Inc","OrderDate":"7/22/2016","TotalPayment":"$542897.52","Status":3,"Type":3}]},\n{"RecordID":201,"FirstName":"Bonita","LastName":"Dewhirst","Company":"Oodoo","Email":"bdewhirst5k@sohu.com","Phone":"739-501-2703","Status":6,"Type":3,"Orders":[{"OrderID":"0172-5240","ShipCountry":"PA","ShipAddress":"728 Melrose Center","ShipName":"Glover-Walter","OrderDate":"8/30/2016","TotalPayment":"$230000.48","Status":5,"Type":3},{"OrderID":"0904-5222","ShipCountry":"CN","ShipAddress":"116 La Follette Alley","ShipName":"Hickle, Feest and Bahringer","OrderDate":"12/14/2017","TotalPayment":"$139830.45","Status":3,"Type":2},{"OrderID":"60681-6201","ShipCountry":"CN","ShipAddress":"409 Green Trail","ShipName":"Larkin, Greenholt and Lesch","OrderDate":"11/22/2017","TotalPayment":"$682998.07","Status":6,"Type":2},{"OrderID":"36987-1425","ShipCountry":"RU","ShipAddress":"2238 Dorton Place","ShipName":"Harber-Gleason","OrderDate":"10/21/2016","TotalPayment":"$691837.31","Status":1,"Type":2},{"OrderID":"68382-005","ShipCountry":"RU","ShipAddress":"43057 Katie Court","ShipName":"Satterfield Inc","OrderDate":"9/19/2016","TotalPayment":"$620940.87","Status":5,"Type":1},{"OrderID":"62206-4760","ShipCountry":"CN","ShipAddress":"9923 Rutledge Crossing","ShipName":"Willms, Marquardt and Cormier","OrderDate":"5/1/2017","TotalPayment":"$453711.63","Status":1,"Type":2},{"OrderID":"36987-2188","ShipCountry":"PH","ShipAddress":"509 Monterey Alley","ShipName":"Nicolas Inc","OrderDate":"3/17/2016","TotalPayment":"$426132.84","Status":2,"Type":3},{"OrderID":"0378-4598","ShipCountry":"SY","ShipAddress":"10044 Holmberg Alley","ShipName":"Brekke, Stroman and Kling","OrderDate":"7/25/2017","TotalPayment":"$306580.36","Status":6,"Type":2},{"OrderID":"57337-050","ShipCountry":"JP","ShipAddress":"58804 Walton Avenue","ShipName":"Wuckert, Kling and Kuhlman","OrderDate":"3/5/2016","TotalPayment":"$324345.14","Status":1,"Type":2},{"OrderID":"52773-240","ShipCountry":"ID","ShipAddress":"336 Pearson Avenue","ShipName":"Hayes-Gulgowski","OrderDate":"2/18/2017","TotalPayment":"$373433.96","Status":2,"Type":3},{"OrderID":"49288-0099","ShipCountry":"US","ShipAddress":"87822 Green Ridge Plaza","ShipName":"Schulist Group","OrderDate":"10/18/2016","TotalPayment":"$1192575.63","Status":1,"Type":1},{"OrderID":"36987-2708","ShipCountry":"UG","ShipAddress":"4 Schurz Crossing","ShipName":"Bartell LLC","OrderDate":"12/2/2016","TotalPayment":"$759859.91","Status":3,"Type":3},{"OrderID":"53441-275","ShipCountry":"YE","ShipAddress":"017 Service Road","ShipName":"Gulgowski Group","OrderDate":"12/26/2016","TotalPayment":"$1158084.27","Status":6,"Type":1},{"OrderID":"0591-0844","ShipCountry":"PL","ShipAddress":"3936 Leroy Pass","ShipName":"Weimann, Torphy and Kuhn","OrderDate":"6/7/2016","TotalPayment":"$265704.45","Status":5,"Type":3},{"OrderID":"0224-1855","ShipCountry":"MN","ShipAddress":"060 Dakota Point","ShipName":"Kuhic, Prohaska and Halvorson","OrderDate":"3/16/2017","TotalPayment":"$699946.98","Status":2,"Type":2},{"OrderID":"44087-3344","ShipCountry":"UA","ShipAddress":"7783 Bluestem Plaza","ShipName":"Walsh, Lang and Bosco","OrderDate":"3/10/2017","TotalPayment":"$1090762.57","Status":1,"Type":2},{"OrderID":"55154-5034","ShipCountry":"PT","ShipAddress":"878 Village Circle","ShipName":"Borer, Ziemann and Fahey","OrderDate":"10/1/2016","TotalPayment":"$78823.19","Status":1,"Type":3},{"OrderID":"76485-1001","ShipCountry":"CO","ShipAddress":"9685 Clove Parkway","ShipName":"Fay-Bergnaum","OrderDate":"2/3/2016","TotalPayment":"$858228.14","Status":3,"Type":3},{"OrderID":"36987-2627","ShipCountry":"ET","ShipAddress":"69 Schmedeman Place","ShipName":"Cronin LLC","OrderDate":"5/7/2016","TotalPayment":"$857216.22","Status":5,"Type":3}]},\n{"RecordID":202,"FirstName":"Cristabel","LastName":"Arkow","Company":"Meezzy","Email":"carkow5l@issuu.com","Phone":"899-268-1909","Status":5,"Type":2,"Orders":[{"OrderID":"16590-097","ShipCountry":"CN","ShipAddress":"368 Hazelcrest Lane","ShipName":"Metz, Bins and Heller","OrderDate":"2/26/2017","TotalPayment":"$587858.94","Status":1,"Type":1},{"OrderID":"55648-273","ShipCountry":"CN","ShipAddress":"6 South Lane","ShipName":"Volkman, Stoltenberg and Roberts","OrderDate":"1/4/2017","TotalPayment":"$221736.27","Status":3,"Type":2},{"OrderID":"50111-468","ShipCountry":"ID","ShipAddress":"947 Atwood Way","ShipName":"Thompson Inc","OrderDate":"9/2/2017","TotalPayment":"$805181.50","Status":6,"Type":1},{"OrderID":"61919-009","ShipCountry":"RU","ShipAddress":"0864 Red Cloud Way","ShipName":"Stoltenberg, Satterfield and Wolff","OrderDate":"7/27/2016","TotalPayment":"$903471.88","Status":2,"Type":2},{"OrderID":"66758-036","ShipCountry":"PH","ShipAddress":"24881 Hermina Park","ShipName":"Lang and Sons","OrderDate":"2/17/2016","TotalPayment":"$1002085.85","Status":6,"Type":3},{"OrderID":"0054-4183","ShipCountry":"FR","ShipAddress":"39739 Grayhawk Alley","ShipName":"Ruecker-Keeling","OrderDate":"11/19/2017","TotalPayment":"$239886.36","Status":4,"Type":2},{"OrderID":"52565-031","ShipCountry":"BI","ShipAddress":"054 Logan Alley","ShipName":"Rohan and Sons","OrderDate":"5/10/2017","TotalPayment":"$917297.67","Status":3,"Type":1},{"OrderID":"55154-4235","ShipCountry":"VN","ShipAddress":"76032 Burrows Terrace","ShipName":"Bogisich-Kris","OrderDate":"7/24/2016","TotalPayment":"$1140363.74","Status":4,"Type":2},{"OrderID":"65133-120","ShipCountry":"CA","ShipAddress":"8898 Granby Point","ShipName":"Casper-Reynolds","OrderDate":"8/14/2017","TotalPayment":"$996967.90","Status":6,"Type":3},{"OrderID":"54866-002","ShipCountry":"PT","ShipAddress":"83 Monica Junction","ShipName":"Ruecker LLC","OrderDate":"8/10/2017","TotalPayment":"$936918.58","Status":1,"Type":3},{"OrderID":"59762-0140","ShipCountry":"MA","ShipAddress":"406 Annamark Trail","ShipName":"Rohan Inc","OrderDate":"3/22/2017","TotalPayment":"$37107.64","Status":3,"Type":1},{"OrderID":"57627-128","ShipCountry":"PT","ShipAddress":"04920 Tennessee Center","ShipName":"Sanford-Renner","OrderDate":"4/16/2017","TotalPayment":"$749998.27","Status":2,"Type":3}]},\n{"RecordID":203,"FirstName":"Trish","LastName":"Keep","Company":"Eimbee","Email":"tkeep5m@reverbnation.com","Phone":"387-374-1342","Status":6,"Type":2,"Orders":[{"OrderID":"37012-480","ShipCountry":"PE","ShipAddress":"80568 Blackbird Center","ShipName":"Leffler and Sons","OrderDate":"7/9/2017","TotalPayment":"$556953.86","Status":3,"Type":1},{"OrderID":"54868-5676","ShipCountry":"ID","ShipAddress":"9627 Jana Center","ShipName":"Moen-Bashirian","OrderDate":"6/19/2016","TotalPayment":"$428715.95","Status":2,"Type":3},{"OrderID":"55714-4509","ShipCountry":"ID","ShipAddress":"55 Annamark Junction","ShipName":"Schulist Group","OrderDate":"4/20/2016","TotalPayment":"$477491.00","Status":2,"Type":2},{"OrderID":"59115-066","ShipCountry":"ID","ShipAddress":"0 American Plaza","ShipName":"Kris-Ankunding","OrderDate":"6/23/2017","TotalPayment":"$156185.23","Status":1,"Type":2},{"OrderID":"43074-111","ShipCountry":"ID","ShipAddress":"655 Waywood Terrace","ShipName":"Murphy, Rowe and Treutel","OrderDate":"6/4/2016","TotalPayment":"$199561.36","Status":5,"Type":2},{"OrderID":"58988-0184","ShipCountry":"NG","ShipAddress":"35626 Cascade Circle","ShipName":"Fahey Inc","OrderDate":"12/6/2017","TotalPayment":"$296422.68","Status":2,"Type":3},{"OrderID":"0268-6141","ShipCountry":"PT","ShipAddress":"9 Fallview Pass","ShipName":"Simonis Group","OrderDate":"9/3/2016","TotalPayment":"$479069.17","Status":2,"Type":3},{"OrderID":"21749-363","ShipCountry":"PH","ShipAddress":"62 Mcguire Plaza","ShipName":"Hartmann-Kunde","OrderDate":"4/11/2017","TotalPayment":"$934685.79","Status":5,"Type":1},{"OrderID":"55316-416","ShipCountry":"LK","ShipAddress":"220 Brown Point","ShipName":"Wiza, Heathcote and Bailey","OrderDate":"5/16/2017","TotalPayment":"$1193805.73","Status":5,"Type":2},{"OrderID":"12546-985","ShipCountry":"ID","ShipAddress":"5 Hermina Street","ShipName":"Jacobs, Erdman and Kuhn","OrderDate":"8/16/2017","TotalPayment":"$1051617.53","Status":6,"Type":3},{"OrderID":"0904-5858","ShipCountry":"ID","ShipAddress":"0 Scoville Place","ShipName":"Rodriguez LLC","OrderDate":"5/26/2017","TotalPayment":"$28660.97","Status":1,"Type":1},{"OrderID":"0904-6201","ShipCountry":"ID","ShipAddress":"4185 Tennyson Circle","ShipName":"Streich and Sons","OrderDate":"1/2/2016","TotalPayment":"$327666.42","Status":5,"Type":3},{"OrderID":"43742-0136","ShipCountry":"KH","ShipAddress":"23987 Russell Point","ShipName":"Ondricka-Windler","OrderDate":"6/11/2017","TotalPayment":"$441901.36","Status":1,"Type":3},{"OrderID":"63621-356","ShipCountry":"CN","ShipAddress":"0 Eastlawn Place","ShipName":"Nikolaus, Feest and Harber","OrderDate":"4/17/2016","TotalPayment":"$358859.03","Status":1,"Type":3},{"OrderID":"59310-210","ShipCountry":"CO","ShipAddress":"750 Texas Hill","ShipName":"Dare, Walter and Sawayn","OrderDate":"5/3/2016","TotalPayment":"$889029.27","Status":1,"Type":3},{"OrderID":"67046-016","ShipCountry":"PH","ShipAddress":"5 Transport Point","ShipName":"Stoltenberg, Buckridge and Glover","OrderDate":"9/18/2016","TotalPayment":"$12421.44","Status":1,"Type":1},{"OrderID":"0703-1153","ShipCountry":"JP","ShipAddress":"9001 Kipling Alley","ShipName":"Stehr, Walter and Kuhic","OrderDate":"9/14/2017","TotalPayment":"$226388.65","Status":4,"Type":1},{"OrderID":"0904-5980","ShipCountry":"ES","ShipAddress":"90287 Iowa Hill","ShipName":"Lindgren-Gutmann","OrderDate":"8/18/2016","TotalPayment":"$332870.40","Status":6,"Type":2},{"OrderID":"24385-998","ShipCountry":"US","ShipAddress":"2338 Grayhawk Plaza","ShipName":"Kassulke Inc","OrderDate":"8/1/2016","TotalPayment":"$236485.28","Status":1,"Type":1}]},\n{"RecordID":204,"FirstName":"Bogart","LastName":"Bignell","Company":"Jaxnation","Email":"bbignell5n@cnet.com","Phone":"366-700-2289","Status":6,"Type":2,"Orders":[{"OrderID":"52959-450","ShipCountry":"SS","ShipAddress":"6 Harper Alley","ShipName":"Lang, Rodriguez and Wehner","OrderDate":"4/16/2016","TotalPayment":"$283803.53","Status":3,"Type":3},{"OrderID":"63304-554","ShipCountry":"UA","ShipAddress":"6 Derek Street","ShipName":"Abernathy, Jones and Volkman","OrderDate":"4/27/2016","TotalPayment":"$277549.46","Status":6,"Type":2},{"OrderID":"51452-002","ShipCountry":"ID","ShipAddress":"05462 Fremont Circle","ShipName":"Wehner-Rowe","OrderDate":"4/1/2017","TotalPayment":"$624582.93","Status":1,"Type":1},{"OrderID":"11822-0292","ShipCountry":"PH","ShipAddress":"5 Little Fleur Junction","ShipName":"Larson-Macejkovic","OrderDate":"5/15/2017","TotalPayment":"$605850.33","Status":5,"Type":3},{"OrderID":"67877-290","ShipCountry":"PH","ShipAddress":"12 New Castle Point","ShipName":"Friesen Group","OrderDate":"12/18/2017","TotalPayment":"$952721.83","Status":2,"Type":2},{"OrderID":"36987-3087","ShipCountry":"GT","ShipAddress":"48306 Macpherson Road","ShipName":"Mayert Inc","OrderDate":"6/23/2017","TotalPayment":"$463088.71","Status":2,"Type":1},{"OrderID":"51327-400","ShipCountry":"ID","ShipAddress":"48 Di Loreto Hill","ShipName":"Jenkins, Balistreri and Cummings","OrderDate":"5/24/2017","TotalPayment":"$1180424.79","Status":4,"Type":1},{"OrderID":"76041-713","ShipCountry":"CN","ShipAddress":"1383 Walton Park","ShipName":"Schoen-Jacobson","OrderDate":"6/10/2016","TotalPayment":"$1187493.79","Status":5,"Type":2},{"OrderID":"61957-1470","ShipCountry":"AR","ShipAddress":"413 Green Hill","ShipName":"Lockman, Douglas and Renner","OrderDate":"7/3/2016","TotalPayment":"$1023428.51","Status":6,"Type":1},{"OrderID":"63629-4355","ShipCountry":"PH","ShipAddress":"11 Orin Terrace","ShipName":"Smitham-Lakin","OrderDate":"10/18/2017","TotalPayment":"$401890.06","Status":1,"Type":2},{"OrderID":"63304-599","ShipCountry":"CZ","ShipAddress":"7433 Delladonna Pass","ShipName":"Bauch and Sons","OrderDate":"6/24/2016","TotalPayment":"$376158.82","Status":2,"Type":3}]},\n{"RecordID":205,"FirstName":"Ronica","LastName":"Drei","Company":"Skyble","Email":"rdrei5o@networkadvertising.org","Phone":"404-341-2032","Status":6,"Type":3,"Orders":[{"OrderID":"0591-0370","ShipCountry":"ID","ShipAddress":"261 Spohn Drive","ShipName":"Legros Inc","OrderDate":"7/2/2017","TotalPayment":"$772164.10","Status":2,"Type":1},{"OrderID":"33261-004","ShipCountry":"AR","ShipAddress":"651 Moose Crossing","ShipName":"Murray, Schoen and Rutherford","OrderDate":"9/23/2017","TotalPayment":"$486663.07","Status":6,"Type":2},{"OrderID":"61010-5800","ShipCountry":"EC","ShipAddress":"08 Cambridge Trail","ShipName":"Muller and Sons","OrderDate":"6/20/2016","TotalPayment":"$56538.79","Status":5,"Type":1},{"OrderID":"42254-004","ShipCountry":"CN","ShipAddress":"0 Texas Terrace","ShipName":"O\'Connell, Lowe and Kreiger","OrderDate":"1/30/2017","TotalPayment":"$29952.90","Status":6,"Type":1},{"OrderID":"50021-234","ShipCountry":"PL","ShipAddress":"2 2nd Avenue","ShipName":"Howell Group","OrderDate":"5/8/2017","TotalPayment":"$805982.70","Status":5,"Type":1},{"OrderID":"10572-147","ShipCountry":"CN","ShipAddress":"36080 Arapahoe Junction","ShipName":"Wolf Inc","OrderDate":"2/18/2016","TotalPayment":"$820234.24","Status":6,"Type":1},{"OrderID":"54868-5456","ShipCountry":"BR","ShipAddress":"8349 Bartelt Drive","ShipName":"Nienow and Sons","OrderDate":"2/5/2017","TotalPayment":"$251154.15","Status":3,"Type":2}]},\n{"RecordID":206,"FirstName":"Aurelia","LastName":"Cowan","Company":"Devify","Email":"acowan5p@myspace.com","Phone":"650-998-4542","Status":4,"Type":3,"Orders":[{"OrderID":"66116-450","ShipCountry":"AM","ShipAddress":"232 Sunnyside Junction","ShipName":"Hane, Mueller and Rolfson","OrderDate":"3/11/2017","TotalPayment":"$127559.60","Status":3,"Type":1},{"OrderID":"52125-463","ShipCountry":"TZ","ShipAddress":"4535 Gulseth Alley","ShipName":"Gutkowski LLC","OrderDate":"6/28/2017","TotalPayment":"$111423.76","Status":1,"Type":3},{"OrderID":"42291-509","ShipCountry":"EC","ShipAddress":"62 Colorado Avenue","ShipName":"Homenick-Grady","OrderDate":"8/11/2017","TotalPayment":"$1002079.25","Status":3,"Type":2},{"OrderID":"63736-176","ShipCountry":"TH","ShipAddress":"423 Hagan Hill","ShipName":"Kilback, Farrell and Jerde","OrderDate":"7/1/2016","TotalPayment":"$722340.57","Status":2,"Type":1},{"OrderID":"49288-0034","ShipCountry":"RU","ShipAddress":"87427 Bunting Parkway","ShipName":"Collier, Barrows and Wisoky","OrderDate":"2/5/2017","TotalPayment":"$838174.02","Status":3,"Type":2},{"OrderID":"36987-1741","ShipCountry":"MA","ShipAddress":"4 Warbler Park","ShipName":"Gutkowski-Bosco","OrderDate":"5/4/2017","TotalPayment":"$847143.62","Status":3,"Type":2},{"OrderID":"11084-701","ShipCountry":"SC","ShipAddress":"6328 Daystar Parkway","ShipName":"Gleichner-Botsford","OrderDate":"8/3/2016","TotalPayment":"$70948.22","Status":3,"Type":3},{"OrderID":"68770-130","ShipCountry":"CN","ShipAddress":"14440 Westerfield Plaza","ShipName":"Effertz, Schumm and Kessler","OrderDate":"11/4/2016","TotalPayment":"$144530.76","Status":4,"Type":1},{"OrderID":"50268-795","ShipCountry":"CN","ShipAddress":"1 Grasskamp Court","ShipName":"White-Becker","OrderDate":"7/3/2016","TotalPayment":"$473553.00","Status":3,"Type":2},{"OrderID":"0135-0469","ShipCountry":"BA","ShipAddress":"73 Dakota Court","ShipName":"Cassin-Harvey","OrderDate":"2/27/2016","TotalPayment":"$986704.22","Status":3,"Type":3},{"OrderID":"37205-698","ShipCountry":"JP","ShipAddress":"7 Marcy Trail","ShipName":"Satterfield and Sons","OrderDate":"1/13/2016","TotalPayment":"$433457.56","Status":5,"Type":2},{"OrderID":"10927-106","ShipCountry":"ID","ShipAddress":"71230 John Wall Center","ShipName":"Schumm and Sons","OrderDate":"9/8/2016","TotalPayment":"$777510.44","Status":5,"Type":2}]},\n{"RecordID":207,"FirstName":"Janith","LastName":"Feore","Company":"Edgepulse","Email":"jfeore5q@drupal.org","Phone":"944-658-0904","Status":2,"Type":1,"Orders":[{"OrderID":"75990-3018","ShipCountry":"PT","ShipAddress":"8947 Derek Avenue","ShipName":"Hyatt, Bode and Heaney","OrderDate":"12/14/2017","TotalPayment":"$747153.45","Status":6,"Type":1},{"OrderID":"0143-9994","ShipCountry":"JP","ShipAddress":"83120 Prairie Rose Way","ShipName":"Flatley, Cormier and Waelchi","OrderDate":"3/7/2017","TotalPayment":"$543128.18","Status":4,"Type":2},{"OrderID":"0536-1275","ShipCountry":"LT","ShipAddress":"074 Bunting Trail","ShipName":"Greenfelder, Breitenberg and Smitham","OrderDate":"4/20/2017","TotalPayment":"$623158.19","Status":4,"Type":1},{"OrderID":"0054-0222","ShipCountry":"GR","ShipAddress":"0 Butternut Court","ShipName":"Koch-Prohaska","OrderDate":"10/14/2017","TotalPayment":"$343075.12","Status":5,"Type":2},{"OrderID":"53345-009","ShipCountry":"CN","ShipAddress":"97540 Schiller Lane","ShipName":"Little-Monahan","OrderDate":"1/23/2016","TotalPayment":"$1133879.40","Status":5,"Type":3},{"OrderID":"0781-1785","ShipCountry":"HR","ShipAddress":"8149 Eastwood Circle","ShipName":"Ledner-Will","OrderDate":"9/10/2017","TotalPayment":"$651973.39","Status":1,"Type":3},{"OrderID":"17478-834","ShipCountry":"ET","ShipAddress":"4505 Farmco Junction","ShipName":"Daugherty Group","OrderDate":"9/7/2017","TotalPayment":"$307610.24","Status":6,"Type":2},{"OrderID":"0143-9682","ShipCountry":"VN","ShipAddress":"82805 Rowland Parkway","ShipName":"Moen, Hackett and Rippin","OrderDate":"7/9/2017","TotalPayment":"$161028.56","Status":5,"Type":3},{"OrderID":"63029-404","ShipCountry":"RU","ShipAddress":"9 Kedzie Alley","ShipName":"Huels, Weber and Haley","OrderDate":"12/21/2017","TotalPayment":"$1166813.63","Status":6,"Type":3},{"OrderID":"59779-908","ShipCountry":"EG","ShipAddress":"42965 Grim Park","ShipName":"Schulist, Moen and Watsica","OrderDate":"9/21/2017","TotalPayment":"$32746.40","Status":3,"Type":3},{"OrderID":"11822-2943","ShipCountry":"CN","ShipAddress":"25 Mayfield Place","ShipName":"Turcotte Inc","OrderDate":"10/10/2016","TotalPayment":"$323008.28","Status":6,"Type":2},{"OrderID":"67718-941","ShipCountry":"BR","ShipAddress":"493 Derek Avenue","ShipName":"Wyman-Nicolas","OrderDate":"3/25/2017","TotalPayment":"$136249.74","Status":2,"Type":3},{"OrderID":"49288-0029","ShipCountry":"BR","ShipAddress":"2577 Dottie Parkway","ShipName":"Larkin Group","OrderDate":"1/4/2017","TotalPayment":"$1097775.78","Status":6,"Type":2}]},\n{"RecordID":208,"FirstName":"Elna","LastName":"Fairholme","Company":"Dazzlesphere","Email":"efairholme5r@twitpic.com","Phone":"366-971-3353","Status":4,"Type":2,"Orders":[{"OrderID":"47593-476","ShipCountry":"LK","ShipAddress":"6 Farmco Road","ShipName":"Mayert Group","OrderDate":"5/29/2017","TotalPayment":"$992577.84","Status":1,"Type":3},{"OrderID":"0268-0130","ShipCountry":"PH","ShipAddress":"3690 Homewood Parkway","ShipName":"Johns, Becker and Roob","OrderDate":"12/23/2016","TotalPayment":"$218509.90","Status":4,"Type":3},{"OrderID":"67457-228","ShipCountry":"BR","ShipAddress":"6 Hanover Point","ShipName":"Hirthe, Kuhic and Kreiger","OrderDate":"10/25/2016","TotalPayment":"$1106472.40","Status":3,"Type":3},{"OrderID":"67512-224","ShipCountry":"TN","ShipAddress":"7840 Oneill Way","ShipName":"Baumbach LLC","OrderDate":"9/8/2017","TotalPayment":"$792310.33","Status":1,"Type":1},{"OrderID":"55154-9607","ShipCountry":"CN","ShipAddress":"13832 Sullivan Way","ShipName":"Kerluke-Schmitt","OrderDate":"11/19/2016","TotalPayment":"$228096.15","Status":2,"Type":2},{"OrderID":"64980-320","ShipCountry":"CN","ShipAddress":"3049 Wayridge Terrace","ShipName":"Murphy, Marks and Senger","OrderDate":"10/31/2017","TotalPayment":"$229148.30","Status":6,"Type":2},{"OrderID":"44911-0030","ShipCountry":"FR","ShipAddress":"5974 Thompson Court","ShipName":"Johns, Johns and Ebert","OrderDate":"10/12/2017","TotalPayment":"$264551.02","Status":6,"Type":2},{"OrderID":"69106-170","ShipCountry":"SD","ShipAddress":"15 Helena Place","ShipName":"Bogisich, Block and Bartell","OrderDate":"12/10/2016","TotalPayment":"$157312.75","Status":6,"Type":3},{"OrderID":"0085-1264","ShipCountry":"BR","ShipAddress":"0261 Delaware Plaza","ShipName":"Nienow-Connelly","OrderDate":"5/11/2016","TotalPayment":"$296894.81","Status":1,"Type":2},{"OrderID":"20703-002","ShipCountry":"US","ShipAddress":"21 Prentice Trail","ShipName":"Weber-Barrows","OrderDate":"2/10/2016","TotalPayment":"$463670.09","Status":4,"Type":1},{"OrderID":"24236-303","ShipCountry":"FR","ShipAddress":"8 Becker Center","ShipName":"Torphy-Reichert","OrderDate":"12/15/2016","TotalPayment":"$1062136.18","Status":1,"Type":1},{"OrderID":"0185-0211","ShipCountry":"TT","ShipAddress":"107 Tomscot Court","ShipName":"Morissette-Dibbert","OrderDate":"8/21/2016","TotalPayment":"$701327.37","Status":2,"Type":3}]},\n{"RecordID":209,"FirstName":"Nilson","LastName":"Jedrys","Company":"Photolist","Email":"njedrys5s@latimes.com","Phone":"537-293-5429","Status":3,"Type":3,"Orders":[{"OrderID":"58118-5040","ShipCountry":"ID","ShipAddress":"5329 Holy Cross Circle","ShipName":"Boyer-Prohaska","OrderDate":"6/3/2017","TotalPayment":"$1153596.58","Status":5,"Type":2},{"OrderID":"49808-384","ShipCountry":"PH","ShipAddress":"32 Dayton Junction","ShipName":"Fadel-Mayert","OrderDate":"11/30/2016","TotalPayment":"$20574.74","Status":5,"Type":2},{"OrderID":"52125-734","ShipCountry":"ID","ShipAddress":"1513 Brown Place","ShipName":"Beer LLC","OrderDate":"6/14/2016","TotalPayment":"$83375.51","Status":4,"Type":1},{"OrderID":"59779-131","ShipCountry":"SE","ShipAddress":"35 Vidon Hill","ShipName":"Wehner, Bosco and Blanda","OrderDate":"3/21/2016","TotalPayment":"$1140464.09","Status":2,"Type":2},{"OrderID":"55154-3479","ShipCountry":"PH","ShipAddress":"7 Eastwood Court","ShipName":"Renner Group","OrderDate":"1/7/2017","TotalPayment":"$65596.85","Status":4,"Type":1},{"OrderID":"60681-0113","ShipCountry":"US","ShipAddress":"53 Milwaukee Plaza","ShipName":"Kovacek Inc","OrderDate":"2/22/2016","TotalPayment":"$110256.64","Status":1,"Type":1},{"OrderID":"68878-120","ShipCountry":"CU","ShipAddress":"2242 Lighthouse Bay Plaza","ShipName":"Schuppe-Buckridge","OrderDate":"3/1/2016","TotalPayment":"$716656.69","Status":6,"Type":2},{"OrderID":"76237-205","ShipCountry":"CN","ShipAddress":"73 South Junction","ShipName":"Jacobson, Dicki and Kuvalis","OrderDate":"7/1/2017","TotalPayment":"$1085509.52","Status":6,"Type":1},{"OrderID":"50865-689","ShipCountry":"CA","ShipAddress":"780 Fulton Street","ShipName":"Lind LLC","OrderDate":"7/3/2017","TotalPayment":"$1014982.86","Status":4,"Type":1},{"OrderID":"50580-295","ShipCountry":"NG","ShipAddress":"4 Melrose Plaza","ShipName":"Bartoletti-Osinski","OrderDate":"2/12/2016","TotalPayment":"$978092.81","Status":2,"Type":3},{"OrderID":"51824-044","ShipCountry":"CN","ShipAddress":"7 Banding Avenue","ShipName":"Mayer-Mueller","OrderDate":"10/16/2017","TotalPayment":"$1015566.69","Status":2,"Type":2},{"OrderID":"48951-5038","ShipCountry":"RU","ShipAddress":"11 Hagan Drive","ShipName":"Goyette, Robel and Bahringer","OrderDate":"1/23/2016","TotalPayment":"$359318.16","Status":1,"Type":3},{"OrderID":"43378-104","ShipCountry":"UA","ShipAddress":"0506 Haas Avenue","ShipName":"Shields, Adams and Turcotte","OrderDate":"6/29/2017","TotalPayment":"$289208.00","Status":3,"Type":1},{"OrderID":"36987-2994","ShipCountry":"AM","ShipAddress":"874 Steensland Trail","ShipName":"Cremin-Shanahan","OrderDate":"2/21/2016","TotalPayment":"$448270.21","Status":3,"Type":1},{"OrderID":"10237-652","ShipCountry":"ID","ShipAddress":"1528 Ridgeway Park","ShipName":"Koss Inc","OrderDate":"11/20/2016","TotalPayment":"$313472.57","Status":3,"Type":1},{"OrderID":"35356-820","ShipCountry":"ID","ShipAddress":"7 Comanche Point","ShipName":"Feeney, Runte and Spencer","OrderDate":"1/19/2016","TotalPayment":"$29075.21","Status":3,"Type":2},{"OrderID":"0115-1234","ShipCountry":"PL","ShipAddress":"6 Weeping Birch Crossing","ShipName":"Witting-Hand","OrderDate":"7/18/2017","TotalPayment":"$628733.83","Status":6,"Type":1}]},\n{"RecordID":210,"FirstName":"Mendel","LastName":"Hamshaw","Company":"Linkbridge","Email":"mhamshaw5t@twitpic.com","Phone":"923-311-6428","Status":6,"Type":3,"Orders":[{"OrderID":"53210-1004","ShipCountry":"VN","ShipAddress":"3234 Reinke Road","ShipName":"Fay, Bogisich and Bode","OrderDate":"2/4/2016","TotalPayment":"$32957.35","Status":5,"Type":3},{"OrderID":"24385-505","ShipCountry":"ID","ShipAddress":"9 Village Green Court","ShipName":"Lowe, Gibson and Prosacco","OrderDate":"7/5/2017","TotalPayment":"$592050.89","Status":5,"Type":1},{"OrderID":"65862-194","ShipCountry":"CN","ShipAddress":"3964 Division Park","ShipName":"Torphy-Renner","OrderDate":"11/14/2017","TotalPayment":"$119481.27","Status":5,"Type":1},{"OrderID":"43269-698","ShipCountry":"SE","ShipAddress":"09 Lakeland Junction","ShipName":"Simonis, Skiles and Dietrich","OrderDate":"5/2/2016","TotalPayment":"$788360.43","Status":4,"Type":2},{"OrderID":"64942-1139","ShipCountry":"UA","ShipAddress":"77251 Ridgeview Point","ShipName":"Wyman and Sons","OrderDate":"8/16/2016","TotalPayment":"$115203.32","Status":3,"Type":3},{"OrderID":"0591-2882","ShipCountry":"PE","ShipAddress":"98911 Warner Hill","ShipName":"Erdman LLC","OrderDate":"5/9/2017","TotalPayment":"$755136.52","Status":4,"Type":2},{"OrderID":"55714-1104","ShipCountry":"IL","ShipAddress":"70 Atwood Way","ShipName":"Murphy, Powlowski and Gerhold","OrderDate":"1/14/2017","TotalPayment":"$97791.96","Status":2,"Type":2},{"OrderID":"68599-5309","ShipCountry":"CN","ShipAddress":"0 Sunfield Alley","ShipName":"Yundt-Schoen","OrderDate":"9/9/2016","TotalPayment":"$685291.84","Status":1,"Type":3},{"OrderID":"0362-9023","ShipCountry":"CN","ShipAddress":"6879 Dryden Point","ShipName":"Rodriguez-Schroeder","OrderDate":"7/14/2017","TotalPayment":"$970380.75","Status":4,"Type":2},{"OrderID":"68084-728","ShipCountry":"ES","ShipAddress":"50328 West Park","ShipName":"Keebler Group","OrderDate":"7/29/2017","TotalPayment":"$352252.47","Status":3,"Type":1},{"OrderID":"43353-863","ShipCountry":"CN","ShipAddress":"818 Linden Parkway","ShipName":"Leannon Inc","OrderDate":"12/24/2017","TotalPayment":"$1173331.94","Status":2,"Type":3},{"OrderID":"0143-1475","ShipCountry":"US","ShipAddress":"54725 Huxley Hill","ShipName":"Koss-Daugherty","OrderDate":"5/12/2016","TotalPayment":"$491383.64","Status":5,"Type":2}]},\n{"RecordID":211,"FirstName":"Harland","LastName":"Lempertz","Company":"Aivee","Email":"hlempertz5u@utexas.edu","Phone":"128-591-7039","Status":1,"Type":2,"Orders":[{"OrderID":"41167-1005","ShipCountry":"MM","ShipAddress":"29 Lakeland Center","ShipName":"Corkery, Spinka and Torphy","OrderDate":"11/3/2017","TotalPayment":"$980981.44","Status":3,"Type":3},{"OrderID":"0256-0185","ShipCountry":"US","ShipAddress":"95139 Chive Drive","ShipName":"Langworth LLC","OrderDate":"1/25/2016","TotalPayment":"$514264.54","Status":5,"Type":2},{"OrderID":"62366-124","ShipCountry":"ID","ShipAddress":"35 Mosinee Street","ShipName":"Larson and Sons","OrderDate":"1/27/2016","TotalPayment":"$334733.40","Status":2,"Type":2},{"OrderID":"49825-129","ShipCountry":"CN","ShipAddress":"7 Michigan Road","ShipName":"Heathcote-Feeney","OrderDate":"8/20/2016","TotalPayment":"$877994.93","Status":6,"Type":1},{"OrderID":"37205-510","ShipCountry":"JP","ShipAddress":"8006 Mosinee Lane","ShipName":"Gislason-Batz","OrderDate":"5/28/2017","TotalPayment":"$896358.25","Status":1,"Type":2},{"OrderID":"49288-0052","ShipCountry":"CN","ShipAddress":"4 Declaration Point","ShipName":"Schuppe and Sons","OrderDate":"3/24/2017","TotalPayment":"$639013.37","Status":2,"Type":3},{"OrderID":"0591-3248","ShipCountry":"PH","ShipAddress":"86454 Westend Lane","ShipName":"Bode, Bednar and Balistreri","OrderDate":"8/1/2017","TotalPayment":"$787277.38","Status":6,"Type":1},{"OrderID":"54868-5956","ShipCountry":"CN","ShipAddress":"3613 Loomis Trail","ShipName":"Windler-Dibbert","OrderDate":"9/17/2016","TotalPayment":"$171091.19","Status":5,"Type":1},{"OrderID":"37012-110","ShipCountry":"PH","ShipAddress":"8920 Coolidge Park","ShipName":"Heidenreich, Bosco and Sawayn","OrderDate":"4/17/2017","TotalPayment":"$927288.29","Status":6,"Type":1},{"OrderID":"0409-2988","ShipCountry":"GR","ShipAddress":"9 Mitchell Terrace","ShipName":"Hammes LLC","OrderDate":"12/11/2016","TotalPayment":"$776016.18","Status":6,"Type":2},{"OrderID":"16252-509","ShipCountry":"FR","ShipAddress":"328 Morningstar Junction","ShipName":"Reichel LLC","OrderDate":"2/13/2016","TotalPayment":"$423124.69","Status":5,"Type":1},{"OrderID":"0904-6017","ShipCountry":"CN","ShipAddress":"351 Lindbergh Plaza","ShipName":"Hodkiewicz Inc","OrderDate":"7/7/2017","TotalPayment":"$849450.19","Status":3,"Type":3},{"OrderID":"44087-9005","ShipCountry":"PT","ShipAddress":"13 Londonderry Avenue","ShipName":"Swift and Sons","OrderDate":"5/19/2017","TotalPayment":"$686468.30","Status":2,"Type":1},{"OrderID":"55312-153","ShipCountry":"VN","ShipAddress":"8 Browning Point","ShipName":"Deckow-Bashirian","OrderDate":"2/12/2017","TotalPayment":"$635282.88","Status":4,"Type":2},{"OrderID":"62450-002","ShipCountry":"ID","ShipAddress":"35129 Corscot Trail","ShipName":"Kessler-Ward","OrderDate":"5/8/2017","TotalPayment":"$1158839.22","Status":3,"Type":1},{"OrderID":"11523-7216","ShipCountry":"JP","ShipAddress":"46593 Hanover Parkway","ShipName":"Schinner-Leuschke","OrderDate":"2/25/2016","TotalPayment":"$1153378.64","Status":4,"Type":1}]},\n{"RecordID":212,"FirstName":"Loleta","LastName":"Habbal","Company":"Wikivu","Email":"lhabbal5v@booking.com","Phone":"901-674-6365","Status":4,"Type":1,"Orders":[{"OrderID":"0498-2421","ShipCountry":"ID","ShipAddress":"67 Elgar Way","ShipName":"Predovic Group","OrderDate":"2/12/2017","TotalPayment":"$167852.58","Status":1,"Type":1},{"OrderID":"43063-433","ShipCountry":"NG","ShipAddress":"74 Ohio Avenue","ShipName":"Romaguera and Sons","OrderDate":"11/21/2017","TotalPayment":"$899397.59","Status":3,"Type":1},{"OrderID":"45014-137","ShipCountry":"BH","ShipAddress":"7 West Park","ShipName":"Cartwright, Schulist and Vandervort","OrderDate":"5/25/2016","TotalPayment":"$507136.96","Status":6,"Type":2},{"OrderID":"55133-050","ShipCountry":"FR","ShipAddress":"459 Lindbergh Alley","ShipName":"Bogisich-Kohler","OrderDate":"4/16/2017","TotalPayment":"$124851.33","Status":5,"Type":2},{"OrderID":"45802-061","ShipCountry":"CZ","ShipAddress":"30 Roth Crossing","ShipName":"Hickle, Daniel and Watsica","OrderDate":"12/12/2017","TotalPayment":"$166991.91","Status":1,"Type":2},{"OrderID":"0085-1402","ShipCountry":"CA","ShipAddress":"40 Warrior Terrace","ShipName":"Ledner, Okuneva and Kovacek","OrderDate":"9/30/2016","TotalPayment":"$703426.29","Status":4,"Type":3},{"OrderID":"49035-113","ShipCountry":"IE","ShipAddress":"0 High Crossing Parkway","ShipName":"Gutkowski-Dicki","OrderDate":"2/22/2017","TotalPayment":"$554990.18","Status":1,"Type":1},{"OrderID":"55111-404","ShipCountry":"CN","ShipAddress":"02861 Straubel Center","ShipName":"Prohaska Group","OrderDate":"11/30/2016","TotalPayment":"$754513.03","Status":5,"Type":1},{"OrderID":"68428-100","ShipCountry":"PL","ShipAddress":"38387 1st Terrace","ShipName":"Kemmer LLC","OrderDate":"5/11/2017","TotalPayment":"$993610.11","Status":6,"Type":2},{"OrderID":"53746-192","ShipCountry":"PL","ShipAddress":"21 Eastwood Pass","ShipName":"Cormier LLC","OrderDate":"8/28/2016","TotalPayment":"$728659.37","Status":5,"Type":2},{"OrderID":"43353-943","ShipCountry":"GR","ShipAddress":"03179 Melrose Hill","ShipName":"Wunsch, Watsica and Hackett","OrderDate":"6/17/2017","TotalPayment":"$441030.37","Status":4,"Type":1},{"OrderID":"63699-001","ShipCountry":"PH","ShipAddress":"4586 Schurz Terrace","ShipName":"Hudson Group","OrderDate":"6/13/2017","TotalPayment":"$910800.10","Status":6,"Type":1},{"OrderID":"55150-157","ShipCountry":"ID","ShipAddress":"54 Sommers Hill","ShipName":"Denesik and Sons","OrderDate":"9/28/2016","TotalPayment":"$1060729.49","Status":3,"Type":1},{"OrderID":"76452-002","ShipCountry":"RU","ShipAddress":"27847 Sherman Place","ShipName":"Bashirian and Sons","OrderDate":"1/7/2017","TotalPayment":"$549920.38","Status":2,"Type":3}]},\n{"RecordID":213,"FirstName":"Richmond","LastName":"Colenutt","Company":"Fivechat","Email":"rcolenutt5w@upenn.edu","Phone":"608-109-4638","Status":1,"Type":3,"Orders":[{"OrderID":"0187-2612","ShipCountry":"PK","ShipAddress":"02271 Luster Terrace","ShipName":"Stoltenberg Inc","OrderDate":"11/8/2017","TotalPayment":"$86484.46","Status":5,"Type":3},{"OrderID":"13537-554","ShipCountry":"CI","ShipAddress":"4871 Sage Center","ShipName":"Erdman-Herman","OrderDate":"1/9/2016","TotalPayment":"$917900.47","Status":4,"Type":1},{"OrderID":"0406-8003","ShipCountry":"CN","ShipAddress":"735 Golf Course Drive","ShipName":"Wolff-Schiller","OrderDate":"8/22/2016","TotalPayment":"$286090.35","Status":3,"Type":1},{"OrderID":"65044-2624","ShipCountry":"VN","ShipAddress":"59337 Portage Circle","ShipName":"Johnson LLC","OrderDate":"1/1/2017","TotalPayment":"$1058242.08","Status":5,"Type":2},{"OrderID":"0409-1171","ShipCountry":"CN","ShipAddress":"572 Columbus Center","ShipName":"Beatty, Witting and Wisoky","OrderDate":"1/26/2016","TotalPayment":"$390398.80","Status":6,"Type":1},{"OrderID":"61957-0104","ShipCountry":"KZ","ShipAddress":"322 Talmadge Terrace","ShipName":"Weber, Roob and Kshlerin","OrderDate":"12/14/2016","TotalPayment":"$564976.31","Status":1,"Type":1},{"OrderID":"54123-914","ShipCountry":"CN","ShipAddress":"505 Wayridge Pass","ShipName":"Stokes, Nader and Waters","OrderDate":"7/27/2017","TotalPayment":"$561082.12","Status":6,"Type":1},{"OrderID":"41190-187","ShipCountry":"CL","ShipAddress":"6394 Morningstar Pass","ShipName":"Conn Inc","OrderDate":"9/7/2016","TotalPayment":"$300157.36","Status":6,"Type":2},{"OrderID":"63629-4123","ShipCountry":"RU","ShipAddress":"830 Melrose Road","ShipName":"Windler-Russel","OrderDate":"11/16/2016","TotalPayment":"$945654.99","Status":6,"Type":1},{"OrderID":"42549-531","ShipCountry":"CA","ShipAddress":"5890 High Crossing Center","ShipName":"Quitzon-Heaney","OrderDate":"1/9/2017","TotalPayment":"$1159771.35","Status":6,"Type":3},{"OrderID":"50436-3101","ShipCountry":"RU","ShipAddress":"83041 Browning Alley","ShipName":"Stroman LLC","OrderDate":"7/13/2016","TotalPayment":"$952775.26","Status":2,"Type":2}]},\n{"RecordID":214,"FirstName":"Corby","LastName":"Danjoie","Company":"Voolia","Email":"cdanjoie5x@prweb.com","Phone":"162-821-1027","Status":4,"Type":1,"Orders":[{"OrderID":"49781-081","ShipCountry":"BR","ShipAddress":"42942 Debra Road","ShipName":"Friesen-Blick","OrderDate":"7/24/2017","TotalPayment":"$280834.89","Status":6,"Type":1},{"OrderID":"0283-0998","ShipCountry":"ID","ShipAddress":"8 School Junction","ShipName":"Gerlach Inc","OrderDate":"3/2/2016","TotalPayment":"$552203.52","Status":4,"Type":1},{"OrderID":"63868-979","ShipCountry":"CN","ShipAddress":"155 Jay Terrace","ShipName":"Schaefer and Sons","OrderDate":"9/12/2017","TotalPayment":"$570950.65","Status":4,"Type":3},{"OrderID":"67457-259","ShipCountry":"PH","ShipAddress":"0496 Monument Place","ShipName":"Weber, Kohler and Stokes","OrderDate":"2/10/2016","TotalPayment":"$949650.59","Status":3,"Type":2},{"OrderID":"44237-016","ShipCountry":"NZ","ShipAddress":"731 Anthes Pass","ShipName":"Hane-Rodriguez","OrderDate":"12/29/2016","TotalPayment":"$764331.17","Status":1,"Type":3},{"OrderID":"55289-916","ShipCountry":"RS","ShipAddress":"9554 Barby Avenue","ShipName":"Champlin and Sons","OrderDate":"6/29/2017","TotalPayment":"$519940.76","Status":1,"Type":1},{"OrderID":"68258-6972","ShipCountry":"PE","ShipAddress":"77749 Park Meadow Lane","ShipName":"Kutch Inc","OrderDate":"4/6/2017","TotalPayment":"$111711.03","Status":4,"Type":3},{"OrderID":"43353-133","ShipCountry":"UA","ShipAddress":"6047 Columbus Road","ShipName":"Rippin-Lang","OrderDate":"11/28/2017","TotalPayment":"$724576.14","Status":2,"Type":1},{"OrderID":"61957-2134","ShipCountry":"CN","ShipAddress":"075 Acker Crossing","ShipName":"Grant, Zemlak and Collins","OrderDate":"12/18/2016","TotalPayment":"$1072477.76","Status":3,"Type":1}]},\n{"RecordID":215,"FirstName":"Merrile","LastName":"Mingey","Company":"Skidoo","Email":"mmingey5y@is.gd","Phone":"460-327-8426","Status":6,"Type":1,"Orders":[{"OrderID":"55154-2355","ShipCountry":"BA","ShipAddress":"598 Mosinee Way","ShipName":"Christiansen-Lowe","OrderDate":"1/17/2016","TotalPayment":"$873370.83","Status":6,"Type":3},{"OrderID":"63323-236","ShipCountry":"RU","ShipAddress":"24 David Circle","ShipName":"Kautzer and Sons","OrderDate":"12/23/2016","TotalPayment":"$551062.09","Status":4,"Type":3},{"OrderID":"68180-556","ShipCountry":"VE","ShipAddress":"6109 Emmet Hill","ShipName":"Blanda-Paucek","OrderDate":"10/29/2017","TotalPayment":"$61495.89","Status":6,"Type":3},{"OrderID":"51393-7436","ShipCountry":"ID","ShipAddress":"2 Service Terrace","ShipName":"Tremblay-Bahringer","OrderDate":"3/2/2017","TotalPayment":"$609759.71","Status":2,"Type":1},{"OrderID":"68645-460","ShipCountry":"CN","ShipAddress":"16 Sauthoff Circle","ShipName":"Mitchell, Blanda and Schmeler","OrderDate":"2/13/2017","TotalPayment":"$902189.31","Status":5,"Type":3},{"OrderID":"10202-974","ShipCountry":"PH","ShipAddress":"20 Farragut Hill","ShipName":"Boehm Inc","OrderDate":"10/17/2017","TotalPayment":"$503092.09","Status":5,"Type":1},{"OrderID":"0591-2884","ShipCountry":"RU","ShipAddress":"10 Larry Park","ShipName":"O\'Hara, Heathcote and Wolf","OrderDate":"7/23/2017","TotalPayment":"$1015015.90","Status":2,"Type":3},{"OrderID":"51672-1262","ShipCountry":"UA","ShipAddress":"9182 Florence Terrace","ShipName":"Klocko LLC","OrderDate":"6/28/2016","TotalPayment":"$175912.25","Status":6,"Type":2},{"OrderID":"55648-726","ShipCountry":"CO","ShipAddress":"364 Meadow Ridge Pass","ShipName":"Gleichner Inc","OrderDate":"1/2/2016","TotalPayment":"$789175.64","Status":2,"Type":3},{"OrderID":"21695-971","ShipCountry":"ID","ShipAddress":"9 Grasskamp Road","ShipName":"Mante LLC","OrderDate":"8/12/2017","TotalPayment":"$1100876.62","Status":5,"Type":2},{"OrderID":"51346-258","ShipCountry":"ID","ShipAddress":"01645 Mcguire Park","ShipName":"Osinski-Kling","OrderDate":"8/30/2017","TotalPayment":"$434189.64","Status":3,"Type":2},{"OrderID":"69124-001","ShipCountry":"PT","ShipAddress":"15 Sullivan Circle","ShipName":"Turcotte, Rolfson and Leuschke","OrderDate":"10/12/2017","TotalPayment":"$202712.93","Status":4,"Type":3},{"OrderID":"53217-008","ShipCountry":"PL","ShipAddress":"488 Melvin Avenue","ShipName":"Boyle-Rolfson","OrderDate":"4/4/2016","TotalPayment":"$21314.66","Status":4,"Type":1},{"OrderID":"68472-122","ShipCountry":"MG","ShipAddress":"85 Lukken Road","ShipName":"Hane-Schaden","OrderDate":"1/18/2016","TotalPayment":"$101534.50","Status":4,"Type":1},{"OrderID":"54868-5477","ShipCountry":"NG","ShipAddress":"150 Express Point","ShipName":"Hoeger, Carroll and Moen","OrderDate":"7/15/2016","TotalPayment":"$1013465.68","Status":3,"Type":3},{"OrderID":"0143-1210","ShipCountry":"CN","ShipAddress":"20 Pond Center","ShipName":"Bode-Torp","OrderDate":"1/28/2016","TotalPayment":"$926381.28","Status":6,"Type":1},{"OrderID":"54312-275","ShipCountry":"CN","ShipAddress":"26 Harbort Plaza","ShipName":"Ortiz Inc","OrderDate":"3/11/2016","TotalPayment":"$10233.31","Status":1,"Type":3},{"OrderID":"42291-665","ShipCountry":"CN","ShipAddress":"959 Londonderry Court","ShipName":"Larson Inc","OrderDate":"8/8/2017","TotalPayment":"$491946.86","Status":4,"Type":1},{"OrderID":"36987-1776","ShipCountry":"PE","ShipAddress":"1074 Eagan Drive","ShipName":"Okuneva-Welch","OrderDate":"11/8/2017","TotalPayment":"$507000.48","Status":6,"Type":1}]},\n{"RecordID":216,"FirstName":"Maximo","LastName":"Berrecloth","Company":"Fliptune","Email":"mberrecloth5z@soundcloud.com","Phone":"647-574-4200","Status":6,"Type":3,"Orders":[{"OrderID":"48951-1129","ShipCountry":"AR","ShipAddress":"23597 Nelson Drive","ShipName":"Schmitt Group","OrderDate":"7/27/2016","TotalPayment":"$1169403.60","Status":2,"Type":2},{"OrderID":"41167-3305","ShipCountry":"HR","ShipAddress":"21039 Sunfield Court","ShipName":"Hoppe-Leuschke","OrderDate":"2/13/2017","TotalPayment":"$464146.14","Status":3,"Type":1},{"OrderID":"45802-032","ShipCountry":"IR","ShipAddress":"0 Anhalt Hill","ShipName":"Wilderman, Koch and Rowe","OrderDate":"9/28/2016","TotalPayment":"$1121368.90","Status":4,"Type":2},{"OrderID":"0904-6012","ShipCountry":"UA","ShipAddress":"3259 Badeau Road","ShipName":"Cronin, Dare and Runolfsson","OrderDate":"5/4/2016","TotalPayment":"$770553.15","Status":5,"Type":3},{"OrderID":"42192-124","ShipCountry":"NO","ShipAddress":"0353 Village Parkway","ShipName":"Aufderhar Inc","OrderDate":"7/9/2016","TotalPayment":"$505915.40","Status":5,"Type":1},{"OrderID":"60867-101","ShipCountry":"CN","ShipAddress":"30 Hagan Avenue","ShipName":"O\'Conner-Stamm","OrderDate":"4/17/2017","TotalPayment":"$955269.04","Status":2,"Type":3},{"OrderID":"43063-512","ShipCountry":"CN","ShipAddress":"247 Magdeline Drive","ShipName":"Senger-Hyatt","OrderDate":"6/17/2016","TotalPayment":"$136057.50","Status":2,"Type":3},{"OrderID":"55111-182","ShipCountry":"CN","ShipAddress":"75039 Corry Way","ShipName":"Legros-Douglas","OrderDate":"12/11/2016","TotalPayment":"$1059053.86","Status":6,"Type":3},{"OrderID":"63323-463","ShipCountry":"CN","ShipAddress":"98799 Florence Circle","ShipName":"Hermiston, Blick and Okuneva","OrderDate":"10/15/2017","TotalPayment":"$1125308.41","Status":4,"Type":2},{"OrderID":"41250-255","ShipCountry":"KZ","ShipAddress":"61056 Katie Avenue","ShipName":"Kassulke Inc","OrderDate":"6/18/2017","TotalPayment":"$1020072.57","Status":5,"Type":3},{"OrderID":"0498-2420","ShipCountry":"CZ","ShipAddress":"92211 Steensland Parkway","ShipName":"Gislason LLC","OrderDate":"6/24/2016","TotalPayment":"$467016.91","Status":6,"Type":2},{"OrderID":"67046-981","ShipCountry":"ID","ShipAddress":"3 Melby Hill","ShipName":"Zemlak-Bartell","OrderDate":"7/20/2016","TotalPayment":"$251334.94","Status":4,"Type":2},{"OrderID":"10578-014","ShipCountry":"CO","ShipAddress":"5062 Laurel Avenue","ShipName":"Rau, Collins and Rau","OrderDate":"7/31/2017","TotalPayment":"$822067.78","Status":3,"Type":2},{"OrderID":"59788-002","ShipCountry":"CN","ShipAddress":"2 Fairfield Trail","ShipName":"Osinski-Spencer","OrderDate":"1/7/2017","TotalPayment":"$1082141.46","Status":1,"Type":3},{"OrderID":"0268-6647","ShipCountry":"BW","ShipAddress":"1 Morningstar Terrace","ShipName":"Johnson-Grimes","OrderDate":"5/31/2016","TotalPayment":"$676114.99","Status":6,"Type":3},{"OrderID":"0378-6905","ShipCountry":"CN","ShipAddress":"5 Division Avenue","ShipName":"Waters and Sons","OrderDate":"8/17/2016","TotalPayment":"$211877.11","Status":4,"Type":3},{"OrderID":"57520-1004","ShipCountry":"RU","ShipAddress":"59710 Logan Lane","ShipName":"Roob-Dicki","OrderDate":"10/3/2016","TotalPayment":"$524573.93","Status":2,"Type":1},{"OrderID":"55513-710","ShipCountry":"PT","ShipAddress":"759 Everett Plaza","ShipName":"Rice-Lowe","OrderDate":"9/29/2016","TotalPayment":"$681829.08","Status":5,"Type":3},{"OrderID":"54569-6244","ShipCountry":"UA","ShipAddress":"07 Coolidge Lane","ShipName":"Pagac-Pollich","OrderDate":"10/21/2017","TotalPayment":"$464488.87","Status":4,"Type":3},{"OrderID":"0378-5145","ShipCountry":"VN","ShipAddress":"0 Mosinee Point","ShipName":"Lubowitz-Macejkovic","OrderDate":"9/2/2017","TotalPayment":"$413652.89","Status":3,"Type":1}]},\n{"RecordID":217,"FirstName":"Bailey","LastName":"Sloane","Company":"Dynabox","Email":"bsloane60@weather.com","Phone":"843-422-2022","Status":1,"Type":2,"Orders":[{"OrderID":"53808-0542","ShipCountry":"ME","ShipAddress":"64087 Vidon Plaza","ShipName":"Leffler Group","OrderDate":"1/26/2017","TotalPayment":"$494500.08","Status":2,"Type":1},{"OrderID":"57525-013","ShipCountry":"CN","ShipAddress":"8064 Kenwood Place","ShipName":"Feest and Sons","OrderDate":"3/22/2017","TotalPayment":"$609229.15","Status":2,"Type":3},{"OrderID":"10056-484","ShipCountry":"SE","ShipAddress":"971 Wayridge Point","ShipName":"Kirlin, Nader and Welch","OrderDate":"1/22/2017","TotalPayment":"$598043.10","Status":2,"Type":2},{"OrderID":"61912-001","ShipCountry":"SE","ShipAddress":"881 Coolidge Crossing","ShipName":"Tillman Group","OrderDate":"2/17/2016","TotalPayment":"$285876.56","Status":2,"Type":3},{"OrderID":"49348-958","ShipCountry":"PT","ShipAddress":"28 Leroy Trail","ShipName":"Abbott and Sons","OrderDate":"9/4/2016","TotalPayment":"$966316.34","Status":4,"Type":1},{"OrderID":"68220-055","ShipCountry":"ID","ShipAddress":"9461 Leroy Alley","ShipName":"Torp, Mitchell and Wilderman","OrderDate":"12/31/2016","TotalPayment":"$66222.81","Status":5,"Type":1},{"OrderID":"36987-1073","ShipCountry":"CN","ShipAddress":"691 Donald Road","ShipName":"Tromp-Swaniawski","OrderDate":"9/22/2016","TotalPayment":"$291922.20","Status":3,"Type":2},{"OrderID":"0363-0340","ShipCountry":"CN","ShipAddress":"00504 Eastlawn Circle","ShipName":"Doyle-Crist","OrderDate":"12/19/2016","TotalPayment":"$580994.05","Status":5,"Type":3}]},\n{"RecordID":218,"FirstName":"Jeniece","LastName":"Gravet","Company":"Gigabox","Email":"jgravet61@ameblo.jp","Phone":"563-930-6595","Status":3,"Type":3,"Orders":[{"OrderID":"51672-4150","ShipCountry":"PH","ShipAddress":"0 Ridgeview Hill","ShipName":"Balistreri Inc","OrderDate":"1/20/2017","TotalPayment":"$476048.84","Status":4,"Type":2},{"OrderID":"0002-3235","ShipCountry":"KE","ShipAddress":"160 Troy Trail","ShipName":"Morar Inc","OrderDate":"6/26/2016","TotalPayment":"$1052726.74","Status":1,"Type":2},{"OrderID":"48878-4041","ShipCountry":"CN","ShipAddress":"84 Luster Drive","ShipName":"Bauch Inc","OrderDate":"10/16/2016","TotalPayment":"$180975.10","Status":1,"Type":1},{"OrderID":"52686-339","ShipCountry":"SE","ShipAddress":"41324 Hollow Ridge Park","ShipName":"Barton-Prosacco","OrderDate":"5/29/2016","TotalPayment":"$630389.53","Status":3,"Type":2},{"OrderID":"41163-109","ShipCountry":"UA","ShipAddress":"893 Sunbrook Road","ShipName":"Graham-Cassin","OrderDate":"11/19/2016","TotalPayment":"$1091061.75","Status":2,"Type":3},{"OrderID":"0143-1765","ShipCountry":"FR","ShipAddress":"04 Crowley Center","ShipName":"Konopelski, Stracke and Botsford","OrderDate":"8/7/2017","TotalPayment":"$679835.41","Status":6,"Type":1},{"OrderID":"12090-0042","ShipCountry":"BD","ShipAddress":"62390 Waywood Alley","ShipName":"Yost, Hackett and Kling","OrderDate":"12/31/2016","TotalPayment":"$1124275.58","Status":1,"Type":1},{"OrderID":"47781-298","ShipCountry":"BR","ShipAddress":"656 Stoughton Park","ShipName":"Kulas, Adams and Rodriguez","OrderDate":"1/13/2016","TotalPayment":"$279390.25","Status":2,"Type":2},{"OrderID":"0113-0186","ShipCountry":"CN","ShipAddress":"23600 Reinke Place","ShipName":"Sporer, Auer and Windler","OrderDate":"2/21/2016","TotalPayment":"$169736.47","Status":5,"Type":1},{"OrderID":"51803-002","ShipCountry":"UA","ShipAddress":"17347 Longview Point","ShipName":"Mosciski, Lubowitz and Olson","OrderDate":"9/16/2016","TotalPayment":"$859005.31","Status":4,"Type":3},{"OrderID":"49349-237","ShipCountry":"AR","ShipAddress":"4870 Novick Way","ShipName":"Baumbach Group","OrderDate":"1/3/2016","TotalPayment":"$896072.80","Status":6,"Type":3},{"OrderID":"10586-9105","ShipCountry":"JP","ShipAddress":"8 Waubesa Pass","ShipName":"Wintheiser and Sons","OrderDate":"10/25/2017","TotalPayment":"$1075861.43","Status":3,"Type":3},{"OrderID":"16729-154","ShipCountry":"CN","ShipAddress":"9 Pennsylvania Hill","ShipName":"Shanahan-Terry","OrderDate":"5/22/2017","TotalPayment":"$1008676.07","Status":2,"Type":2}]},\n{"RecordID":219,"FirstName":"Beatrix","LastName":"Jennaroy","Company":"Jamia","Email":"bjennaroy62@delicious.com","Phone":"644-895-0021","Status":1,"Type":1,"Orders":[{"OrderID":"67544-656","ShipCountry":"MM","ShipAddress":"563 Dwight Circle","ShipName":"Metz-Hamill","OrderDate":"3/4/2017","TotalPayment":"$576295.07","Status":4,"Type":3},{"OrderID":"0363-0884","ShipCountry":"TH","ShipAddress":"9267 Kropf Junction","ShipName":"Morar-Hand","OrderDate":"9/26/2016","TotalPayment":"$1070752.28","Status":1,"Type":1},{"OrderID":"0053-7670","ShipCountry":"BR","ShipAddress":"4619 Blue Bill Park Avenue","ShipName":"Rodriguez LLC","OrderDate":"11/22/2017","TotalPayment":"$1004403.94","Status":1,"Type":2},{"OrderID":"55154-8269","ShipCountry":"TH","ShipAddress":"2 Badeau Center","ShipName":"Berge-Howe","OrderDate":"6/29/2016","TotalPayment":"$848395.08","Status":4,"Type":3},{"OrderID":"58668-1991","ShipCountry":"CO","ShipAddress":"8 Hanson Plaza","ShipName":"Green Group","OrderDate":"9/20/2017","TotalPayment":"$237152.47","Status":1,"Type":1},{"OrderID":"0615-7750","ShipCountry":"RU","ShipAddress":"73 Reinke Alley","ShipName":"Shanahan-Lindgren","OrderDate":"2/7/2017","TotalPayment":"$900985.72","Status":4,"Type":1},{"OrderID":"45802-770","ShipCountry":"TN","ShipAddress":"31483 Sutteridge Junction","ShipName":"Schuster, Buckridge and Bergstrom","OrderDate":"2/1/2016","TotalPayment":"$107117.23","Status":4,"Type":1},{"OrderID":"61096-0024","ShipCountry":"ID","ShipAddress":"75556 Independence Place","ShipName":"Luettgen-Barrows","OrderDate":"7/27/2017","TotalPayment":"$1180971.70","Status":1,"Type":1},{"OrderID":"54868-4563","ShipCountry":"FR","ShipAddress":"1117 American Hill","ShipName":"Halvorson, Hackett and McLaughlin","OrderDate":"7/26/2017","TotalPayment":"$457244.90","Status":5,"Type":1},{"OrderID":"57955-1561","ShipCountry":"ME","ShipAddress":"32 Stang Court","ShipName":"Howe LLC","OrderDate":"5/26/2017","TotalPayment":"$874431.13","Status":4,"Type":1},{"OrderID":"66715-9702","ShipCountry":"ID","ShipAddress":"57 Sutherland Alley","ShipName":"Ledner, Rempel and Murazik","OrderDate":"1/21/2017","TotalPayment":"$384487.15","Status":5,"Type":1},{"OrderID":"51824-017","ShipCountry":"FR","ShipAddress":"23896 Morrow Pass","ShipName":"Ankunding, Armstrong and McDermott","OrderDate":"5/14/2016","TotalPayment":"$906828.09","Status":4,"Type":3},{"OrderID":"66391-0610","ShipCountry":"TZ","ShipAddress":"450 Iowa Circle","ShipName":"Haag Group","OrderDate":"2/16/2016","TotalPayment":"$701862.36","Status":1,"Type":3},{"OrderID":"36987-2117","ShipCountry":"CN","ShipAddress":"85 Glacier Hill Way","ShipName":"Smith Inc","OrderDate":"3/25/2017","TotalPayment":"$212931.64","Status":3,"Type":2},{"OrderID":"68788-1738","ShipCountry":"EG","ShipAddress":"19153 Drewry Road","ShipName":"Considine LLC","OrderDate":"6/8/2017","TotalPayment":"$1011992.12","Status":2,"Type":1}]},\n{"RecordID":220,"FirstName":"Si","LastName":"Dovington","Company":"Gigashots","Email":"sdovington63@4shared.com","Phone":"760-462-1489","Status":4,"Type":1,"Orders":[{"OrderID":"58930-036","ShipCountry":"RU","ShipAddress":"65 Nancy Street","ShipName":"Hartmann, Hilpert and Predovic","OrderDate":"9/4/2017","TotalPayment":"$189284.36","Status":5,"Type":3},{"OrderID":"41190-648","ShipCountry":"NC","ShipAddress":"36 Morrow Place","ShipName":"Satterfield LLC","OrderDate":"11/8/2016","TotalPayment":"$525867.39","Status":5,"Type":2},{"OrderID":"0168-0055","ShipCountry":"AR","ShipAddress":"32 Leroy Avenue","ShipName":"Hintz, Glover and Waelchi","OrderDate":"11/25/2016","TotalPayment":"$564055.97","Status":4,"Type":2},{"OrderID":"21695-197","ShipCountry":"CL","ShipAddress":"607 Mandrake Drive","ShipName":"Ward, Hauck and Dooley","OrderDate":"1/24/2017","TotalPayment":"$556831.45","Status":3,"Type":1},{"OrderID":"36987-2003","ShipCountry":"CN","ShipAddress":"72 Stuart Junction","ShipName":"Harvey and Sons","OrderDate":"6/12/2016","TotalPayment":"$201455.23","Status":1,"Type":1},{"OrderID":"76472-1134","ShipCountry":"CN","ShipAddress":"43 Maryland Drive","ShipName":"Berge, Parisian and Mann","OrderDate":"9/28/2016","TotalPayment":"$1049031.09","Status":5,"Type":1}]},\n{"RecordID":221,"FirstName":"Keene","LastName":"Osmund","Company":"Zoomzone","Email":"kosmund64@soundcloud.com","Phone":"971-817-0072","Status":5,"Type":2,"Orders":[{"OrderID":"60681-2902","ShipCountry":"CN","ShipAddress":"133 Golf Course Pass","ShipName":"Kutch, Stoltenberg and Lesch","OrderDate":"1/28/2016","TotalPayment":"$566946.74","Status":1,"Type":2},{"OrderID":"10578-026","ShipCountry":"VN","ShipAddress":"097 Bartillon Avenue","ShipName":"Howe, Crooks and Herzog","OrderDate":"4/18/2016","TotalPayment":"$736553.26","Status":1,"Type":2},{"OrderID":"49781-077","ShipCountry":"ID","ShipAddress":"17 High Crossing Place","ShipName":"Borer, Vandervort and Altenwerth","OrderDate":"7/8/2016","TotalPayment":"$534712.79","Status":3,"Type":3},{"OrderID":"53329-101","ShipCountry":"US","ShipAddress":"6384 Badeau Road","ShipName":"Wilkinson, Gislason and Waelchi","OrderDate":"10/27/2016","TotalPayment":"$421380.82","Status":1,"Type":3},{"OrderID":"0703-3321","ShipCountry":"RU","ShipAddress":"92 Killdeer Parkway","ShipName":"Bogan-Conroy","OrderDate":"5/16/2017","TotalPayment":"$678408.71","Status":1,"Type":3},{"OrderID":"50458-094","ShipCountry":"VN","ShipAddress":"86234 Laurel Center","ShipName":"Marquardt Group","OrderDate":"4/13/2017","TotalPayment":"$991018.07","Status":2,"Type":3},{"OrderID":"49348-573","ShipCountry":"CN","ShipAddress":"3305 Bunting Plaza","ShipName":"Morissette-Leannon","OrderDate":"9/23/2016","TotalPayment":"$991276.69","Status":3,"Type":2},{"OrderID":"14537-966","ShipCountry":"CO","ShipAddress":"46 Maple Road","ShipName":"Will, Erdman and Kutch","OrderDate":"1/8/2016","TotalPayment":"$402454.41","Status":5,"Type":3},{"OrderID":"0132-0208","ShipCountry":"JP","ShipAddress":"4 Glendale Pass","ShipName":"Funk-Hudson","OrderDate":"7/24/2016","TotalPayment":"$591710.31","Status":3,"Type":2},{"OrderID":"13537-527","ShipCountry":"RU","ShipAddress":"7152 Ryan Street","ShipName":"King-Hilpert","OrderDate":"6/25/2017","TotalPayment":"$456129.22","Status":6,"Type":1},{"OrderID":"0087-2775","ShipCountry":"SE","ShipAddress":"25188 Park Meadow Lane","ShipName":"Bashirian-Jacobs","OrderDate":"5/17/2016","TotalPayment":"$909641.59","Status":2,"Type":1},{"OrderID":"54272-201","ShipCountry":"US","ShipAddress":"96038 Starling Lane","ShipName":"Schmitt-Rodriguez","OrderDate":"8/21/2016","TotalPayment":"$455078.78","Status":4,"Type":3},{"OrderID":"63181-0012","ShipCountry":"RU","ShipAddress":"8 Debra Avenue","ShipName":"Gerlach LLC","OrderDate":"7/20/2017","TotalPayment":"$72064.62","Status":4,"Type":1},{"OrderID":"59779-219","ShipCountry":"BR","ShipAddress":"3548 Magdeline Parkway","ShipName":"Dare, Conroy and Torphy","OrderDate":"1/26/2017","TotalPayment":"$173154.86","Status":1,"Type":1},{"OrderID":"54973-9120","ShipCountry":"ID","ShipAddress":"595 Mendota Avenue","ShipName":"Hills-Mann","OrderDate":"4/7/2016","TotalPayment":"$730834.94","Status":3,"Type":3},{"OrderID":"0268-1615","ShipCountry":"VN","ShipAddress":"4 Fair Oaks Street","ShipName":"Cruickshank Inc","OrderDate":"3/2/2017","TotalPayment":"$1153420.22","Status":2,"Type":2},{"OrderID":"50383-933","ShipCountry":"PT","ShipAddress":"7523 Lukken Hill","ShipName":"Feil-Treutel","OrderDate":"11/29/2017","TotalPayment":"$489305.13","Status":6,"Type":1}]},\n{"RecordID":222,"FirstName":"Maura","LastName":"Openshaw","Company":"Mymm","Email":"mopenshaw65@scribd.com","Phone":"899-154-7742","Status":4,"Type":3,"Orders":[{"OrderID":"59886-336","ShipCountry":"CN","ShipAddress":"317 Daystar Court","ShipName":"Crist-Towne","OrderDate":"4/24/2017","TotalPayment":"$948024.36","Status":2,"Type":3},{"OrderID":"50436-4233","ShipCountry":"CN","ShipAddress":"97 American Ash Terrace","ShipName":"Hilpert Group","OrderDate":"2/11/2017","TotalPayment":"$1146778.00","Status":2,"Type":3},{"OrderID":"11822-0471","ShipCountry":"RU","ShipAddress":"258 Hazelcrest Avenue","ShipName":"Kautzer Inc","OrderDate":"7/2/2016","TotalPayment":"$678381.99","Status":2,"Type":3},{"OrderID":"21695-808","ShipCountry":"ZA","ShipAddress":"4656 Rowland Court","ShipName":"Waters-Emmerich","OrderDate":"9/9/2017","TotalPayment":"$523134.87","Status":1,"Type":3},{"OrderID":"36800-355","ShipCountry":"GR","ShipAddress":"3123 Buena Vista Crossing","ShipName":"Hudson-Block","OrderDate":"2/27/2016","TotalPayment":"$205018.45","Status":1,"Type":2},{"OrderID":"63029-901","ShipCountry":"CN","ShipAddress":"22 Larry Lane","ShipName":"Sawayn LLC","OrderDate":"9/9/2016","TotalPayment":"$397397.05","Status":2,"Type":1},{"OrderID":"0378-6324","ShipCountry":"DO","ShipAddress":"86998 Algoma Hill","ShipName":"Considine and Sons","OrderDate":"4/16/2016","TotalPayment":"$164213.11","Status":3,"Type":2},{"OrderID":"55253-277","ShipCountry":"CN","ShipAddress":"11542 Jenifer Junction","ShipName":"Rolfson-Crooks","OrderDate":"6/7/2016","TotalPayment":"$1197093.70","Status":4,"Type":3},{"OrderID":"55910-464","ShipCountry":"SY","ShipAddress":"647 Clemons Terrace","ShipName":"Buckridge-Hyatt","OrderDate":"7/6/2017","TotalPayment":"$1185537.16","Status":2,"Type":3}]},\n{"RecordID":223,"FirstName":"Ham","LastName":"Collihole","Company":"Yodel","Email":"hcollihole66@nytimes.com","Phone":"863-859-4863","Status":3,"Type":3,"Orders":[{"OrderID":"68669-711","ShipCountry":"CN","ShipAddress":"28541 Autumn Leaf Parkway","ShipName":"Turner-Mann","OrderDate":"11/28/2017","TotalPayment":"$275470.06","Status":3,"Type":2},{"OrderID":"51386-750","ShipCountry":"VN","ShipAddress":"63009 Springview Court","ShipName":"Parker-Jast","OrderDate":"10/7/2016","TotalPayment":"$594668.12","Status":6,"Type":3},{"OrderID":"51862-227","ShipCountry":"JP","ShipAddress":"0 Roxbury Pass","ShipName":"Kulas, Huels and Roberts","OrderDate":"8/13/2017","TotalPayment":"$354298.45","Status":5,"Type":2},{"OrderID":"0169-0081","ShipCountry":"TZ","ShipAddress":"54 Fieldstone Court","ShipName":"Kemmer Inc","OrderDate":"1/27/2017","TotalPayment":"$426188.29","Status":3,"Type":1},{"OrderID":"68151-1991","ShipCountry":"ID","ShipAddress":"1126 Granby Junction","ShipName":"Gutkowski, Blick and Breitenberg","OrderDate":"1/22/2017","TotalPayment":"$917863.53","Status":2,"Type":1},{"OrderID":"60778-040","ShipCountry":"TH","ShipAddress":"3 Ridgeway Hill","ShipName":"Hermiston Inc","OrderDate":"5/26/2017","TotalPayment":"$323184.46","Status":4,"Type":2},{"OrderID":"21130-897","ShipCountry":"CZ","ShipAddress":"30 Jackson Park","ShipName":"Williamson LLC","OrderDate":"1/13/2016","TotalPayment":"$1074870.81","Status":3,"Type":2},{"OrderID":"68084-376","ShipCountry":"IR","ShipAddress":"92 Macpherson Avenue","ShipName":"Kreiger, Rippin and Maggio","OrderDate":"6/19/2017","TotalPayment":"$521029.01","Status":3,"Type":1},{"OrderID":"50227-3211","ShipCountry":"IR","ShipAddress":"955 Vera Hill","ShipName":"Konopelski, Tromp and Schuster","OrderDate":"3/9/2017","TotalPayment":"$655637.13","Status":3,"Type":3},{"OrderID":"68026-342","ShipCountry":"ID","ShipAddress":"7766 Shoshone Avenue","ShipName":"Pollich Inc","OrderDate":"6/5/2016","TotalPayment":"$387695.66","Status":3,"Type":3},{"OrderID":"50112-514","ShipCountry":"CO","ShipAddress":"1069 Derek Lane","ShipName":"Wisoky-Heaney","OrderDate":"6/20/2016","TotalPayment":"$168375.29","Status":3,"Type":2},{"OrderID":"68233-021","ShipCountry":"KZ","ShipAddress":"3 Onsgard Road","ShipName":"Treutel-Schuppe","OrderDate":"10/10/2017","TotalPayment":"$363815.47","Status":3,"Type":1},{"OrderID":"0268-6725","ShipCountry":"PL","ShipAddress":"7940 Oneill Trail","ShipName":"Lowe, Mayer and Jakubowski","OrderDate":"12/5/2016","TotalPayment":"$395799.49","Status":4,"Type":3},{"OrderID":"52125-413","ShipCountry":"TZ","ShipAddress":"86 Transport Place","ShipName":"Reichel-Erdman","OrderDate":"7/18/2017","TotalPayment":"$18231.45","Status":4,"Type":1},{"OrderID":"65601-736","ShipCountry":"SE","ShipAddress":"1711 Old Gate Street","ShipName":"Lubowitz Inc","OrderDate":"5/23/2017","TotalPayment":"$49084.14","Status":6,"Type":2},{"OrderID":"0069-0990","ShipCountry":"DE","ShipAddress":"97 Westport Hill","ShipName":"Treutel, Hoppe and Gerhold","OrderDate":"6/9/2016","TotalPayment":"$529501.01","Status":5,"Type":2},{"OrderID":"66993-875","ShipCountry":"MX","ShipAddress":"77416 Messerschmidt Plaza","ShipName":"Collins, Gusikowski and Krajcik","OrderDate":"5/3/2017","TotalPayment":"$1043385.57","Status":4,"Type":1},{"OrderID":"35000-608","ShipCountry":"FR","ShipAddress":"9 Monument Road","ShipName":"Wunsch Inc","OrderDate":"2/2/2017","TotalPayment":"$37470.97","Status":5,"Type":1},{"OrderID":"64980-509","ShipCountry":"PT","ShipAddress":"73179 Havey Way","ShipName":"Johnson, Schmitt and Blanda","OrderDate":"6/20/2017","TotalPayment":"$895771.00","Status":4,"Type":3},{"OrderID":"63629-1459","ShipCountry":"CN","ShipAddress":"328 Miller Avenue","ShipName":"Predovic-Carter","OrderDate":"4/30/2017","TotalPayment":"$447226.77","Status":2,"Type":1}]},\n{"RecordID":224,"FirstName":"Lea","LastName":"Vowden","Company":"Lajo","Email":"lvowden67@angelfire.com","Phone":"654-307-8290","Status":5,"Type":2,"Orders":[{"OrderID":"52410-3040","ShipCountry":"CN","ShipAddress":"47120 Farragut Avenue","ShipName":"Keeling, Cartwright and Block","OrderDate":"9/11/2017","TotalPayment":"$408676.96","Status":3,"Type":3},{"OrderID":"48951-6051","ShipCountry":"TZ","ShipAddress":"5 Arkansas Court","ShipName":"Cummerata Inc","OrderDate":"2/7/2016","TotalPayment":"$1001049.34","Status":6,"Type":3},{"OrderID":"0338-1139","ShipCountry":"ID","ShipAddress":"3368 Trailsway Terrace","ShipName":"Brekke, Metz and Sanford","OrderDate":"2/2/2016","TotalPayment":"$176561.01","Status":5,"Type":3},{"OrderID":"0378-1650","ShipCountry":"CN","ShipAddress":"89350 Forest Dale Circle","ShipName":"Flatley-Eichmann","OrderDate":"3/31/2016","TotalPayment":"$398903.85","Status":2,"Type":3},{"OrderID":"55700-012","ShipCountry":"ID","ShipAddress":"4 Waubesa Place","ShipName":"Cronin-Fisher","OrderDate":"3/24/2016","TotalPayment":"$946150.61","Status":6,"Type":1},{"OrderID":"68084-061","ShipCountry":"JP","ShipAddress":"0313 Gina Plaza","ShipName":"Funk, Kunde and Feil","OrderDate":"4/9/2016","TotalPayment":"$1099186.74","Status":6,"Type":3},{"OrderID":"33992-1889","ShipCountry":"CM","ShipAddress":"53 Melrose Junction","ShipName":"Kiehn, O\'Hara and Schultz","OrderDate":"6/6/2017","TotalPayment":"$422750.35","Status":2,"Type":1},{"OrderID":"36987-1584","ShipCountry":"LR","ShipAddress":"148 Alpine Hill","ShipName":"Durgan-Daniel","OrderDate":"4/3/2017","TotalPayment":"$1111945.22","Status":3,"Type":2},{"OrderID":"24208-430","ShipCountry":"TM","ShipAddress":"2 Lukken Circle","ShipName":"Bergstrom, Gerlach and Marvin","OrderDate":"2/28/2016","TotalPayment":"$291364.64","Status":1,"Type":1},{"OrderID":"51079-573","ShipCountry":"CN","ShipAddress":"16111 Anzinger Trail","ShipName":"Wisoky and Sons","OrderDate":"12/15/2017","TotalPayment":"$774089.43","Status":5,"Type":1},{"OrderID":"58930-018","ShipCountry":"PT","ShipAddress":"935 Vermont Hill","ShipName":"Wisoky, Barrows and Howe","OrderDate":"6/9/2016","TotalPayment":"$843641.56","Status":2,"Type":1},{"OrderID":"64980-158","ShipCountry":"CA","ShipAddress":"1743 Colorado Hill","ShipName":"McDermott Group","OrderDate":"9/30/2017","TotalPayment":"$583277.57","Status":3,"Type":1}]},\n{"RecordID":225,"FirstName":"Nissie","LastName":"Moysey","Company":"LiveZ","Email":"nmoysey68@unblog.fr","Phone":"327-923-5783","Status":3,"Type":3,"Orders":[{"OrderID":"0781-1036","ShipCountry":"RS","ShipAddress":"15900 Talmadge Road","ShipName":"Schmeler LLC","OrderDate":"6/11/2017","TotalPayment":"$458688.68","Status":3,"Type":1},{"OrderID":"60429-099","ShipCountry":"CN","ShipAddress":"6156 Thompson Road","ShipName":"O\'Kon-Sporer","OrderDate":"12/23/2017","TotalPayment":"$189183.54","Status":1,"Type":3},{"OrderID":"0113-0175","ShipCountry":"CN","ShipAddress":"7515 Vahlen Road","ShipName":"O\'Connell, Brekke and Abbott","OrderDate":"12/26/2017","TotalPayment":"$76494.76","Status":1,"Type":1},{"OrderID":"49520-201","ShipCountry":"FR","ShipAddress":"774 Carberry Place","ShipName":"Runte-Hackett","OrderDate":"7/21/2016","TotalPayment":"$844770.49","Status":3,"Type":2},{"OrderID":"48951-1150","ShipCountry":"CN","ShipAddress":"2399 8th Circle","ShipName":"Ziemann, Breitenberg and Koch","OrderDate":"4/10/2017","TotalPayment":"$839399.72","Status":2,"Type":2},{"OrderID":"63187-148","ShipCountry":"ID","ShipAddress":"262 Knutson Plaza","ShipName":"Wilderman-Wiza","OrderDate":"3/29/2017","TotalPayment":"$487678.99","Status":5,"Type":2},{"OrderID":"49349-563","ShipCountry":"CL","ShipAddress":"083 Macpherson Center","ShipName":"Langosh-Littel","OrderDate":"12/14/2017","TotalPayment":"$45608.23","Status":2,"Type":3},{"OrderID":"0078-0453","ShipCountry":"PH","ShipAddress":"7 Hayes Crossing","ShipName":"Ruecker LLC","OrderDate":"3/6/2016","TotalPayment":"$734542.46","Status":3,"Type":1},{"OrderID":"36987-1921","ShipCountry":"GM","ShipAddress":"031 Gina Avenue","ShipName":"Schumm Inc","OrderDate":"11/21/2016","TotalPayment":"$283512.39","Status":3,"Type":1}]},\n{"RecordID":226,"FirstName":"Tedmund","LastName":"Sandbatch","Company":"Vidoo","Email":"tsandbatch69@tripadvisor.com","Phone":"526-726-7709","Status":4,"Type":1,"Orders":[{"OrderID":"52959-776","ShipCountry":"CN","ShipAddress":"67510 Melvin Crossing","ShipName":"Wiegand, Mertz and Farrell","OrderDate":"2/24/2016","TotalPayment":"$821113.02","Status":6,"Type":1},{"OrderID":"42549-508","ShipCountry":"ID","ShipAddress":"4788 Ridge Oak Center","ShipName":"Lind Group","OrderDate":"12/3/2017","TotalPayment":"$41569.19","Status":1,"Type":1},{"OrderID":"0378-4296","ShipCountry":"BR","ShipAddress":"39992 Charing Cross Street","ShipName":"Schroeder Group","OrderDate":"5/24/2016","TotalPayment":"$928125.70","Status":1,"Type":2},{"OrderID":"57520-0139","ShipCountry":"ID","ShipAddress":"395 Florence Way","ShipName":"Shanahan and Sons","OrderDate":"12/3/2016","TotalPayment":"$112640.50","Status":4,"Type":2},{"OrderID":"59078-020","ShipCountry":"PE","ShipAddress":"43321 Memorial Plaza","ShipName":"Tremblay-Oberbrunner","OrderDate":"7/4/2016","TotalPayment":"$1093935.11","Status":2,"Type":2},{"OrderID":"65862-466","ShipCountry":"CN","ShipAddress":"9340 Lotheville Crossing","ShipName":"Wisoky, Stanton and Jaskolski","OrderDate":"12/16/2017","TotalPayment":"$998473.74","Status":2,"Type":2},{"OrderID":"0264-9872","ShipCountry":"BW","ShipAddress":"5005 Stang Pass","ShipName":"Ferry and Sons","OrderDate":"1/12/2017","TotalPayment":"$1147308.87","Status":4,"Type":2},{"OrderID":"43406-0051","ShipCountry":"BA","ShipAddress":"963 Bartelt Center","ShipName":"Mills Group","OrderDate":"6/18/2016","TotalPayment":"$174783.30","Status":6,"Type":3},{"OrderID":"70253-250","ShipCountry":"SE","ShipAddress":"4 Nelson Court","ShipName":"Schneider-Grimes","OrderDate":"3/8/2017","TotalPayment":"$643491.94","Status":1,"Type":2},{"OrderID":"52219-010","ShipCountry":"BR","ShipAddress":"8296 Sage Alley","ShipName":"Denesik LLC","OrderDate":"11/18/2017","TotalPayment":"$397443.11","Status":4,"Type":3},{"OrderID":"55154-1134","ShipCountry":"AR","ShipAddress":"5 Tennyson Plaza","ShipName":"Spencer and Sons","OrderDate":"9/5/2017","TotalPayment":"$851409.33","Status":1,"Type":1},{"OrderID":"35356-786","ShipCountry":"DE","ShipAddress":"011 Mallard Place","ShipName":"Dietrich and Sons","OrderDate":"1/20/2017","TotalPayment":"$938435.94","Status":2,"Type":1},{"OrderID":"46123-003","ShipCountry":"CN","ShipAddress":"6866 Dottie Trail","ShipName":"Sauer-Larson","OrderDate":"8/7/2017","TotalPayment":"$495369.22","Status":6,"Type":1}]},\n{"RecordID":227,"FirstName":"Jenine","LastName":"Dorre","Company":"Blogpad","Email":"jdorre6a@dmoz.org","Phone":"404-490-5076","Status":5,"Type":3,"Orders":[{"OrderID":"0591-3138","ShipCountry":"ID","ShipAddress":"43937 Beilfuss Crossing","ShipName":"Kunze Group","OrderDate":"5/15/2017","TotalPayment":"$1106466.16","Status":3,"Type":3},{"OrderID":"52584-052","ShipCountry":"PH","ShipAddress":"111 Morningstar Drive","ShipName":"Koch-Hansen","OrderDate":"12/13/2017","TotalPayment":"$819937.55","Status":2,"Type":1},{"OrderID":"10742-8147","ShipCountry":"CN","ShipAddress":"20367 Fairfield Pass","ShipName":"Kautzer, Jones and Cummerata","OrderDate":"2/16/2016","TotalPayment":"$123061.98","Status":2,"Type":1},{"OrderID":"10345-023","ShipCountry":"CN","ShipAddress":"416 2nd Point","ShipName":"Beier Inc","OrderDate":"1/27/2017","TotalPayment":"$671919.27","Status":6,"Type":2},{"OrderID":"47593-492","ShipCountry":"BR","ShipAddress":"022 Comanche Alley","ShipName":"Lynch-Murphy","OrderDate":"8/30/2016","TotalPayment":"$178517.80","Status":5,"Type":3},{"OrderID":"63629-4543","ShipCountry":"RU","ShipAddress":"3 Pierstorff Court","ShipName":"Littel, Ryan and Strosin","OrderDate":"6/14/2016","TotalPayment":"$433698.45","Status":5,"Type":3},{"OrderID":"52125-104","ShipCountry":"PK","ShipAddress":"0771 Bunker Hill Pass","ShipName":"Abshire-Fadel","OrderDate":"12/30/2017","TotalPayment":"$590103.73","Status":5,"Type":2},{"OrderID":"52959-549","ShipCountry":"PH","ShipAddress":"8515 Eagle Crest Court","ShipName":"D\'Amore-Fadel","OrderDate":"5/17/2016","TotalPayment":"$898176.55","Status":5,"Type":1},{"OrderID":"65044-1911","ShipCountry":"CO","ShipAddress":"3 Sutherland Lane","ShipName":"Rowe-Langosh","OrderDate":"10/9/2016","TotalPayment":"$294596.62","Status":5,"Type":1},{"OrderID":"43068-104","ShipCountry":"UG","ShipAddress":"974 Macpherson Road","ShipName":"Ritchie-Blanda","OrderDate":"5/31/2016","TotalPayment":"$246389.70","Status":2,"Type":2},{"OrderID":"54838-571","ShipCountry":"YE","ShipAddress":"95 Oriole Drive","ShipName":"Streich LLC","OrderDate":"11/5/2016","TotalPayment":"$354866.28","Status":6,"Type":3},{"OrderID":"49288-0090","ShipCountry":"CO","ShipAddress":"7 Bonner Avenue","ShipName":"Wunsch Inc","OrderDate":"9/6/2017","TotalPayment":"$827860.56","Status":2,"Type":2},{"OrderID":"76439-308","ShipCountry":"PT","ShipAddress":"29247 Sloan Court","ShipName":"Green-Wuckert","OrderDate":"6/17/2016","TotalPayment":"$45682.26","Status":5,"Type":2},{"OrderID":"0591-3450","ShipCountry":"CN","ShipAddress":"7 Summer Ridge Crossing","ShipName":"Hegmann-Kihn","OrderDate":"5/17/2016","TotalPayment":"$313451.45","Status":1,"Type":3},{"OrderID":"75857-1147","ShipCountry":"FR","ShipAddress":"5 Blaine Circle","ShipName":"Sipes-McDermott","OrderDate":"9/16/2016","TotalPayment":"$1072352.04","Status":6,"Type":2}]},\n{"RecordID":228,"FirstName":"Farr","LastName":"Goulborne","Company":"Wordpedia","Email":"fgoulborne6b@bing.com","Phone":"288-981-5830","Status":4,"Type":2,"Orders":[{"OrderID":"63323-467","ShipCountry":"GR","ShipAddress":"6282 Jackson Street","ShipName":"Mosciski Inc","OrderDate":"4/27/2016","TotalPayment":"$1171712.26","Status":3,"Type":2},{"OrderID":"12830-810","ShipCountry":"SY","ShipAddress":"12862 Derek Plaza","ShipName":"Klocko, Herman and Hickle","OrderDate":"4/30/2016","TotalPayment":"$862808.97","Status":3,"Type":3},{"OrderID":"0904-3524","ShipCountry":"PH","ShipAddress":"093 Warner Circle","ShipName":"Rippin, Hodkiewicz and Leuschke","OrderDate":"2/1/2016","TotalPayment":"$378858.87","Status":5,"Type":3},{"OrderID":"48951-8250","ShipCountry":"CN","ShipAddress":"97 Glendale Point","ShipName":"Rempel, Turner and Champlin","OrderDate":"5/22/2017","TotalPayment":"$509938.03","Status":6,"Type":2},{"OrderID":"42549-644","ShipCountry":"PL","ShipAddress":"20 Express Parkway","ShipName":"Christiansen, Donnelly and Russel","OrderDate":"1/28/2016","TotalPayment":"$1063149.99","Status":5,"Type":3},{"OrderID":"55289-048","ShipCountry":"CN","ShipAddress":"24 East Street","ShipName":"Schimmel, Hand and Lowe","OrderDate":"9/6/2017","TotalPayment":"$251321.22","Status":1,"Type":2},{"OrderID":"48417-780","ShipCountry":"ID","ShipAddress":"90 Green Circle","ShipName":"Bernhard Group","OrderDate":"3/14/2016","TotalPayment":"$13608.84","Status":5,"Type":1}]},\n{"RecordID":229,"FirstName":"Christian","LastName":"Vinker","Company":"Babbleblab","Email":"cvinker6c@vistaprint.com","Phone":"410-918-6478","Status":4,"Type":2,"Orders":[{"OrderID":"0268-0940","ShipCountry":"IL","ShipAddress":"9591 Fairfield Point","ShipName":"Kertzmann and Sons","OrderDate":"8/19/2016","TotalPayment":"$676910.30","Status":1,"Type":3},{"OrderID":"67767-117","ShipCountry":"PT","ShipAddress":"9022 Debs Trail","ShipName":"Kuhic-Champlin","OrderDate":"4/30/2016","TotalPayment":"$1148317.19","Status":3,"Type":3},{"OrderID":"55150-120","ShipCountry":"TH","ShipAddress":"179 Westridge Lane","ShipName":"Bode, Langosh and Konopelski","OrderDate":"11/14/2016","TotalPayment":"$836828.90","Status":3,"Type":2},{"OrderID":"10096-0260","ShipCountry":"KH","ShipAddress":"555 Rutledge Crossing","ShipName":"Rippin, Blanda and Leuschke","OrderDate":"3/28/2016","TotalPayment":"$285208.21","Status":3,"Type":1},{"OrderID":"75848-0500","ShipCountry":"CN","ShipAddress":"843 Ruskin Way","ShipName":"Schinner, Raynor and O\'Hara","OrderDate":"4/11/2017","TotalPayment":"$204316.28","Status":2,"Type":3},{"OrderID":"36987-2867","ShipCountry":"CA","ShipAddress":"28490 Melrose Place","ShipName":"Rodriguez-Koch","OrderDate":"7/2/2017","TotalPayment":"$165403.31","Status":4,"Type":3},{"OrderID":"35356-799","ShipCountry":"PL","ShipAddress":"260 Kedzie Circle","ShipName":"Wunsch, Goldner and Kuphal","OrderDate":"8/24/2017","TotalPayment":"$390564.25","Status":6,"Type":1},{"OrderID":"58177-380","ShipCountry":"CN","ShipAddress":"11391 Heffernan Pass","ShipName":"Klocko-Gutmann","OrderDate":"1/14/2017","TotalPayment":"$820987.59","Status":5,"Type":1},{"OrderID":"42627-217","ShipCountry":"CN","ShipAddress":"36180 Hallows Trail","ShipName":"Rosenbaum, Blick and Oberbrunner","OrderDate":"9/18/2017","TotalPayment":"$13543.94","Status":1,"Type":2},{"OrderID":"46362-003","ShipCountry":"CN","ShipAddress":"66393 Dapin Drive","ShipName":"Hudson-Hermann","OrderDate":"11/6/2016","TotalPayment":"$251207.78","Status":1,"Type":2},{"OrderID":"49349-234","ShipCountry":"RU","ShipAddress":"84818 Maple Wood Crossing","ShipName":"Ondricka-Sporer","OrderDate":"7/23/2016","TotalPayment":"$861592.85","Status":1,"Type":1},{"OrderID":"46122-217","ShipCountry":"CZ","ShipAddress":"901 Green Ridge Drive","ShipName":"Morar, Kuhlman and Ebert","OrderDate":"5/1/2017","TotalPayment":"$647564.97","Status":6,"Type":1},{"OrderID":"43742-0021","ShipCountry":"JP","ShipAddress":"854 Mayer Alley","ShipName":"Stroman, Doyle and Cassin","OrderDate":"9/13/2016","TotalPayment":"$643226.73","Status":5,"Type":1},{"OrderID":"55315-035","ShipCountry":"CA","ShipAddress":"6 Anderson Lane","ShipName":"Goyette-Considine","OrderDate":"5/1/2016","TotalPayment":"$576989.12","Status":1,"Type":3}]},\n{"RecordID":230,"FirstName":"Foss","LastName":"Echalie","Company":"Zoozzy","Email":"fechalie6d@friendfeed.com","Phone":"160-382-5749","Status":4,"Type":1,"Orders":[{"OrderID":"65044-4350","ShipCountry":"CN","ShipAddress":"7 Forest Run Hill","ShipName":"Hansen, Jaskolski and Fahey","OrderDate":"1/5/2016","TotalPayment":"$145848.91","Status":5,"Type":2},{"OrderID":"0603-5689","ShipCountry":"AF","ShipAddress":"814 Lillian Circle","ShipName":"Cole-Sipes","OrderDate":"2/26/2016","TotalPayment":"$224543.64","Status":5,"Type":2},{"OrderID":"49967-389","ShipCountry":"SI","ShipAddress":"5946 Fairview Parkway","ShipName":"Corwin Group","OrderDate":"11/15/2017","TotalPayment":"$844367.23","Status":2,"Type":3},{"OrderID":"98132-121","ShipCountry":"PE","ShipAddress":"38 Delaware Lane","ShipName":"Jones-Kilback","OrderDate":"1/15/2016","TotalPayment":"$1083840.83","Status":3,"Type":1},{"OrderID":"55910-384","ShipCountry":"BR","ShipAddress":"9 Hoffman Circle","ShipName":"Schiller, Schmitt and Gislason","OrderDate":"6/29/2016","TotalPayment":"$340878.28","Status":5,"Type":3},{"OrderID":"16590-233","ShipCountry":"CN","ShipAddress":"11 Gulseth Road","ShipName":"Bogan-Wilkinson","OrderDate":"12/27/2017","TotalPayment":"$905599.43","Status":2,"Type":2},{"OrderID":"13537-017","ShipCountry":"JM","ShipAddress":"4627 Del Mar Avenue","ShipName":"Cruickshank and Sons","OrderDate":"10/23/2017","TotalPayment":"$693877.27","Status":6,"Type":1},{"OrderID":"36987-1521","ShipCountry":"CO","ShipAddress":"71733 Northland Junction","ShipName":"Legros, Barton and Nitzsche","OrderDate":"5/28/2016","TotalPayment":"$606469.74","Status":3,"Type":3}]},\n{"RecordID":231,"FirstName":"Gregg","LastName":"Linnane","Company":"Topiclounge","Email":"glinnane6e@hugedomains.com","Phone":"865-808-7176","Status":2,"Type":1,"Orders":[{"OrderID":"63739-805","ShipCountry":"CZ","ShipAddress":"1 Talisman Place","ShipName":"Cassin, Hand and Dicki","OrderDate":"3/20/2017","TotalPayment":"$771474.16","Status":2,"Type":2},{"OrderID":"52125-617","ShipCountry":"CN","ShipAddress":"96 Dexter Crossing","ShipName":"Dooley LLC","OrderDate":"2/4/2017","TotalPayment":"$949668.92","Status":1,"Type":3},{"OrderID":"50260-300","ShipCountry":"BR","ShipAddress":"748 Lakewood Drive","ShipName":"Hamill Group","OrderDate":"9/11/2017","TotalPayment":"$442619.60","Status":1,"Type":1},{"OrderID":"62007-014","ShipCountry":"ID","ShipAddress":"01133 Lotheville Alley","ShipName":"Baumbach-Strosin","OrderDate":"7/28/2017","TotalPayment":"$153535.87","Status":3,"Type":2},{"OrderID":"54868-3457","ShipCountry":"PT","ShipAddress":"1 Granby Crossing","ShipName":"Ebert and Sons","OrderDate":"9/15/2017","TotalPayment":"$348919.78","Status":1,"Type":2},{"OrderID":"43063-274","ShipCountry":"CR","ShipAddress":"3 Bluejay Court","ShipName":"Welch and Sons","OrderDate":"12/29/2017","TotalPayment":"$58280.02","Status":4,"Type":1},{"OrderID":"49738-079","ShipCountry":"SE","ShipAddress":"4046 Cottonwood Street","ShipName":"Wehner, Anderson and Hoeger","OrderDate":"3/31/2017","TotalPayment":"$10750.60","Status":4,"Type":3},{"OrderID":"0378-3495","ShipCountry":"ID","ShipAddress":"0 Jay Road","ShipName":"Schaden Group","OrderDate":"2/5/2016","TotalPayment":"$1187413.47","Status":2,"Type":3},{"OrderID":"11559-012","ShipCountry":"IS","ShipAddress":"032 Loeprich Drive","ShipName":"Hirthe Inc","OrderDate":"10/30/2016","TotalPayment":"$872263.73","Status":5,"Type":1},{"OrderID":"58118-0903","ShipCountry":"RE","ShipAddress":"9 Clove Lane","ShipName":"Morissette, Yost and Boyle","OrderDate":"7/8/2017","TotalPayment":"$696864.51","Status":3,"Type":2},{"OrderID":"76206-001","ShipCountry":"PT","ShipAddress":"83163 Jenifer Alley","ShipName":"Torp LLC","OrderDate":"6/18/2016","TotalPayment":"$165815.60","Status":2,"Type":1},{"OrderID":"68084-269","ShipCountry":"ID","ShipAddress":"7 Ridgeview Center","ShipName":"Dare-Ullrich","OrderDate":"4/22/2017","TotalPayment":"$62004.70","Status":5,"Type":2},{"OrderID":"68151-3838","ShipCountry":"PH","ShipAddress":"06 Caliangt Crossing","ShipName":"Wunsch, Bergnaum and Schmidt","OrderDate":"9/3/2016","TotalPayment":"$731060.71","Status":4,"Type":2},{"OrderID":"0527-1341","ShipCountry":"ID","ShipAddress":"1264 Anthes Street","ShipName":"Larkin, Hyatt and Effertz","OrderDate":"4/10/2017","TotalPayment":"$1023344.32","Status":1,"Type":2},{"OrderID":"11559-737","ShipCountry":"NO","ShipAddress":"09 Elmside Hill","ShipName":"Hills-Harber","OrderDate":"2/21/2017","TotalPayment":"$91233.21","Status":5,"Type":1},{"OrderID":"13537-220","ShipCountry":"WS","ShipAddress":"41871 Bunting Road","ShipName":"Thiel Inc","OrderDate":"12/6/2016","TotalPayment":"$1016180.70","Status":2,"Type":1},{"OrderID":"52625-100","ShipCountry":"CN","ShipAddress":"14176 Vidon Place","ShipName":"Daniel and Sons","OrderDate":"4/4/2017","TotalPayment":"$434679.82","Status":5,"Type":2},{"OrderID":"43526-107","ShipCountry":"CN","ShipAddress":"310 Mockingbird Alley","ShipName":"Yundt LLC","OrderDate":"8/22/2016","TotalPayment":"$118503.41","Status":1,"Type":3}]},\n{"RecordID":232,"FirstName":"Anabal","LastName":"Laurentino","Company":"Oyope","Email":"alaurentino6f@google.es","Phone":"933-669-4901","Status":1,"Type":2,"Orders":[{"OrderID":"36800-528","ShipCountry":"PT","ShipAddress":"3 Chinook Circle","ShipName":"Schimmel Inc","OrderDate":"8/18/2017","TotalPayment":"$1133070.17","Status":4,"Type":2},{"OrderID":"49348-793","ShipCountry":"SE","ShipAddress":"6 Tennessee Road","ShipName":"Leannon Group","OrderDate":"4/11/2017","TotalPayment":"$1128359.68","Status":6,"Type":1},{"OrderID":"54569-0910","ShipCountry":"BR","ShipAddress":"3 Toban Drive","ShipName":"Homenick and Sons","OrderDate":"7/5/2016","TotalPayment":"$304803.53","Status":1,"Type":3},{"OrderID":"54868-3454","ShipCountry":"CN","ShipAddress":"38 Fordem Junction","ShipName":"Pacocha Group","OrderDate":"9/28/2016","TotalPayment":"$1065486.51","Status":2,"Type":3},{"OrderID":"62584-659","ShipCountry":"CN","ShipAddress":"5 Starling Lane","ShipName":"Lakin and Sons","OrderDate":"12/23/2017","TotalPayment":"$943313.13","Status":3,"Type":1},{"OrderID":"0003-1614","ShipCountry":"CO","ShipAddress":"7 5th Circle","ShipName":"Collins-Skiles","OrderDate":"11/29/2016","TotalPayment":"$403647.61","Status":5,"Type":1},{"OrderID":"13537-331","ShipCountry":"RU","ShipAddress":"2089 Clyde Gallagher Street","ShipName":"Kassulke, O\'Hara and Halvorson","OrderDate":"7/29/2016","TotalPayment":"$270895.21","Status":1,"Type":3},{"OrderID":"0591-2884","ShipCountry":"SE","ShipAddress":"223 Coleman Court","ShipName":"Padberg, Hodkiewicz and Towne","OrderDate":"5/10/2017","TotalPayment":"$110614.21","Status":1,"Type":2}]},\n{"RecordID":233,"FirstName":"Arlie","LastName":"Geffen","Company":"Realmix","Email":"ageffen6g@japanpost.jp","Phone":"894-880-8914","Status":4,"Type":3,"Orders":[{"OrderID":"52584-035","ShipCountry":"GR","ShipAddress":"70378 Grover Avenue","ShipName":"Reynolds, Rau and Purdy","OrderDate":"4/7/2016","TotalPayment":"$328945.31","Status":3,"Type":3},{"OrderID":"53010-1001","ShipCountry":"BR","ShipAddress":"70 Linden Parkway","ShipName":"Nicolas, Terry and Rogahn","OrderDate":"11/4/2016","TotalPayment":"$282301.44","Status":6,"Type":2},{"OrderID":"55714-4555","ShipCountry":"PT","ShipAddress":"8 Charing Cross Court","ShipName":"Bradtke-Doyle","OrderDate":"1/30/2017","TotalPayment":"$97198.73","Status":6,"Type":3},{"OrderID":"59762-3721","ShipCountry":"MY","ShipAddress":"31 Luster Junction","ShipName":"Lebsack, Daugherty and Reinger","OrderDate":"11/1/2017","TotalPayment":"$24171.50","Status":2,"Type":1},{"OrderID":"43269-874","ShipCountry":"CN","ShipAddress":"3 Hoffman Junction","ShipName":"Konopelski, Bahringer and Gulgowski","OrderDate":"12/5/2016","TotalPayment":"$373675.81","Status":6,"Type":1},{"OrderID":"68788-9088","ShipCountry":"CN","ShipAddress":"65 Green Ridge Parkway","ShipName":"Ernser, Ritchie and Von","OrderDate":"12/25/2017","TotalPayment":"$448896.25","Status":5,"Type":1},{"OrderID":"0378-7098","ShipCountry":"CO","ShipAddress":"3039 Merry Center","ShipName":"Kunde and Sons","OrderDate":"6/21/2017","TotalPayment":"$1192855.02","Status":6,"Type":3},{"OrderID":"36987-2508","ShipCountry":"CN","ShipAddress":"0 Thompson Street","ShipName":"Anderson, Reichel and Hintz","OrderDate":"9/17/2017","TotalPayment":"$339203.02","Status":4,"Type":1},{"OrderID":"65862-391","ShipCountry":"BR","ShipAddress":"9 Sachs Point","ShipName":"Heidenreich-Bergnaum","OrderDate":"3/16/2016","TotalPayment":"$144995.28","Status":3,"Type":3},{"OrderID":"10191-1937","ShipCountry":"SY","ShipAddress":"63559 Pond Road","ShipName":"Brekke-Roob","OrderDate":"1/15/2016","TotalPayment":"$232153.79","Status":5,"Type":3},{"OrderID":"24338-010","ShipCountry":"CN","ShipAddress":"7715 Westend Drive","ShipName":"Hahn LLC","OrderDate":"7/30/2017","TotalPayment":"$205485.14","Status":6,"Type":3},{"OrderID":"0143-2422","ShipCountry":"VN","ShipAddress":"1 Maple Avenue","ShipName":"Kassulke, Ward and Cruickshank","OrderDate":"10/21/2017","TotalPayment":"$52652.29","Status":1,"Type":3},{"OrderID":"58411-228","ShipCountry":"CN","ShipAddress":"81951 Hintze Alley","ShipName":"Wintheiser and Sons","OrderDate":"1/13/2017","TotalPayment":"$1195583.95","Status":4,"Type":3}]},\n{"RecordID":234,"FirstName":"Dagmar","LastName":"Donwell","Company":"Topicware","Email":"ddonwell6h@salon.com","Phone":"275-621-8277","Status":2,"Type":2,"Orders":[{"OrderID":"68645-475","ShipCountry":"BR","ShipAddress":"64612 Almo Road","ShipName":"Shields, Turcotte and Sawayn","OrderDate":"2/17/2017","TotalPayment":"$985366.79","Status":2,"Type":1},{"OrderID":"10631-096","ShipCountry":"ID","ShipAddress":"3288 Crownhardt Point","ShipName":"Wisozk-Emard","OrderDate":"8/13/2016","TotalPayment":"$363925.60","Status":1,"Type":3},{"OrderID":"0642-0077","ShipCountry":"ID","ShipAddress":"891 Carey Way","ShipName":"VonRueden and Sons","OrderDate":"2/23/2017","TotalPayment":"$1162427.60","Status":3,"Type":2},{"OrderID":"0781-5641","ShipCountry":"CN","ShipAddress":"313 Boyd Drive","ShipName":"Leffler, Grimes and Macejkovic","OrderDate":"7/12/2016","TotalPayment":"$543259.55","Status":4,"Type":3},{"OrderID":"63187-026","ShipCountry":"ID","ShipAddress":"6287 Shasta Circle","ShipName":"D\'Amore-Ledner","OrderDate":"1/13/2016","TotalPayment":"$55941.55","Status":1,"Type":3},{"OrderID":"36987-2579","ShipCountry":"ID","ShipAddress":"7365 Eastlawn Place","ShipName":"Ratke Group","OrderDate":"4/1/2017","TotalPayment":"$1047498.58","Status":1,"Type":2},{"OrderID":"55154-4730","ShipCountry":"CN","ShipAddress":"77 Golf Course Terrace","ShipName":"Wisoky-Bernhard","OrderDate":"1/10/2017","TotalPayment":"$225486.91","Status":6,"Type":2},{"OrderID":"68645-478","ShipCountry":"ID","ShipAddress":"85 Eggendart Crossing","ShipName":"Kessler LLC","OrderDate":"3/26/2017","TotalPayment":"$359672.42","Status":2,"Type":3},{"OrderID":"60429-380","ShipCountry":"CN","ShipAddress":"6156 Lukken Plaza","ShipName":"Leannon, Ortiz and Strosin","OrderDate":"10/17/2017","TotalPayment":"$30572.67","Status":3,"Type":2},{"OrderID":"0615-1393","ShipCountry":"CN","ShipAddress":"806 Bunting Road","ShipName":"Larkin-Wisoky","OrderDate":"3/7/2016","TotalPayment":"$1180153.57","Status":2,"Type":3},{"OrderID":"49349-145","ShipCountry":"NO","ShipAddress":"23926 Graedel Hill","ShipName":"Hilll Group","OrderDate":"3/29/2017","TotalPayment":"$1040358.30","Status":6,"Type":3},{"OrderID":"43742-0234","ShipCountry":"CZ","ShipAddress":"6065 Dryden Center","ShipName":"Feest-Jast","OrderDate":"1/20/2016","TotalPayment":"$655466.23","Status":2,"Type":2}]},\n{"RecordID":235,"FirstName":"Morris","LastName":"Vitte","Company":"Izio","Email":"mvitte6i@berkeley.edu","Phone":"883-877-9979","Status":1,"Type":1,"Orders":[{"OrderID":"57344-080","ShipCountry":"ID","ShipAddress":"6710 Pleasure Junction","ShipName":"Kozey-Klocko","OrderDate":"9/6/2016","TotalPayment":"$1146212.33","Status":4,"Type":2},{"OrderID":"59779-891","ShipCountry":"CZ","ShipAddress":"1 Dahle Terrace","ShipName":"Marks, Parisian and MacGyver","OrderDate":"10/11/2016","TotalPayment":"$709980.40","Status":5,"Type":3},{"OrderID":"98132-137","ShipCountry":"CN","ShipAddress":"52902 West Place","ShipName":"Hamill Group","OrderDate":"5/30/2017","TotalPayment":"$823482.30","Status":4,"Type":2},{"OrderID":"52862-306","ShipCountry":"PH","ShipAddress":"99 Gina Parkway","ShipName":"Medhurst-Walter","OrderDate":"8/23/2017","TotalPayment":"$1110617.33","Status":2,"Type":2},{"OrderID":"49358-547","ShipCountry":"FR","ShipAddress":"057 Annamark Road","ShipName":"Franecki-Flatley","OrderDate":"12/26/2016","TotalPayment":"$126420.64","Status":3,"Type":1},{"OrderID":"0603-0169","ShipCountry":"CN","ShipAddress":"89409 Di Loreto Avenue","ShipName":"Weissnat, Runolfsdottir and Cremin","OrderDate":"1/25/2017","TotalPayment":"$1111759.33","Status":5,"Type":1},{"OrderID":"58232-0048","ShipCountry":"SE","ShipAddress":"6909 Troy Court","ShipName":"Kilback, Jones and Gorczany","OrderDate":"12/28/2016","TotalPayment":"$358621.65","Status":2,"Type":1},{"OrderID":"26637-222","ShipCountry":"CN","ShipAddress":"7 Bunting Hill","ShipName":"Spencer-Nikolaus","OrderDate":"11/21/2016","TotalPayment":"$1023647.48","Status":5,"Type":3},{"OrderID":"54569-6399","ShipCountry":"JP","ShipAddress":"778 Emmet Park","ShipName":"Hackett Inc","OrderDate":"1/5/2017","TotalPayment":"$504409.79","Status":6,"Type":3},{"OrderID":"57664-281","ShipCountry":"PH","ShipAddress":"7 Dawn Junction","ShipName":"Bernier, Ledner and Welch","OrderDate":"6/21/2017","TotalPayment":"$928094.50","Status":2,"Type":1},{"OrderID":"61995-2392","ShipCountry":"CO","ShipAddress":"926 Canary Avenue","ShipName":"King-Nikolaus","OrderDate":"9/4/2017","TotalPayment":"$140644.97","Status":6,"Type":1},{"OrderID":"37012-668","ShipCountry":"CN","ShipAddress":"60259 Green Pass","ShipName":"Ruecker, Grimes and Thompson","OrderDate":"4/4/2016","TotalPayment":"$150949.44","Status":2,"Type":3},{"OrderID":"53208-446","ShipCountry":"PE","ShipAddress":"3 Division Place","ShipName":"Rempel-Rogahn","OrderDate":"3/4/2017","TotalPayment":"$301112.49","Status":4,"Type":2},{"OrderID":"42291-840","ShipCountry":"PS","ShipAddress":"0648 Corscot Parkway","ShipName":"Emard, Sporer and Gislason","OrderDate":"5/5/2017","TotalPayment":"$290977.63","Status":4,"Type":3},{"OrderID":"52959-676","ShipCountry":"CN","ShipAddress":"2061 American Drive","ShipName":"Langworth Group","OrderDate":"12/30/2016","TotalPayment":"$1198102.97","Status":2,"Type":1},{"OrderID":"55441-201","ShipCountry":"CN","ShipAddress":"8 Holy Cross Circle","ShipName":"Feil, Walker and Considine","OrderDate":"7/18/2017","TotalPayment":"$349637.93","Status":1,"Type":3},{"OrderID":"24286-1550","ShipCountry":"ID","ShipAddress":"35378 Pankratz Court","ShipName":"Brekke and Sons","OrderDate":"10/20/2016","TotalPayment":"$432731.29","Status":4,"Type":3},{"OrderID":"47781-135","ShipCountry":"SE","ShipAddress":"562 Nobel Hill","ShipName":"Kihn and Sons","OrderDate":"7/10/2017","TotalPayment":"$32336.22","Status":2,"Type":2}]},\n{"RecordID":236,"FirstName":"Orlan","LastName":"Leyman","Company":"Eabox","Email":"oleyman6j@pagesperso-orange.fr","Phone":"819-289-2843","Status":2,"Type":2,"Orders":[{"OrderID":"55289-924","ShipCountry":"PH","ShipAddress":"186 Dwight Hill","ShipName":"Lowe LLC","OrderDate":"6/8/2016","TotalPayment":"$820457.32","Status":2,"Type":1},{"OrderID":"68026-532","ShipCountry":"CN","ShipAddress":"85 Forest Dale Parkway","ShipName":"Quitzon-Kunde","OrderDate":"7/26/2016","TotalPayment":"$883502.83","Status":5,"Type":2},{"OrderID":"52959-757","ShipCountry":"MC","ShipAddress":"0589 Brickson Park Road","ShipName":"Hudson-Conroy","OrderDate":"1/11/2017","TotalPayment":"$1130032.68","Status":2,"Type":1},{"OrderID":"0591-3775","ShipCountry":"ID","ShipAddress":"1 Hallows Crossing","ShipName":"Nitzsche-Reilly","OrderDate":"2/2/2017","TotalPayment":"$237189.97","Status":1,"Type":2},{"OrderID":"49035-707","ShipCountry":"ID","ShipAddress":"53 Hermina Avenue","ShipName":"Mitchell, McKenzie and Rice","OrderDate":"9/16/2017","TotalPayment":"$114692.66","Status":3,"Type":3},{"OrderID":"10812-523","ShipCountry":"CN","ShipAddress":"273 Delaware Lane","ShipName":"Mayer-Quitzon","OrderDate":"3/29/2016","TotalPayment":"$558660.84","Status":4,"Type":2},{"OrderID":"21695-889","ShipCountry":"CZ","ShipAddress":"375 Nova Junction","ShipName":"Schulist-Stracke","OrderDate":"5/24/2017","TotalPayment":"$662393.92","Status":4,"Type":2},{"OrderID":"65044-1435","ShipCountry":"IR","ShipAddress":"8969 Ridge Oak Drive","ShipName":"Langosh-Wilkinson","OrderDate":"2/29/2016","TotalPayment":"$210103.20","Status":5,"Type":1},{"OrderID":"51991-292","ShipCountry":"BF","ShipAddress":"9 Rigney Alley","ShipName":"Wehner-Von","OrderDate":"5/5/2017","TotalPayment":"$1003147.38","Status":6,"Type":1},{"OrderID":"57955-0277","ShipCountry":"PE","ShipAddress":"47987 Sachtjen Court","ShipName":"Hilpert-Stoltenberg","OrderDate":"10/20/2016","TotalPayment":"$708540.64","Status":6,"Type":1},{"OrderID":"57344-109","ShipCountry":"CN","ShipAddress":"1 East Point","ShipName":"Wuckert, Buckridge and Pagac","OrderDate":"4/17/2017","TotalPayment":"$35755.38","Status":6,"Type":2},{"OrderID":"49281-589","ShipCountry":"RU","ShipAddress":"9 Coolidge Crossing","ShipName":"Lubowitz, Daniel and Renner","OrderDate":"8/16/2016","TotalPayment":"$455129.85","Status":3,"Type":1},{"OrderID":"75835-269","ShipCountry":"PH","ShipAddress":"27 Nancy Pass","ShipName":"Fisher, Kiehn and Senger","OrderDate":"6/10/2017","TotalPayment":"$556623.66","Status":3,"Type":3},{"OrderID":"13537-365","ShipCountry":"ID","ShipAddress":"547 Miller Terrace","ShipName":"Goyette, DuBuque and Swift","OrderDate":"5/9/2016","TotalPayment":"$419103.78","Status":6,"Type":2},{"OrderID":"62499-392","ShipCountry":"BD","ShipAddress":"56712 Moland Junction","ShipName":"Daugherty LLC","OrderDate":"6/28/2017","TotalPayment":"$1138061.37","Status":2,"Type":3},{"OrderID":"23155-214","ShipCountry":"PL","ShipAddress":"3 Shasta Trail","ShipName":"Kerluke-Flatley","OrderDate":"5/1/2017","TotalPayment":"$542473.75","Status":5,"Type":1}]},\n{"RecordID":237,"FirstName":"Bella","LastName":"Reavey","Company":"Realfire","Email":"breavey6k@e-recht24.de","Phone":"382-699-6309","Status":2,"Type":2,"Orders":[{"OrderID":"60505-0130","ShipCountry":"CA","ShipAddress":"2 International Lane","ShipName":"Harber, Russel and D\'Amore","OrderDate":"3/25/2017","TotalPayment":"$328734.07","Status":1,"Type":3},{"OrderID":"76354-104","ShipCountry":"RU","ShipAddress":"1 4th Court","ShipName":"Paucek, Mayer and Marks","OrderDate":"9/30/2017","TotalPayment":"$750496.43","Status":2,"Type":3},{"OrderID":"16590-307","ShipCountry":"ID","ShipAddress":"68 Everett Lane","ShipName":"Raynor, Stehr and Beer","OrderDate":"10/31/2016","TotalPayment":"$780032.95","Status":2,"Type":3},{"OrderID":"0069-0400","ShipCountry":"AZ","ShipAddress":"6 Oak Pass","ShipName":"Prohaska Inc","OrderDate":"5/26/2016","TotalPayment":"$15029.28","Status":3,"Type":3},{"OrderID":"68428-056","ShipCountry":"ID","ShipAddress":"9482 Susan Trail","ShipName":"Langosh-Zboncak","OrderDate":"10/21/2017","TotalPayment":"$428512.66","Status":4,"Type":3},{"OrderID":"11410-206","ShipCountry":"RU","ShipAddress":"766 Manufacturers Drive","ShipName":"Shanahan-Baumbach","OrderDate":"12/8/2016","TotalPayment":"$1035049.00","Status":5,"Type":2},{"OrderID":"55111-202","ShipCountry":"JP","ShipAddress":"617 Springs Road","ShipName":"Medhurst-Fadel","OrderDate":"2/4/2017","TotalPayment":"$699351.60","Status":6,"Type":3},{"OrderID":"61578-205","ShipCountry":"CN","ShipAddress":"81684 Kipling Court","ShipName":"Hoeger LLC","OrderDate":"4/9/2017","TotalPayment":"$512148.88","Status":5,"Type":3},{"OrderID":"76237-222","ShipCountry":"RU","ShipAddress":"47 Michigan Street","ShipName":"Carter-Mayert","OrderDate":"10/21/2017","TotalPayment":"$1039398.09","Status":6,"Type":2},{"OrderID":"41595-5512","ShipCountry":"FI","ShipAddress":"257 Schlimgen Court","ShipName":"Yundt-Wiza","OrderDate":"9/15/2016","TotalPayment":"$323047.09","Status":6,"Type":3},{"OrderID":"33261-484","ShipCountry":"CN","ShipAddress":"5790 Buell Circle","ShipName":"Trantow Inc","OrderDate":"10/18/2016","TotalPayment":"$536542.10","Status":3,"Type":3},{"OrderID":"0143-2037","ShipCountry":"CN","ShipAddress":"30 Sutherland Hill","ShipName":"Kreiger-Friesen","OrderDate":"1/1/2016","TotalPayment":"$624762.55","Status":4,"Type":2}]},\n{"RecordID":238,"FirstName":"Micaela","LastName":"Kesey","Company":"Wordify","Email":"mkesey6l@cyberchimps.com","Phone":"639-542-6146","Status":2,"Type":3,"Orders":[{"OrderID":"0555-0764","ShipCountry":"BO","ShipAddress":"16 Westridge Plaza","ShipName":"Osinski, Schoen and Reilly","OrderDate":"4/17/2017","TotalPayment":"$1025206.83","Status":5,"Type":3},{"OrderID":"52959-074","ShipCountry":"CN","ShipAddress":"24 Manitowish Way","ShipName":"Kerluke-Lakin","OrderDate":"10/1/2017","TotalPayment":"$140388.56","Status":4,"Type":3},{"OrderID":"0173-0780","ShipCountry":"CN","ShipAddress":"0 Chive Alley","ShipName":"Carter-Ledner","OrderDate":"10/14/2016","TotalPayment":"$1055419.23","Status":3,"Type":2},{"OrderID":"16590-195","ShipCountry":"CN","ShipAddress":"64 Warbler Terrace","ShipName":"Kessler-Gorczany","OrderDate":"4/3/2016","TotalPayment":"$322551.23","Status":5,"Type":2},{"OrderID":"49349-171","ShipCountry":"CN","ShipAddress":"78 Oak Valley Hill","ShipName":"Moen, Cormier and West","OrderDate":"8/7/2017","TotalPayment":"$735791.33","Status":1,"Type":1},{"OrderID":"27437-201","ShipCountry":"SE","ShipAddress":"5 Beilfuss Trail","ShipName":"Windler Inc","OrderDate":"4/19/2017","TotalPayment":"$1086814.92","Status":6,"Type":1},{"OrderID":"0268-6793","ShipCountry":"CZ","ShipAddress":"50 Stone Corner Street","ShipName":"Quigley, Raynor and Nolan","OrderDate":"11/11/2016","TotalPayment":"$253078.81","Status":1,"Type":3},{"OrderID":"0168-0326","ShipCountry":"RU","ShipAddress":"51 Susan Park","ShipName":"Turcotte-Crist","OrderDate":"8/5/2016","TotalPayment":"$1138561.09","Status":6,"Type":3},{"OrderID":"68788-9401","ShipCountry":"EC","ShipAddress":"8466 Talmadge Place","ShipName":"Hamill-Grant","OrderDate":"7/10/2017","TotalPayment":"$669470.96","Status":1,"Type":2},{"OrderID":"55346-0718","ShipCountry":"SE","ShipAddress":"00019 Ramsey Circle","ShipName":"Herman, Mante and Lebsack","OrderDate":"9/10/2016","TotalPayment":"$35769.27","Status":6,"Type":2},{"OrderID":"49035-541","ShipCountry":"FR","ShipAddress":"80400 Mcguire Drive","ShipName":"Roberts, Windler and Walsh","OrderDate":"6/13/2017","TotalPayment":"$395485.10","Status":3,"Type":2},{"OrderID":"55154-1607","ShipCountry":"TH","ShipAddress":"45421 Rusk Hill","ShipName":"Osinski-Hilll","OrderDate":"5/29/2017","TotalPayment":"$159822.46","Status":1,"Type":3}]},\n{"RecordID":239,"FirstName":"Tate","LastName":"Filler","Company":"Quire","Email":"tfiller6m@telegraph.co.uk","Phone":"415-174-2946","Status":2,"Type":1,"Orders":[{"OrderID":"0185-0072","ShipCountry":"TH","ShipAddress":"6175 Charing Cross Terrace","ShipName":"Kuhn Inc","OrderDate":"9/3/2017","TotalPayment":"$944377.97","Status":5,"Type":2},{"OrderID":"63940-614","ShipCountry":"YE","ShipAddress":"48 Surrey Trail","ShipName":"Kozey, Bergstrom and Mayer","OrderDate":"2/4/2017","TotalPayment":"$1110590.63","Status":2,"Type":2},{"OrderID":"55681-212","ShipCountry":"ID","ShipAddress":"48 Butternut Alley","ShipName":"Blick, Sawayn and Kunde","OrderDate":"5/20/2017","TotalPayment":"$708005.41","Status":1,"Type":2},{"OrderID":"49349-350","ShipCountry":"BR","ShipAddress":"8308 Kennedy Avenue","ShipName":"King LLC","OrderDate":"10/2/2017","TotalPayment":"$1170231.52","Status":6,"Type":1},{"OrderID":"35356-961","ShipCountry":"CN","ShipAddress":"31069 Macpherson Street","ShipName":"Gerhold-Kunze","OrderDate":"8/3/2016","TotalPayment":"$133974.67","Status":6,"Type":3},{"OrderID":"0093-8121","ShipCountry":"PY","ShipAddress":"75 Mitchell Crossing","ShipName":"Miller, Kihn and Harber","OrderDate":"5/22/2016","TotalPayment":"$184881.27","Status":6,"Type":1},{"OrderID":"67781-252","ShipCountry":"JP","ShipAddress":"27343 Meadow Valley Pass","ShipName":"Baumbach-Corwin","OrderDate":"6/27/2017","TotalPayment":"$670548.17","Status":6,"Type":1},{"OrderID":"10812-152","ShipCountry":"BG","ShipAddress":"5 Tomscot Lane","ShipName":"Fisher, Hoppe and Goodwin","OrderDate":"12/9/2016","TotalPayment":"$255825.99","Status":6,"Type":2},{"OrderID":"24236-736","ShipCountry":"MN","ShipAddress":"67 Sage Drive","ShipName":"Cremin, Cronin and McCullough","OrderDate":"9/25/2017","TotalPayment":"$761365.66","Status":6,"Type":2},{"OrderID":"68016-021","ShipCountry":"ID","ShipAddress":"8079 Pawling Center","ShipName":"Schmidt-Goodwin","OrderDate":"3/13/2016","TotalPayment":"$840489.67","Status":1,"Type":1},{"OrderID":"63629-2607","ShipCountry":"RU","ShipAddress":"08 Dapin Alley","ShipName":"Balistreri-Satterfield","OrderDate":"6/4/2016","TotalPayment":"$752348.75","Status":6,"Type":2},{"OrderID":"49999-226","ShipCountry":"PE","ShipAddress":"105 Ryan Point","ShipName":"Streich Inc","OrderDate":"4/3/2016","TotalPayment":"$1055275.07","Status":3,"Type":1},{"OrderID":"0173-0869","ShipCountry":"TH","ShipAddress":"67508 Melody Point","ShipName":"Daniel LLC","OrderDate":"4/12/2017","TotalPayment":"$1107087.47","Status":3,"Type":2},{"OrderID":"42936-585","ShipCountry":"CO","ShipAddress":"1456 Graedel Terrace","ShipName":"Collier LLC","OrderDate":"4/27/2017","TotalPayment":"$38626.09","Status":3,"Type":3},{"OrderID":"10237-614","ShipCountry":"ID","ShipAddress":"13336 Hooker Parkway","ShipName":"Marvin-Mraz","OrderDate":"7/5/2016","TotalPayment":"$626077.41","Status":3,"Type":2},{"OrderID":"54868-5958","ShipCountry":"BF","ShipAddress":"627 Lake View Pass","ShipName":"Kuphal-Corwin","OrderDate":"12/14/2016","TotalPayment":"$960619.07","Status":5,"Type":1},{"OrderID":"36987-1337","ShipCountry":"PT","ShipAddress":"58 Manley Street","ShipName":"Jenkins-Padberg","OrderDate":"4/1/2016","TotalPayment":"$450546.16","Status":5,"Type":2}]},\n{"RecordID":240,"FirstName":"Maxy","LastName":"Tebbett","Company":"Jabbertype","Email":"mtebbett6n@smh.com.au","Phone":"316-776-3291","Status":2,"Type":3,"Orders":[{"OrderID":"68151-3858","ShipCountry":"SE","ShipAddress":"51 Talmadge Avenue","ShipName":"Feest-Thiel","OrderDate":"5/1/2017","TotalPayment":"$773870.69","Status":3,"Type":3},{"OrderID":"67296-0122","ShipCountry":"MX","ShipAddress":"80856 Transport Parkway","ShipName":"Dooley-Gibson","OrderDate":"7/20/2016","TotalPayment":"$95832.60","Status":3,"Type":2},{"OrderID":"41167-3304","ShipCountry":"CN","ShipAddress":"13288 Oak Valley Drive","ShipName":"Powlowski Inc","OrderDate":"1/20/2016","TotalPayment":"$531858.90","Status":5,"Type":1},{"OrderID":"0703-4686","ShipCountry":"ID","ShipAddress":"323 Mandrake Junction","ShipName":"West-Krajcik","OrderDate":"10/14/2016","TotalPayment":"$1105867.56","Status":6,"Type":1},{"OrderID":"63323-173","ShipCountry":"CN","ShipAddress":"39184 Oak Trail","ShipName":"Hodkiewicz, Huels and Swift","OrderDate":"11/9/2017","TotalPayment":"$315019.56","Status":6,"Type":1},{"OrderID":"54162-006","ShipCountry":"PE","ShipAddress":"9920 Declaration Road","ShipName":"Schmitt, Rau and Marvin","OrderDate":"10/18/2017","TotalPayment":"$83560.81","Status":4,"Type":2},{"OrderID":"55154-3481","ShipCountry":"CN","ShipAddress":"18 Schmedeman Point","ShipName":"Paucek-Connelly","OrderDate":"8/18/2016","TotalPayment":"$814918.50","Status":4,"Type":3},{"OrderID":"51079-974","ShipCountry":"ID","ShipAddress":"16 Eggendart Parkway","ShipName":"Kiehn-Gislason","OrderDate":"5/26/2017","TotalPayment":"$301287.37","Status":1,"Type":1},{"OrderID":"37808-648","ShipCountry":"SV","ShipAddress":"788 Derek Hill","ShipName":"Toy LLC","OrderDate":"2/8/2017","TotalPayment":"$821446.12","Status":3,"Type":3},{"OrderID":"49288-0369","ShipCountry":"JP","ShipAddress":"8 Mccormick Parkway","ShipName":"Tillman-Beier","OrderDate":"6/5/2016","TotalPayment":"$848339.56","Status":3,"Type":2}]},\n{"RecordID":241,"FirstName":"Raymund","LastName":"Scotcher","Company":"Midel","Email":"rscotcher6o@qq.com","Phone":"640-497-6080","Status":3,"Type":3,"Orders":[{"OrderID":"0955-1710","ShipCountry":"FR","ShipAddress":"867 Loomis Court","ShipName":"Connelly-Fadel","OrderDate":"2/19/2017","TotalPayment":"$52295.71","Status":2,"Type":2},{"OrderID":"49288-0276","ShipCountry":"BR","ShipAddress":"1682 Fallview Parkway","ShipName":"Goyette-Rodriguez","OrderDate":"3/16/2016","TotalPayment":"$510770.58","Status":5,"Type":2},{"OrderID":"54868-0548","ShipCountry":"FI","ShipAddress":"44624 Bartelt Drive","ShipName":"Herzog, Wyman and Bednar","OrderDate":"11/25/2016","TotalPayment":"$596336.78","Status":6,"Type":1},{"OrderID":"33992-0271","ShipCountry":"JP","ShipAddress":"6393 Tennessee Lane","ShipName":"Balistreri, Kihn and Daugherty","OrderDate":"12/8/2017","TotalPayment":"$982277.19","Status":5,"Type":2},{"OrderID":"49953-2805","ShipCountry":"CN","ShipAddress":"246 Randy Road","ShipName":"McGlynn-Russel","OrderDate":"10/28/2017","TotalPayment":"$334743.55","Status":5,"Type":2},{"OrderID":"49035-054","ShipCountry":"CZ","ShipAddress":"2 Maywood Center","ShipName":"Mertz, VonRueden and Simonis","OrderDate":"3/2/2017","TotalPayment":"$301329.82","Status":5,"Type":1},{"OrderID":"0054-0435","ShipCountry":"JP","ShipAddress":"993 Cardinal Drive","ShipName":"Skiles-Effertz","OrderDate":"7/14/2017","TotalPayment":"$814813.24","Status":2,"Type":2},{"OrderID":"11086-048","ShipCountry":"ID","ShipAddress":"9 Mallory Hill","ShipName":"Rau-Haag","OrderDate":"6/28/2017","TotalPayment":"$756519.08","Status":2,"Type":2},{"OrderID":"57520-0675","ShipCountry":"CN","ShipAddress":"57246 Pleasure Terrace","ShipName":"Bogan, Abernathy and Jacobson","OrderDate":"9/24/2017","TotalPayment":"$577901.01","Status":4,"Type":3},{"OrderID":"52584-071","ShipCountry":"PH","ShipAddress":"95 Brickson Park Drive","ShipName":"Kilback Group","OrderDate":"6/16/2017","TotalPayment":"$548747.43","Status":1,"Type":1},{"OrderID":"76419-211","ShipCountry":"PT","ShipAddress":"81 Mallory Junction","ShipName":"Lindgren and Sons","OrderDate":"2/11/2016","TotalPayment":"$142966.69","Status":1,"Type":2},{"OrderID":"37808-102","ShipCountry":"FR","ShipAddress":"56 Lerdahl Alley","ShipName":"Kuhn and Sons","OrderDate":"11/30/2016","TotalPayment":"$907182.44","Status":1,"Type":2}]},\n{"RecordID":242,"FirstName":"Silvanus","LastName":"Hacquard","Company":"Gabvine","Email":"shacquard6p@cargocollective.com","Phone":"692-467-4644","Status":5,"Type":3,"Orders":[{"OrderID":"13107-007","ShipCountry":"FR","ShipAddress":"6 Larry Pass","ShipName":"Rosenbaum, Strosin and Wolf","OrderDate":"12/9/2016","TotalPayment":"$723288.89","Status":1,"Type":1},{"OrderID":"0062-0175","ShipCountry":"ID","ShipAddress":"35770 American Ash Parkway","ShipName":"Kunze-Kunde","OrderDate":"10/10/2016","TotalPayment":"$307818.53","Status":5,"Type":3},{"OrderID":"54458-933","ShipCountry":"FR","ShipAddress":"6 Oneill Lane","ShipName":"Reilly, Langosh and O\'Keefe","OrderDate":"8/30/2016","TotalPayment":"$108990.86","Status":1,"Type":3},{"OrderID":"42192-139","ShipCountry":"CN","ShipAddress":"72 Pankratz Parkway","ShipName":"Dietrich, Emmerich and Hane","OrderDate":"10/22/2016","TotalPayment":"$937107.45","Status":5,"Type":2},{"OrderID":"55154-2305","ShipCountry":"TH","ShipAddress":"177 Scofield Circle","ShipName":"Johnston-McKenzie","OrderDate":"9/1/2017","TotalPayment":"$491227.14","Status":6,"Type":2},{"OrderID":"68094-716","ShipCountry":"UA","ShipAddress":"0 Farmco Trail","ShipName":"Bednar-Hills","OrderDate":"4/17/2017","TotalPayment":"$204900.15","Status":3,"Type":3},{"OrderID":"0054-3722","ShipCountry":"MN","ShipAddress":"4 Spohn Way","ShipName":"Daniel Inc","OrderDate":"3/12/2016","TotalPayment":"$515570.60","Status":3,"Type":3},{"OrderID":"54723-150","ShipCountry":"PL","ShipAddress":"6225 Fulton Junction","ShipName":"Koch, Johnston and Jast","OrderDate":"10/17/2016","TotalPayment":"$635053.15","Status":3,"Type":3},{"OrderID":"55111-479","ShipCountry":"SZ","ShipAddress":"7790 Dorton Center","ShipName":"Weissnat, Turner and Blick","OrderDate":"11/13/2017","TotalPayment":"$1180811.04","Status":2,"Type":2},{"OrderID":"43269-830","ShipCountry":"CN","ShipAddress":"42098 Burning Wood Circle","ShipName":"Strosin-Barrows","OrderDate":"5/4/2016","TotalPayment":"$416868.33","Status":5,"Type":2},{"OrderID":"51769-141","ShipCountry":"PT","ShipAddress":"5792 Di Loreto Way","ShipName":"Schaefer Group","OrderDate":"7/19/2017","TotalPayment":"$65254.13","Status":3,"Type":1},{"OrderID":"58466-024","ShipCountry":"CN","ShipAddress":"112 Fairview Parkway","ShipName":"Considine LLC","OrderDate":"1/22/2017","TotalPayment":"$1052805.55","Status":3,"Type":1},{"OrderID":"52125-800","ShipCountry":"PH","ShipAddress":"6 Westport Alley","ShipName":"Cronin, Braun and Abbott","OrderDate":"11/9/2016","TotalPayment":"$484538.09","Status":1,"Type":1},{"OrderID":"0781-2271","ShipCountry":"CN","ShipAddress":"7454 Annamark Terrace","ShipName":"Braun, Lesch and Kub","OrderDate":"2/4/2017","TotalPayment":"$742630.46","Status":5,"Type":3},{"OrderID":"41190-074","ShipCountry":"BI","ShipAddress":"40 Erie Road","ShipName":"Wisozk, Braun and Auer","OrderDate":"7/1/2017","TotalPayment":"$998148.29","Status":3,"Type":2}]},\n{"RecordID":243,"FirstName":"Lissa","LastName":"Brouwer","Company":"Geba","Email":"lbrouwer6q@imdb.com","Phone":"621-972-1392","Status":5,"Type":3,"Orders":[{"OrderID":"64720-137","ShipCountry":"MN","ShipAddress":"359 Bartillon Junction","ShipName":"Emmerich and Sons","OrderDate":"9/30/2017","TotalPayment":"$548979.77","Status":2,"Type":2},{"OrderID":"52125-295","ShipCountry":"AR","ShipAddress":"8 Ridgeway Street","ShipName":"Okuneva, Orn and Mayer","OrderDate":"7/31/2017","TotalPayment":"$407975.31","Status":2,"Type":2},{"OrderID":"30142-904","ShipCountry":"CO","ShipAddress":"8 Tennessee Drive","ShipName":"Gutkowski and Sons","OrderDate":"4/29/2016","TotalPayment":"$655680.94","Status":3,"Type":2},{"OrderID":"36987-1969","ShipCountry":"PL","ShipAddress":"62868 Sunnyside Hill","ShipName":"Brekke-Harvey","OrderDate":"5/10/2016","TotalPayment":"$887205.54","Status":1,"Type":2},{"OrderID":"63029-433","ShipCountry":"PT","ShipAddress":"10 Karstens Plaza","ShipName":"Heller-Reinger","OrderDate":"1/31/2016","TotalPayment":"$584878.32","Status":5,"Type":2},{"OrderID":"36800-015","ShipCountry":"CN","ShipAddress":"5 Declaration Lane","ShipName":"Mraz-Wiegand","OrderDate":"9/23/2017","TotalPayment":"$140230.31","Status":1,"Type":1},{"OrderID":"67046-481","ShipCountry":"US","ShipAddress":"92 Glacier Hill Crossing","ShipName":"Pacocha-Homenick","OrderDate":"6/26/2016","TotalPayment":"$492424.00","Status":3,"Type":3},{"OrderID":"11822-5260","ShipCountry":"PH","ShipAddress":"302 Londonderry Plaza","ShipName":"Watsica-Lockman","OrderDate":"11/4/2016","TotalPayment":"$361164.27","Status":2,"Type":3},{"OrderID":"59011-255","ShipCountry":"PH","ShipAddress":"10 Boyd Park","ShipName":"Rodriguez, Gislason and Dare","OrderDate":"2/14/2017","TotalPayment":"$238529.10","Status":2,"Type":2},{"OrderID":"0268-1299","ShipCountry":"MD","ShipAddress":"8911 Crescent Oaks Center","ShipName":"Smith, Nicolas and Shanahan","OrderDate":"1/13/2016","TotalPayment":"$223404.49","Status":4,"Type":3},{"OrderID":"0407-1413","ShipCountry":"NG","ShipAddress":"09 Forest Run Park","ShipName":"Schmitt Group","OrderDate":"5/14/2016","TotalPayment":"$141372.72","Status":4,"Type":3},{"OrderID":"52810-501","ShipCountry":"CN","ShipAddress":"0 Carioca Terrace","ShipName":"Wiza, Johnston and Connelly","OrderDate":"8/31/2016","TotalPayment":"$402048.03","Status":3,"Type":1},{"OrderID":"55154-5537","ShipCountry":"LT","ShipAddress":"5144 Northview Plaza","ShipName":"Ernser-Dibbert","OrderDate":"11/25/2016","TotalPayment":"$359604.48","Status":5,"Type":2},{"OrderID":"44946-1010","ShipCountry":"FR","ShipAddress":"06 Katie Park","ShipName":"Lakin and Sons","OrderDate":"8/12/2017","TotalPayment":"$972939.67","Status":1,"Type":2},{"OrderID":"0268-0868","ShipCountry":"US","ShipAddress":"8949 Ramsey Alley","ShipName":"Skiles-Ratke","OrderDate":"8/29/2016","TotalPayment":"$567987.97","Status":3,"Type":2}]},\n{"RecordID":244,"FirstName":"Etti","LastName":"Ceely","Company":"Photobean","Email":"eceely6r@wisc.edu","Phone":"131-282-5025","Status":6,"Type":3,"Orders":[{"OrderID":"54868-6171","ShipCountry":"CN","ShipAddress":"7 Kennedy Court","ShipName":"Homenick Group","OrderDate":"7/29/2016","TotalPayment":"$308753.04","Status":4,"Type":1},{"OrderID":"0781-5208","ShipCountry":"FR","ShipAddress":"0 Kenwood Terrace","ShipName":"Schuppe Inc","OrderDate":"9/19/2017","TotalPayment":"$102513.55","Status":6,"Type":3},{"OrderID":"65862-157","ShipCountry":"CN","ShipAddress":"7403 Dayton Terrace","ShipName":"Blanda Inc","OrderDate":"1/29/2017","TotalPayment":"$221553.92","Status":4,"Type":3},{"OrderID":"0574-0121","ShipCountry":"CN","ShipAddress":"5 Scofield Circle","ShipName":"Ryan, Jerde and Bogisich","OrderDate":"6/25/2016","TotalPayment":"$1117455.26","Status":3,"Type":3},{"OrderID":"0409-1886","ShipCountry":"NG","ShipAddress":"3704 Carberry Center","ShipName":"Reilly-Krajcik","OrderDate":"3/6/2017","TotalPayment":"$888979.64","Status":5,"Type":2},{"OrderID":"21749-527","ShipCountry":"BR","ShipAddress":"7 Arkansas Park","ShipName":"Lakin LLC","OrderDate":"8/12/2016","TotalPayment":"$419487.30","Status":5,"Type":3}]},\n{"RecordID":245,"FirstName":"Orion","LastName":"Dahl","Company":"Fadeo","Email":"odahl6s@xrea.com","Phone":"824-773-5767","Status":6,"Type":1,"Orders":[{"OrderID":"67544-002","ShipCountry":"PH","ShipAddress":"5031 Green Pass","ShipName":"Toy Group","OrderDate":"12/2/2017","TotalPayment":"$802248.07","Status":3,"Type":2},{"OrderID":"21695-649","ShipCountry":"SE","ShipAddress":"826 Vermont Circle","ShipName":"Brown, Ankunding and Block","OrderDate":"11/13/2016","TotalPayment":"$391772.02","Status":1,"Type":2},{"OrderID":"63323-387","ShipCountry":"JO","ShipAddress":"47873 Westend Place","ShipName":"Thiel-Konopelski","OrderDate":"5/7/2016","TotalPayment":"$1116790.63","Status":5,"Type":3},{"OrderID":"0406-8962","ShipCountry":"PT","ShipAddress":"055 Brown Junction","ShipName":"Adams-Watsica","OrderDate":"2/18/2016","TotalPayment":"$1134676.59","Status":4,"Type":1},{"OrderID":"36987-1167","ShipCountry":"PT","ShipAddress":"265 Autumn Leaf Way","ShipName":"Jacobi, Pouros and Dare","OrderDate":"8/10/2017","TotalPayment":"$364838.43","Status":6,"Type":1},{"OrderID":"64578-0087","ShipCountry":"PH","ShipAddress":"8 Rockefeller Hill","ShipName":"Bergstrom, Krajcik and Weissnat","OrderDate":"12/5/2017","TotalPayment":"$193494.17","Status":5,"Type":2},{"OrderID":"65954-553","ShipCountry":"RU","ShipAddress":"99 Utah Lane","ShipName":"Braun-Kris","OrderDate":"2/22/2017","TotalPayment":"$759612.71","Status":6,"Type":1},{"OrderID":"0113-0145","ShipCountry":"JP","ShipAddress":"65635 Eagan Circle","ShipName":"Kirlin, Kemmer and Schulist","OrderDate":"1/1/2016","TotalPayment":"$59266.26","Status":4,"Type":1},{"OrderID":"57344-154","ShipCountry":"CN","ShipAddress":"9 Jenifer Terrace","ShipName":"Rutherford-Kohler","OrderDate":"2/16/2016","TotalPayment":"$488559.46","Status":2,"Type":2},{"OrderID":"33344-006","ShipCountry":"CN","ShipAddress":"6996 Maple Pass","ShipName":"Rath and Sons","OrderDate":"9/15/2017","TotalPayment":"$383634.59","Status":6,"Type":3},{"OrderID":"51672-1304","ShipCountry":"BG","ShipAddress":"5 Parkside Hill","ShipName":"Hyatt-Hessel","OrderDate":"7/3/2017","TotalPayment":"$777793.16","Status":3,"Type":1},{"OrderID":"49348-487","ShipCountry":"SE","ShipAddress":"1648 Farmco Park","ShipName":"Schamberger, Krajcik and Streich","OrderDate":"6/30/2017","TotalPayment":"$810371.71","Status":6,"Type":3},{"OrderID":"55289-147","ShipCountry":"CN","ShipAddress":"00 Clyde Gallagher Parkway","ShipName":"Klocko LLC","OrderDate":"3/7/2017","TotalPayment":"$64891.27","Status":4,"Type":2},{"OrderID":"43063-246","ShipCountry":"PS","ShipAddress":"15306 Randy Center","ShipName":"Maggio Inc","OrderDate":"2/10/2016","TotalPayment":"$1161357.39","Status":5,"Type":1},{"OrderID":"53329-946","ShipCountry":"CN","ShipAddress":"1175 Fallview Street","ShipName":"Kuhlman, Wunsch and Leuschke","OrderDate":"3/15/2017","TotalPayment":"$517098.40","Status":2,"Type":3},{"OrderID":"55154-5128","ShipCountry":"CN","ShipAddress":"52257 Union Point","ShipName":"Schamberger and Sons","OrderDate":"9/24/2017","TotalPayment":"$521145.91","Status":6,"Type":3},{"OrderID":"0615-6553","ShipCountry":"ID","ShipAddress":"69 Lakewood Alley","ShipName":"Weber Inc","OrderDate":"3/20/2016","TotalPayment":"$1065839.12","Status":6,"Type":3},{"OrderID":"13107-168","ShipCountry":"PE","ShipAddress":"80756 Lake View Point","ShipName":"Conroy, Hirthe and Nikolaus","OrderDate":"9/5/2016","TotalPayment":"$851810.70","Status":4,"Type":2},{"OrderID":"0008-1179","ShipCountry":"VE","ShipAddress":"19 Manley Trail","ShipName":"Hahn Group","OrderDate":"10/3/2016","TotalPayment":"$155461.68","Status":4,"Type":3}]},\n{"RecordID":246,"FirstName":"Florenza","LastName":"Jersh","Company":"LiveZ","Email":"fjersh6t@bloglines.com","Phone":"844-434-9352","Status":5,"Type":1,"Orders":[{"OrderID":"57910-403","ShipCountry":"CN","ShipAddress":"66 Graceland Point","ShipName":"Schaefer-Hahn","OrderDate":"12/14/2017","TotalPayment":"$504004.30","Status":4,"Type":2},{"OrderID":"0113-0393","ShipCountry":"PL","ShipAddress":"5058 Autumn Leaf Terrace","ShipName":"Effertz-Konopelski","OrderDate":"2/17/2017","TotalPayment":"$1042050.50","Status":5,"Type":1},{"OrderID":"49349-607","ShipCountry":"CN","ShipAddress":"707 Hintze Parkway","ShipName":"Halvorson, Kemmer and Pfannerstill","OrderDate":"1/10/2016","TotalPayment":"$736758.94","Status":5,"Type":3},{"OrderID":"0615-7521","ShipCountry":"MN","ShipAddress":"362 Dovetail Lane","ShipName":"DuBuque Inc","OrderDate":"5/10/2017","TotalPayment":"$163298.31","Status":2,"Type":1},{"OrderID":"51079-699","ShipCountry":"NL","ShipAddress":"8579 Larry Place","ShipName":"Skiles, Gleichner and Hirthe","OrderDate":"7/1/2017","TotalPayment":"$802139.85","Status":3,"Type":1},{"OrderID":"61941-0082","ShipCountry":"NO","ShipAddress":"3 Morrow Pass","ShipName":"Cronin-Monahan","OrderDate":"5/15/2016","TotalPayment":"$562448.92","Status":1,"Type":1},{"OrderID":"50436-7376","ShipCountry":"AL","ShipAddress":"1 Eagle Crest Park","ShipName":"Homenick and Sons","OrderDate":"1/27/2016","TotalPayment":"$173121.74","Status":3,"Type":3},{"OrderID":"68472-135","ShipCountry":"CN","ShipAddress":"00 Oak Hill","ShipName":"Nicolas Group","OrderDate":"10/13/2016","TotalPayment":"$571981.79","Status":3,"Type":3},{"OrderID":"0456-0462","ShipCountry":"CN","ShipAddress":"6151 Holmberg Place","ShipName":"Steuber-Beer","OrderDate":"12/13/2017","TotalPayment":"$159687.76","Status":1,"Type":1},{"OrderID":"61715-094","ShipCountry":"CN","ShipAddress":"517 Meadow Ridge Street","ShipName":"Mann Group","OrderDate":"11/29/2016","TotalPayment":"$1122318.95","Status":3,"Type":3},{"OrderID":"36800-300","ShipCountry":"PS","ShipAddress":"1961 Holy Cross Alley","ShipName":"Jerde-Pagac","OrderDate":"2/28/2016","TotalPayment":"$877091.45","Status":1,"Type":2},{"OrderID":"55655-122","ShipCountry":"ID","ShipAddress":"00834 Sullivan Center","ShipName":"Steuber, Fritsch and Eichmann","OrderDate":"5/14/2016","TotalPayment":"$356545.98","Status":1,"Type":3},{"OrderID":"67544-670","ShipCountry":"TD","ShipAddress":"46270 Goodland Center","ShipName":"Parker-Zieme","OrderDate":"12/30/2017","TotalPayment":"$1141856.94","Status":6,"Type":2},{"OrderID":"58496-600","ShipCountry":"RU","ShipAddress":"46731 Grim Park","ShipName":"Durgan LLC","OrderDate":"3/25/2017","TotalPayment":"$1028066.52","Status":5,"Type":3}]},\n{"RecordID":247,"FirstName":"Wilburt","LastName":"Baroux","Company":"Shuffletag","Email":"wbaroux6u@youku.com","Phone":"963-195-8667","Status":4,"Type":2,"Orders":[{"OrderID":"50268-264","ShipCountry":"PL","ShipAddress":"0994 Nobel Plaza","ShipName":"Predovic, Grady and Ondricka","OrderDate":"2/20/2017","TotalPayment":"$1123194.71","Status":6,"Type":1},{"OrderID":"43742-0069","ShipCountry":"BR","ShipAddress":"2 Oneill Center","ShipName":"Larkin Inc","OrderDate":"5/19/2017","TotalPayment":"$732456.84","Status":5,"Type":2},{"OrderID":"12496-1204","ShipCountry":"CN","ShipAddress":"97586 New Castle Pass","ShipName":"Ritchie-Larson","OrderDate":"7/11/2016","TotalPayment":"$93273.36","Status":5,"Type":1},{"OrderID":"54868-3114","ShipCountry":"CN","ShipAddress":"0 Gateway Park","ShipName":"Ferry, Willms and Bauch","OrderDate":"10/29/2017","TotalPayment":"$749625.16","Status":5,"Type":2},{"OrderID":"0409-7967","ShipCountry":"FR","ShipAddress":"98901 Golf View Street","ShipName":"Wyman-Koepp","OrderDate":"3/16/2017","TotalPayment":"$480757.78","Status":2,"Type":2},{"OrderID":"59898-120","ShipCountry":"GM","ShipAddress":"0659 Superior Road","ShipName":"Witting Group","OrderDate":"3/2/2017","TotalPayment":"$271114.40","Status":3,"Type":3},{"OrderID":"51079-273","ShipCountry":"CN","ShipAddress":"5 Barby Circle","ShipName":"Halvorson, Roob and Huel","OrderDate":"3/24/2017","TotalPayment":"$139735.93","Status":5,"Type":3},{"OrderID":"0591-5619","ShipCountry":"ID","ShipAddress":"814 Kim Crossing","ShipName":"Hand, Swift and Fadel","OrderDate":"1/12/2017","TotalPayment":"$1178482.03","Status":4,"Type":3},{"OrderID":"0268-1382","ShipCountry":"SE","ShipAddress":"47739 Brickson Park Avenue","ShipName":"Morissette, Schmitt and Zboncak","OrderDate":"5/18/2017","TotalPayment":"$883411.83","Status":2,"Type":2},{"OrderID":"0615-7604","ShipCountry":"CA","ShipAddress":"89425 Stuart Terrace","ShipName":"Balistreri-Robel","OrderDate":"9/25/2016","TotalPayment":"$155330.01","Status":6,"Type":3},{"OrderID":"50114-3205","ShipCountry":"PH","ShipAddress":"8 Del Sol Pass","ShipName":"Stroman Group","OrderDate":"5/5/2017","TotalPayment":"$523161.15","Status":2,"Type":1},{"OrderID":"65044-9945","ShipCountry":"BR","ShipAddress":"41 Forest Run Parkway","ShipName":"Graham LLC","OrderDate":"9/21/2017","TotalPayment":"$185394.46","Status":1,"Type":3},{"OrderID":"0722-6670","ShipCountry":"NA","ShipAddress":"084 Debra Plaza","ShipName":"Bashirian-Homenick","OrderDate":"1/9/2016","TotalPayment":"$481034.92","Status":4,"Type":1}]},\n{"RecordID":248,"FirstName":"Joane","LastName":"Vezey","Company":"Skipfire","Email":"jvezey6v@examiner.com","Phone":"728-892-5906","Status":3,"Type":2,"Orders":[{"OrderID":"49349-798","ShipCountry":"RU","ShipAddress":"27009 Debs Parkway","ShipName":"Mante-Casper","OrderDate":"8/5/2016","TotalPayment":"$1150440.97","Status":4,"Type":1},{"OrderID":"66969-6003","ShipCountry":"BR","ShipAddress":"086 Declaration Point","ShipName":"Simonis LLC","OrderDate":"11/14/2016","TotalPayment":"$865543.97","Status":5,"Type":1},{"OrderID":"76519-1000","ShipCountry":"TH","ShipAddress":"00 Ludington Lane","ShipName":"Stoltenberg, Rogahn and Armstrong","OrderDate":"11/5/2016","TotalPayment":"$735443.24","Status":4,"Type":3},{"OrderID":"0025-1831","ShipCountry":"CN","ShipAddress":"1023 Northport Avenue","ShipName":"Maggio-Casper","OrderDate":"12/21/2016","TotalPayment":"$925942.49","Status":3,"Type":3},{"OrderID":"63323-325","ShipCountry":"NL","ShipAddress":"9 Twin Pines Alley","ShipName":"Weber LLC","OrderDate":"10/16/2017","TotalPayment":"$801734.57","Status":5,"Type":2},{"OrderID":"54868-3935","ShipCountry":"CN","ShipAddress":"768 Anzinger Lane","ShipName":"Grady-Dickens","OrderDate":"1/24/2016","TotalPayment":"$1083548.04","Status":5,"Type":1},{"OrderID":"0832-0400","ShipCountry":"MX","ShipAddress":"23419 Thackeray Lane","ShipName":"Gleason-Price","OrderDate":"10/16/2017","TotalPayment":"$970578.02","Status":4,"Type":1},{"OrderID":"43269-774","ShipCountry":"RU","ShipAddress":"00 Harbort Alley","ShipName":"Dare-Swaniawski","OrderDate":"2/25/2016","TotalPayment":"$958976.40","Status":4,"Type":3},{"OrderID":"0527-1336","ShipCountry":"CN","ShipAddress":"01 Toban Plaza","ShipName":"McLaughlin Inc","OrderDate":"2/18/2017","TotalPayment":"$888380.96","Status":2,"Type":3},{"OrderID":"65162-679","ShipCountry":"CN","ShipAddress":"19015 Sundown Junction","ShipName":"Cole-Schmeler","OrderDate":"8/21/2017","TotalPayment":"$766271.60","Status":6,"Type":1},{"OrderID":"48951-1149","ShipCountry":"TH","ShipAddress":"8505 Goodland Street","ShipName":"Fahey, Reichel and Heaney","OrderDate":"12/30/2017","TotalPayment":"$1117895.18","Status":2,"Type":2},{"OrderID":"52427-272","ShipCountry":"SE","ShipAddress":"7 Paget Terrace","ShipName":"Breitenberg Inc","OrderDate":"10/3/2016","TotalPayment":"$37927.43","Status":5,"Type":1},{"OrderID":"64117-135","ShipCountry":"CN","ShipAddress":"57699 Arrowood Alley","ShipName":"Herzog-Hilll","OrderDate":"1/20/2017","TotalPayment":"$785784.13","Status":3,"Type":1},{"OrderID":"13537-491","ShipCountry":"VE","ShipAddress":"92606 Bay Pass","ShipName":"Tremblay and Sons","OrderDate":"4/11/2017","TotalPayment":"$1043589.06","Status":2,"Type":1},{"OrderID":"57627-163","ShipCountry":"TH","ShipAddress":"76 Vidon Parkway","ShipName":"Carroll, Morar and Abbott","OrderDate":"5/15/2017","TotalPayment":"$186591.50","Status":4,"Type":2}]},\n{"RecordID":249,"FirstName":"Gustavo","LastName":"Earles","Company":"Wikivu","Email":"gearles6w@ehow.com","Phone":"612-984-6223","Status":6,"Type":3,"Orders":[{"OrderID":"57520-0776","ShipCountry":"PL","ShipAddress":"7 Michigan Drive","ShipName":"Connelly LLC","OrderDate":"8/27/2017","TotalPayment":"$759980.22","Status":6,"Type":1},{"OrderID":"21130-332","ShipCountry":"NZ","ShipAddress":"0 Blackbird Lane","ShipName":"Sauer-Larson","OrderDate":"5/1/2017","TotalPayment":"$1026951.10","Status":4,"Type":3},{"OrderID":"76329-8251","ShipCountry":"CN","ShipAddress":"4 Hovde Lane","ShipName":"Stokes Inc","OrderDate":"10/1/2016","TotalPayment":"$293932.73","Status":3,"Type":2},{"OrderID":"68084-338","ShipCountry":"PH","ShipAddress":"5645 Eastlawn Avenue","ShipName":"Jacobi-Towne","OrderDate":"5/19/2016","TotalPayment":"$742271.72","Status":4,"Type":3},{"OrderID":"50865-050","ShipCountry":"CN","ShipAddress":"7 Bartelt Center","ShipName":"Kulas-Douglas","OrderDate":"2/8/2016","TotalPayment":"$984513.93","Status":4,"Type":1},{"OrderID":"48951-8169","ShipCountry":"CN","ShipAddress":"1 Morrow Circle","ShipName":"Franecki, Zboncak and Hessel","OrderDate":"4/25/2016","TotalPayment":"$374691.38","Status":5,"Type":1}]},\n{"RecordID":250,"FirstName":"Laural","LastName":"Tregido","Company":"Zoozzy","Email":"ltregido6x@github.com","Phone":"288-946-1247","Status":2,"Type":2,"Orders":[{"OrderID":"0013-2626","ShipCountry":"ID","ShipAddress":"5177 Amoth Crossing","ShipName":"Toy and Sons","OrderDate":"3/11/2017","TotalPayment":"$745240.20","Status":3,"Type":3},{"OrderID":"64141-008","ShipCountry":"LU","ShipAddress":"2 Tennessee Point","ShipName":"Graham, Nitzsche and Reynolds","OrderDate":"4/29/2016","TotalPayment":"$120020.91","Status":6,"Type":3},{"OrderID":"60760-229","ShipCountry":"BR","ShipAddress":"7589 Schmedeman Road","ShipName":"Lebsack-Reilly","OrderDate":"5/8/2016","TotalPayment":"$1145219.98","Status":5,"Type":3},{"OrderID":"24208-398","ShipCountry":"CN","ShipAddress":"8571 Packers Avenue","ShipName":"Wuckert, Predovic and Rutherford","OrderDate":"6/8/2016","TotalPayment":"$1153309.16","Status":2,"Type":3},{"OrderID":"63667-941","ShipCountry":"CN","ShipAddress":"5584 Kingsford Crossing","ShipName":"Kris LLC","OrderDate":"10/3/2016","TotalPayment":"$350544.94","Status":3,"Type":1},{"OrderID":"76485-1024","ShipCountry":"BR","ShipAddress":"7082 Buhler Trail","ShipName":"Rogahn, Rogahn and Larkin","OrderDate":"3/8/2017","TotalPayment":"$163381.07","Status":1,"Type":2},{"OrderID":"35356-999","ShipCountry":"CN","ShipAddress":"06838 Spenser Parkway","ShipName":"Abernathy Inc","OrderDate":"8/20/2017","TotalPayment":"$578130.34","Status":6,"Type":2},{"OrderID":"44911-0082","ShipCountry":"CN","ShipAddress":"55 Granby Plaza","ShipName":"Hessel, Osinski and Trantow","OrderDate":"7/18/2017","TotalPayment":"$782897.45","Status":3,"Type":3},{"OrderID":"63629-1260","ShipCountry":"FR","ShipAddress":"129 Del Sol Court","ShipName":"Ferry, Gerhold and Johns","OrderDate":"3/23/2016","TotalPayment":"$686047.88","Status":5,"Type":1},{"OrderID":"56062-094","ShipCountry":"GH","ShipAddress":"94726 Swallow Avenue","ShipName":"Carroll, Halvorson and Erdman","OrderDate":"12/6/2017","TotalPayment":"$434479.33","Status":3,"Type":1},{"OrderID":"34645-5008","ShipCountry":"CN","ShipAddress":"483 Boyd Parkway","ShipName":"Donnelly, Tromp and Jacobi","OrderDate":"9/29/2016","TotalPayment":"$475950.38","Status":6,"Type":3},{"OrderID":"0019-9893","ShipCountry":"NG","ShipAddress":"82019 Carey Alley","ShipName":"Harvey, Huels and Graham","OrderDate":"12/26/2017","TotalPayment":"$88125.62","Status":6,"Type":1},{"OrderID":"16590-005","ShipCountry":"RU","ShipAddress":"55935 Wayridge Drive","ShipName":"Jerde, Davis and Davis","OrderDate":"3/13/2017","TotalPayment":"$1173487.22","Status":6,"Type":1},{"OrderID":"48951-1224","ShipCountry":"PH","ShipAddress":"365 Birchwood Drive","ShipName":"Dare and Sons","OrderDate":"8/21/2016","TotalPayment":"$324858.21","Status":4,"Type":2}]},\n{"RecordID":251,"FirstName":"Ignaz","LastName":"Dicker","Company":"Livetube","Email":"idicker6y@google.pl","Phone":"879-885-0713","Status":6,"Type":3,"Orders":[{"OrderID":"67938-0826","ShipCountry":"RU","ShipAddress":"832 Talisman Point","ShipName":"Jast-Hermann","OrderDate":"4/18/2016","TotalPayment":"$776853.28","Status":1,"Type":1},{"OrderID":"33261-389","ShipCountry":"PY","ShipAddress":"13 East Road","ShipName":"Carter Group","OrderDate":"7/14/2017","TotalPayment":"$171477.62","Status":4,"Type":3},{"OrderID":"0126-0135","ShipCountry":"UG","ShipAddress":"5256 Muir Point","ShipName":"Considine Group","OrderDate":"9/3/2016","TotalPayment":"$160204.26","Status":4,"Type":1},{"OrderID":"68599-5306","ShipCountry":"JP","ShipAddress":"43091 Esker Junction","ShipName":"Miller-Armstrong","OrderDate":"9/3/2016","TotalPayment":"$215647.88","Status":4,"Type":3},{"OrderID":"51389-201","ShipCountry":"CN","ShipAddress":"72 Hoard Trail","ShipName":"Monahan, Fisher and Ruecker","OrderDate":"1/28/2017","TotalPayment":"$100630.36","Status":3,"Type":2}]},\n{"RecordID":252,"FirstName":"Albertina","LastName":"Alderwick","Company":"Devcast","Email":"aalderwick6z@domainmarket.com","Phone":"307-542-4069","Status":4,"Type":3,"Orders":[{"OrderID":"37205-742","ShipCountry":"NG","ShipAddress":"8 Del Mar Circle","ShipName":"Rohan and Sons","OrderDate":"7/17/2017","TotalPayment":"$974493.03","Status":3,"Type":3},{"OrderID":"51346-068","ShipCountry":"YE","ShipAddress":"11386 Steensland Court","ShipName":"Schumm, Kris and Morar","OrderDate":"6/24/2017","TotalPayment":"$348977.89","Status":5,"Type":2},{"OrderID":"68382-130","ShipCountry":"US","ShipAddress":"8038 Stuart Parkway","ShipName":"Gutkowski LLC","OrderDate":"1/14/2017","TotalPayment":"$645083.29","Status":3,"Type":2},{"OrderID":"52124-1166","ShipCountry":"UA","ShipAddress":"3 Bultman Terrace","ShipName":"Jast-Windler","OrderDate":"5/27/2016","TotalPayment":"$1186950.41","Status":1,"Type":3},{"OrderID":"63187-140","ShipCountry":"NG","ShipAddress":"7112 Spenser Avenue","ShipName":"Kris-Stanton","OrderDate":"8/4/2017","TotalPayment":"$524936.17","Status":1,"Type":3},{"OrderID":"54868-5121","ShipCountry":"RS","ShipAddress":"9473 Riverside Road","ShipName":"Goodwin Group","OrderDate":"2/26/2017","TotalPayment":"$761800.74","Status":4,"Type":3},{"OrderID":"0378-5201","ShipCountry":"CN","ShipAddress":"5 Evergreen Place","ShipName":"Upton, Konopelski and Franecki","OrderDate":"8/15/2016","TotalPayment":"$140885.71","Status":4,"Type":3},{"OrderID":"10812-329","ShipCountry":"RU","ShipAddress":"26 Warbler Avenue","ShipName":"Schneider Inc","OrderDate":"3/10/2017","TotalPayment":"$216054.30","Status":1,"Type":3},{"OrderID":"54575-278","ShipCountry":"BH","ShipAddress":"74 Kings Pass","ShipName":"Hane, Roberts and O\'Keefe","OrderDate":"6/11/2017","TotalPayment":"$334275.84","Status":2,"Type":1},{"OrderID":"21695-033","ShipCountry":"CN","ShipAddress":"002 Dottie Avenue","ShipName":"Waters-Walsh","OrderDate":"11/30/2016","TotalPayment":"$903418.03","Status":4,"Type":1},{"OrderID":"68180-757","ShipCountry":"CN","ShipAddress":"89708 Dwight Circle","ShipName":"Kling, Corkery and Labadie","OrderDate":"12/16/2016","TotalPayment":"$539581.44","Status":2,"Type":1},{"OrderID":"0378-6610","ShipCountry":"ID","ShipAddress":"00 Gateway Trail","ShipName":"Robel and Sons","OrderDate":"2/19/2017","TotalPayment":"$339770.09","Status":5,"Type":3},{"OrderID":"0093-0029","ShipCountry":"RU","ShipAddress":"9 Green Lane","ShipName":"Little Inc","OrderDate":"4/15/2016","TotalPayment":"$881409.61","Status":6,"Type":3},{"OrderID":"21695-689","ShipCountry":"PT","ShipAddress":"0117 Graedel Circle","ShipName":"Johnson Group","OrderDate":"8/18/2016","TotalPayment":"$499346.05","Status":5,"Type":1}]},\n{"RecordID":253,"FirstName":"Hershel","LastName":"Dufour","Company":"Shuffledrive","Email":"hdufour70@statcounter.com","Phone":"213-953-2064","Status":2,"Type":1,"Orders":[{"OrderID":"65862-189","ShipCountry":"RU","ShipAddress":"9042 Mosinee Drive","ShipName":"Leannon, Bergnaum and Leffler","OrderDate":"7/22/2017","TotalPayment":"$798231.14","Status":6,"Type":3},{"OrderID":"31722-422","ShipCountry":"ID","ShipAddress":"95770 Ronald Regan Point","ShipName":"Hyatt-Eichmann","OrderDate":"8/6/2017","TotalPayment":"$769601.36","Status":2,"Type":2},{"OrderID":"50436-3945","ShipCountry":"PE","ShipAddress":"76865 Marquette Trail","ShipName":"McCullough-Sauer","OrderDate":"4/26/2016","TotalPayment":"$754337.38","Status":2,"Type":1},{"OrderID":"65862-306","ShipCountry":"ID","ShipAddress":"153 Dakota Way","ShipName":"Nitzsche-Rippin","OrderDate":"11/14/2017","TotalPayment":"$964419.04","Status":3,"Type":2},{"OrderID":"0904-5199","ShipCountry":"ID","ShipAddress":"4 Moose Junction","ShipName":"Pollich, Hane and Doyle","OrderDate":"2/11/2016","TotalPayment":"$520496.52","Status":5,"Type":1},{"OrderID":"42584-1001","ShipCountry":"FI","ShipAddress":"3254 Brentwood Junction","ShipName":"Streich LLC","OrderDate":"2/5/2017","TotalPayment":"$940128.71","Status":1,"Type":2},{"OrderID":"52125-080","ShipCountry":"PL","ShipAddress":"0406 Thompson Street","ShipName":"Tromp LLC","OrderDate":"1/7/2017","TotalPayment":"$1128784.63","Status":5,"Type":2},{"OrderID":"62756-369","ShipCountry":"TH","ShipAddress":"5391 Macpherson Avenue","ShipName":"Williamson Inc","OrderDate":"9/21/2017","TotalPayment":"$1010049.52","Status":1,"Type":3}]},\n{"RecordID":254,"FirstName":"Lucky","LastName":"Bratt","Company":"Dabjam","Email":"lbratt71@biglobe.ne.jp","Phone":"391-230-0406","Status":6,"Type":1,"Orders":[{"OrderID":"37000-356","ShipCountry":"ID","ShipAddress":"0572 Utah Circle","ShipName":"Rutherford and Sons","OrderDate":"8/3/2016","TotalPayment":"$685386.69","Status":5,"Type":1},{"OrderID":"52376-036","ShipCountry":"IE","ShipAddress":"584 David Plaza","ShipName":"Feest and Sons","OrderDate":"1/3/2016","TotalPayment":"$606897.77","Status":3,"Type":3},{"OrderID":"0093-3109","ShipCountry":"BR","ShipAddress":"43750 Jana Avenue","ShipName":"Abbott Group","OrderDate":"3/28/2017","TotalPayment":"$830019.86","Status":3,"Type":3},{"OrderID":"42421-418","ShipCountry":"PL","ShipAddress":"8868 Clove Drive","ShipName":"Parisian, Flatley and Tremblay","OrderDate":"7/7/2017","TotalPayment":"$790724.48","Status":5,"Type":1},{"OrderID":"63323-733","ShipCountry":"CN","ShipAddress":"31942 South Crossing","ShipName":"Marvin-Goldner","OrderDate":"7/8/2017","TotalPayment":"$899232.08","Status":5,"Type":1},{"OrderID":"0268-1008","ShipCountry":"CZ","ShipAddress":"797 Merry Plaza","ShipName":"Franecki Inc","OrderDate":"9/26/2016","TotalPayment":"$388661.00","Status":5,"Type":2},{"OrderID":"52125-465","ShipCountry":"NI","ShipAddress":"56 Debs Way","ShipName":"Kuhn and Sons","OrderDate":"3/2/2017","TotalPayment":"$1108881.99","Status":5,"Type":1},{"OrderID":"33261-091","ShipCountry":"SE","ShipAddress":"8 Washington Plaza","ShipName":"Borer, Maggio and Fahey","OrderDate":"8/20/2017","TotalPayment":"$898463.64","Status":1,"Type":2},{"OrderID":"41616-760","ShipCountry":"PT","ShipAddress":"89 Rowland Road","ShipName":"McGlynn-Stanton","OrderDate":"10/26/2017","TotalPayment":"$1190249.64","Status":4,"Type":1},{"OrderID":"0268-0839","ShipCountry":"HN","ShipAddress":"4595 High Crossing Lane","ShipName":"Moore, Towne and Gorczany","OrderDate":"2/20/2017","TotalPayment":"$387344.48","Status":4,"Type":3},{"OrderID":"68084-619","ShipCountry":"RU","ShipAddress":"503 Sheridan Pass","ShipName":"O\'Reilly-Upton","OrderDate":"7/20/2017","TotalPayment":"$319624.18","Status":5,"Type":3},{"OrderID":"43857-0288","ShipCountry":"RS","ShipAddress":"90 Dottie Alley","ShipName":"Jerde, Schroeder and Denesik","OrderDate":"9/3/2016","TotalPayment":"$434717.83","Status":2,"Type":2},{"OrderID":"50184-1026","ShipCountry":"BR","ShipAddress":"92 Vermont Circle","ShipName":"Rippin Inc","OrderDate":"4/15/2017","TotalPayment":"$497617.80","Status":1,"Type":1},{"OrderID":"56062-090","ShipCountry":"RU","ShipAddress":"5 Derek Street","ShipName":"Blick, McLaughlin and Marvin","OrderDate":"10/6/2016","TotalPayment":"$543825.88","Status":4,"Type":1},{"OrderID":"12462-600","ShipCountry":"KZ","ShipAddress":"3155 Packers Circle","ShipName":"D\'Amore-Bechtelar","OrderDate":"11/8/2016","TotalPayment":"$1096416.64","Status":1,"Type":3},{"OrderID":"21695-424","ShipCountry":"RU","ShipAddress":"09434 Jay Terrace","ShipName":"Romaguera Group","OrderDate":"9/27/2017","TotalPayment":"$963507.73","Status":2,"Type":3},{"OrderID":"43063-288","ShipCountry":"AR","ShipAddress":"41 Arapahoe Crossing","ShipName":"Corkery, Kris and Ratke","OrderDate":"10/17/2017","TotalPayment":"$871482.72","Status":3,"Type":1},{"OrderID":"53808-0948","ShipCountry":"PL","ShipAddress":"70334 Arkansas Plaza","ShipName":"Goyette LLC","OrderDate":"3/12/2017","TotalPayment":"$287567.75","Status":3,"Type":2}]},\n{"RecordID":255,"FirstName":"Horatius","LastName":"Sneath","Company":"Meezzy","Email":"hsneath72@fotki.com","Phone":"600-301-8740","Status":3,"Type":2,"Orders":[{"OrderID":"43538-101","ShipCountry":"UG","ShipAddress":"7 Luster Court","ShipName":"Gaylord and Sons","OrderDate":"4/18/2016","TotalPayment":"$1107474.38","Status":4,"Type":2},{"OrderID":"11523-7365","ShipCountry":"ID","ShipAddress":"8020 Hudson Way","ShipName":"Mohr-Barton","OrderDate":"11/16/2016","TotalPayment":"$1019954.68","Status":5,"Type":2},{"OrderID":"0781-3356","ShipCountry":"PT","ShipAddress":"7 Old Shore Alley","ShipName":"Langosh Group","OrderDate":"12/10/2016","TotalPayment":"$770686.92","Status":3,"Type":2},{"OrderID":"76519-1009","ShipCountry":"ML","ShipAddress":"64 Crowley Road","ShipName":"Schoen Group","OrderDate":"5/1/2017","TotalPayment":"$113080.52","Status":4,"Type":1},{"OrderID":"0264-7780","ShipCountry":"RU","ShipAddress":"60 Hagan Court","ShipName":"Beer and Sons","OrderDate":"12/2/2016","TotalPayment":"$1113878.72","Status":4,"Type":3},{"OrderID":"63941-312","ShipCountry":"PT","ShipAddress":"4 Westridge Point","ShipName":"Murray-Mann","OrderDate":"1/29/2017","TotalPayment":"$1042968.19","Status":2,"Type":3},{"OrderID":"13985-529","ShipCountry":"MU","ShipAddress":"3800 Warbler Alley","ShipName":"Kshlerin and Sons","OrderDate":"6/29/2016","TotalPayment":"$562805.94","Status":2,"Type":2},{"OrderID":"0338-1119","ShipCountry":"BA","ShipAddress":"61945 Logan Avenue","ShipName":"Goyette-Leffler","OrderDate":"4/10/2016","TotalPayment":"$335758.94","Status":1,"Type":1},{"OrderID":"54575-140","ShipCountry":"KI","ShipAddress":"61 Weeping Birch Junction","ShipName":"Frami-Emard","OrderDate":"2/13/2016","TotalPayment":"$877911.41","Status":6,"Type":1},{"OrderID":"42002-516","ShipCountry":"ID","ShipAddress":"31037 Longview Drive","ShipName":"Marvin-Beatty","OrderDate":"1/2/2017","TotalPayment":"$548430.47","Status":5,"Type":3},{"OrderID":"54868-0816","ShipCountry":"CN","ShipAddress":"2 Prairie Rose Drive","ShipName":"Rutherford Inc","OrderDate":"6/25/2017","TotalPayment":"$872413.56","Status":4,"Type":1},{"OrderID":"0781-5782","ShipCountry":"ZM","ShipAddress":"425 Moland Alley","ShipName":"Lakin, Mann and Keeling","OrderDate":"6/5/2016","TotalPayment":"$56940.35","Status":2,"Type":1},{"OrderID":"10742-1204","ShipCountry":"JP","ShipAddress":"111 Main Street","ShipName":"Boehm LLC","OrderDate":"7/4/2016","TotalPayment":"$15590.83","Status":4,"Type":1},{"OrderID":"0378-0577","ShipCountry":"DE","ShipAddress":"0 Fordem Street","ShipName":"Sanford-Frami","OrderDate":"12/27/2016","TotalPayment":"$79735.72","Status":2,"Type":2},{"OrderID":"64159-8952","ShipCountry":"RU","ShipAddress":"668 Stuart Alley","ShipName":"Hodkiewicz-Labadie","OrderDate":"6/17/2017","TotalPayment":"$86271.10","Status":5,"Type":2},{"OrderID":"57664-368","ShipCountry":"PH","ShipAddress":"78788 Gina Center","ShipName":"Davis, Abshire and Mann","OrderDate":"4/14/2016","TotalPayment":"$905059.76","Status":2,"Type":2},{"OrderID":"40042-047","ShipCountry":"ID","ShipAddress":"77760 Shasta Park","ShipName":"Ryan-Streich","OrderDate":"8/7/2017","TotalPayment":"$140597.77","Status":6,"Type":3}]},\n{"RecordID":256,"FirstName":"Donielle","LastName":"De Morena","Company":"Gigazoom","Email":"ddemorena73@time.com","Phone":"501-701-6314","Status":6,"Type":2,"Orders":[{"OrderID":"0065-0355","ShipCountry":"JP","ShipAddress":"85650 Continental Place","ShipName":"Hartmann, Strosin and Hilll","OrderDate":"11/8/2017","TotalPayment":"$33669.76","Status":5,"Type":1},{"OrderID":"11822-3351","ShipCountry":"RU","ShipAddress":"15116 Thompson Park","ShipName":"Hermiston-Mueller","OrderDate":"1/15/2016","TotalPayment":"$1097762.70","Status":1,"Type":3},{"OrderID":"57344-123","ShipCountry":"BR","ShipAddress":"79699 Doe Crossing Avenue","ShipName":"Yundt, Hoppe and Grimes","OrderDate":"11/18/2017","TotalPayment":"$149733.47","Status":6,"Type":1},{"OrderID":"37000-143","ShipCountry":"CN","ShipAddress":"4 Havey Plaza","ShipName":"Pfeffer, Mann and Krajcik","OrderDate":"8/11/2016","TotalPayment":"$1086668.01","Status":6,"Type":1},{"OrderID":"63323-599","ShipCountry":"MQ","ShipAddress":"6 Gale Park","ShipName":"Rogahn LLC","OrderDate":"5/30/2016","TotalPayment":"$943076.17","Status":4,"Type":2},{"OrderID":"54973-0605","ShipCountry":"PH","ShipAddress":"8 Banding Parkway","ShipName":"Prosacco, Mayert and Abshire","OrderDate":"8/15/2017","TotalPayment":"$135226.94","Status":5,"Type":2},{"OrderID":"61924-102","ShipCountry":"ID","ShipAddress":"3240 Lien Plaza","ShipName":"Wilderman, Torp and Ullrich","OrderDate":"6/19/2017","TotalPayment":"$926813.49","Status":3,"Type":1},{"OrderID":"63868-965","ShipCountry":"CN","ShipAddress":"8 Hanover Crossing","ShipName":"Cormier-Quitzon","OrderDate":"7/12/2017","TotalPayment":"$299501.00","Status":5,"Type":3},{"OrderID":"50383-700","ShipCountry":"CN","ShipAddress":"45 Green Drive","ShipName":"Frami, Yost and Denesik","OrderDate":"6/7/2016","TotalPayment":"$1158878.07","Status":6,"Type":1},{"OrderID":"36987-2900","ShipCountry":"ID","ShipAddress":"223 Farwell Park","ShipName":"Stokes Group","OrderDate":"3/1/2017","TotalPayment":"$970229.61","Status":2,"Type":1},{"OrderID":"49631-212","ShipCountry":"AM","ShipAddress":"016 Hazelcrest Drive","ShipName":"Langworth-Ondricka","OrderDate":"8/21/2017","TotalPayment":"$352615.13","Status":6,"Type":3},{"OrderID":"60681-6200","ShipCountry":"SE","ShipAddress":"4403 Ramsey Park","ShipName":"Senger-Hodkiewicz","OrderDate":"9/14/2016","TotalPayment":"$593602.84","Status":3,"Type":3},{"OrderID":"0615-7635","ShipCountry":"RS","ShipAddress":"29988 David Road","ShipName":"Simonis, Marquardt and Corwin","OrderDate":"9/30/2016","TotalPayment":"$401162.13","Status":1,"Type":2},{"OrderID":"61481-0450","ShipCountry":"MX","ShipAddress":"79 Sheridan Pass","ShipName":"Krajcik, Bergstrom and Rogahn","OrderDate":"8/25/2016","TotalPayment":"$484551.50","Status":4,"Type":3},{"OrderID":"53041-615","ShipCountry":"MW","ShipAddress":"14 Nancy Drive","ShipName":"O\'Hara, Collier and Green","OrderDate":"9/25/2017","TotalPayment":"$1091312.51","Status":5,"Type":3},{"OrderID":"61715-082","ShipCountry":"NC","ShipAddress":"848 Hazelcrest Circle","ShipName":"Gleason and Sons","OrderDate":"12/31/2016","TotalPayment":"$773966.28","Status":4,"Type":2},{"OrderID":"55154-8710","ShipCountry":"ID","ShipAddress":"39 Randy Pass","ShipName":"Dickinson LLC","OrderDate":"6/13/2017","TotalPayment":"$541208.13","Status":4,"Type":1},{"OrderID":"0135-0246","ShipCountry":"BR","ShipAddress":"4236 East Avenue","ShipName":"Brekke-Schmitt","OrderDate":"5/23/2017","TotalPayment":"$420813.60","Status":6,"Type":2}]},\n{"RecordID":257,"FirstName":"Lina","LastName":"Rainville","Company":"Mynte","Email":"lrainville74@latimes.com","Phone":"684-378-0447","Status":5,"Type":1,"Orders":[{"OrderID":"30142-227","ShipCountry":"MX","ShipAddress":"20 Waubesa Place","ShipName":"O\'Connell, Turner and McClure","OrderDate":"11/5/2016","TotalPayment":"$944523.89","Status":3,"Type":2},{"OrderID":"41250-032","ShipCountry":"NG","ShipAddress":"62 Bay Lane","ShipName":"Russel, Welch and Oberbrunner","OrderDate":"9/4/2017","TotalPayment":"$311191.67","Status":6,"Type":2},{"OrderID":"0597-0013","ShipCountry":"AR","ShipAddress":"509 Jana Hill","ShipName":"Murray-Fahey","OrderDate":"12/3/2017","TotalPayment":"$833558.60","Status":1,"Type":1},{"OrderID":"53208-471","ShipCountry":"BR","ShipAddress":"6648 Browning Park","ShipName":"Kub Inc","OrderDate":"4/10/2016","TotalPayment":"$1037032.71","Status":4,"Type":3},{"OrderID":"36987-2901","ShipCountry":"TN","ShipAddress":"7 Bultman Lane","ShipName":"Kihn-Rippin","OrderDate":"7/28/2016","TotalPayment":"$82773.27","Status":4,"Type":2},{"OrderID":"54569-0907","ShipCountry":"ID","ShipAddress":"6 Esker Road","ShipName":"Feil-Satterfield","OrderDate":"5/20/2017","TotalPayment":"$1159838.69","Status":3,"Type":1},{"OrderID":"49035-220","ShipCountry":"AG","ShipAddress":"06 Kenwood Junction","ShipName":"Zieme-Feeney","OrderDate":"9/30/2017","TotalPayment":"$265260.25","Status":2,"Type":3},{"OrderID":"49580-0334","ShipCountry":"ZW","ShipAddress":"63 Golden Leaf Junction","ShipName":"Hintz and Sons","OrderDate":"4/3/2016","TotalPayment":"$456043.54","Status":6,"Type":1},{"OrderID":"63304-538","ShipCountry":"PT","ShipAddress":"02 Schmedeman Avenue","ShipName":"Ullrich, Morar and Volkman","OrderDate":"8/17/2017","TotalPayment":"$739473.00","Status":4,"Type":3}]},\n{"RecordID":258,"FirstName":"Perkin","LastName":"Guilder","Company":"Linklinks","Email":"pguilder75@economist.com","Phone":"239-388-9415","Status":5,"Type":2,"Orders":[{"OrderID":"68703-098","ShipCountry":"CA","ShipAddress":"1 Division Terrace","ShipName":"Price-Lockman","OrderDate":"1/2/2017","TotalPayment":"$700378.30","Status":6,"Type":1},{"OrderID":"68788-7365","ShipCountry":"JP","ShipAddress":"113 Kipling Hill","ShipName":"Mitchell-Breitenberg","OrderDate":"4/15/2017","TotalPayment":"$328365.02","Status":6,"Type":1},{"OrderID":"12027-102","ShipCountry":"PT","ShipAddress":"76253 Dixon Trail","ShipName":"Graham, Murray and Predovic","OrderDate":"5/8/2017","TotalPayment":"$417878.58","Status":3,"Type":2},{"OrderID":"66993-466","ShipCountry":"ID","ShipAddress":"56644 Kennedy Avenue","ShipName":"Ruecker, Lakin and Herman","OrderDate":"5/27/2017","TotalPayment":"$1036810.31","Status":6,"Type":1},{"OrderID":"57910-200","ShipCountry":"FR","ShipAddress":"7 Loomis Trail","ShipName":"Oberbrunner-Cummerata","OrderDate":"8/14/2017","TotalPayment":"$64286.76","Status":3,"Type":1},{"OrderID":"50563-202","ShipCountry":"SE","ShipAddress":"52 Ilene Lane","ShipName":"Jast and Sons","OrderDate":"8/9/2016","TotalPayment":"$1157013.30","Status":2,"Type":2},{"OrderID":"63717-915","ShipCountry":"ID","ShipAddress":"1877 Lakeland Court","ShipName":"Schmidt-Keeling","OrderDate":"5/5/2017","TotalPayment":"$1169248.37","Status":3,"Type":1},{"OrderID":"0078-0633","ShipCountry":"CN","ShipAddress":"84198 Acker Drive","ShipName":"Marks, Walsh and Bashirian","OrderDate":"4/27/2016","TotalPayment":"$82417.63","Status":3,"Type":1},{"OrderID":"10337-434","ShipCountry":"ID","ShipAddress":"1 Vera Junction","ShipName":"Renner and Sons","OrderDate":"2/9/2016","TotalPayment":"$653572.44","Status":4,"Type":1},{"OrderID":"54868-4652","ShipCountry":"US","ShipAddress":"6 Elka Alley","ShipName":"Lindgren, Abshire and Thompson","OrderDate":"4/4/2017","TotalPayment":"$746693.96","Status":2,"Type":2},{"OrderID":"76119-1443","ShipCountry":"CN","ShipAddress":"113 Cambridge Avenue","ShipName":"Williamson, Rath and Schulist","OrderDate":"4/29/2016","TotalPayment":"$1144342.85","Status":2,"Type":1},{"OrderID":"49404-116","ShipCountry":"RU","ShipAddress":"60296 Eastwood Parkway","ShipName":"Strosin-Conn","OrderDate":"8/21/2017","TotalPayment":"$507599.48","Status":6,"Type":2},{"OrderID":"61957-1501","ShipCountry":"ID","ShipAddress":"498 3rd Parkway","ShipName":"Schuster Group","OrderDate":"7/9/2016","TotalPayment":"$1038888.52","Status":5,"Type":1},{"OrderID":"65044-1060","ShipCountry":"BR","ShipAddress":"3777 La Follette Lane","ShipName":"O\'Connell-Murray","OrderDate":"1/30/2016","TotalPayment":"$318569.42","Status":3,"Type":1},{"OrderID":"66497-0001","ShipCountry":"CN","ShipAddress":"2093 Donald Park","ShipName":"Ebert Inc","OrderDate":"1/29/2016","TotalPayment":"$883435.31","Status":2,"Type":3},{"OrderID":"54868-5565","ShipCountry":"ID","ShipAddress":"42 Raven Hill","ShipName":"Torphy, Ondricka and Wuckert","OrderDate":"3/14/2016","TotalPayment":"$890776.64","Status":5,"Type":2},{"OrderID":"75977-8142","ShipCountry":"TD","ShipAddress":"18 Bluestem Court","ShipName":"Muller-Beatty","OrderDate":"3/3/2016","TotalPayment":"$945253.69","Status":2,"Type":1}]},\n{"RecordID":259,"FirstName":"Julina","LastName":"Aubrun","Company":"Dabvine","Email":"jaubrun76@nydailynews.com","Phone":"160-434-4098","Status":3,"Type":2,"Orders":[{"OrderID":"0574-0611","ShipCountry":"CN","ShipAddress":"690 Hoepker Court","ShipName":"Effertz Inc","OrderDate":"10/16/2017","TotalPayment":"$1014598.99","Status":2,"Type":2},{"OrderID":"65044-3074","ShipCountry":"RU","ShipAddress":"4 Hanson Avenue","ShipName":"Boyer, Littel and Nitzsche","OrderDate":"2/23/2017","TotalPayment":"$768699.28","Status":5,"Type":1},{"OrderID":"76509-180","ShipCountry":"CN","ShipAddress":"2 Golf View Plaza","ShipName":"Pouros-Bailey","OrderDate":"12/10/2017","TotalPayment":"$1083245.01","Status":3,"Type":3},{"OrderID":"50436-9987","ShipCountry":"US","ShipAddress":"807 Miller Alley","ShipName":"Muller LLC","OrderDate":"8/7/2017","TotalPayment":"$606732.39","Status":6,"Type":2},{"OrderID":"76070-130","ShipCountry":"SE","ShipAddress":"377 Sauthoff Trail","ShipName":"Cormier, Vandervort and Renner","OrderDate":"6/20/2016","TotalPayment":"$97780.73","Status":2,"Type":1},{"OrderID":"41250-664","ShipCountry":"MD","ShipAddress":"045 Blaine Street","ShipName":"Miller-Kiehn","OrderDate":"7/2/2016","TotalPayment":"$370178.21","Status":3,"Type":2},{"OrderID":"0536-3990","ShipCountry":"GW","ShipAddress":"28826 Longview Trail","ShipName":"Johns-Feil","OrderDate":"3/9/2016","TotalPayment":"$118703.07","Status":3,"Type":3},{"OrderID":"0268-1366","ShipCountry":"ID","ShipAddress":"1 Arkansas Center","ShipName":"Brekke, Lubowitz and Carroll","OrderDate":"10/29/2017","TotalPayment":"$508206.56","Status":5,"Type":2},{"OrderID":"66993-875","ShipCountry":"CN","ShipAddress":"5360 Grayhawk Way","ShipName":"Mante, Mosciski and O\'Conner","OrderDate":"8/12/2017","TotalPayment":"$630855.20","Status":2,"Type":3},{"OrderID":"37000-857","ShipCountry":"UY","ShipAddress":"47238 La Follette Pass","ShipName":"Greenfelder-Bernhard","OrderDate":"5/12/2016","TotalPayment":"$713215.89","Status":4,"Type":1},{"OrderID":"37000-909","ShipCountry":"CN","ShipAddress":"30908 Morning Avenue","ShipName":"West Inc","OrderDate":"11/3/2017","TotalPayment":"$134985.64","Status":3,"Type":2},{"OrderID":"0781-5234","ShipCountry":"MY","ShipAddress":"66 1st Junction","ShipName":"Lebsack, Wyman and Fritsch","OrderDate":"1/20/2016","TotalPayment":"$846459.27","Status":2,"Type":3},{"OrderID":"54569-3689","ShipCountry":"CN","ShipAddress":"776 Anniversary Trail","ShipName":"Cronin Group","OrderDate":"4/3/2017","TotalPayment":"$562774.72","Status":2,"Type":3},{"OrderID":"62080-0101","ShipCountry":"JP","ShipAddress":"851 Kinsman Point","ShipName":"Kub Inc","OrderDate":"7/9/2017","TotalPayment":"$263263.08","Status":2,"Type":2},{"OrderID":"0703-4768","ShipCountry":"CA","ShipAddress":"6437 Arizona Center","ShipName":"Douglas LLC","OrderDate":"7/29/2017","TotalPayment":"$374359.08","Status":2,"Type":1},{"OrderID":"54973-2915","ShipCountry":"BR","ShipAddress":"3562 Rowland Hill","ShipName":"Batz, Flatley and Torphy","OrderDate":"6/23/2016","TotalPayment":"$399268.40","Status":4,"Type":3},{"OrderID":"64679-572","ShipCountry":"ID","ShipAddress":"286 Hintze Drive","ShipName":"Gaylord Inc","OrderDate":"4/1/2017","TotalPayment":"$777857.69","Status":1,"Type":1},{"OrderID":"52125-559","ShipCountry":"TH","ShipAddress":"59 Sutteridge Street","ShipName":"Dooley-Koelpin","OrderDate":"8/15/2017","TotalPayment":"$830663.10","Status":6,"Type":1},{"OrderID":"68016-227","ShipCountry":"CD","ShipAddress":"6272 Donald Street","ShipName":"Walter-Sauer","OrderDate":"3/20/2017","TotalPayment":"$549906.60","Status":4,"Type":1},{"OrderID":"54868-4278","ShipCountry":"US","ShipAddress":"89493 Wayridge Terrace","ShipName":"Bins-Miller","OrderDate":"7/22/2016","TotalPayment":"$295309.34","Status":5,"Type":3}]},\n{"RecordID":260,"FirstName":"Damara","LastName":"Gertz","Company":"Twinder","Email":"dgertz77@dyndns.org","Phone":"927-926-6931","Status":4,"Type":1,"Orders":[{"OrderID":"17819-1066","ShipCountry":"PL","ShipAddress":"09 Mccormick Place","ShipName":"Greenholt, Greenholt and Hyatt","OrderDate":"12/21/2017","TotalPayment":"$423290.98","Status":2,"Type":1},{"OrderID":"49348-532","ShipCountry":"CN","ShipAddress":"002 Golf Parkway","ShipName":"White, Zboncak and Rath","OrderDate":"3/26/2016","TotalPayment":"$343082.57","Status":5,"Type":1},{"OrderID":"35356-593","ShipCountry":"CN","ShipAddress":"1148 Milwaukee Center","ShipName":"Nikolaus Group","OrderDate":"7/14/2017","TotalPayment":"$767869.68","Status":2,"Type":3},{"OrderID":"37205-319","ShipCountry":"AM","ShipAddress":"25 Becker Park","ShipName":"Kautzer-Wiegand","OrderDate":"5/4/2016","TotalPayment":"$543647.55","Status":2,"Type":3},{"OrderID":"55154-2878","ShipCountry":"ID","ShipAddress":"1 Canary Way","ShipName":"Effertz-Hammes","OrderDate":"9/22/2017","TotalPayment":"$945973.36","Status":6,"Type":3},{"OrderID":"36987-2753","ShipCountry":"US","ShipAddress":"5843 Ridge Oak Center","ShipName":"Medhurst, Streich and Gislason","OrderDate":"11/18/2016","TotalPayment":"$57340.77","Status":2,"Type":2},{"OrderID":"51004-1097","ShipCountry":"PL","ShipAddress":"24 Jay Avenue","ShipName":"Cormier, Howe and Kshlerin","OrderDate":"11/24/2017","TotalPayment":"$453978.28","Status":4,"Type":2},{"OrderID":"47682-199","ShipCountry":"HN","ShipAddress":"2816 Kropf Crossing","ShipName":"Lueilwitz-Jast","OrderDate":"3/10/2017","TotalPayment":"$883453.50","Status":3,"Type":3},{"OrderID":"0409-1755","ShipCountry":"BG","ShipAddress":"9 Rusk Terrace","ShipName":"Boehm, Shanahan and Welch","OrderDate":"3/7/2017","TotalPayment":"$731023.47","Status":1,"Type":2},{"OrderID":"48951-5016","ShipCountry":"ID","ShipAddress":"0472 Northridge Junction","ShipName":"Donnelly LLC","OrderDate":"7/15/2016","TotalPayment":"$817056.10","Status":1,"Type":2},{"OrderID":"62011-0036","ShipCountry":"CA","ShipAddress":"605 Clyde Gallagher Avenue","ShipName":"Muller-Abernathy","OrderDate":"4/21/2017","TotalPayment":"$191690.39","Status":5,"Type":3}]},\n{"RecordID":261,"FirstName":"Larisa","LastName":"Matyashev","Company":"Cogibox","Email":"lmatyashev78@creativecommons.org","Phone":"592-829-7412","Status":1,"Type":2,"Orders":[{"OrderID":"21695-442","ShipCountry":"US","ShipAddress":"66 Spohn Way","ShipName":"Runolfsson, Metz and Pagac","OrderDate":"10/24/2017","TotalPayment":"$887556.15","Status":4,"Type":3},{"OrderID":"36800-485","ShipCountry":"CN","ShipAddress":"12212 East Place","ShipName":"Franecki, Zboncak and Kassulke","OrderDate":"2/14/2017","TotalPayment":"$198341.86","Status":4,"Type":2},{"OrderID":"11096-001","ShipCountry":"NG","ShipAddress":"42 Gulseth Terrace","ShipName":"Armstrong, Marquardt and Christiansen","OrderDate":"3/29/2017","TotalPayment":"$449897.66","Status":5,"Type":3},{"OrderID":"15370-101","ShipCountry":"CR","ShipAddress":"8 Bartillon Parkway","ShipName":"Donnelly Group","OrderDate":"5/22/2016","TotalPayment":"$903278.15","Status":6,"Type":1},{"OrderID":"51824-039","ShipCountry":"CN","ShipAddress":"069 Little Fleur Street","ShipName":"Hintz Inc","OrderDate":"9/27/2016","TotalPayment":"$717680.25","Status":4,"Type":2},{"OrderID":"63187-079","ShipCountry":"CN","ShipAddress":"62 Sugar Circle","ShipName":"Stark LLC","OrderDate":"11/29/2016","TotalPayment":"$875454.71","Status":4,"Type":2},{"OrderID":"76214-012","ShipCountry":"RU","ShipAddress":"3004 Di Loreto Park","ShipName":"Jenkins, Swift and Schmidt","OrderDate":"11/13/2017","TotalPayment":"$252494.34","Status":3,"Type":3},{"OrderID":"49035-108","ShipCountry":"PH","ShipAddress":"055 Pennsylvania Court","ShipName":"Osinski-Thiel","OrderDate":"11/29/2017","TotalPayment":"$202798.74","Status":2,"Type":2}]},\n{"RecordID":262,"FirstName":"Ches","LastName":"Roskeilly","Company":"Tekfly","Email":"croskeilly79@so-net.ne.jp","Phone":"943-176-5497","Status":4,"Type":3,"Orders":[{"OrderID":"0498-7500","ShipCountry":"CN","ShipAddress":"1892 Merrick Place","ShipName":"Gleason LLC","OrderDate":"10/12/2017","TotalPayment":"$1041618.49","Status":2,"Type":3},{"OrderID":"57337-047","ShipCountry":"MX","ShipAddress":"80772 Anthes Plaza","ShipName":"Mayer Inc","OrderDate":"4/21/2017","TotalPayment":"$1104199.96","Status":4,"Type":2},{"OrderID":"35356-686","ShipCountry":"PT","ShipAddress":"07320 Mayfield Way","ShipName":"Koepp, Stiedemann and Johnson","OrderDate":"3/25/2016","TotalPayment":"$358262.77","Status":2,"Type":2},{"OrderID":"59427-706","ShipCountry":"PH","ShipAddress":"25029 Bowman Point","ShipName":"Spinka-Cruickshank","OrderDate":"2/16/2017","TotalPayment":"$501215.90","Status":5,"Type":2},{"OrderID":"0338-1138","ShipCountry":"CN","ShipAddress":"772 Longview Terrace","ShipName":"Emmerich, Lebsack and Pouros","OrderDate":"6/7/2016","TotalPayment":"$698432.39","Status":5,"Type":3},{"OrderID":"55910-922","ShipCountry":"CM","ShipAddress":"950 Longview Avenue","ShipName":"Dach-Considine","OrderDate":"6/25/2017","TotalPayment":"$739638.36","Status":3,"Type":1},{"OrderID":"37000-397","ShipCountry":"ID","ShipAddress":"05342 Pankratz Park","ShipName":"Hirthe, Cassin and Hammes","OrderDate":"8/22/2016","TotalPayment":"$347496.81","Status":1,"Type":2},{"OrderID":"61919-160","ShipCountry":"IR","ShipAddress":"2372 Goodland Circle","ShipName":"Mitchell-Mraz","OrderDate":"4/15/2017","TotalPayment":"$949711.80","Status":4,"Type":1},{"OrderID":"64117-587","ShipCountry":"GR","ShipAddress":"3995 Rieder Parkway","ShipName":"Klocko Inc","OrderDate":"1/26/2017","TotalPayment":"$478947.94","Status":1,"Type":1},{"OrderID":"54575-428","ShipCountry":"RU","ShipAddress":"35 Marquette Road","ShipName":"Nienow Group","OrderDate":"1/26/2017","TotalPayment":"$812678.12","Status":1,"Type":3},{"OrderID":"54868-5551","ShipCountry":"RU","ShipAddress":"013 Rieder Point","ShipName":"Becker LLC","OrderDate":"9/12/2016","TotalPayment":"$827775.40","Status":5,"Type":1},{"OrderID":"53808-0398","ShipCountry":"HN","ShipAddress":"0 Eagan Drive","ShipName":"Watsica Inc","OrderDate":"3/30/2016","TotalPayment":"$135120.51","Status":2,"Type":1},{"OrderID":"50436-9972","ShipCountry":"CN","ShipAddress":"6467 Starling Avenue","ShipName":"Lowe-Beatty","OrderDate":"5/9/2016","TotalPayment":"$366502.38","Status":6,"Type":1}]},\n{"RecordID":263,"FirstName":"Juliette","LastName":"Daouse","Company":"Teklist","Email":"jdaouse7a@skype.com","Phone":"520-782-8374","Status":2,"Type":1,"Orders":[{"OrderID":"65044-2203","ShipCountry":"CN","ShipAddress":"502 Hintze Place","ShipName":"Kemmer, Prosacco and VonRueden","OrderDate":"2/23/2017","TotalPayment":"$1091333.82","Status":6,"Type":3},{"OrderID":"0517-2020","ShipCountry":"BR","ShipAddress":"62915 Leroy Circle","ShipName":"Rolfson-Boehm","OrderDate":"3/7/2016","TotalPayment":"$1049386.29","Status":1,"Type":2},{"OrderID":"57955-5019","ShipCountry":"PT","ShipAddress":"376 Daystar Way","ShipName":"Crooks-Harris","OrderDate":"1/4/2016","TotalPayment":"$1022250.21","Status":6,"Type":2},{"OrderID":"0536-3222","ShipCountry":"CN","ShipAddress":"4549 Laurel Crossing","ShipName":"Bauch-Predovic","OrderDate":"4/20/2016","TotalPayment":"$1091254.22","Status":5,"Type":3},{"OrderID":"64536-2220","ShipCountry":"UA","ShipAddress":"4765 Fairfield Trail","ShipName":"Waters, Cruickshank and Von","OrderDate":"9/1/2016","TotalPayment":"$1187178.78","Status":4,"Type":1},{"OrderID":"54868-5023","ShipCountry":"TH","ShipAddress":"3 Declaration Place","ShipName":"Mante and Sons","OrderDate":"9/5/2017","TotalPayment":"$17225.41","Status":5,"Type":3},{"OrderID":"0268-6122","ShipCountry":"BY","ShipAddress":"0 Grim Avenue","ShipName":"Ullrich, Beer and Dare","OrderDate":"6/3/2017","TotalPayment":"$1185108.61","Status":1,"Type":1},{"OrderID":"43063-271","ShipCountry":"CU","ShipAddress":"973 Brentwood Hill","ShipName":"Tromp-Hermiston","OrderDate":"5/21/2016","TotalPayment":"$218548.02","Status":4,"Type":3},{"OrderID":"21130-294","ShipCountry":"CZ","ShipAddress":"91 Buena Vista Terrace","ShipName":"Kunze-Ernser","OrderDate":"10/19/2017","TotalPayment":"$296704.92","Status":2,"Type":1}]},\n{"RecordID":264,"FirstName":"Christophe","LastName":"Moger","Company":"Topicblab","Email":"cmoger7b@joomla.org","Phone":"813-943-3659","Status":4,"Type":3,"Orders":[{"OrderID":"59779-305","ShipCountry":"US","ShipAddress":"1815 Michigan Alley","ShipName":"Johnston and Sons","OrderDate":"7/31/2017","TotalPayment":"$549825.63","Status":3,"Type":1},{"OrderID":"0245-0215","ShipCountry":"PS","ShipAddress":"234 Swallow Place","ShipName":"Schmitt and Sons","OrderDate":"4/27/2016","TotalPayment":"$1154695.23","Status":3,"Type":1},{"OrderID":"68428-036","ShipCountry":"MX","ShipAddress":"4641 Mccormick Drive","ShipName":"Klein, Stamm and Quigley","OrderDate":"2/20/2016","TotalPayment":"$420319.00","Status":3,"Type":1},{"OrderID":"41163-302","ShipCountry":"PE","ShipAddress":"4672 Manufacturers Road","ShipName":"Watsica-Kovacek","OrderDate":"1/21/2016","TotalPayment":"$36479.24","Status":6,"Type":3},{"OrderID":"67457-342","ShipCountry":"AR","ShipAddress":"4 Grim Point","ShipName":"Rutherford Group","OrderDate":"4/24/2017","TotalPayment":"$144812.62","Status":6,"Type":1},{"OrderID":"55714-2269","ShipCountry":"PH","ShipAddress":"6 Nancy Hill","ShipName":"Cronin Inc","OrderDate":"10/16/2017","TotalPayment":"$40168.81","Status":2,"Type":3},{"OrderID":"11673-825","ShipCountry":"KE","ShipAddress":"8 Hoffman Center","ShipName":"Weissnat-Lynch","OrderDate":"7/10/2017","TotalPayment":"$933893.58","Status":3,"Type":2},{"OrderID":"0173-0869","ShipCountry":"BR","ShipAddress":"3 Blackbird Park","ShipName":"Ziemann Inc","OrderDate":"6/3/2017","TotalPayment":"$619083.16","Status":3,"Type":3},{"OrderID":"44523-609","ShipCountry":"PH","ShipAddress":"86 Bultman Road","ShipName":"Pacocha LLC","OrderDate":"12/8/2016","TotalPayment":"$581560.02","Status":6,"Type":1},{"OrderID":"57520-0144","ShipCountry":"ID","ShipAddress":"6612 1st Point","ShipName":"Williamson LLC","OrderDate":"2/29/2016","TotalPayment":"$469999.42","Status":5,"Type":1},{"OrderID":"49371-038","ShipCountry":"CN","ShipAddress":"692 Waxwing Circle","ShipName":"Schmeler-Ledner","OrderDate":"2/8/2016","TotalPayment":"$268834.37","Status":3,"Type":1},{"OrderID":"0185-7400","ShipCountry":"PH","ShipAddress":"9842 Almo Plaza","ShipName":"Adams and Sons","OrderDate":"12/27/2017","TotalPayment":"$294177.77","Status":5,"Type":3},{"OrderID":"55533-522","ShipCountry":"AF","ShipAddress":"6179 Clyde Gallagher Plaza","ShipName":"Kuphal Inc","OrderDate":"12/28/2017","TotalPayment":"$808859.24","Status":5,"Type":1},{"OrderID":"76119-1327","ShipCountry":"CO","ShipAddress":"20 Jenifer Street","ShipName":"Haley-Mitchell","OrderDate":"7/30/2017","TotalPayment":"$147306.14","Status":5,"Type":2},{"OrderID":"14783-250","ShipCountry":"CU","ShipAddress":"1487 Caliangt Center","ShipName":"Emard, Reichert and Maggio","OrderDate":"11/17/2016","TotalPayment":"$29578.92","Status":6,"Type":2},{"OrderID":"10237-650","ShipCountry":"MX","ShipAddress":"96 Chinook Lane","ShipName":"Beier LLC","OrderDate":"3/8/2016","TotalPayment":"$301733.63","Status":1,"Type":1},{"OrderID":"51561-001","ShipCountry":"GQ","ShipAddress":"7 Northridge Drive","ShipName":"Hane LLC","OrderDate":"7/14/2016","TotalPayment":"$69385.47","Status":5,"Type":2},{"OrderID":"68968-5552","ShipCountry":"PE","ShipAddress":"8362 Maywood Trail","ShipName":"Cole LLC","OrderDate":"4/12/2016","TotalPayment":"$817651.61","Status":6,"Type":3}]},\n{"RecordID":265,"FirstName":"Hermione","LastName":"Lortz","Company":"Tanoodle","Email":"hlortz7c@netvibes.com","Phone":"547-106-8587","Status":3,"Type":3,"Orders":[{"OrderID":"67147-576","ShipCountry":"IR","ShipAddress":"9571 Dorton Hill","ShipName":"Yundt-Kirlin","OrderDate":"10/29/2016","TotalPayment":"$349397.32","Status":3,"Type":1},{"OrderID":"59779-882","ShipCountry":"JP","ShipAddress":"19 Laurel Parkway","ShipName":"Kertzmann, Kreiger and Frami","OrderDate":"4/19/2016","TotalPayment":"$974935.12","Status":2,"Type":3},{"OrderID":"61715-015","ShipCountry":"PA","ShipAddress":"0413 Corben Street","ShipName":"Gleichner LLC","OrderDate":"9/13/2016","TotalPayment":"$772469.77","Status":3,"Type":1},{"OrderID":"76331-904","ShipCountry":"BR","ShipAddress":"00 Mariners Cove Park","ShipName":"Considine, Purdy and Marks","OrderDate":"9/8/2016","TotalPayment":"$1083503.40","Status":4,"Type":1},{"OrderID":"41520-911","ShipCountry":"CR","ShipAddress":"60287 Forest Run Avenue","ShipName":"Jakubowski, Bashirian and Jakubowski","OrderDate":"8/30/2016","TotalPayment":"$147495.85","Status":1,"Type":2},{"OrderID":"67684-2000","ShipCountry":"PL","ShipAddress":"68243 Arrowood Pass","ShipName":"Cruickshank, Lubowitz and Hamill","OrderDate":"3/9/2016","TotalPayment":"$250324.36","Status":6,"Type":1},{"OrderID":"52099-8000","ShipCountry":"AR","ShipAddress":"3806 Porter Point","ShipName":"Lang and Sons","OrderDate":"8/28/2016","TotalPayment":"$151356.87","Status":1,"Type":1},{"OrderID":"49738-304","ShipCountry":"CN","ShipAddress":"08 Bashford Center","ShipName":"Kihn, Zemlak and Daniel","OrderDate":"7/17/2016","TotalPayment":"$1195625.40","Status":3,"Type":1},{"OrderID":"61601-1126","ShipCountry":"LU","ShipAddress":"300 Fairfield Pass","ShipName":"Volkman-Russel","OrderDate":"10/10/2017","TotalPayment":"$1165763.79","Status":5,"Type":2},{"OrderID":"21130-194","ShipCountry":"CN","ShipAddress":"588 Lotheville Place","ShipName":"Koch-Shanahan","OrderDate":"11/8/2017","TotalPayment":"$292840.23","Status":4,"Type":1},{"OrderID":"58118-0114","ShipCountry":"PT","ShipAddress":"8 Mariners Cove Circle","ShipName":"Nienow LLC","OrderDate":"12/15/2017","TotalPayment":"$703110.30","Status":4,"Type":3},{"OrderID":"63824-016","ShipCountry":"ID","ShipAddress":"208 Ryan Drive","ShipName":"Wehner, Ortiz and Smitham","OrderDate":"9/27/2016","TotalPayment":"$334764.10","Status":5,"Type":2}]},\n{"RecordID":266,"FirstName":"Johnna","LastName":"Lilburne","Company":"Feedbug","Email":"jlilburne7d@npr.org","Phone":"372-950-0110","Status":6,"Type":3,"Orders":[{"OrderID":"0069-2589","ShipCountry":"AR","ShipAddress":"8533 Butterfield Trail","ShipName":"Welch, Dibbert and Brekke","OrderDate":"10/19/2016","TotalPayment":"$1142923.22","Status":3,"Type":2},{"OrderID":"0781-5754","ShipCountry":"CN","ShipAddress":"325 La Follette Park","ShipName":"Lubowitz LLC","OrderDate":"10/15/2017","TotalPayment":"$1109237.48","Status":6,"Type":1},{"OrderID":"66992-340","ShipCountry":"TH","ShipAddress":"9 Carey Street","ShipName":"Rolfson-Corkery","OrderDate":"6/27/2016","TotalPayment":"$948837.08","Status":5,"Type":2},{"OrderID":"37808-467","ShipCountry":"FR","ShipAddress":"77 Mcbride Court","ShipName":"Borer-Cummerata","OrderDate":"5/21/2016","TotalPayment":"$687403.53","Status":4,"Type":1},{"OrderID":"42507-177","ShipCountry":"ZA","ShipAddress":"59971 Morning Park","ShipName":"Herman, Bode and Lockman","OrderDate":"2/4/2017","TotalPayment":"$65126.13","Status":2,"Type":2},{"OrderID":"36987-1251","ShipCountry":"LU","ShipAddress":"26 Morningstar Street","ShipName":"Jacobi-Abshire","OrderDate":"10/20/2016","TotalPayment":"$572161.64","Status":3,"Type":1},{"OrderID":"68828-148","ShipCountry":"PL","ShipAddress":"1 Thierer Place","ShipName":"Keeling, Yundt and Torp","OrderDate":"5/12/2017","TotalPayment":"$780450.05","Status":6,"Type":3},{"OrderID":"76237-257","ShipCountry":"RU","ShipAddress":"4025 Carpenter Lane","ShipName":"Runte-Sanford","OrderDate":"12/20/2017","TotalPayment":"$1088486.21","Status":4,"Type":3}]},\n{"RecordID":267,"FirstName":"Ragnar","LastName":"Scarman","Company":"Jabbersphere","Email":"rscarman7e@slashdot.org","Phone":"274-778-5500","Status":6,"Type":3,"Orders":[{"OrderID":"42549-531","ShipCountry":"ID","ShipAddress":"0 Jay Trail","ShipName":"Emard-Farrell","OrderDate":"7/19/2016","TotalPayment":"$428398.20","Status":5,"Type":1},{"OrderID":"24385-436","ShipCountry":"ID","ShipAddress":"97994 Northland Way","ShipName":"Gerhold and Sons","OrderDate":"9/27/2017","TotalPayment":"$685303.68","Status":6,"Type":1},{"OrderID":"60512-9062","ShipCountry":"HR","ShipAddress":"03754 Washington Lane","ShipName":"Purdy Group","OrderDate":"9/26/2017","TotalPayment":"$1018215.97","Status":3,"Type":2},{"OrderID":"0268-0082","ShipCountry":"MX","ShipAddress":"15560 Amoth Crossing","ShipName":"Schneider-Lakin","OrderDate":"9/24/2017","TotalPayment":"$635548.03","Status":6,"Type":3},{"OrderID":"43526-115","ShipCountry":"CN","ShipAddress":"237 American Crossing","ShipName":"Wintheiser LLC","OrderDate":"9/13/2017","TotalPayment":"$743127.05","Status":6,"Type":1},{"OrderID":"42254-302","ShipCountry":"ID","ShipAddress":"2 Bartelt Court","ShipName":"Emard Group","OrderDate":"4/17/2016","TotalPayment":"$971759.16","Status":3,"Type":2}]},\n{"RecordID":268,"FirstName":"Dominick","LastName":"Whether","Company":"Voomm","Email":"dwhether7f@uiuc.edu","Phone":"776-198-8686","Status":5,"Type":1,"Orders":[{"OrderID":"0378-3025","ShipCountry":"HT","ShipAddress":"3026 Fisk Circle","ShipName":"Bernhard Inc","OrderDate":"11/8/2016","TotalPayment":"$141695.30","Status":1,"Type":3},{"OrderID":"36987-2153","ShipCountry":"CN","ShipAddress":"78422 Magdeline Terrace","ShipName":"Stracke-Dibbert","OrderDate":"6/8/2016","TotalPayment":"$391067.38","Status":4,"Type":2},{"OrderID":"63629-5431","ShipCountry":"RU","ShipAddress":"57076 Hallows Alley","ShipName":"Schowalter and Sons","OrderDate":"2/9/2017","TotalPayment":"$466679.27","Status":2,"Type":1},{"OrderID":"58990-000","ShipCountry":"PL","ShipAddress":"1003 Susan Court","ShipName":"Bins, Cormier and Carroll","OrderDate":"8/1/2017","TotalPayment":"$1093884.97","Status":2,"Type":3},{"OrderID":"0603-5927","ShipCountry":"MK","ShipAddress":"829 Blaine Road","ShipName":"Doyle, Schiller and Watsica","OrderDate":"5/8/2017","TotalPayment":"$618902.41","Status":5,"Type":2},{"OrderID":"10812-950","ShipCountry":"PH","ShipAddress":"6270 Graceland Road","ShipName":"Runolfsdottir-Murphy","OrderDate":"7/6/2017","TotalPayment":"$759020.42","Status":5,"Type":2},{"OrderID":"50302-300","ShipCountry":"GR","ShipAddress":"70 Scoville Terrace","ShipName":"Spinka, Kulas and Johnston","OrderDate":"9/19/2016","TotalPayment":"$1078902.95","Status":6,"Type":3},{"OrderID":"0363-0113","ShipCountry":"PH","ShipAddress":"318 Manley Center","ShipName":"Satterfield Group","OrderDate":"2/14/2017","TotalPayment":"$1001278.41","Status":2,"Type":1}]},\n{"RecordID":269,"FirstName":"Shelli","LastName":"Grut","Company":"Camido","Email":"sgrut7g@51.la","Phone":"414-960-0264","Status":5,"Type":2,"Orders":[{"OrderID":"11822-8210","ShipCountry":"CN","ShipAddress":"0 Pleasure Point","ShipName":"Graham-Collins","OrderDate":"2/6/2017","TotalPayment":"$523694.18","Status":5,"Type":1},{"OrderID":"63824-343","ShipCountry":"MU","ShipAddress":"92006 Carpenter Point","ShipName":"Cummings, Herman and Pacocha","OrderDate":"3/4/2016","TotalPayment":"$374733.04","Status":3,"Type":2},{"OrderID":"68382-198","ShipCountry":"JP","ShipAddress":"4 Vidon Hill","ShipName":"Brown Inc","OrderDate":"5/16/2017","TotalPayment":"$178758.55","Status":2,"Type":1},{"OrderID":"59779-417","ShipCountry":"CN","ShipAddress":"9984 Hudson Pass","ShipName":"Jacobs, Mann and Block","OrderDate":"12/18/2016","TotalPayment":"$190401.76","Status":6,"Type":1},{"OrderID":"21130-159","ShipCountry":"KZ","ShipAddress":"881 Westerfield Street","ShipName":"Sauer, Greenfelder and Schimmel","OrderDate":"8/11/2017","TotalPayment":"$1122127.92","Status":4,"Type":3},{"OrderID":"54868-3006","ShipCountry":"FR","ShipAddress":"90386 Tony Center","ShipName":"Haag-Wilkinson","OrderDate":"11/11/2016","TotalPayment":"$764005.67","Status":1,"Type":2},{"OrderID":"0904-5282","ShipCountry":"MX","ShipAddress":"775 Ruskin Alley","ShipName":"Hayes-Hand","OrderDate":"9/20/2016","TotalPayment":"$525669.80","Status":4,"Type":3},{"OrderID":"24451-775","ShipCountry":"PL","ShipAddress":"11 Talisman Point","ShipName":"Runolfsson, Cruickshank and Crooks","OrderDate":"7/17/2016","TotalPayment":"$1048797.03","Status":3,"Type":1},{"OrderID":"49643-047","ShipCountry":"HR","ShipAddress":"7634 Shoshone Point","ShipName":"Boyle Inc","OrderDate":"5/1/2016","TotalPayment":"$1198237.28","Status":4,"Type":3},{"OrderID":"0115-1473","ShipCountry":"UA","ShipAddress":"7036 Hanson Avenue","ShipName":"Hyatt LLC","OrderDate":"7/18/2017","TotalPayment":"$712261.46","Status":6,"Type":3},{"OrderID":"55289-045","ShipCountry":"CN","ShipAddress":"119 Clarendon Drive","ShipName":"Schultz Inc","OrderDate":"7/20/2017","TotalPayment":"$80884.93","Status":4,"Type":2},{"OrderID":"43857-0073","ShipCountry":"YE","ShipAddress":"22 Vernon Drive","ShipName":"Torp-Tromp","OrderDate":"4/2/2017","TotalPayment":"$168603.50","Status":2,"Type":3}]},\n{"RecordID":270,"FirstName":"Morgana","LastName":"Pengilly","Company":"Kwimbee","Email":"mpengilly7h@ucla.edu","Phone":"831-864-1809","Status":6,"Type":2,"Orders":[{"OrderID":"22100-015","ShipCountry":"ID","ShipAddress":"52 South Circle","ShipName":"Jerde-Rogahn","OrderDate":"11/17/2017","TotalPayment":"$399626.33","Status":3,"Type":1},{"OrderID":"16252-535","ShipCountry":"PE","ShipAddress":"4 Johnson Alley","ShipName":"Kuphal and Sons","OrderDate":"1/15/2017","TotalPayment":"$742088.24","Status":3,"Type":3},{"OrderID":"49967-208","ShipCountry":"RU","ShipAddress":"16 Spenser Alley","ShipName":"Jaskolski Inc","OrderDate":"3/3/2016","TotalPayment":"$588063.03","Status":3,"Type":2},{"OrderID":"36987-2087","ShipCountry":"NO","ShipAddress":"0756 Shelley Plaza","ShipName":"O\'Conner-Becker","OrderDate":"12/26/2017","TotalPayment":"$16353.59","Status":2,"Type":2},{"OrderID":"48951-5069","ShipCountry":"HT","ShipAddress":"4390 West Plaza","ShipName":"Weimann Inc","OrderDate":"11/5/2016","TotalPayment":"$1019431.52","Status":4,"Type":2},{"OrderID":"49348-361","ShipCountry":"PH","ShipAddress":"8716 Dawn Center","ShipName":"Simonis-Predovic","OrderDate":"1/4/2017","TotalPayment":"$92271.52","Status":4,"Type":2},{"OrderID":"55566-7501","ShipCountry":"ID","ShipAddress":"67 Mallory Alley","ShipName":"Okuneva Group","OrderDate":"5/7/2017","TotalPayment":"$746313.99","Status":2,"Type":2},{"OrderID":"46122-031","ShipCountry":"SY","ShipAddress":"975 Prairie Rose Street","ShipName":"Nolan, Harris and Bosco","OrderDate":"9/23/2017","TotalPayment":"$478554.49","Status":1,"Type":3},{"OrderID":"51830-020","ShipCountry":"SV","ShipAddress":"58732 Sunnyside Court","ShipName":"Mitchell-Gaylord","OrderDate":"9/26/2017","TotalPayment":"$752817.79","Status":1,"Type":1},{"OrderID":"24488-010","ShipCountry":"JP","ShipAddress":"5186 Superior Road","ShipName":"Robel LLC","OrderDate":"9/3/2016","TotalPayment":"$955207.16","Status":2,"Type":2},{"OrderID":"52698-002","ShipCountry":"PH","ShipAddress":"3845 Reindahl Alley","ShipName":"Rau, Luettgen and Bergstrom","OrderDate":"1/26/2017","TotalPayment":"$928875.68","Status":1,"Type":2},{"OrderID":"43772-0036","ShipCountry":"GR","ShipAddress":"4 Harbort Road","ShipName":"Stehr-Runolfsson","OrderDate":"8/28/2016","TotalPayment":"$95294.30","Status":2,"Type":3},{"OrderID":"46122-157","ShipCountry":"NG","ShipAddress":"2334 Hayes Park","ShipName":"Kunze, Nader and Champlin","OrderDate":"5/20/2016","TotalPayment":"$137639.38","Status":4,"Type":3},{"OrderID":"75847-4001","ShipCountry":"RU","ShipAddress":"221 Bunting Court","ShipName":"Dach Inc","OrderDate":"9/28/2017","TotalPayment":"$539410.52","Status":5,"Type":1},{"OrderID":"48951-1030","ShipCountry":"ID","ShipAddress":"317 Elgar Crossing","ShipName":"Rath and Sons","OrderDate":"11/15/2017","TotalPayment":"$919217.01","Status":1,"Type":3}]},\n{"RecordID":271,"FirstName":"Rossie","LastName":"Grebert","Company":"Tagfeed","Email":"rgrebert7i@amazon.co.uk","Phone":"454-784-6844","Status":6,"Type":1,"Orders":[{"OrderID":"50410-020","ShipCountry":"PT","ShipAddress":"07343 Nobel Pass","ShipName":"Boehm, Gusikowski and Stroman","OrderDate":"6/6/2017","TotalPayment":"$794700.44","Status":5,"Type":1},{"OrderID":"76509-100","ShipCountry":"FR","ShipAddress":"80 Holmberg Park","ShipName":"Tromp Group","OrderDate":"8/25/2016","TotalPayment":"$212118.21","Status":4,"Type":3},{"OrderID":"0406-8003","ShipCountry":"KM","ShipAddress":"170 Memorial Plaza","ShipName":"Johns LLC","OrderDate":"10/3/2017","TotalPayment":"$675607.27","Status":2,"Type":2},{"OrderID":"55910-279","ShipCountry":"ID","ShipAddress":"00633 Oakridge Trail","ShipName":"Schmidt-Cummings","OrderDate":"9/22/2016","TotalPayment":"$289873.08","Status":1,"Type":3},{"OrderID":"21130-477","ShipCountry":"RU","ShipAddress":"6 Bunker Hill Trail","ShipName":"Denesik, Larson and Wilkinson","OrderDate":"10/11/2016","TotalPayment":"$840178.54","Status":1,"Type":1},{"OrderID":"63629-1793","ShipCountry":"ID","ShipAddress":"13 Dottie Hill","ShipName":"Stanton Inc","OrderDate":"10/16/2016","TotalPayment":"$1005869.54","Status":1,"Type":1},{"OrderID":"43857-0328","ShipCountry":"RS","ShipAddress":"21649 Atwood Center","ShipName":"Considine LLC","OrderDate":"7/2/2016","TotalPayment":"$161534.16","Status":4,"Type":3},{"OrderID":"21130-458","ShipCountry":"PH","ShipAddress":"66 Pierstorff Alley","ShipName":"O\'Connell LLC","OrderDate":"8/15/2016","TotalPayment":"$232943.29","Status":6,"Type":2},{"OrderID":"49643-420","ShipCountry":"AO","ShipAddress":"9 Lien Hill","ShipName":"Hettinger, Hauck and Cummings","OrderDate":"1/20/2016","TotalPayment":"$913932.64","Status":4,"Type":3},{"OrderID":"43251-2281","ShipCountry":"PH","ShipAddress":"908 Meadow Valley Pass","ShipName":"Senger Group","OrderDate":"5/8/2016","TotalPayment":"$448333.16","Status":5,"Type":3},{"OrderID":"55648-743","ShipCountry":"CY","ShipAddress":"6804 Northridge Junction","ShipName":"Murphy-Pacocha","OrderDate":"12/3/2017","TotalPayment":"$909279.69","Status":6,"Type":2},{"OrderID":"58118-1343","ShipCountry":"CN","ShipAddress":"3076 Pepper Wood Alley","ShipName":"Kemmer-Gutmann","OrderDate":"10/20/2016","TotalPayment":"$718226.21","Status":5,"Type":2},{"OrderID":"51824-014","ShipCountry":"BD","ShipAddress":"40 Golf View Street","ShipName":"Weimann, Welch and Bruen","OrderDate":"4/6/2017","TotalPayment":"$82617.98","Status":4,"Type":2},{"OrderID":"51285-204","ShipCountry":"NL","ShipAddress":"44007 Hallows Street","ShipName":"Ruecker LLC","OrderDate":"10/16/2017","TotalPayment":"$708882.58","Status":4,"Type":1},{"OrderID":"0615-1354","ShipCountry":"SZ","ShipAddress":"5 Wayridge Street","ShipName":"Glover, Hirthe and Torp","OrderDate":"3/7/2017","TotalPayment":"$360860.89","Status":6,"Type":3},{"OrderID":"63629-2882","ShipCountry":"GT","ShipAddress":"1 Lyons Way","ShipName":"Hickle Inc","OrderDate":"3/19/2017","TotalPayment":"$437008.42","Status":3,"Type":2},{"OrderID":"68472-135","ShipCountry":"RU","ShipAddress":"93611 Tennessee Alley","ShipName":"Towne, Wolf and Stracke","OrderDate":"7/24/2016","TotalPayment":"$985693.25","Status":3,"Type":1},{"OrderID":"0085-4353","ShipCountry":"SE","ShipAddress":"62774 Division Court","ShipName":"Auer, Wiegand and Boyle","OrderDate":"3/16/2016","TotalPayment":"$724584.18","Status":4,"Type":1}]},\n{"RecordID":272,"FirstName":"Horst","LastName":"Felmingham","Company":"Skyndu","Email":"hfelmingham7j@dot.gov","Phone":"943-479-4462","Status":6,"Type":2,"Orders":[{"OrderID":"62106-004","ShipCountry":"CN","ShipAddress":"12191 Kim Park","ShipName":"Welch-Heathcote","OrderDate":"10/14/2017","TotalPayment":"$621095.40","Status":4,"Type":3},{"OrderID":"54868-4175","ShipCountry":"AU","ShipAddress":"967 Sycamore Hill","ShipName":"Kuvalis-Skiles","OrderDate":"3/26/2016","TotalPayment":"$29711.00","Status":2,"Type":2},{"OrderID":"50436-0195","ShipCountry":"ID","ShipAddress":"79263 Melody Point","ShipName":"Powlowski and Sons","OrderDate":"5/24/2017","TotalPayment":"$1047349.34","Status":4,"Type":1},{"OrderID":"76237-134","ShipCountry":"CO","ShipAddress":"12 Waxwing Court","ShipName":"Raynor Inc","OrderDate":"4/12/2017","TotalPayment":"$818380.24","Status":5,"Type":3},{"OrderID":"59351-0333","ShipCountry":"LV","ShipAddress":"46780 Oak Parkway","ShipName":"D\'Amore LLC","OrderDate":"1/21/2016","TotalPayment":"$1112847.30","Status":1,"Type":1},{"OrderID":"67046-223","ShipCountry":"CA","ShipAddress":"45148 Lakewood Gardens Drive","ShipName":"Schmeler Group","OrderDate":"9/1/2017","TotalPayment":"$1032000.27","Status":5,"Type":3},{"OrderID":"53808-0452","ShipCountry":"CA","ShipAddress":"88 Meadow Valley Circle","ShipName":"Schaefer, Funk and Raynor","OrderDate":"5/27/2016","TotalPayment":"$777309.33","Status":1,"Type":3},{"OrderID":"67544-102","ShipCountry":"RU","ShipAddress":"11 Helena Drive","ShipName":"Batz, Kub and McCullough","OrderDate":"6/2/2017","TotalPayment":"$912391.90","Status":6,"Type":1},{"OrderID":"68727-600","ShipCountry":"SY","ShipAddress":"0 Mcguire Lane","ShipName":"Feest-Swaniawski","OrderDate":"11/10/2016","TotalPayment":"$175823.15","Status":4,"Type":2},{"OrderID":"54868-5249","ShipCountry":"PT","ShipAddress":"8 Merchant Parkway","ShipName":"Pfannerstill Inc","OrderDate":"2/22/2017","TotalPayment":"$1099461.03","Status":4,"Type":2}]},\n{"RecordID":273,"FirstName":"Reynold","LastName":"Martt","Company":"Plajo","Email":"rmartt7k@mit.edu","Phone":"137-978-6044","Status":3,"Type":1,"Orders":[{"OrderID":"0093-0026","ShipCountry":"PE","ShipAddress":"72397 Hauk Circle","ShipName":"Batz, Bahringer and Spencer","OrderDate":"10/3/2016","TotalPayment":"$204395.67","Status":5,"Type":3},{"OrderID":"30142-930","ShipCountry":"GR","ShipAddress":"786 Derek Crossing","ShipName":"Feeney, Hilpert and Hoppe","OrderDate":"11/15/2016","TotalPayment":"$63905.96","Status":5,"Type":2},{"OrderID":"13537-002","ShipCountry":"AL","ShipAddress":"97 Walton Point","ShipName":"Ruecker and Sons","OrderDate":"2/20/2016","TotalPayment":"$426902.96","Status":1,"Type":2},{"OrderID":"24385-301","ShipCountry":"PH","ShipAddress":"2 Rockefeller Point","ShipName":"Cummerata, Rolfson and Fadel","OrderDate":"6/26/2016","TotalPayment":"$1186173.95","Status":3,"Type":3},{"OrderID":"63629-4788","ShipCountry":"PT","ShipAddress":"8146 Express Place","ShipName":"Bailey Inc","OrderDate":"8/30/2016","TotalPayment":"$1112759.17","Status":2,"Type":2},{"OrderID":"49852-034","ShipCountry":"ID","ShipAddress":"2570 Veith Court","ShipName":"Koelpin Inc","OrderDate":"1/26/2016","TotalPayment":"$863264.10","Status":3,"Type":3},{"OrderID":"42421-326","ShipCountry":"CN","ShipAddress":"3 Novick Junction","ShipName":"Hermann-Cruickshank","OrderDate":"11/9/2017","TotalPayment":"$786823.21","Status":5,"Type":2},{"OrderID":"53808-0547","ShipCountry":"CN","ShipAddress":"081 Warrior Lane","ShipName":"Batz, Ward and McCullough","OrderDate":"1/4/2016","TotalPayment":"$767992.30","Status":5,"Type":3}]},\n{"RecordID":274,"FirstName":"Nathanael","LastName":"Wainscoat","Company":"Rhybox","Email":"nwainscoat7l@reddit.com","Phone":"250-703-6420","Status":3,"Type":2,"Orders":[{"OrderID":"59779-831","ShipCountry":"NG","ShipAddress":"1958 Sullivan Place","ShipName":"Towne Group","OrderDate":"9/25/2016","TotalPayment":"$916740.35","Status":3,"Type":1},{"OrderID":"76020-200","ShipCountry":"VN","ShipAddress":"8368 Ridgeview Plaza","ShipName":"Heaney Group","OrderDate":"5/24/2017","TotalPayment":"$183037.44","Status":6,"Type":1},{"OrderID":"36987-3028","ShipCountry":"PH","ShipAddress":"5 Grasskamp Circle","ShipName":"Heller Group","OrderDate":"1/24/2017","TotalPayment":"$147011.74","Status":3,"Type":3},{"OrderID":"55312-437","ShipCountry":"PH","ShipAddress":"537 Bunker Hill Plaza","ShipName":"Effertz Group","OrderDate":"10/11/2017","TotalPayment":"$28207.11","Status":2,"Type":3},{"OrderID":"51138-065","ShipCountry":"PH","ShipAddress":"9 Hoard Park","ShipName":"O\'Hara-Schmeler","OrderDate":"12/14/2016","TotalPayment":"$1124565.25","Status":2,"Type":1},{"OrderID":"47682-578","ShipCountry":"CZ","ShipAddress":"719 Green Court","ShipName":"Renner, Beatty and Abernathy","OrderDate":"11/6/2017","TotalPayment":"$407711.77","Status":2,"Type":1},{"OrderID":"52125-514","ShipCountry":"RU","ShipAddress":"163 Kim Circle","ShipName":"Haley, Ernser and Cartwright","OrderDate":"5/29/2016","TotalPayment":"$788328.38","Status":2,"Type":2},{"OrderID":"49349-251","ShipCountry":"CN","ShipAddress":"37584 Delladonna Trail","ShipName":"Lynch, Rowe and Walsh","OrderDate":"11/12/2017","TotalPayment":"$253289.21","Status":6,"Type":2},{"OrderID":"52304-712","ShipCountry":"ID","ShipAddress":"539 Crowley Parkway","ShipName":"O\'Hara, Funk and Kihn","OrderDate":"12/4/2016","TotalPayment":"$604916.78","Status":5,"Type":3},{"OrderID":"47335-586","ShipCountry":"CN","ShipAddress":"343 Sutteridge Alley","ShipName":"Koelpin, Mitchell and Moen","OrderDate":"4/12/2017","TotalPayment":"$232602.01","Status":2,"Type":2},{"OrderID":"52125-562","ShipCountry":"CL","ShipAddress":"1032 Browning Lane","ShipName":"Mertz Group","OrderDate":"1/13/2016","TotalPayment":"$407820.58","Status":3,"Type":1},{"OrderID":"63347-501","ShipCountry":"CN","ShipAddress":"6 Weeping Birch Court","ShipName":"Dickinson Inc","OrderDate":"6/4/2017","TotalPayment":"$209449.38","Status":1,"Type":2},{"OrderID":"16729-246","ShipCountry":"CN","ShipAddress":"3 Barby Pass","ShipName":"Renner-West","OrderDate":"2/27/2016","TotalPayment":"$219330.18","Status":5,"Type":3},{"OrderID":"0338-0117","ShipCountry":"ID","ShipAddress":"9 Cherokee Alley","ShipName":"Baumbach-Kshlerin","OrderDate":"1/26/2016","TotalPayment":"$200910.31","Status":4,"Type":3},{"OrderID":"62839-1084","ShipCountry":"PT","ShipAddress":"4978 4th Hill","ShipName":"Effertz-Gutkowski","OrderDate":"5/26/2016","TotalPayment":"$558136.43","Status":4,"Type":2},{"OrderID":"0363-0332","ShipCountry":"PH","ShipAddress":"75 Pond Street","ShipName":"Treutel and Sons","OrderDate":"12/16/2017","TotalPayment":"$948705.90","Status":4,"Type":2},{"OrderID":"54569-6500","ShipCountry":"PH","ShipAddress":"2 Porter Alley","ShipName":"Wiegand-DuBuque","OrderDate":"8/22/2017","TotalPayment":"$279453.38","Status":3,"Type":3},{"OrderID":"49999-701","ShipCountry":"PT","ShipAddress":"00312 Acker Way","ShipName":"Larson LLC","OrderDate":"11/14/2017","TotalPayment":"$708715.88","Status":1,"Type":3},{"OrderID":"63940-310","ShipCountry":"ID","ShipAddress":"56 Warrior Point","ShipName":"Kemmer-Olson","OrderDate":"5/4/2017","TotalPayment":"$147797.34","Status":5,"Type":3},{"OrderID":"50114-5115","ShipCountry":"SE","ShipAddress":"0963 Rigney Pass","ShipName":"Farrell, Swift and Goyette","OrderDate":"9/20/2017","TotalPayment":"$1154282.07","Status":3,"Type":3}]},\n{"RecordID":275,"FirstName":"Pate","LastName":"McCrachen","Company":"Thoughtstorm","Email":"pmccrachen7m@soundcloud.com","Phone":"496-341-5568","Status":3,"Type":3,"Orders":[{"OrderID":"65342-1394","ShipCountry":"CN","ShipAddress":"77 Riverside Center","ShipName":"Leannon-Sanford","OrderDate":"12/29/2016","TotalPayment":"$693107.51","Status":1,"Type":3},{"OrderID":"68472-122","ShipCountry":"AR","ShipAddress":"94 Sundown Parkway","ShipName":"Hand and Sons","OrderDate":"3/6/2017","TotalPayment":"$734060.68","Status":1,"Type":2},{"OrderID":"0832-0709","ShipCountry":"CN","ShipAddress":"74447 Kennedy Place","ShipName":"Kemmer, Carroll and Lakin","OrderDate":"9/7/2016","TotalPayment":"$948553.02","Status":2,"Type":1},{"OrderID":"0009-3359","ShipCountry":"PL","ShipAddress":"3 Lighthouse Bay Crossing","ShipName":"Haag, Goldner and Towne","OrderDate":"11/6/2016","TotalPayment":"$36540.07","Status":1,"Type":1},{"OrderID":"21695-270","ShipCountry":"CN","ShipAddress":"118 Northfield Way","ShipName":"Cassin, Abernathy and Wunsch","OrderDate":"4/13/2017","TotalPayment":"$1023727.26","Status":1,"Type":2},{"OrderID":"43611-006","ShipCountry":"CA","ShipAddress":"68 Dennis Plaza","ShipName":"Bosco Inc","OrderDate":"5/15/2017","TotalPayment":"$642239.38","Status":5,"Type":1},{"OrderID":"50436-4694","ShipCountry":"FR","ShipAddress":"96299 Fisk Drive","ShipName":"Nikolaus LLC","OrderDate":"6/5/2017","TotalPayment":"$240517.32","Status":3,"Type":3},{"OrderID":"13537-216","ShipCountry":"BD","ShipAddress":"5 Dakota Parkway","ShipName":"Keebler-Baumbach","OrderDate":"10/31/2016","TotalPayment":"$266934.94","Status":3,"Type":1},{"OrderID":"59973-003","ShipCountry":"CN","ShipAddress":"3 Weeping Birch Crossing","ShipName":"Barton Group","OrderDate":"7/3/2016","TotalPayment":"$333951.56","Status":2,"Type":1},{"OrderID":"24488-020","ShipCountry":"US","ShipAddress":"4 Kipling Park","ShipName":"Boyer-Bode","OrderDate":"8/1/2016","TotalPayment":"$923751.36","Status":6,"Type":1},{"OrderID":"24488-003","ShipCountry":"NZ","ShipAddress":"78 Ridge Oak Lane","ShipName":"Emmerich-Roob","OrderDate":"1/24/2017","TotalPayment":"$321835.59","Status":6,"Type":3},{"OrderID":"21130-198","ShipCountry":"GR","ShipAddress":"5 Becker Parkway","ShipName":"Lubowitz Group","OrderDate":"7/9/2017","TotalPayment":"$316108.54","Status":4,"Type":1}]},\n{"RecordID":276,"FirstName":"Faina","LastName":"McIndrew","Company":"Demivee","Email":"fmcindrew7n@technorati.com","Phone":"200-696-3584","Status":4,"Type":3,"Orders":[{"OrderID":"37000-151","ShipCountry":"GT","ShipAddress":"8 Meadow Ridge Junction","ShipName":"Lehner-Kerluke","OrderDate":"11/4/2017","TotalPayment":"$1046231.61","Status":6,"Type":3},{"OrderID":"68387-260","ShipCountry":"RU","ShipAddress":"93297 7th Avenue","ShipName":"White Group","OrderDate":"7/21/2017","TotalPayment":"$814008.20","Status":1,"Type":1},{"OrderID":"65162-573","ShipCountry":"RU","ShipAddress":"06 Monica Pass","ShipName":"Kub, Dietrich and Kerluke","OrderDate":"7/15/2016","TotalPayment":"$829081.80","Status":5,"Type":1},{"OrderID":"49967-327","ShipCountry":"JM","ShipAddress":"8889 Waubesa Avenue","ShipName":"Zboncak-Terry","OrderDate":"2/22/2016","TotalPayment":"$696384.82","Status":4,"Type":2},{"OrderID":"43772-0008","ShipCountry":"CN","ShipAddress":"80 Hermina Place","ShipName":"Fadel-Rutherford","OrderDate":"7/3/2016","TotalPayment":"$1064980.05","Status":6,"Type":3},{"OrderID":"76237-115","ShipCountry":"PH","ShipAddress":"96 Jay Junction","ShipName":"Klein-Bins","OrderDate":"12/11/2017","TotalPayment":"$299765.78","Status":4,"Type":2}]},\n{"RecordID":277,"FirstName":"Suzanne","LastName":"McGerraghty","Company":"Dabshots","Email":"smcgerraghty7o@cnet.com","Phone":"799-244-6193","Status":1,"Type":2,"Orders":[{"OrderID":"63739-547","ShipCountry":"GM","ShipAddress":"2719 Kropf Point","ShipName":"Stoltenberg-West","OrderDate":"11/8/2016","TotalPayment":"$65135.14","Status":1,"Type":3},{"OrderID":"0699-7091","ShipCountry":"CN","ShipAddress":"960 Stephen Alley","ShipName":"Adams Group","OrderDate":"4/12/2016","TotalPayment":"$873110.62","Status":2,"Type":2},{"OrderID":"0591-3774","ShipCountry":"GR","ShipAddress":"404 Onsgard Crossing","ShipName":"Kerluke Group","OrderDate":"9/7/2016","TotalPayment":"$686178.62","Status":3,"Type":3},{"OrderID":"50458-591","ShipCountry":"PH","ShipAddress":"03 Eliot Street","ShipName":"Stracke and Sons","OrderDate":"4/16/2016","TotalPayment":"$1092697.56","Status":2,"Type":3},{"OrderID":"49527-743","ShipCountry":"CN","ShipAddress":"01827 Bunker Hill Alley","ShipName":"Koch-Reilly","OrderDate":"8/22/2016","TotalPayment":"$840133.62","Status":5,"Type":1}]},\n{"RecordID":278,"FirstName":"Sanford","LastName":"Livock","Company":"Oodoo","Email":"slivock7p@gov.uk","Phone":"826-713-9328","Status":4,"Type":2,"Orders":[{"OrderID":"54162-269","ShipCountry":"CZ","ShipAddress":"8431 Arapahoe Place","ShipName":"Bashirian-Strosin","OrderDate":"9/28/2017","TotalPayment":"$1072089.42","Status":4,"Type":3},{"OrderID":"24658-130","ShipCountry":"CA","ShipAddress":"56441 Russell Terrace","ShipName":"Morar, Lueilwitz and MacGyver","OrderDate":"1/8/2017","TotalPayment":"$537029.06","Status":1,"Type":2},{"OrderID":"60977-002","ShipCountry":"FR","ShipAddress":"227 Golden Leaf Circle","ShipName":"Cremin LLC","OrderDate":"7/15/2017","TotalPayment":"$541615.17","Status":5,"Type":2},{"OrderID":"65044-9991","ShipCountry":"PY","ShipAddress":"06797 Hintze Pass","ShipName":"Oberbrunner Group","OrderDate":"4/5/2017","TotalPayment":"$1075259.51","Status":4,"Type":3},{"OrderID":"66336-586","ShipCountry":"CN","ShipAddress":"38257 Mayer Trail","ShipName":"Lesch-Roberts","OrderDate":"4/4/2017","TotalPayment":"$1169661.51","Status":4,"Type":1},{"OrderID":"0781-9165","ShipCountry":"PH","ShipAddress":"1 Coleman Plaza","ShipName":"Rau-VonRueden","OrderDate":"6/24/2016","TotalPayment":"$680299.85","Status":3,"Type":2},{"OrderID":"49999-094","ShipCountry":"PH","ShipAddress":"4 Lake View Terrace","ShipName":"Stanton LLC","OrderDate":"5/5/2017","TotalPayment":"$594352.99","Status":2,"Type":3},{"OrderID":"42291-273","ShipCountry":"CN","ShipAddress":"139 Dawn Park","ShipName":"Lesch-Schulist","OrderDate":"6/24/2016","TotalPayment":"$818383.60","Status":5,"Type":2},{"OrderID":"0378-0460","ShipCountry":"US","ShipAddress":"81 Maple Wood Way","ShipName":"Lueilwitz-Nolan","OrderDate":"2/11/2017","TotalPayment":"$1183259.58","Status":4,"Type":1}]},\n{"RecordID":279,"FirstName":"Doreen","LastName":"Lapree","Company":"Nlounge","Email":"dlapree7q@kickstarter.com","Phone":"513-301-5421","Status":3,"Type":1,"Orders":[{"OrderID":"49999-836","ShipCountry":"PT","ShipAddress":"519 Grayhawk Point","ShipName":"O\'Connell, Corkery and Murray","OrderDate":"3/31/2016","TotalPayment":"$915098.95","Status":5,"Type":1},{"OrderID":"10337-808","ShipCountry":"RS","ShipAddress":"12 Bashford Terrace","ShipName":"West and Sons","OrderDate":"12/24/2016","TotalPayment":"$581237.98","Status":5,"Type":3},{"OrderID":"0049-5740","ShipCountry":"FR","ShipAddress":"52235 Dakota Way","ShipName":"Walker Inc","OrderDate":"5/8/2016","TotalPayment":"$1192378.36","Status":1,"Type":3},{"OrderID":"64125-136","ShipCountry":"CN","ShipAddress":"94 Nelson Drive","ShipName":"Luettgen, Klein and Abshire","OrderDate":"4/29/2017","TotalPayment":"$924050.37","Status":4,"Type":1},{"OrderID":"68788-9822","ShipCountry":"CN","ShipAddress":"47165 Clove Court","ShipName":"Kub, Goldner and Carroll","OrderDate":"5/16/2016","TotalPayment":"$110220.46","Status":6,"Type":2},{"OrderID":"21695-653","ShipCountry":"CN","ShipAddress":"1038 Becker Road","ShipName":"Upton and Sons","OrderDate":"9/14/2016","TotalPayment":"$452436.77","Status":2,"Type":3},{"OrderID":"36987-1403","ShipCountry":"SE","ShipAddress":"5396 Pine View Crossing","ShipName":"Legros Group","OrderDate":"12/18/2016","TotalPayment":"$230839.36","Status":5,"Type":3},{"OrderID":"55648-763","ShipCountry":"ID","ShipAddress":"958 Packers Avenue","ShipName":"Keeling-Jacobs","OrderDate":"6/18/2017","TotalPayment":"$91937.86","Status":4,"Type":2},{"OrderID":"13537-136","ShipCountry":"BG","ShipAddress":"2 Erie Parkway","ShipName":"Bailey, Jakubowski and Greenholt","OrderDate":"6/28/2017","TotalPayment":"$992813.34","Status":1,"Type":1},{"OrderID":"59842-012","ShipCountry":"RU","ShipAddress":"2846 Express Avenue","ShipName":"Boehm-Auer","OrderDate":"11/25/2016","TotalPayment":"$495232.59","Status":4,"Type":1},{"OrderID":"36987-1949","ShipCountry":"RU","ShipAddress":"914 Melody Way","ShipName":"Murazik-Feeney","OrderDate":"11/14/2017","TotalPayment":"$627982.72","Status":1,"Type":2},{"OrderID":"62756-543","ShipCountry":"ID","ShipAddress":"366 Moulton Junction","ShipName":"Mills-Glover","OrderDate":"6/24/2016","TotalPayment":"$462076.47","Status":2,"Type":1},{"OrderID":"43319-020","ShipCountry":"ID","ShipAddress":"39448 Fair Oaks Hill","ShipName":"Boehm-Goldner","OrderDate":"5/27/2016","TotalPayment":"$525879.36","Status":1,"Type":2},{"OrderID":"42236-001","ShipCountry":"PT","ShipAddress":"0907 Longview Point","ShipName":"Rolfson-Goldner","OrderDate":"11/13/2016","TotalPayment":"$1071776.04","Status":3,"Type":2},{"OrderID":"0113-0798","ShipCountry":"MX","ShipAddress":"288 Esch Plaza","ShipName":"Graham-Renner","OrderDate":"10/21/2017","TotalPayment":"$513051.96","Status":4,"Type":3},{"OrderID":"0093-4059","ShipCountry":"JP","ShipAddress":"366 Coolidge Park","ShipName":"Shanahan-Conroy","OrderDate":"12/25/2016","TotalPayment":"$387871.15","Status":6,"Type":2},{"OrderID":"49349-979","ShipCountry":"TR","ShipAddress":"79671 Magdeline Hill","ShipName":"Carter, Hane and Cole","OrderDate":"9/10/2017","TotalPayment":"$1108271.66","Status":3,"Type":1},{"OrderID":"54973-9123","ShipCountry":"RU","ShipAddress":"96 Iowa Pass","ShipName":"Tremblay-Kautzer","OrderDate":"5/29/2017","TotalPayment":"$614128.81","Status":6,"Type":1},{"OrderID":"68151-2298","ShipCountry":"CN","ShipAddress":"6047 Grasskamp Way","ShipName":"Bogisich, Nikolaus and Cummings","OrderDate":"1/31/2017","TotalPayment":"$575856.32","Status":1,"Type":3},{"OrderID":"41520-168","ShipCountry":"CZ","ShipAddress":"21367 Mayer Street","ShipName":"Marvin, Mayer and Goyette","OrderDate":"3/10/2017","TotalPayment":"$776092.97","Status":3,"Type":2}]},\n{"RecordID":280,"FirstName":"La verne","LastName":"Carwithim","Company":"Yadel","Email":"lcarwithim7r@wufoo.com","Phone":"332-437-4339","Status":6,"Type":2,"Orders":[{"OrderID":"43071-100","ShipCountry":"FR","ShipAddress":"1 Emmet Pass","ShipName":"Lowe Inc","OrderDate":"9/20/2016","TotalPayment":"$23877.59","Status":2,"Type":2},{"OrderID":"60505-2533","ShipCountry":"PL","ShipAddress":"30012 3rd Hill","ShipName":"Greenholt LLC","OrderDate":"12/5/2016","TotalPayment":"$143906.79","Status":6,"Type":2},{"OrderID":"58737-103","ShipCountry":"RU","ShipAddress":"577 Packers Avenue","ShipName":"Dietrich and Sons","OrderDate":"10/17/2017","TotalPayment":"$145472.81","Status":2,"Type":3},{"OrderID":"64942-1235","ShipCountry":"NL","ShipAddress":"2 Mayfield Drive","ShipName":"Predovic Group","OrderDate":"10/2/2017","TotalPayment":"$146174.38","Status":4,"Type":3},{"OrderID":"0093-0813","ShipCountry":"PT","ShipAddress":"49 Fisk Drive","ShipName":"Cummerata, Doyle and Stanton","OrderDate":"6/5/2016","TotalPayment":"$199835.40","Status":3,"Type":2},{"OrderID":"10477-5601","ShipCountry":"GR","ShipAddress":"4318 Vermont Lane","ShipName":"Rau-Huel","OrderDate":"8/22/2017","TotalPayment":"$178780.90","Status":4,"Type":3},{"OrderID":"43857-0082","ShipCountry":"PE","ShipAddress":"81356 Alpine Plaza","ShipName":"Kub, Mohr and Beer","OrderDate":"2/9/2016","TotalPayment":"$257822.06","Status":3,"Type":2},{"OrderID":"36987-2600","ShipCountry":"ID","ShipAddress":"1820 Vahlen Point","ShipName":"Welch Group","OrderDate":"4/28/2017","TotalPayment":"$648018.82","Status":3,"Type":1},{"OrderID":"51672-4161","ShipCountry":"FR","ShipAddress":"83919 Corry Avenue","ShipName":"Towne, West and Bogisich","OrderDate":"8/26/2017","TotalPayment":"$74076.55","Status":3,"Type":1},{"OrderID":"55154-9614","ShipCountry":"ID","ShipAddress":"873 Upham Hill","ShipName":"Rippin Group","OrderDate":"3/14/2016","TotalPayment":"$23751.58","Status":5,"Type":2},{"OrderID":"41520-294","ShipCountry":"IS","ShipAddress":"6038 Spohn Pass","ShipName":"Hegmann-Koss","OrderDate":"11/23/2016","TotalPayment":"$332974.10","Status":1,"Type":1},{"OrderID":"21695-879","ShipCountry":"BR","ShipAddress":"09130 Pankratz Trail","ShipName":"Walsh, Donnelly and Walsh","OrderDate":"2/23/2017","TotalPayment":"$790135.86","Status":2,"Type":1},{"OrderID":"13537-061","ShipCountry":"CN","ShipAddress":"2233 Farmco Court","ShipName":"O\'Conner Inc","OrderDate":"6/24/2016","TotalPayment":"$149968.37","Status":6,"Type":3}]},\n{"RecordID":281,"FirstName":"Julita","LastName":"Addison","Company":"Mynte","Email":"jaddison7s@hc360.com","Phone":"383-239-9852","Status":3,"Type":3,"Orders":[{"OrderID":"42291-700","ShipCountry":"ID","ShipAddress":"702 Pearson Court","ShipName":"Bernhard, Pollich and Jacobson","OrderDate":"7/11/2017","TotalPayment":"$459615.42","Status":2,"Type":3},{"OrderID":"11819-282","ShipCountry":"PL","ShipAddress":"559 Beilfuss Hill","ShipName":"Purdy, Mayert and Weissnat","OrderDate":"12/27/2017","TotalPayment":"$487450.26","Status":3,"Type":2},{"OrderID":"49643-392","ShipCountry":"CZ","ShipAddress":"33606 Mendota Lane","ShipName":"Douglas-Swift","OrderDate":"1/5/2017","TotalPayment":"$726376.23","Status":4,"Type":1},{"OrderID":"42291-885","ShipCountry":"ZM","ShipAddress":"817 Raven Parkway","ShipName":"Erdman-Block","OrderDate":"3/8/2017","TotalPayment":"$970439.98","Status":2,"Type":2},{"OrderID":"0574-7050","ShipCountry":"PS","ShipAddress":"62 Manley Avenue","ShipName":"Stiedemann-Hayes","OrderDate":"1/6/2017","TotalPayment":"$1105940.38","Status":4,"Type":3},{"OrderID":"68428-152","ShipCountry":"BA","ShipAddress":"23117 Killdeer Road","ShipName":"Greenholt-Prohaska","OrderDate":"8/28/2016","TotalPayment":"$238748.74","Status":4,"Type":3},{"OrderID":"49349-290","ShipCountry":"ID","ShipAddress":"3290 Packers Place","ShipName":"Rowe Inc","OrderDate":"4/19/2016","TotalPayment":"$952009.70","Status":5,"Type":2},{"OrderID":"60505-0232","ShipCountry":"CN","ShipAddress":"81 Moulton Junction","ShipName":"D\'Amore, Deckow and Heller","OrderDate":"10/18/2017","TotalPayment":"$659129.84","Status":2,"Type":1},{"OrderID":"0310-0275","ShipCountry":"BR","ShipAddress":"28571 Bluejay Drive","ShipName":"Bergnaum LLC","OrderDate":"10/3/2017","TotalPayment":"$1101706.41","Status":4,"Type":1},{"OrderID":"55289-107","ShipCountry":"CY","ShipAddress":"4 Ohio Alley","ShipName":"Rippin and Sons","OrderDate":"3/8/2017","TotalPayment":"$343518.80","Status":2,"Type":1},{"OrderID":"52686-318","ShipCountry":"TH","ShipAddress":"9288 Kim Road","ShipName":"Moen-Rolfson","OrderDate":"4/26/2017","TotalPayment":"$602216.30","Status":1,"Type":1},{"OrderID":"44523-609","ShipCountry":"ID","ShipAddress":"057 East Center","ShipName":"Pollich-Crona","OrderDate":"9/23/2017","TotalPayment":"$995857.32","Status":1,"Type":3},{"OrderID":"49349-341","ShipCountry":"CN","ShipAddress":"4991 Grasskamp Circle","ShipName":"Kerluke-Collins","OrderDate":"7/12/2017","TotalPayment":"$977918.82","Status":3,"Type":3},{"OrderID":"10019-030","ShipCountry":"ID","ShipAddress":"5 Amoth Avenue","ShipName":"Berge-Shanahan","OrderDate":"1/24/2016","TotalPayment":"$841394.27","Status":6,"Type":1},{"OrderID":"43063-053","ShipCountry":"BR","ShipAddress":"3 1st Court","ShipName":"Huels, Lemke and Kulas","OrderDate":"6/12/2016","TotalPayment":"$122094.90","Status":3,"Type":1},{"OrderID":"55154-2731","ShipCountry":"ID","ShipAddress":"39410 Heffernan Terrace","ShipName":"Roob-Hyatt","OrderDate":"10/17/2017","TotalPayment":"$722296.18","Status":6,"Type":3},{"OrderID":"21130-321","ShipCountry":"RW","ShipAddress":"83145 Bashford Center","ShipName":"Hickle-Bauch","OrderDate":"3/10/2017","TotalPayment":"$733017.38","Status":4,"Type":1}]},\n{"RecordID":282,"FirstName":"Betti","LastName":"Margiotta","Company":"Oyoba","Email":"bmargiotta7t@amazon.co.jp","Phone":"375-623-3526","Status":6,"Type":3,"Orders":[{"OrderID":"11701-020","ShipCountry":"PL","ShipAddress":"918 Eggendart Center","ShipName":"Luettgen, Gulgowski and Kemmer","OrderDate":"3/30/2017","TotalPayment":"$737133.83","Status":4,"Type":1},{"OrderID":"64092-316","ShipCountry":"RU","ShipAddress":"5439 Judy Pass","ShipName":"Medhurst, Fahey and Runolfsson","OrderDate":"4/5/2016","TotalPayment":"$541593.59","Status":1,"Type":2},{"OrderID":"43857-0042","ShipCountry":"CN","ShipAddress":"956 Kenwood Crossing","ShipName":"Kiehn Inc","OrderDate":"1/3/2016","TotalPayment":"$930488.73","Status":5,"Type":1},{"OrderID":"49035-098","ShipCountry":"GR","ShipAddress":"49461 Laurel Park","ShipName":"Robel, Considine and Streich","OrderDate":"1/2/2017","TotalPayment":"$557665.47","Status":4,"Type":1},{"OrderID":"67938-1083","ShipCountry":"DK","ShipAddress":"14 Northfield Parkway","ShipName":"Predovic, Durgan and Torp","OrderDate":"2/28/2016","TotalPayment":"$862119.94","Status":6,"Type":2},{"OrderID":"42291-208","ShipCountry":"RU","ShipAddress":"7 Bartillon Center","ShipName":"Hermiston, VonRueden and Hauck","OrderDate":"7/21/2017","TotalPayment":"$825440.26","Status":3,"Type":3},{"OrderID":"24488-003","ShipCountry":"IE","ShipAddress":"95433 Main Parkway","ShipName":"Ward and Sons","OrderDate":"1/1/2016","TotalPayment":"$385292.94","Status":2,"Type":3},{"OrderID":"54868-4976","ShipCountry":"ID","ShipAddress":"865 Lotheville Place","ShipName":"Doyle, Schneider and Barton","OrderDate":"1/25/2016","TotalPayment":"$546992.72","Status":2,"Type":3},{"OrderID":"0006-3918","ShipCountry":"US","ShipAddress":"671 Beilfuss Junction","ShipName":"Donnelly, McCullough and Johnson","OrderDate":"6/12/2016","TotalPayment":"$750695.49","Status":1,"Type":1},{"OrderID":"49520-301","ShipCountry":"PH","ShipAddress":"011 American Ash Street","ShipName":"Abshire Inc","OrderDate":"5/15/2016","TotalPayment":"$196324.85","Status":4,"Type":3},{"OrderID":"76237-201","ShipCountry":"PT","ShipAddress":"5 Dryden Street","ShipName":"Muller Inc","OrderDate":"5/15/2017","TotalPayment":"$374846.84","Status":5,"Type":2},{"OrderID":"58443-0040","ShipCountry":"ID","ShipAddress":"85 Jana Junction","ShipName":"Schinner-Dach","OrderDate":"10/1/2017","TotalPayment":"$187884.40","Status":6,"Type":3},{"OrderID":"24987-436","ShipCountry":"UA","ShipAddress":"72 Dryden Pass","ShipName":"Bruen-Reinger","OrderDate":"4/1/2016","TotalPayment":"$1019330.08","Status":5,"Type":3},{"OrderID":"60760-354","ShipCountry":"PL","ShipAddress":"5498 Brickson Park Terrace","ShipName":"Schumm LLC","OrderDate":"8/1/2017","TotalPayment":"$399040.05","Status":6,"Type":2},{"OrderID":"49404-102","ShipCountry":"PT","ShipAddress":"04730 Eggendart Way","ShipName":"Gerhold and Sons","OrderDate":"9/5/2016","TotalPayment":"$32984.57","Status":5,"Type":2},{"OrderID":"0378-1052","ShipCountry":"CL","ShipAddress":"07 Jay Court","ShipName":"O\'Kon-Schowalter","OrderDate":"8/21/2016","TotalPayment":"$92340.77","Status":4,"Type":2},{"OrderID":"0069-3857","ShipCountry":"CN","ShipAddress":"00745 Fairfield Park","ShipName":"Paucek-Howe","OrderDate":"5/11/2017","TotalPayment":"$423919.77","Status":1,"Type":3}]},\n{"RecordID":283,"FirstName":"Felita","LastName":"Walewski","Company":"Jaxnation","Email":"fwalewski7u@merriam-webster.com","Phone":"125-183-2785","Status":5,"Type":3,"Orders":[{"OrderID":"54868-5391","ShipCountry":"CN","ShipAddress":"41 Victoria Point","ShipName":"Kihn-Flatley","OrderDate":"4/22/2017","TotalPayment":"$829743.69","Status":4,"Type":1},{"OrderID":"0924-0011","ShipCountry":"CN","ShipAddress":"9467 Knutson Pass","ShipName":"Bergnaum, Bergnaum and Parker","OrderDate":"7/6/2017","TotalPayment":"$1088658.69","Status":3,"Type":1},{"OrderID":"37808-009","ShipCountry":"PY","ShipAddress":"1 6th Park","ShipName":"Auer-Bradtke","OrderDate":"2/4/2016","TotalPayment":"$827573.30","Status":1,"Type":2},{"OrderID":"50730-5150","ShipCountry":"CN","ShipAddress":"7001 Judy Alley","ShipName":"Lesch-Renner","OrderDate":"9/27/2016","TotalPayment":"$1016536.10","Status":6,"Type":3},{"OrderID":"68400-800","ShipCountry":"KZ","ShipAddress":"856 Banding Crossing","ShipName":"D\'Amore Inc","OrderDate":"6/23/2016","TotalPayment":"$196044.07","Status":6,"Type":1},{"OrderID":"0186-4025","ShipCountry":"FR","ShipAddress":"240 Heath Avenue","ShipName":"Marquardt-Hane","OrderDate":"4/1/2016","TotalPayment":"$751701.96","Status":6,"Type":2},{"OrderID":"37012-544","ShipCountry":"JP","ShipAddress":"4021 Burning Wood Road","ShipName":"Graham-Powlowski","OrderDate":"3/12/2017","TotalPayment":"$231530.57","Status":1,"Type":2},{"OrderID":"49349-916","ShipCountry":"PH","ShipAddress":"69550 Stephen Plaza","ShipName":"Mayert, Reilly and Rosenbaum","OrderDate":"7/19/2017","TotalPayment":"$818612.17","Status":2,"Type":2},{"OrderID":"41250-906","ShipCountry":"CO","ShipAddress":"714 Iowa Hill","ShipName":"Greenholt LLC","OrderDate":"5/12/2016","TotalPayment":"$431358.82","Status":6,"Type":3},{"OrderID":"49817-1992","ShipCountry":"CN","ShipAddress":"3874 Superior Terrace","ShipName":"Feest-Skiles","OrderDate":"12/22/2017","TotalPayment":"$223974.26","Status":4,"Type":3},{"OrderID":"55111-622","ShipCountry":"CO","ShipAddress":"81790 Mcbride Junction","ShipName":"Collins Inc","OrderDate":"2/1/2017","TotalPayment":"$596937.54","Status":3,"Type":2}]},\n{"RecordID":284,"FirstName":"Roxane","LastName":"Scapelhorn","Company":"Twitterbridge","Email":"rscapelhorn7v@constantcontact.com","Phone":"682-569-7886","Status":6,"Type":2,"Orders":[{"OrderID":"0245-0003","ShipCountry":"KR","ShipAddress":"257 Bellgrove Lane","ShipName":"Dickinson-Trantow","OrderDate":"11/21/2016","TotalPayment":"$918349.27","Status":4,"Type":3},{"OrderID":"42507-165","ShipCountry":"CN","ShipAddress":"5207 Granby Junction","ShipName":"Beatty, Thiel and Becker","OrderDate":"10/10/2016","TotalPayment":"$337532.85","Status":3,"Type":1},{"OrderID":"64725-0736","ShipCountry":"GB","ShipAddress":"11 Nancy Center","ShipName":"Daniel-Smitham","OrderDate":"10/8/2016","TotalPayment":"$895940.24","Status":6,"Type":1},{"OrderID":"42291-656","ShipCountry":"AO","ShipAddress":"5322 Bonner Plaza","ShipName":"Weimann, Ziemann and Feest","OrderDate":"7/26/2017","TotalPayment":"$1176398.29","Status":1,"Type":1},{"OrderID":"35356-786","ShipCountry":"PH","ShipAddress":"627 Eastlawn Alley","ShipName":"Kuvalis Inc","OrderDate":"12/30/2016","TotalPayment":"$194952.11","Status":1,"Type":3},{"OrderID":"64305-003","ShipCountry":"CN","ShipAddress":"50 Vidon Pass","ShipName":"Fay, Nolan and King","OrderDate":"5/9/2017","TotalPayment":"$670511.03","Status":5,"Type":2},{"OrderID":"60456-576","ShipCountry":"PT","ShipAddress":"0 Judy Circle","ShipName":"Gerhold Inc","OrderDate":"7/17/2017","TotalPayment":"$549316.04","Status":3,"Type":2},{"OrderID":"67296-0447","ShipCountry":"US","ShipAddress":"13347 Larry Road","ShipName":"Greenholt LLC","OrderDate":"6/18/2017","TotalPayment":"$39111.07","Status":1,"Type":3},{"OrderID":"11509-0375","ShipCountry":"CN","ShipAddress":"54 Packers Parkway","ShipName":"Klein, Hudson and Hills","OrderDate":"3/13/2017","TotalPayment":"$1021236.93","Status":5,"Type":1},{"OrderID":"68516-5215","ShipCountry":"JP","ShipAddress":"358 Gale Way","ShipName":"Schmeler, Hartmann and Senger","OrderDate":"6/1/2017","TotalPayment":"$309559.53","Status":3,"Type":3},{"OrderID":"0536-4089","ShipCountry":"CN","ShipAddress":"719 Oak Center","ShipName":"Donnelly, Rosenbaum and Hauck","OrderDate":"5/24/2016","TotalPayment":"$1178615.07","Status":4,"Type":3},{"OrderID":"65321-022","ShipCountry":"US","ShipAddress":"56553 Butterfield Court","ShipName":"Muller-O\'Hara","OrderDate":"5/12/2017","TotalPayment":"$270182.63","Status":3,"Type":1},{"OrderID":"41250-361","ShipCountry":"PH","ShipAddress":"7 Crest Line Court","ShipName":"Moen and Sons","OrderDate":"1/12/2016","TotalPayment":"$517457.62","Status":4,"Type":3},{"OrderID":"60505-0116","ShipCountry":"CN","ShipAddress":"81343 Mosinee Alley","ShipName":"Turner Inc","OrderDate":"1/24/2016","TotalPayment":"$549003.12","Status":3,"Type":3},{"OrderID":"36987-3449","ShipCountry":"US","ShipAddress":"472 Atwood Lane","ShipName":"Brown, Wintheiser and Zieme","OrderDate":"4/4/2017","TotalPayment":"$755882.49","Status":4,"Type":2},{"OrderID":"13537-546","ShipCountry":"PL","ShipAddress":"81452 Hazelcrest Place","ShipName":"Littel, Zboncak and Bashirian","OrderDate":"10/25/2017","TotalPayment":"$95016.25","Status":3,"Type":3},{"OrderID":"0363-0461","ShipCountry":"ID","ShipAddress":"47275 Briar Crest Avenue","ShipName":"Davis and Sons","OrderDate":"8/18/2017","TotalPayment":"$431670.78","Status":3,"Type":2}]},\n{"RecordID":285,"FirstName":"Todd","LastName":"Westcot","Company":"Mydo","Email":"twestcot7w@usda.gov","Phone":"751-402-5321","Status":4,"Type":3,"Orders":[{"OrderID":"0519-1452","ShipCountry":"FR","ShipAddress":"248 Hollow Ridge Street","ShipName":"Hackett LLC","OrderDate":"6/22/2016","TotalPayment":"$878272.75","Status":5,"Type":3},{"OrderID":"68151-5004","ShipCountry":"CI","ShipAddress":"32 Sherman Lane","ShipName":"Brekke-Mosciski","OrderDate":"7/5/2016","TotalPayment":"$949603.66","Status":4,"Type":2},{"OrderID":"16590-047","ShipCountry":"IR","ShipAddress":"54778 5th Parkway","ShipName":"Upton-Senger","OrderDate":"12/5/2017","TotalPayment":"$765941.84","Status":6,"Type":3},{"OrderID":"50436-3444","ShipCountry":"JP","ShipAddress":"0 Stone Corner Trail","ShipName":"Shanahan-Bailey","OrderDate":"10/7/2016","TotalPayment":"$774075.37","Status":1,"Type":1},{"OrderID":"53808-0756","ShipCountry":"CZ","ShipAddress":"484 Daystar Avenue","ShipName":"McCullough Group","OrderDate":"11/26/2017","TotalPayment":"$77588.57","Status":4,"Type":2},{"OrderID":"0067-2039","ShipCountry":"CN","ShipAddress":"02 Hallows Street","ShipName":"Gutkowski-Kulas","OrderDate":"10/2/2016","TotalPayment":"$697265.64","Status":4,"Type":3},{"OrderID":"50967-317","ShipCountry":"RU","ShipAddress":"95569 3rd Road","ShipName":"Mohr, Bins and Eichmann","OrderDate":"1/13/2016","TotalPayment":"$114768.97","Status":2,"Type":2},{"OrderID":"50227-1090","ShipCountry":"PH","ShipAddress":"10 Sunnyside Parkway","ShipName":"Harvey-McKenzie","OrderDate":"6/26/2016","TotalPayment":"$739156.43","Status":5,"Type":3},{"OrderID":"0113-0142","ShipCountry":"PT","ShipAddress":"38745 Monterey Hill","ShipName":"Christiansen, Conroy and Auer","OrderDate":"10/13/2016","TotalPayment":"$915181.29","Status":3,"Type":1},{"OrderID":"35356-981","ShipCountry":"CZ","ShipAddress":"64995 Mesta Way","ShipName":"O\'Kon Inc","OrderDate":"12/7/2016","TotalPayment":"$916168.65","Status":2,"Type":3},{"OrderID":"53807-521","ShipCountry":"SE","ShipAddress":"34 Pleasure Parkway","ShipName":"Lakin-Larkin","OrderDate":"10/20/2017","TotalPayment":"$591333.26","Status":1,"Type":3},{"OrderID":"42248-114","ShipCountry":"FI","ShipAddress":"420 Talisman Way","ShipName":"Schneider, Mann and Stracke","OrderDate":"6/22/2016","TotalPayment":"$1042642.04","Status":1,"Type":3},{"OrderID":"21695-615","ShipCountry":"PL","ShipAddress":"3896 John Wall Trail","ShipName":"Mohr Inc","OrderDate":"11/4/2017","TotalPayment":"$505672.10","Status":5,"Type":1},{"OrderID":"55910-156","ShipCountry":"ID","ShipAddress":"8 Oak Valley Way","ShipName":"Auer-Ondricka","OrderDate":"5/16/2017","TotalPayment":"$918328.73","Status":1,"Type":1},{"OrderID":"36987-2983","ShipCountry":"FR","ShipAddress":"125 Declaration Terrace","ShipName":"Stanton, Jaskolski and Hettinger","OrderDate":"12/20/2016","TotalPayment":"$1093094.18","Status":2,"Type":3},{"OrderID":"50268-750","ShipCountry":"CN","ShipAddress":"6180 Graedel Terrace","ShipName":"Bechtelar-Lehner","OrderDate":"1/14/2017","TotalPayment":"$172569.44","Status":3,"Type":2}]},\n{"RecordID":286,"FirstName":"Everard","LastName":"Waszkiewicz","Company":"Devbug","Email":"ewaszkiewicz7x@dion.ne.jp","Phone":"227-294-8309","Status":3,"Type":1,"Orders":[{"OrderID":"59746-001","ShipCountry":"SY","ShipAddress":"5 Ludington Circle","ShipName":"Stiedemann-Balistreri","OrderDate":"5/3/2017","TotalPayment":"$58446.61","Status":5,"Type":1},{"OrderID":"61727-306","ShipCountry":"CN","ShipAddress":"93329 Tony Park","ShipName":"Volkman, Grant and Hermiston","OrderDate":"9/30/2017","TotalPayment":"$900949.00","Status":1,"Type":3},{"OrderID":"14783-032","ShipCountry":"PL","ShipAddress":"24964 Petterle Place","ShipName":"Kris-Kozey","OrderDate":"7/29/2017","TotalPayment":"$49055.05","Status":1,"Type":3},{"OrderID":"37808-194","ShipCountry":"JP","ShipAddress":"47 1st Drive","ShipName":"Ryan Group","OrderDate":"1/23/2017","TotalPayment":"$58297.80","Status":5,"Type":3},{"OrderID":"60512-9063","ShipCountry":"TH","ShipAddress":"1074 Arkansas Street","ShipName":"Lockman and Sons","OrderDate":"9/10/2016","TotalPayment":"$587192.48","Status":1,"Type":1},{"OrderID":"28877-5970","ShipCountry":"CN","ShipAddress":"975 Gerald Alley","ShipName":"Gleason LLC","OrderDate":"1/13/2016","TotalPayment":"$1092006.07","Status":5,"Type":3},{"OrderID":"13668-281","ShipCountry":"MX","ShipAddress":"36 Manley Court","ShipName":"Johns LLC","OrderDate":"4/11/2017","TotalPayment":"$577214.71","Status":5,"Type":1},{"OrderID":"21695-501","ShipCountry":"ID","ShipAddress":"47494 Thierer Trail","ShipName":"Dare, Kutch and Boehm","OrderDate":"1/3/2016","TotalPayment":"$684035.64","Status":5,"Type":2},{"OrderID":"43199-013","ShipCountry":"CN","ShipAddress":"9 Ohio Hill","ShipName":"Pfeffer, Satterfield and Bartoletti","OrderDate":"6/13/2017","TotalPayment":"$738695.47","Status":2,"Type":2},{"OrderID":"49349-566","ShipCountry":"CN","ShipAddress":"43 Stuart Parkway","ShipName":"O\'Keefe-Harber","OrderDate":"6/21/2017","TotalPayment":"$1149402.43","Status":4,"Type":3},{"OrderID":"65044-9954","ShipCountry":"CN","ShipAddress":"65 Dwight Trail","ShipName":"Harris and Sons","OrderDate":"4/12/2017","TotalPayment":"$1014980.17","Status":4,"Type":3},{"OrderID":"54738-554","ShipCountry":"PT","ShipAddress":"812 Waxwing Avenue","ShipName":"Pacocha, Ledner and Swift","OrderDate":"5/2/2017","TotalPayment":"$289155.86","Status":6,"Type":3},{"OrderID":"60681-7002","ShipCountry":"HR","ShipAddress":"18 Stone Corner Road","ShipName":"Nienow-Hirthe","OrderDate":"9/30/2016","TotalPayment":"$1141375.42","Status":6,"Type":3},{"OrderID":"61314-630","ShipCountry":"CR","ShipAddress":"3596 Dixon Alley","ShipName":"Stracke Group","OrderDate":"10/26/2017","TotalPayment":"$487639.93","Status":2,"Type":2},{"OrderID":"56062-166","ShipCountry":"CN","ShipAddress":"47378 Fulton Pass","ShipName":"Crona, Konopelski and Keeling","OrderDate":"11/24/2017","TotalPayment":"$588740.30","Status":2,"Type":2},{"OrderID":"52584-241","ShipCountry":"PH","ShipAddress":"8 Hollow Ridge Crossing","ShipName":"Barrows LLC","OrderDate":"8/21/2016","TotalPayment":"$264997.12","Status":1,"Type":3},{"OrderID":"68327-026","ShipCountry":"FR","ShipAddress":"88754 Monterey Court","ShipName":"Brekke-Rempel","OrderDate":"6/25/2016","TotalPayment":"$1101653.69","Status":5,"Type":2},{"OrderID":"68788-9813","ShipCountry":"PT","ShipAddress":"708 Moland Drive","ShipName":"Rath, Rath and O\'Kon","OrderDate":"5/1/2017","TotalPayment":"$718189.54","Status":5,"Type":2},{"OrderID":"12634-179","ShipCountry":"CN","ShipAddress":"06 Vahlen Center","ShipName":"Weissnat and Sons","OrderDate":"1/12/2016","TotalPayment":"$759438.89","Status":4,"Type":2},{"OrderID":"52124-0002","ShipCountry":"PS","ShipAddress":"51 Northwestern Place","ShipName":"Gaylord Inc","OrderDate":"6/13/2016","TotalPayment":"$325607.52","Status":2,"Type":1}]},\n{"RecordID":287,"FirstName":"Henka","LastName":"Saltmarsh","Company":"Skyndu","Email":"hsaltmarsh7y@163.com","Phone":"658-428-2860","Status":1,"Type":3,"Orders":[{"OrderID":"51655-010","ShipCountry":"CN","ShipAddress":"981 Village Green Center","ShipName":"Hayes-Rowe","OrderDate":"4/4/2017","TotalPayment":"$834963.25","Status":5,"Type":2},{"OrderID":"10578-037","ShipCountry":"PH","ShipAddress":"35 Blackbird Crossing","ShipName":"Bosco Inc","OrderDate":"8/1/2017","TotalPayment":"$954783.43","Status":1,"Type":2},{"OrderID":"68016-143","ShipCountry":"PH","ShipAddress":"665 Buell Lane","ShipName":"Block Inc","OrderDate":"1/7/2016","TotalPayment":"$774180.02","Status":1,"Type":3},{"OrderID":"62175-205","ShipCountry":"BR","ShipAddress":"2 Clemons Park","ShipName":"Baumbach-Rolfson","OrderDate":"1/3/2017","TotalPayment":"$805880.44","Status":1,"Type":1},{"OrderID":"68387-210","ShipCountry":"PH","ShipAddress":"94 Kinsman Center","ShipName":"Brekke, Kovacek and Zieme","OrderDate":"12/16/2016","TotalPayment":"$616165.88","Status":5,"Type":1},{"OrderID":"59667-0072","ShipCountry":"MY","ShipAddress":"3452 Cherokee Pass","ShipName":"Runte-Wiza","OrderDate":"6/15/2016","TotalPayment":"$1074319.24","Status":3,"Type":2},{"OrderID":"59390-206","ShipCountry":"CN","ShipAddress":"874 High Crossing Pass","ShipName":"Hackett-Johnston","OrderDate":"11/10/2017","TotalPayment":"$255278.77","Status":1,"Type":3},{"OrderID":"36987-3166","ShipCountry":"NO","ShipAddress":"727 Anzinger Place","ShipName":"Monahan, Hoeger and O\'Connell","OrderDate":"1/3/2016","TotalPayment":"$568646.83","Status":4,"Type":3},{"OrderID":"62011-0097","ShipCountry":"RU","ShipAddress":"0 Duke Park","ShipName":"Schmidt, Legros and Ernser","OrderDate":"10/7/2017","TotalPayment":"$685338.21","Status":1,"Type":3},{"OrderID":"54973-3172","ShipCountry":"RU","ShipAddress":"52565 Haas Place","ShipName":"Batz-Cartwright","OrderDate":"3/15/2017","TotalPayment":"$48550.76","Status":1,"Type":1},{"OrderID":"63824-163","ShipCountry":"RU","ShipAddress":"717 Old Gate Parkway","ShipName":"Murphy-Zboncak","OrderDate":"11/9/2016","TotalPayment":"$96566.46","Status":4,"Type":1},{"OrderID":"52007-140","ShipCountry":"CM","ShipAddress":"35353 Lakewood Gardens Point","ShipName":"Boyle-Turcotte","OrderDate":"7/3/2016","TotalPayment":"$240877.44","Status":5,"Type":1},{"OrderID":"62716-665","ShipCountry":"CA","ShipAddress":"4 Debs Drive","ShipName":"Pouros-Carroll","OrderDate":"8/18/2016","TotalPayment":"$1070119.29","Status":4,"Type":1}]},\n{"RecordID":288,"FirstName":"Jeane","LastName":"Gaspar","Company":"Dynazzy","Email":"jgaspar7z@army.mil","Phone":"586-470-9326","Status":2,"Type":1,"Orders":[{"OrderID":"24488-026","ShipCountry":"NL","ShipAddress":"56859 Nobel Circle","ShipName":"Konopelski-Homenick","OrderDate":"11/3/2017","TotalPayment":"$579098.48","Status":3,"Type":2},{"OrderID":"54868-5846","ShipCountry":"BR","ShipAddress":"7 Susan Way","ShipName":"Schimmel, Ratke and Cummings","OrderDate":"9/11/2017","TotalPayment":"$1123559.99","Status":1,"Type":2},{"OrderID":"54868-5844","ShipCountry":"PH","ShipAddress":"0283 Linden Parkway","ShipName":"Runolfsson-O\'Kon","OrderDate":"8/4/2017","TotalPayment":"$459802.65","Status":3,"Type":1},{"OrderID":"60429-146","ShipCountry":"JP","ShipAddress":"862 Oriole Terrace","ShipName":"Ritchie-Stehr","OrderDate":"2/5/2017","TotalPayment":"$1147190.44","Status":5,"Type":1},{"OrderID":"58411-184","ShipCountry":"CN","ShipAddress":"1733 Lerdahl Drive","ShipName":"Kuvalis-Kulas","OrderDate":"2/20/2017","TotalPayment":"$1097955.03","Status":3,"Type":2},{"OrderID":"49643-370","ShipCountry":"ID","ShipAddress":"4 Summerview Alley","ShipName":"Stark, Mohr and Windler","OrderDate":"12/12/2017","TotalPayment":"$433309.83","Status":2,"Type":2},{"OrderID":"49738-459","ShipCountry":"IR","ShipAddress":"020 Hoard Junction","ShipName":"Gutkowski Inc","OrderDate":"8/25/2017","TotalPayment":"$537908.62","Status":5,"Type":2},{"OrderID":"55714-4405","ShipCountry":"BR","ShipAddress":"5492 Pearson Trail","ShipName":"Cremin-Thiel","OrderDate":"9/13/2017","TotalPayment":"$227764.72","Status":3,"Type":1}]},\n{"RecordID":289,"FirstName":"Judith","LastName":"Halpin","Company":"Abata","Email":"jhalpin80@uiuc.edu","Phone":"822-677-9707","Status":1,"Type":2,"Orders":[{"OrderID":"59039-005","ShipCountry":"KE","ShipAddress":"78 Milwaukee Center","ShipName":"Wilderman LLC","OrderDate":"4/9/2016","TotalPayment":"$165750.60","Status":2,"Type":2},{"OrderID":"31190-400","ShipCountry":"MX","ShipAddress":"4 Browning Hill","ShipName":"Smith, Huels and Cummings","OrderDate":"8/17/2016","TotalPayment":"$99734.67","Status":3,"Type":3},{"OrderID":"21695-400","ShipCountry":"ID","ShipAddress":"83 Oneill Place","ShipName":"Osinski-Will","OrderDate":"7/9/2017","TotalPayment":"$586092.44","Status":5,"Type":3},{"OrderID":"61570-111","ShipCountry":"PT","ShipAddress":"649 Blackbird Pass","ShipName":"Schaden-Spencer","OrderDate":"9/1/2017","TotalPayment":"$1138142.27","Status":6,"Type":2},{"OrderID":"60432-741","ShipCountry":"BA","ShipAddress":"7 Dawn Way","ShipName":"Schroeder-Kemmer","OrderDate":"12/10/2016","TotalPayment":"$121127.13","Status":4,"Type":2},{"OrderID":"63629-1383","ShipCountry":"FR","ShipAddress":"992 Vernon Crossing","ShipName":"Collier-Homenick","OrderDate":"6/5/2017","TotalPayment":"$1050874.35","Status":3,"Type":3},{"OrderID":"0591-0853","ShipCountry":"TZ","ShipAddress":"6369 Upham Circle","ShipName":"McClure, Armstrong and Schmeler","OrderDate":"8/21/2017","TotalPayment":"$849601.81","Status":3,"Type":3},{"OrderID":"33261-357","ShipCountry":"GS","ShipAddress":"90510 Doe Crossing Parkway","ShipName":"Brown LLC","OrderDate":"3/21/2016","TotalPayment":"$146984.01","Status":1,"Type":2},{"OrderID":"63629-4998","ShipCountry":"ID","ShipAddress":"47 Parkside Plaza","ShipName":"Parisian-Hane","OrderDate":"3/16/2016","TotalPayment":"$606108.62","Status":5,"Type":1},{"OrderID":"67877-220","ShipCountry":"CN","ShipAddress":"9 Amoth Way","ShipName":"Turcotte-Hahn","OrderDate":"11/1/2016","TotalPayment":"$156980.25","Status":1,"Type":3},{"OrderID":"59262-353","ShipCountry":"PH","ShipAddress":"824 Debs Terrace","ShipName":"Dietrich-Lueilwitz","OrderDate":"11/2/2016","TotalPayment":"$349342.66","Status":5,"Type":1},{"OrderID":"0378-3120","ShipCountry":"MX","ShipAddress":"189 Little Fleur Park","ShipName":"Bernier-Jakubowski","OrderDate":"5/14/2016","TotalPayment":"$1037639.99","Status":3,"Type":1},{"OrderID":"0009-5093","ShipCountry":"FR","ShipAddress":"0 Elmside Parkway","ShipName":"Mueller Inc","OrderDate":"9/29/2016","TotalPayment":"$645737.00","Status":5,"Type":2},{"OrderID":"52261-0206","ShipCountry":"BR","ShipAddress":"7935 Forest Run Way","ShipName":"Bechtelar LLC","OrderDate":"7/24/2017","TotalPayment":"$990399.30","Status":6,"Type":2},{"OrderID":"61919-629","ShipCountry":"LV","ShipAddress":"99 Melrose Way","ShipName":"Kirlin, Okuneva and Bernhard","OrderDate":"2/12/2017","TotalPayment":"$144461.71","Status":3,"Type":3},{"OrderID":"68788-8001","ShipCountry":"CN","ShipAddress":"1 Everett Road","ShipName":"Nikolaus Inc","OrderDate":"4/23/2016","TotalPayment":"$852847.89","Status":2,"Type":3},{"OrderID":"65044-3456","ShipCountry":"IR","ShipAddress":"908 Oak Place","ShipName":"Hermiston Group","OrderDate":"1/13/2017","TotalPayment":"$1014561.67","Status":1,"Type":3},{"OrderID":"41520-123","ShipCountry":"CN","ShipAddress":"86 Algoma Crossing","ShipName":"Bechtelar, Weimann and Jones","OrderDate":"4/19/2017","TotalPayment":"$938678.35","Status":5,"Type":1},{"OrderID":"53045-300","ShipCountry":"BS","ShipAddress":"497 Washington Point","ShipName":"Stanton, Kris and Kunze","OrderDate":"7/15/2016","TotalPayment":"$457167.90","Status":5,"Type":2},{"OrderID":"0378-1132","ShipCountry":"ID","ShipAddress":"69939 Menomonie Trail","ShipName":"Donnelly-Stoltenberg","OrderDate":"8/8/2017","TotalPayment":"$874086.15","Status":2,"Type":1}]},\n{"RecordID":290,"FirstName":"Christoforo","LastName":"Darling","Company":"Brainverse","Email":"cdarling81@bravesites.com","Phone":"383-578-5658","Status":5,"Type":1,"Orders":[{"OrderID":"60760-227","ShipCountry":"JP","ShipAddress":"104 Sullivan Alley","ShipName":"Daniel and Sons","OrderDate":"11/19/2017","TotalPayment":"$1116438.34","Status":4,"Type":1},{"OrderID":"0904-0004","ShipCountry":"RU","ShipAddress":"7 Packers Road","ShipName":"Bernier, Leannon and Effertz","OrderDate":"2/27/2016","TotalPayment":"$1184158.59","Status":5,"Type":2},{"OrderID":"55289-638","ShipCountry":"ID","ShipAddress":"91990 Hoepker Avenue","ShipName":"Monahan and Sons","OrderDate":"2/23/2017","TotalPayment":"$1123217.72","Status":2,"Type":2},{"OrderID":"36987-1899","ShipCountry":"AR","ShipAddress":"7803 Declaration Pass","ShipName":"Harvey-Mraz","OrderDate":"9/12/2017","TotalPayment":"$1086393.54","Status":5,"Type":3},{"OrderID":"54868-3619","ShipCountry":"SE","ShipAddress":"18862 Del Sol Parkway","ShipName":"Rempel, Gislason and Hills","OrderDate":"4/27/2017","TotalPayment":"$800590.89","Status":4,"Type":3},{"OrderID":"50845-0017","ShipCountry":"RU","ShipAddress":"88 Bluejay Alley","ShipName":"Bins-Herzog","OrderDate":"4/10/2017","TotalPayment":"$1054325.06","Status":2,"Type":1},{"OrderID":"68462-228","ShipCountry":"US","ShipAddress":"803 Cottonwood Point","ShipName":"Mertz Inc","OrderDate":"12/14/2017","TotalPayment":"$1153352.24","Status":4,"Type":2},{"OrderID":"55154-1610","ShipCountry":"PT","ShipAddress":"08 Stone Corner Way","ShipName":"Hilpert LLC","OrderDate":"8/9/2017","TotalPayment":"$1099022.57","Status":3,"Type":1},{"OrderID":"49825-724","ShipCountry":"RU","ShipAddress":"67742 Old Gate Terrace","ShipName":"Fritsch Group","OrderDate":"4/3/2017","TotalPayment":"$611478.25","Status":6,"Type":2},{"OrderID":"98132-749","ShipCountry":"RU","ShipAddress":"35951 Ridgeview Way","ShipName":"Johnson, Wisoky and Doyle","OrderDate":"7/16/2016","TotalPayment":"$704931.17","Status":3,"Type":2},{"OrderID":"11410-006","ShipCountry":"GR","ShipAddress":"8 Stang Alley","ShipName":"Shields, Hagenes and Trantow","OrderDate":"12/17/2017","TotalPayment":"$819103.37","Status":3,"Type":1},{"OrderID":"58892-518","ShipCountry":"CZ","ShipAddress":"3 Nancy Pass","ShipName":"Murazik, Jaskolski and Cronin","OrderDate":"2/25/2016","TotalPayment":"$871401.85","Status":6,"Type":3},{"OrderID":"67544-253","ShipCountry":"RU","ShipAddress":"7 Victoria Road","ShipName":"Ward-Swift","OrderDate":"7/26/2017","TotalPayment":"$478117.33","Status":2,"Type":2},{"OrderID":"63354-009","ShipCountry":"TH","ShipAddress":"7 Knutson Drive","ShipName":"Lindgren and Sons","OrderDate":"10/20/2017","TotalPayment":"$778512.15","Status":3,"Type":1},{"OrderID":"63739-366","ShipCountry":"RU","ShipAddress":"544 Briar Crest Way","ShipName":"Gottlieb, Reynolds and Gorczany","OrderDate":"6/13/2016","TotalPayment":"$1025718.54","Status":3,"Type":2},{"OrderID":"45163-451","ShipCountry":"RU","ShipAddress":"9210 David Point","ShipName":"Halvorson and Sons","OrderDate":"1/28/2017","TotalPayment":"$246577.30","Status":6,"Type":2},{"OrderID":"0143-1277","ShipCountry":"MC","ShipAddress":"61164 Arizona Circle","ShipName":"Hoeger-Lemke","OrderDate":"6/12/2016","TotalPayment":"$592524.77","Status":2,"Type":2},{"OrderID":"0228-3505","ShipCountry":"RU","ShipAddress":"54 Lakewood Crossing","ShipName":"Kuhic-Krajcik","OrderDate":"2/29/2016","TotalPayment":"$1100846.90","Status":6,"Type":1},{"OrderID":"54868-6049","ShipCountry":"ID","ShipAddress":"0734 Dorton Junction","ShipName":"Hirthe-Breitenberg","OrderDate":"3/8/2017","TotalPayment":"$264718.25","Status":2,"Type":1}]},\n{"RecordID":291,"FirstName":"Terrie","LastName":"Sich","Company":"Edgeify","Email":"tsich82@meetup.com","Phone":"298-819-3626","Status":6,"Type":3,"Orders":[{"OrderID":"59779-428","ShipCountry":"KR","ShipAddress":"812 Oriole Pass","ShipName":"Hackett-Halvorson","OrderDate":"7/30/2016","TotalPayment":"$1010820.45","Status":6,"Type":3},{"OrderID":"51079-938","ShipCountry":"BR","ShipAddress":"8248 Miller Terrace","ShipName":"Quitzon, Tremblay and Mayert","OrderDate":"5/7/2016","TotalPayment":"$281606.98","Status":5,"Type":3},{"OrderID":"76340-7001","ShipCountry":"CN","ShipAddress":"12 Myrtle Plaza","ShipName":"Sauer-Koepp","OrderDate":"5/1/2016","TotalPayment":"$620504.30","Status":1,"Type":2},{"OrderID":"67226-1020","ShipCountry":"CN","ShipAddress":"3 Vernon Drive","ShipName":"Jast-Corwin","OrderDate":"11/6/2017","TotalPayment":"$38299.02","Status":1,"Type":3},{"OrderID":"68472-062","ShipCountry":"GR","ShipAddress":"749 Vernon Pass","ShipName":"Kuphal, Gerlach and Jast","OrderDate":"5/2/2016","TotalPayment":"$957336.20","Status":1,"Type":1},{"OrderID":"10812-971","ShipCountry":"PL","ShipAddress":"458 Randy Crossing","ShipName":"Volkman, Reilly and Corwin","OrderDate":"2/2/2017","TotalPayment":"$343694.52","Status":4,"Type":1},{"OrderID":"0869-0434","ShipCountry":"JP","ShipAddress":"8458 Roth Pass","ShipName":"Christiansen, Schiller and Kozey","OrderDate":"7/10/2017","TotalPayment":"$19786.96","Status":1,"Type":1},{"OrderID":"55566-5040","ShipCountry":"FR","ShipAddress":"074 Grayhawk Road","ShipName":"Larkin, Gislason and Senger","OrderDate":"8/8/2017","TotalPayment":"$452463.34","Status":1,"Type":2},{"OrderID":"55910-559","ShipCountry":"JP","ShipAddress":"37 Mariners Cove Way","ShipName":"Rempel, Thiel and Prosacco","OrderDate":"9/30/2017","TotalPayment":"$449359.65","Status":5,"Type":1},{"OrderID":"49348-477","ShipCountry":"ID","ShipAddress":"9 Valley Edge Point","ShipName":"Wilderman-Greenholt","OrderDate":"12/7/2016","TotalPayment":"$422876.20","Status":4,"Type":2},{"OrderID":"55154-4987","ShipCountry":"TZ","ShipAddress":"5453 Utah Way","ShipName":"Abbott Group","OrderDate":"2/17/2016","TotalPayment":"$354720.09","Status":1,"Type":1},{"OrderID":"0023-9155","ShipCountry":"US","ShipAddress":"18399 Morningstar Avenue","ShipName":"Wyman-Thiel","OrderDate":"11/4/2017","TotalPayment":"$989627.17","Status":3,"Type":1},{"OrderID":"53346-1359","ShipCountry":"CN","ShipAddress":"15 Northfield Point","ShipName":"McGlynn, Bernhard and Hane","OrderDate":"11/1/2017","TotalPayment":"$295689.76","Status":3,"Type":2},{"OrderID":"53329-941","ShipCountry":"PH","ShipAddress":"454 Myrtle Alley","ShipName":"Swift LLC","OrderDate":"5/13/2016","TotalPayment":"$655904.51","Status":1,"Type":3},{"OrderID":"0591-3753","ShipCountry":"FR","ShipAddress":"55985 Harbort Junction","ShipName":"Lang, Rempel and Hills","OrderDate":"7/2/2017","TotalPayment":"$16318.50","Status":5,"Type":3},{"OrderID":"37012-499","ShipCountry":"VC","ShipAddress":"6469 Spaight Drive","ShipName":"Kerluke-Kub","OrderDate":"1/27/2016","TotalPayment":"$476363.06","Status":4,"Type":1},{"OrderID":"50114-7015","ShipCountry":"ID","ShipAddress":"93 Mockingbird Parkway","ShipName":"Hoppe, Kohler and Nikolaus","OrderDate":"5/10/2017","TotalPayment":"$637283.30","Status":3,"Type":2}]},\n{"RecordID":292,"FirstName":"Ertha","LastName":"Rawlings","Company":"Eamia","Email":"erawlings83@mac.com","Phone":"882-762-2222","Status":1,"Type":1,"Orders":[{"OrderID":"54868-5030","ShipCountry":"HR","ShipAddress":"0877 Anderson Hill","ShipName":"O\'Keefe-Bednar","OrderDate":"4/16/2017","TotalPayment":"$645757.92","Status":1,"Type":3},{"OrderID":"55289-911","ShipCountry":"PL","ShipAddress":"60545 Pennsylvania Junction","ShipName":"Wehner-Hettinger","OrderDate":"4/5/2016","TotalPayment":"$1075377.63","Status":4,"Type":2},{"OrderID":"0113-0622","ShipCountry":"ME","ShipAddress":"46 Northridge Road","ShipName":"Murphy LLC","OrderDate":"7/8/2017","TotalPayment":"$261361.74","Status":6,"Type":1},{"OrderID":"0143-9939","ShipCountry":"UA","ShipAddress":"7 Lunder Plaza","ShipName":"Torphy, Grady and Kovacek","OrderDate":"12/5/2016","TotalPayment":"$529815.39","Status":1,"Type":1},{"OrderID":"10631-099","ShipCountry":"UA","ShipAddress":"007 Lukken Crossing","ShipName":"Howe, Grant and McLaughlin","OrderDate":"12/27/2017","TotalPayment":"$365555.48","Status":4,"Type":3},{"OrderID":"55312-377","ShipCountry":"KM","ShipAddress":"7075 2nd Circle","ShipName":"Stehr-Stroman","OrderDate":"3/5/2017","TotalPayment":"$597579.34","Status":6,"Type":3},{"OrderID":"27437-207","ShipCountry":"UG","ShipAddress":"0986 Dunning Plaza","ShipName":"Corkery, Rath and Dooley","OrderDate":"1/2/2016","TotalPayment":"$256731.54","Status":3,"Type":2},{"OrderID":"10096-0289","ShipCountry":"MX","ShipAddress":"0701 Kedzie Parkway","ShipName":"Krajcik, Auer and Champlin","OrderDate":"4/30/2017","TotalPayment":"$638615.28","Status":3,"Type":3},{"OrderID":"52125-680","ShipCountry":"CO","ShipAddress":"35 Shasta Way","ShipName":"Legros LLC","OrderDate":"10/25/2017","TotalPayment":"$862282.15","Status":3,"Type":1},{"OrderID":"55154-6627","ShipCountry":"TH","ShipAddress":"22 Mandrake Parkway","ShipName":"Metz-Gaylord","OrderDate":"9/18/2016","TotalPayment":"$1018304.43","Status":4,"Type":3},{"OrderID":"0363-0560","ShipCountry":"ID","ShipAddress":"6 Bellgrove Circle","ShipName":"Leffler-Goldner","OrderDate":"6/12/2016","TotalPayment":"$80491.47","Status":1,"Type":3},{"OrderID":"0363-0236","ShipCountry":"ID","ShipAddress":"3 Forest Dale Way","ShipName":"Macejkovic, Blick and Bins","OrderDate":"11/12/2017","TotalPayment":"$187000.08","Status":6,"Type":3},{"OrderID":"61543-7237","ShipCountry":"MY","ShipAddress":"6781 Buell Center","ShipName":"Champlin LLC","OrderDate":"8/11/2017","TotalPayment":"$34072.26","Status":5,"Type":2},{"OrderID":"49035-101","ShipCountry":"ID","ShipAddress":"79 Daystar Drive","ShipName":"Lakin-Klocko","OrderDate":"5/5/2016","TotalPayment":"$446963.75","Status":4,"Type":3},{"OrderID":"17630-2005","ShipCountry":"PH","ShipAddress":"2 Northridge Avenue","ShipName":"Schumm, Kertzmann and Schinner","OrderDate":"4/3/2017","TotalPayment":"$128297.14","Status":1,"Type":2},{"OrderID":"10967-057","ShipCountry":"IE","ShipAddress":"8 Artisan Way","ShipName":"Reinger LLC","OrderDate":"10/20/2016","TotalPayment":"$428866.51","Status":4,"Type":1},{"OrderID":"36987-2716","ShipCountry":"US","ShipAddress":"1036 Gerald Place","ShipName":"Abshire and Sons","OrderDate":"3/3/2016","TotalPayment":"$312472.22","Status":6,"Type":3},{"OrderID":"0781-5209","ShipCountry":"PL","ShipAddress":"5351 Harper Pass","ShipName":"Huel, Koch and Schultz","OrderDate":"10/5/2017","TotalPayment":"$945029.41","Status":5,"Type":1},{"OrderID":"66579-0090","ShipCountry":"ID","ShipAddress":"538 Dapin Place","ShipName":"Beahan-Botsford","OrderDate":"3/15/2016","TotalPayment":"$750837.19","Status":5,"Type":3},{"OrderID":"41190-321","ShipCountry":"CN","ShipAddress":"70022 Nevada Street","ShipName":"Homenick-Crooks","OrderDate":"7/1/2016","TotalPayment":"$252768.88","Status":5,"Type":1}]},\n{"RecordID":293,"FirstName":"Ulrika","LastName":"Yitzhakof","Company":"Youtags","Email":"uyitzhakof84@addtoany.com","Phone":"399-924-0896","Status":5,"Type":3,"Orders":[{"OrderID":"50268-335","ShipCountry":"ID","ShipAddress":"24 Lakeland Avenue","ShipName":"Turcotte, D\'Amore and Hills","OrderDate":"5/3/2016","TotalPayment":"$1171159.84","Status":3,"Type":2},{"OrderID":"53346-1330","ShipCountry":"NG","ShipAddress":"8708 Mandrake Way","ShipName":"Rogahn-Bins","OrderDate":"7/19/2016","TotalPayment":"$1037175.79","Status":1,"Type":2},{"OrderID":"10147-0881","ShipCountry":"UA","ShipAddress":"445 Westend Drive","ShipName":"Kihn-O\'Hara","OrderDate":"3/23/2017","TotalPayment":"$610637.63","Status":3,"Type":1},{"OrderID":"58443-0022","ShipCountry":"AR","ShipAddress":"3 Westend Point","ShipName":"Schuster, Ondricka and O\'Conner","OrderDate":"4/25/2017","TotalPayment":"$448192.54","Status":1,"Type":2},{"OrderID":"0591-5555","ShipCountry":"PH","ShipAddress":"1 Shopko Place","ShipName":"Block LLC","OrderDate":"7/16/2017","TotalPayment":"$739813.40","Status":2,"Type":1},{"OrderID":"48951-4057","ShipCountry":"BY","ShipAddress":"6904 Leroy Plaza","ShipName":"Little, Wisoky and Murray","OrderDate":"8/8/2016","TotalPayment":"$726872.96","Status":6,"Type":2},{"OrderID":"52125-660","ShipCountry":"PL","ShipAddress":"6128 Starling Place","ShipName":"Schmitt-Reichel","OrderDate":"10/13/2016","TotalPayment":"$165867.29","Status":2,"Type":3},{"OrderID":"68788-9796","ShipCountry":"FR","ShipAddress":"16 Tennessee Road","ShipName":"Murray-Thompson","OrderDate":"9/21/2016","TotalPayment":"$1052960.01","Status":1,"Type":3},{"OrderID":"68016-134","ShipCountry":"PH","ShipAddress":"35054 Doe Crossing Alley","ShipName":"Lemke Inc","OrderDate":"1/21/2016","TotalPayment":"$1069746.70","Status":6,"Type":3},{"OrderID":"43419-703","ShipCountry":"CN","ShipAddress":"5805 Fairview Lane","ShipName":"Gorczany LLC","OrderDate":"4/26/2017","TotalPayment":"$552314.10","Status":4,"Type":1},{"OrderID":"0363-0531","ShipCountry":"US","ShipAddress":"6662 Troy Lane","ShipName":"Schneider, Hilll and Spencer","OrderDate":"4/8/2016","TotalPayment":"$277740.21","Status":2,"Type":1},{"OrderID":"30142-370","ShipCountry":"PH","ShipAddress":"275 Lyons Terrace","ShipName":"Bayer-Eichmann","OrderDate":"5/14/2016","TotalPayment":"$762598.30","Status":6,"Type":3},{"OrderID":"75983-738","ShipCountry":"PL","ShipAddress":"57861 School Street","ShipName":"Harris-Orn","OrderDate":"5/5/2016","TotalPayment":"$429737.37","Status":5,"Type":3},{"OrderID":"15127-730","ShipCountry":"ID","ShipAddress":"60 Holy Cross Plaza","ShipName":"Wilderman-Kassulke","OrderDate":"9/14/2017","TotalPayment":"$592720.54","Status":6,"Type":3}]},\n{"RecordID":294,"FirstName":"Fannie","LastName":"Harnwell","Company":"Linkbuzz","Email":"fharnwell85@behance.net","Phone":"503-650-4806","Status":4,"Type":1,"Orders":[{"OrderID":"36800-162","ShipCountry":"CN","ShipAddress":"02045 Canary Avenue","ShipName":"Mante, Renner and Gerhold","OrderDate":"6/30/2016","TotalPayment":"$544081.36","Status":1,"Type":3},{"OrderID":"99207-010","ShipCountry":"PT","ShipAddress":"851 Elmside Drive","ShipName":"Rutherford-Grimes","OrderDate":"12/8/2016","TotalPayment":"$1132139.01","Status":3,"Type":3},{"OrderID":"21695-007","ShipCountry":"CM","ShipAddress":"67548 Aberg Court","ShipName":"Emmerich, VonRueden and Paucek","OrderDate":"1/14/2016","TotalPayment":"$69243.60","Status":1,"Type":3},{"OrderID":"57243-055","ShipCountry":"CN","ShipAddress":"9573 Morrow Way","ShipName":"Kuhic, Stark and Kutch","OrderDate":"9/6/2016","TotalPayment":"$250480.92","Status":1,"Type":1},{"OrderID":"37205-724","ShipCountry":"ID","ShipAddress":"5 Village Green Trail","ShipName":"Koch Inc","OrderDate":"8/2/2017","TotalPayment":"$522849.36","Status":2,"Type":1}]},\n{"RecordID":295,"FirstName":"Cherise","LastName":"Styan","Company":"Agivu","Email":"cstyan86@tmall.com","Phone":"701-347-0202","Status":5,"Type":3,"Orders":[{"OrderID":"0121-0544","ShipCountry":"ID","ShipAddress":"288 Leroy Court","ShipName":"Kihn Group","OrderDate":"10/4/2016","TotalPayment":"$790432.31","Status":5,"Type":1},{"OrderID":"10191-1566","ShipCountry":"BR","ShipAddress":"3 Welch Point","ShipName":"Barton Group","OrderDate":"3/10/2017","TotalPayment":"$795802.06","Status":3,"Type":1},{"OrderID":"11673-041","ShipCountry":"ID","ShipAddress":"10 Laurel Pass","ShipName":"Robel Group","OrderDate":"3/18/2017","TotalPayment":"$629560.40","Status":4,"Type":3},{"OrderID":"68428-114","ShipCountry":"CA","ShipAddress":"95 La Follette Pass","ShipName":"Ondricka LLC","OrderDate":"7/5/2016","TotalPayment":"$329283.86","Status":4,"Type":3},{"OrderID":"54868-4630","ShipCountry":"NL","ShipAddress":"97 Garrison Circle","ShipName":"Ankunding-Cole","OrderDate":"10/11/2017","TotalPayment":"$1066260.59","Status":4,"Type":1},{"OrderID":"59779-614","ShipCountry":"BR","ShipAddress":"88027 Sheridan Center","ShipName":"Doyle-Kiehn","OrderDate":"11/4/2017","TotalPayment":"$465597.64","Status":4,"Type":1},{"OrderID":"0603-5482","ShipCountry":"ID","ShipAddress":"3 Algoma Plaza","ShipName":"Hoppe Inc","OrderDate":"9/13/2017","TotalPayment":"$208039.02","Status":2,"Type":1},{"OrderID":"49808-123","ShipCountry":"GR","ShipAddress":"6471 Nobel Park","ShipName":"Beahan LLC","OrderDate":"5/19/2017","TotalPayment":"$511151.33","Status":3,"Type":3},{"OrderID":"33261-220","ShipCountry":"CN","ShipAddress":"57384 Spaight Road","ShipName":"Abernathy-Kub","OrderDate":"6/4/2017","TotalPayment":"$224612.04","Status":6,"Type":3},{"OrderID":"98132-2132","ShipCountry":"FR","ShipAddress":"9260 Emmet Drive","ShipName":"Schuster, Shanahan and Gaylord","OrderDate":"11/30/2017","TotalPayment":"$1064770.99","Status":6,"Type":3},{"OrderID":"36987-2759","ShipCountry":"CN","ShipAddress":"714 Ridgeway Pass","ShipName":"Spencer, Schowalter and Kling","OrderDate":"12/1/2017","TotalPayment":"$705492.37","Status":2,"Type":1},{"OrderID":"52125-444","ShipCountry":"UA","ShipAddress":"453 Darwin Junction","ShipName":"Leffler-Rau","OrderDate":"1/13/2016","TotalPayment":"$683426.43","Status":4,"Type":2},{"OrderID":"62558-001","ShipCountry":"CN","ShipAddress":"57 Loeprich Circle","ShipName":"Wintheiser Inc","OrderDate":"12/18/2017","TotalPayment":"$98814.44","Status":1,"Type":3},{"OrderID":"55648-154","ShipCountry":"FR","ShipAddress":"94 Beilfuss Parkway","ShipName":"Schneider and Sons","OrderDate":"11/17/2017","TotalPayment":"$702665.99","Status":6,"Type":3},{"OrderID":"0603-7642","ShipCountry":"BE","ShipAddress":"93 Westridge Park","ShipName":"Hintz Inc","OrderDate":"4/26/2016","TotalPayment":"$543903.59","Status":4,"Type":3},{"OrderID":"69097-153","ShipCountry":"NP","ShipAddress":"6 Bowman Place","ShipName":"Jenkins, Carroll and Leannon","OrderDate":"1/14/2017","TotalPayment":"$150568.37","Status":1,"Type":3},{"OrderID":"63304-901","ShipCountry":"EG","ShipAddress":"8846 Weeping Birch Terrace","ShipName":"Terry-Schaefer","OrderDate":"12/24/2017","TotalPayment":"$255260.57","Status":3,"Type":2}]},\n{"RecordID":296,"FirstName":"Gardiner","LastName":"Antrack","Company":"LiveZ","Email":"gantrack87@indiegogo.com","Phone":"656-286-6951","Status":3,"Type":2,"Orders":[{"OrderID":"57782-397","ShipCountry":"US","ShipAddress":"5598 Ridge Oak Street","ShipName":"Lakin and Sons","OrderDate":"2/15/2016","TotalPayment":"$116351.40","Status":6,"Type":2},{"OrderID":"62175-313","ShipCountry":"CN","ShipAddress":"9 Anniversary Street","ShipName":"Lemke, Turcotte and Beer","OrderDate":"4/11/2017","TotalPayment":"$1118796.70","Status":1,"Type":2},{"OrderID":"42291-143","ShipCountry":"FR","ShipAddress":"2070 Kensington Lane","ShipName":"O\'Keefe-Hessel","OrderDate":"11/16/2016","TotalPayment":"$688523.66","Status":6,"Type":1},{"OrderID":"49738-409","ShipCountry":"CN","ShipAddress":"474 Forest Trail","ShipName":"Davis, Kihn and Gerhold","OrderDate":"5/8/2017","TotalPayment":"$536287.79","Status":6,"Type":2},{"OrderID":"54868-6052","ShipCountry":"ID","ShipAddress":"75 Almo Junction","ShipName":"Bernhard, Orn and Johnson","OrderDate":"4/16/2017","TotalPayment":"$498871.60","Status":4,"Type":1},{"OrderID":"59779-188","ShipCountry":"SE","ShipAddress":"2186 Kinsman Circle","ShipName":"Corwin, Schimmel and Hessel","OrderDate":"7/17/2017","TotalPayment":"$606764.48","Status":4,"Type":3},{"OrderID":"0781-4003","ShipCountry":"ID","ShipAddress":"4 Chive Parkway","ShipName":"Greenfelder and Sons","OrderDate":"4/13/2016","TotalPayment":"$449559.98","Status":3,"Type":3},{"OrderID":"36987-2515","ShipCountry":"CN","ShipAddress":"1 Harper Street","ShipName":"Jast, Hoeger and Pagac","OrderDate":"9/17/2016","TotalPayment":"$1034394.62","Status":5,"Type":1},{"OrderID":"63629-4026","ShipCountry":"PH","ShipAddress":"7 Ramsey Circle","ShipName":"Bergnaum-Kub","OrderDate":"11/25/2017","TotalPayment":"$525752.33","Status":2,"Type":3},{"OrderID":"54575-946","ShipCountry":"ID","ShipAddress":"247 Doe Crossing Court","ShipName":"Corkery-Waelchi","OrderDate":"12/28/2016","TotalPayment":"$1155092.27","Status":3,"Type":2},{"OrderID":"55154-9419","ShipCountry":"RS","ShipAddress":"052 Scofield Place","ShipName":"Weber-Renner","OrderDate":"8/23/2017","TotalPayment":"$191349.72","Status":1,"Type":2},{"OrderID":"49035-353","ShipCountry":"YE","ShipAddress":"63 Meadow Valley Parkway","ShipName":"Ferry-Streich","OrderDate":"2/10/2017","TotalPayment":"$961940.59","Status":6,"Type":1},{"OrderID":"0409-1176","ShipCountry":"PH","ShipAddress":"55090 Walton Hill","ShipName":"Mraz Group","OrderDate":"4/6/2016","TotalPayment":"$868979.22","Status":2,"Type":3},{"OrderID":"17772-103","ShipCountry":"PE","ShipAddress":"9073 Express Lane","ShipName":"Crist-Bednar","OrderDate":"7/15/2017","TotalPayment":"$320725.00","Status":5,"Type":1},{"OrderID":"43063-307","ShipCountry":"CU","ShipAddress":"789 Fisk Way","ShipName":"Goodwin Group","OrderDate":"7/26/2017","TotalPayment":"$264174.08","Status":6,"Type":1}]},\n{"RecordID":297,"FirstName":"Vida","LastName":"Letty","Company":"Skippad","Email":"vletty88@oracle.com","Phone":"210-267-5838","Status":3,"Type":2,"Orders":[{"OrderID":"68084-737","ShipCountry":"US","ShipAddress":"9785 Corscot Road","ShipName":"Weissnat-Jones","OrderDate":"1/25/2016","TotalPayment":"$439250.28","Status":4,"Type":3},{"OrderID":"65862-157","ShipCountry":"CW","ShipAddress":"25838 Morning Trail","ShipName":"Bernier-Lang","OrderDate":"11/15/2017","TotalPayment":"$1133493.79","Status":1,"Type":3},{"OrderID":"49349-326","ShipCountry":"CA","ShipAddress":"3338 Dixon Hill","ShipName":"Gusikowski-Yundt","OrderDate":"12/22/2017","TotalPayment":"$1134016.69","Status":1,"Type":3},{"OrderID":"0378-1450","ShipCountry":"CN","ShipAddress":"07 Crescent Oaks Avenue","ShipName":"Kris-Larson","OrderDate":"3/26/2017","TotalPayment":"$669117.80","Status":1,"Type":1},{"OrderID":"68429-201","ShipCountry":"ID","ShipAddress":"309 Melody Trail","ShipName":"Williamson, McClure and Carter","OrderDate":"9/13/2016","TotalPayment":"$738920.21","Status":2,"Type":2},{"OrderID":"55316-393","ShipCountry":"GT","ShipAddress":"9 Barby Park","ShipName":"Rolfson Group","OrderDate":"9/19/2017","TotalPayment":"$311236.80","Status":6,"Type":1},{"OrderID":"70253-470","ShipCountry":"ID","ShipAddress":"436 Union Place","ShipName":"Homenick-Cruickshank","OrderDate":"8/26/2016","TotalPayment":"$321873.76","Status":1,"Type":3},{"OrderID":"0006-0731","ShipCountry":"HR","ShipAddress":"1 Judy Center","ShipName":"Runolfsdottir-Kozey","OrderDate":"3/12/2017","TotalPayment":"$879822.62","Status":3,"Type":3},{"OrderID":"10544-011","ShipCountry":"KP","ShipAddress":"2690 Utah Plaza","ShipName":"Koelpin, Spinka and Schaden","OrderDate":"1/19/2016","TotalPayment":"$1006394.73","Status":6,"Type":3},{"OrderID":"0904-5840","ShipCountry":"CN","ShipAddress":"1 Eastwood Road","ShipName":"Beier and Sons","OrderDate":"9/3/2017","TotalPayment":"$1063504.85","Status":6,"Type":3},{"OrderID":"11822-2102","ShipCountry":"ID","ShipAddress":"16 Evergreen Lane","ShipName":"Botsford-Huel","OrderDate":"7/8/2017","TotalPayment":"$747813.87","Status":6,"Type":1},{"OrderID":"56062-227","ShipCountry":"FI","ShipAddress":"914 Monterey Lane","ShipName":"Macejkovic LLC","OrderDate":"1/31/2016","TotalPayment":"$612333.87","Status":1,"Type":3}]},\n{"RecordID":298,"FirstName":"Sasha","LastName":"Marsden","Company":"Skyndu","Email":"smarsden89@cam.ac.uk","Phone":"182-598-9278","Status":2,"Type":2,"Orders":[{"OrderID":"41250-704","ShipCountry":"UA","ShipAddress":"93 Corben Avenue","ShipName":"Cartwright-Cole","OrderDate":"9/10/2017","TotalPayment":"$280975.68","Status":6,"Type":2},{"OrderID":"52007-110","ShipCountry":"ID","ShipAddress":"547 Brown Way","ShipName":"Brekke-Kunde","OrderDate":"1/31/2016","TotalPayment":"$1012225.83","Status":3,"Type":3},{"OrderID":"55289-007","ShipCountry":"UA","ShipAddress":"606 Oak Valley Drive","ShipName":"Kub-Wilderman","OrderDate":"3/17/2016","TotalPayment":"$886822.08","Status":2,"Type":2},{"OrderID":"59779-613","ShipCountry":"ID","ShipAddress":"3308 Bultman Terrace","ShipName":"Baumbach-Hirthe","OrderDate":"11/24/2017","TotalPayment":"$904052.62","Status":1,"Type":3},{"OrderID":"10889-106","ShipCountry":"FI","ShipAddress":"54 Green Ridge Terrace","ShipName":"Kautzer-Sawayn","OrderDate":"12/24/2017","TotalPayment":"$428398.52","Status":5,"Type":1},{"OrderID":"47335-928","ShipCountry":"CN","ShipAddress":"6 Monterey Terrace","ShipName":"Bartell-Fahey","OrderDate":"6/29/2016","TotalPayment":"$771680.54","Status":1,"Type":1}]},\n{"RecordID":299,"FirstName":"Connie","LastName":"Darth","Company":"Youspan","Email":"cdarth8a@soundcloud.com","Phone":"213-857-8543","Status":6,"Type":3,"Orders":[{"OrderID":"0178-0821","ShipCountry":"EE","ShipAddress":"8305 Delaware Alley","ShipName":"Cummings-Collins","OrderDate":"1/11/2017","TotalPayment":"$304122.59","Status":1,"Type":2},{"OrderID":"66336-479","ShipCountry":"RS","ShipAddress":"280 Myrtle Street","ShipName":"Hoppe LLC","OrderDate":"10/28/2016","TotalPayment":"$336073.70","Status":5,"Type":2},{"OrderID":"75870-002","ShipCountry":"MX","ShipAddress":"478 Acker Trail","ShipName":"Corkery, Kautzer and Mayert","OrderDate":"3/29/2016","TotalPayment":"$108327.70","Status":1,"Type":3},{"OrderID":"49288-0105","ShipCountry":"ID","ShipAddress":"892 Mendota Street","ShipName":"Donnelly, Mertz and Metz","OrderDate":"5/2/2017","TotalPayment":"$455045.75","Status":2,"Type":2},{"OrderID":"52125-168","ShipCountry":"GM","ShipAddress":"37676 Cordelia Trail","ShipName":"Marquardt, Davis and Bins","OrderDate":"9/24/2017","TotalPayment":"$626023.73","Status":1,"Type":2},{"OrderID":"63304-261","ShipCountry":"TH","ShipAddress":"38376 Porter Junction","ShipName":"Barton LLC","OrderDate":"4/10/2017","TotalPayment":"$861271.40","Status":4,"Type":1},{"OrderID":"21695-432","ShipCountry":"CN","ShipAddress":"19 Westridge Point","ShipName":"Schultz Group","OrderDate":"7/31/2016","TotalPayment":"$1175136.70","Status":3,"Type":1},{"OrderID":"0591-3720","ShipCountry":"PE","ShipAddress":"0881 Vahlen Point","ShipName":"Shanahan-Kunze","OrderDate":"10/8/2017","TotalPayment":"$1128260.38","Status":2,"Type":2},{"OrderID":"0363-5270","ShipCountry":"ID","ShipAddress":"0552 Crescent Oaks Trail","ShipName":"Bechtelar, Littel and Zboncak","OrderDate":"8/8/2017","TotalPayment":"$672856.66","Status":3,"Type":2},{"OrderID":"49035-555","ShipCountry":"PT","ShipAddress":"552 Walton Junction","ShipName":"Kutch-Larson","OrderDate":"8/25/2016","TotalPayment":"$160995.52","Status":4,"Type":2},{"OrderID":"64762-874","ShipCountry":"SE","ShipAddress":"205 Hazelcrest Parkway","ShipName":"Bednar and Sons","OrderDate":"2/13/2016","TotalPayment":"$31423.23","Status":3,"Type":3},{"OrderID":"47682-681","ShipCountry":"JP","ShipAddress":"8061 Rutledge Circle","ShipName":"Kirlin, Botsford and Green","OrderDate":"1/1/2017","TotalPayment":"$798750.48","Status":5,"Type":2},{"OrderID":"63739-079","ShipCountry":"VN","ShipAddress":"12 West Court","ShipName":"Torphy-Kutch","OrderDate":"7/23/2017","TotalPayment":"$934185.09","Status":1,"Type":3},{"OrderID":"67475-313","ShipCountry":"CY","ShipAddress":"5815 Hayes Avenue","ShipName":"Runte Inc","OrderDate":"12/10/2016","TotalPayment":"$1028518.46","Status":2,"Type":2},{"OrderID":"55154-5992","ShipCountry":"ID","ShipAddress":"29336 Crownhardt Park","ShipName":"Doyle LLC","OrderDate":"12/19/2016","TotalPayment":"$873778.64","Status":6,"Type":3},{"OrderID":"0407-0691","ShipCountry":"CN","ShipAddress":"3 Village Trail","ShipName":"Bernier, Cruickshank and Sanford","OrderDate":"7/24/2016","TotalPayment":"$770955.80","Status":2,"Type":2},{"OrderID":"57520-0081","ShipCountry":"CN","ShipAddress":"5058 Lakewood Gardens Plaza","ShipName":"Batz, Kutch and Dickens","OrderDate":"3/22/2016","TotalPayment":"$637112.75","Status":3,"Type":2},{"OrderID":"52125-211","ShipCountry":"CN","ShipAddress":"3955 Rigney Circle","ShipName":"MacGyver-Kris","OrderDate":"10/7/2017","TotalPayment":"$802817.81","Status":5,"Type":1},{"OrderID":"42254-004","ShipCountry":"RU","ShipAddress":"80 Rockefeller Parkway","ShipName":"Hills-Ebert","OrderDate":"2/27/2017","TotalPayment":"$538738.30","Status":6,"Type":1}]},\n{"RecordID":300,"FirstName":"Elijah","LastName":"Blincow","Company":"Aimbu","Email":"eblincow8b@drupal.org","Phone":"444-358-2559","Status":4,"Type":1,"Orders":[{"OrderID":"28595-801","ShipCountry":"PT","ShipAddress":"70133 Granby Junction","ShipName":"Windler-Legros","OrderDate":"3/21/2017","TotalPayment":"$973450.86","Status":5,"Type":1},{"OrderID":"10742-8662","ShipCountry":"CN","ShipAddress":"5 Oak Valley Drive","ShipName":"Roob Group","OrderDate":"7/16/2016","TotalPayment":"$351619.95","Status":5,"Type":3},{"OrderID":"54868-6036","ShipCountry":"PH","ShipAddress":"22 Autumn Leaf Hill","ShipName":"Durgan-Shanahan","OrderDate":"2/7/2016","TotalPayment":"$164038.65","Status":3,"Type":3},{"OrderID":"64127-054","ShipCountry":"HN","ShipAddress":"77910 Tony Alley","ShipName":"Ernser LLC","OrderDate":"2/5/2017","TotalPayment":"$483234.46","Status":4,"Type":1},{"OrderID":"0378-9682","ShipCountry":"RU","ShipAddress":"3352 Stang Junction","ShipName":"Klocko Inc","OrderDate":"10/7/2016","TotalPayment":"$900799.01","Status":3,"Type":3},{"OrderID":"68788-9502","ShipCountry":"PA","ShipAddress":"5312 Northfield Avenue","ShipName":"Berge, Kohler and D\'Amore","OrderDate":"5/31/2016","TotalPayment":"$195484.02","Status":2,"Type":3},{"OrderID":"0378-1550","ShipCountry":"CA","ShipAddress":"1489 Sachtjen Point","ShipName":"Green-Littel","OrderDate":"2/4/2017","TotalPayment":"$1099928.12","Status":2,"Type":3},{"OrderID":"67226-1020","ShipCountry":"MY","ShipAddress":"610 Prentice Alley","ShipName":"Oberbrunner Inc","OrderDate":"4/17/2016","TotalPayment":"$864101.11","Status":5,"Type":1},{"OrderID":"22577-070","ShipCountry":"PT","ShipAddress":"068 Warrior Point","ShipName":"Langosh, Hickle and Glover","OrderDate":"3/6/2017","TotalPayment":"$166628.87","Status":6,"Type":2},{"OrderID":"68084-449","ShipCountry":"SE","ShipAddress":"56565 Vidon Circle","ShipName":"Boyle, Davis and Kerluke","OrderDate":"6/18/2017","TotalPayment":"$1194255.34","Status":2,"Type":1},{"OrderID":"64406-807","ShipCountry":"RU","ShipAddress":"83 Merry Court","ShipName":"Steuber-Kuphal","OrderDate":"10/1/2017","TotalPayment":"$1105795.06","Status":6,"Type":3},{"OrderID":"60505-3255","ShipCountry":"MN","ShipAddress":"82897 6th Parkway","ShipName":"Hagenes-Orn","OrderDate":"11/27/2017","TotalPayment":"$257859.06","Status":1,"Type":1},{"OrderID":"76162-101","ShipCountry":"NG","ShipAddress":"6 Linden Road","ShipName":"Blick-Bechtelar","OrderDate":"5/23/2017","TotalPayment":"$38614.11","Status":2,"Type":3},{"OrderID":"51655-500","ShipCountry":"CN","ShipAddress":"52043 Hoffman Point","ShipName":"Weber Group","OrderDate":"9/24/2017","TotalPayment":"$22898.33","Status":6,"Type":2},{"OrderID":"64257-515","ShipCountry":"CN","ShipAddress":"315 Melody Terrace","ShipName":"Murray-Volkman","OrderDate":"4/14/2017","TotalPayment":"$622766.12","Status":5,"Type":2},{"OrderID":"36987-1879","ShipCountry":"SY","ShipAddress":"1656 Duke Park","ShipName":"Satterfield, Mayert and Grant","OrderDate":"7/24/2017","TotalPayment":"$807094.67","Status":6,"Type":2},{"OrderID":"49348-326","ShipCountry":"CN","ShipAddress":"6674 New Castle Street","ShipName":"Hahn-McClure","OrderDate":"4/13/2016","TotalPayment":"$307223.74","Status":4,"Type":1},{"OrderID":"0603-2339","ShipCountry":"PH","ShipAddress":"42271 Elka Way","ShipName":"Kuhlman Inc","OrderDate":"11/27/2016","TotalPayment":"$186777.78","Status":2,"Type":2},{"OrderID":"49349-305","ShipCountry":"UA","ShipAddress":"18449 Parkside Trail","ShipName":"Conn and Sons","OrderDate":"7/27/2016","TotalPayment":"$1002855.80","Status":2,"Type":2},{"OrderID":"54235-207","ShipCountry":"CO","ShipAddress":"03 Meadow Ridge Road","ShipName":"Spinka, Hilll and Pfeffer","OrderDate":"4/10/2017","TotalPayment":"$361119.89","Status":3,"Type":2}]},\n{"RecordID":301,"FirstName":"Fraze","LastName":"Scapelhorn","Company":"Browsetype","Email":"fscapelhorn8c@lycos.com","Phone":"592-949-7350","Status":4,"Type":1,"Orders":[{"OrderID":"64205-537","ShipCountry":"TH","ShipAddress":"779 Carey Lane","ShipName":"Hauck Inc","OrderDate":"9/23/2016","TotalPayment":"$859971.41","Status":6,"Type":2},{"OrderID":"37205-667","ShipCountry":"CN","ShipAddress":"78134 Crowley Court","ShipName":"Deckow-Robel","OrderDate":"10/31/2016","TotalPayment":"$108638.65","Status":3,"Type":2},{"OrderID":"66435-103","ShipCountry":"ID","ShipAddress":"2 Burning Wood Alley","ShipName":"Osinski-Kling","OrderDate":"3/7/2017","TotalPayment":"$432927.78","Status":2,"Type":1},{"OrderID":"0517-1010","ShipCountry":"CN","ShipAddress":"2818 Northwestern Place","ShipName":"Considine, Nikolaus and Harber","OrderDate":"4/17/2017","TotalPayment":"$787560.22","Status":3,"Type":1},{"OrderID":"53499-3571","ShipCountry":"PH","ShipAddress":"02683 Oakridge Street","ShipName":"Beier-Jacobson","OrderDate":"6/23/2017","TotalPayment":"$264686.80","Status":1,"Type":2},{"OrderID":"13925-040","ShipCountry":"PT","ShipAddress":"353 Myrtle Plaza","ShipName":"Stiedemann-Champlin","OrderDate":"3/6/2017","TotalPayment":"$930187.86","Status":6,"Type":2},{"OrderID":"11673-090","ShipCountry":"CN","ShipAddress":"55688 Namekagon Place","ShipName":"Hegmann Inc","OrderDate":"1/2/2016","TotalPayment":"$431060.33","Status":1,"Type":3},{"OrderID":"59428-720","ShipCountry":"CN","ShipAddress":"4 Cordelia Hill","ShipName":"Morissette and Sons","OrderDate":"12/28/2016","TotalPayment":"$425846.93","Status":1,"Type":1},{"OrderID":"43547-279","ShipCountry":"PE","ShipAddress":"06114 Rieder Plaza","ShipName":"Ryan-Keebler","OrderDate":"10/22/2017","TotalPayment":"$64375.89","Status":5,"Type":3},{"OrderID":"76119-1445","ShipCountry":"CN","ShipAddress":"0306 6th Junction","ShipName":"Lebsack and Sons","OrderDate":"4/8/2016","TotalPayment":"$900946.82","Status":3,"Type":3},{"OrderID":"0363-3440","ShipCountry":"RU","ShipAddress":"1314 Havey Terrace","ShipName":"Bode-Hauck","OrderDate":"1/4/2016","TotalPayment":"$594081.88","Status":3,"Type":2},{"OrderID":"41520-611","ShipCountry":"BR","ShipAddress":"8 Bultman Drive","ShipName":"Kutch Group","OrderDate":"9/30/2017","TotalPayment":"$675107.49","Status":4,"Type":3}]},\n{"RecordID":302,"FirstName":"Veradis","LastName":"Mettericke","Company":"Flashdog","Email":"vmettericke8d@soundcloud.com","Phone":"727-250-6284","Status":3,"Type":1,"Orders":[{"OrderID":"55045-3243","ShipCountry":"PH","ShipAddress":"92689 Crowley Center","ShipName":"Walter-Howe","OrderDate":"7/3/2016","TotalPayment":"$1140689.42","Status":6,"Type":3},{"OrderID":"36987-3311","ShipCountry":"RU","ShipAddress":"455 Cardinal Pass","ShipName":"Kassulke, Auer and Maggio","OrderDate":"10/31/2017","TotalPayment":"$176933.82","Status":5,"Type":3},{"OrderID":"49348-223","ShipCountry":"PT","ShipAddress":"7422 Scott Center","ShipName":"Reichel, Jones and Lueilwitz","OrderDate":"7/14/2017","TotalPayment":"$811003.69","Status":4,"Type":2},{"OrderID":"51389-113","ShipCountry":"KR","ShipAddress":"728 Stephen Pass","ShipName":"Wilkinson and Sons","OrderDate":"11/24/2017","TotalPayment":"$163804.64","Status":3,"Type":3},{"OrderID":"55670-958","ShipCountry":"KW","ShipAddress":"39 Pearson Center","ShipName":"Marks-Adams","OrderDate":"2/15/2016","TotalPayment":"$495150.13","Status":3,"Type":2},{"OrderID":"51079-154","ShipCountry":"BO","ShipAddress":"0 Forster Center","ShipName":"Volkman-Schimmel","OrderDate":"5/7/2016","TotalPayment":"$94412.66","Status":6,"Type":1}]},\n{"RecordID":303,"FirstName":"Benjamen","LastName":"Halford","Company":"Wikido","Email":"bhalford8e@sourceforge.net","Phone":"254-403-6287","Status":2,"Type":1,"Orders":[{"OrderID":"51672-4095","ShipCountry":"CN","ShipAddress":"192 Canary Court","ShipName":"Brakus-Gorczany","OrderDate":"11/1/2016","TotalPayment":"$144934.43","Status":4,"Type":3},{"OrderID":"21130-463","ShipCountry":"AR","ShipAddress":"4 Tony Alley","ShipName":"Romaguera-Wunsch","OrderDate":"7/26/2016","TotalPayment":"$170713.58","Status":5,"Type":2},{"OrderID":"68703-005","ShipCountry":"BR","ShipAddress":"0 John Wall Park","ShipName":"Rutherford Inc","OrderDate":"10/19/2017","TotalPayment":"$385971.78","Status":3,"Type":1},{"OrderID":"49349-061","ShipCountry":"PH","ShipAddress":"777 Burning Wood Place","ShipName":"Runolfsdottir, Jerde and Murazik","OrderDate":"12/5/2016","TotalPayment":"$921776.60","Status":5,"Type":1},{"OrderID":"55154-4209","ShipCountry":"ET","ShipAddress":"96856 Carey Park","ShipName":"Bahringer-Bailey","OrderDate":"6/14/2016","TotalPayment":"$244982.42","Status":6,"Type":3},{"OrderID":"11673-319","ShipCountry":"UA","ShipAddress":"813 Comanche Avenue","ShipName":"Abbott Group","OrderDate":"3/14/2017","TotalPayment":"$804775.54","Status":6,"Type":1},{"OrderID":"66129-020","ShipCountry":"CN","ShipAddress":"23 Shoshone Terrace","ShipName":"Williamson-Russel","OrderDate":"6/11/2017","TotalPayment":"$1182388.66","Status":2,"Type":2},{"OrderID":"0299-3820","ShipCountry":"CN","ShipAddress":"9 Manley Parkway","ShipName":"Boyer-Harris","OrderDate":"2/1/2016","TotalPayment":"$926270.15","Status":6,"Type":3},{"OrderID":"0052-0315","ShipCountry":"ID","ShipAddress":"98 Prairie Rose Street","ShipName":"Pfannerstill-Romaguera","OrderDate":"9/11/2016","TotalPayment":"$1001161.77","Status":4,"Type":1},{"OrderID":"37000-098","ShipCountry":"UA","ShipAddress":"7725 Lakewood Street","ShipName":"Kulas, Flatley and Tillman","OrderDate":"11/17/2017","TotalPayment":"$122079.20","Status":4,"Type":2},{"OrderID":"67046-030","ShipCountry":"RS","ShipAddress":"18 Summerview Terrace","ShipName":"Volkman, Weber and Daniel","OrderDate":"3/25/2017","TotalPayment":"$587078.92","Status":1,"Type":1},{"OrderID":"43353-818","ShipCountry":"PY","ShipAddress":"9 Summerview Pass","ShipName":"Effertz-Lebsack","OrderDate":"5/22/2017","TotalPayment":"$493616.39","Status":4,"Type":1},{"OrderID":"0409-1412","ShipCountry":"UA","ShipAddress":"7 Anthes Place","ShipName":"Padberg, Becker and Welch","OrderDate":"3/16/2017","TotalPayment":"$710095.26","Status":1,"Type":1},{"OrderID":"12634-183","ShipCountry":"MN","ShipAddress":"9982 Jenifer Point","ShipName":"Hintz and Sons","OrderDate":"12/1/2017","TotalPayment":"$249250.46","Status":4,"Type":3},{"OrderID":"67544-252","ShipCountry":"AL","ShipAddress":"3966 Gina Point","ShipName":"Ullrich Group","OrderDate":"2/14/2017","TotalPayment":"$1047315.16","Status":5,"Type":1},{"OrderID":"68788-9683","ShipCountry":"RU","ShipAddress":"1069 Forest Dale Pass","ShipName":"Quitzon-Steuber","OrderDate":"1/11/2016","TotalPayment":"$559894.50","Status":2,"Type":2},{"OrderID":"24488-010","ShipCountry":"GT","ShipAddress":"65 Rowland Court","ShipName":"Dare LLC","OrderDate":"9/1/2016","TotalPayment":"$675626.22","Status":1,"Type":3},{"OrderID":"68084-083","ShipCountry":"ID","ShipAddress":"993 Reinke Plaza","ShipName":"Paucek, Graham and Thompson","OrderDate":"2/1/2016","TotalPayment":"$1146227.00","Status":5,"Type":2},{"OrderID":"55289-806","ShipCountry":"CN","ShipAddress":"098 Manitowish Court","ShipName":"O\'Hara Inc","OrderDate":"11/24/2017","TotalPayment":"$530280.66","Status":6,"Type":3}]},\n{"RecordID":304,"FirstName":"Lebbie","LastName":"Bysh","Company":"Meembee","Email":"lbysh8f@google.co.jp","Phone":"667-895-8899","Status":4,"Type":1,"Orders":[{"OrderID":"43742-0101","ShipCountry":"NG","ShipAddress":"18257 6th Crossing","ShipName":"Fisher, Simonis and Dibbert","OrderDate":"6/29/2016","TotalPayment":"$939112.45","Status":1,"Type":1},{"OrderID":"16590-833","ShipCountry":"BR","ShipAddress":"13 Alpine Plaza","ShipName":"Heathcote-Grant","OrderDate":"2/19/2017","TotalPayment":"$137222.34","Status":5,"Type":2},{"OrderID":"54569-3285","ShipCountry":"CN","ShipAddress":"5555 Arrowood Hill","ShipName":"Gulgowski, Gibson and Collier","OrderDate":"4/26/2016","TotalPayment":"$10728.04","Status":6,"Type":2},{"OrderID":"45963-345","ShipCountry":"ID","ShipAddress":"14 Dovetail Center","ShipName":"Doyle-West","OrderDate":"10/6/2016","TotalPayment":"$55281.63","Status":2,"Type":3},{"OrderID":"10544-146","ShipCountry":"ID","ShipAddress":"9 6th Drive","ShipName":"Grady-Lakin","OrderDate":"9/20/2017","TotalPayment":"$66457.20","Status":2,"Type":1},{"OrderID":"35356-608","ShipCountry":"CN","ShipAddress":"9854 Namekagon Place","ShipName":"Rath Inc","OrderDate":"8/2/2016","TotalPayment":"$197162.64","Status":6,"Type":3},{"OrderID":"0904-6191","ShipCountry":"NL","ShipAddress":"42576 Springview Street","ShipName":"Leannon Inc","OrderDate":"10/12/2017","TotalPayment":"$134462.25","Status":4,"Type":1},{"OrderID":"0615-0378","ShipCountry":"ID","ShipAddress":"38110 Sutherland Terrace","ShipName":"Lakin, Kozey and Gottlieb","OrderDate":"10/15/2016","TotalPayment":"$1192309.02","Status":6,"Type":3},{"OrderID":"67858-001","ShipCountry":"CN","ShipAddress":"24 Coleman Court","ShipName":"Weber LLC","OrderDate":"7/19/2017","TotalPayment":"$417952.84","Status":6,"Type":1},{"OrderID":"10267-0064","ShipCountry":"AT","ShipAddress":"3978 Thompson Hill","ShipName":"Adams and Sons","OrderDate":"12/21/2017","TotalPayment":"$1048894.70","Status":2,"Type":3},{"OrderID":"36987-3130","ShipCountry":"KR","ShipAddress":"1 Steensland Place","ShipName":"O\'Conner, Hartmann and Bode","OrderDate":"8/16/2017","TotalPayment":"$377719.48","Status":1,"Type":3}]},\n{"RecordID":305,"FirstName":"Chrissy","LastName":"Mairs","Company":"Izio","Email":"cmairs8g@japanpost.jp","Phone":"304-339-6293","Status":2,"Type":1,"Orders":[{"OrderID":"58668-0581","ShipCountry":"KE","ShipAddress":"47 Shoshone Road","ShipName":"Bauch, Thompson and Cartwright","OrderDate":"10/8/2017","TotalPayment":"$194503.29","Status":2,"Type":1},{"OrderID":"11673-417","ShipCountry":"ID","ShipAddress":"5420 Ohio Drive","ShipName":"Reichert, Kshlerin and Kub","OrderDate":"9/5/2017","TotalPayment":"$212951.10","Status":4,"Type":1},{"OrderID":"0268-1524","ShipCountry":"ID","ShipAddress":"33335 Corben Trail","ShipName":"Torphy, Ortiz and Corkery","OrderDate":"9/29/2017","TotalPayment":"$781905.33","Status":6,"Type":1},{"OrderID":"54868-2331","ShipCountry":"MA","ShipAddress":"52 Rockefeller Circle","ShipName":"Rath-Schulist","OrderDate":"7/1/2017","TotalPayment":"$115229.94","Status":1,"Type":1},{"OrderID":"43857-0042","ShipCountry":"UA","ShipAddress":"2 4th Street","ShipName":"Predovic, Monahan and Anderson","OrderDate":"10/7/2016","TotalPayment":"$149203.13","Status":3,"Type":2},{"OrderID":"49643-365","ShipCountry":"CZ","ShipAddress":"3 Towne Park","ShipName":"Reinger LLC","OrderDate":"10/19/2016","TotalPayment":"$731670.33","Status":3,"Type":2},{"OrderID":"0172-5241","ShipCountry":"GR","ShipAddress":"5 Monument Parkway","ShipName":"Larson and Sons","OrderDate":"1/8/2017","TotalPayment":"$916472.01","Status":5,"Type":3},{"OrderID":"55154-1909","ShipCountry":"ZA","ShipAddress":"0263 Coleman Park","ShipName":"Hudson LLC","OrderDate":"2/18/2017","TotalPayment":"$226491.31","Status":2,"Type":2},{"OrderID":"16590-144","ShipCountry":"RU","ShipAddress":"0865 Arrowood Circle","ShipName":"Haley-Larkin","OrderDate":"4/27/2016","TotalPayment":"$541096.25","Status":2,"Type":2},{"OrderID":"55312-946","ShipCountry":"ID","ShipAddress":"98 Graedel Alley","ShipName":"Mertz and Sons","OrderDate":"7/28/2016","TotalPayment":"$592573.29","Status":6,"Type":2}]},\n{"RecordID":306,"FirstName":"Gavan","LastName":"Kiehl","Company":"Skilith","Email":"gkiehl8h@gov.uk","Phone":"762-995-1020","Status":1,"Type":2,"Orders":[{"OrderID":"55312-825","ShipCountry":"NZ","ShipAddress":"050 High Crossing Court","ShipName":"Lowe, Sporer and Moore","OrderDate":"3/11/2017","TotalPayment":"$779368.38","Status":5,"Type":3},{"OrderID":"42291-121","ShipCountry":"RU","ShipAddress":"8 Kinsman Drive","ShipName":"Anderson, Crist and Franecki","OrderDate":"9/29/2016","TotalPayment":"$336359.67","Status":3,"Type":1},{"OrderID":"0536-1004","ShipCountry":"ID","ShipAddress":"43268 Acker Avenue","ShipName":"Cassin-Jacobi","OrderDate":"3/5/2016","TotalPayment":"$71636.91","Status":1,"Type":1},{"OrderID":"34666-021","ShipCountry":"ID","ShipAddress":"229 Westridge Park","ShipName":"Ankunding, Kuhlman and Johns","OrderDate":"1/25/2016","TotalPayment":"$631972.67","Status":2,"Type":1},{"OrderID":"21695-132","ShipCountry":"BR","ShipAddress":"95 Nova Hill","ShipName":"Beahan, Kling and Grant","OrderDate":"7/13/2017","TotalPayment":"$691487.15","Status":1,"Type":3}]},\n{"RecordID":307,"FirstName":"Bordie","LastName":"Statter","Company":"Centizu","Email":"bstatter8i@a8.net","Phone":"900-143-0118","Status":6,"Type":3,"Orders":[{"OrderID":"41250-476","ShipCountry":"CN","ShipAddress":"51273 5th Circle","ShipName":"Doyle Group","OrderDate":"8/7/2017","TotalPayment":"$413292.46","Status":2,"Type":1},{"OrderID":"0378-0372","ShipCountry":"NI","ShipAddress":"8325 Colorado Street","ShipName":"Nikolaus LLC","OrderDate":"10/23/2016","TotalPayment":"$1173223.36","Status":3,"Type":1},{"OrderID":"66336-673","ShipCountry":"CA","ShipAddress":"66450 Saint Paul Crossing","ShipName":"Greenholt-Ondricka","OrderDate":"5/29/2016","TotalPayment":"$877123.48","Status":3,"Type":3},{"OrderID":"76354-205","ShipCountry":"US","ShipAddress":"23387 East Alley","ShipName":"Bednar Group","OrderDate":"6/26/2017","TotalPayment":"$519398.44","Status":2,"Type":3},{"OrderID":"0378-0228","ShipCountry":"CN","ShipAddress":"3961 Bartelt Street","ShipName":"Hyatt Inc","OrderDate":"4/30/2016","TotalPayment":"$283141.43","Status":6,"Type":1},{"OrderID":"0942-6330","ShipCountry":"MZ","ShipAddress":"631 Mandrake Street","ShipName":"Reichert-Jones","OrderDate":"10/9/2017","TotalPayment":"$619164.85","Status":2,"Type":2},{"OrderID":"63833-616","ShipCountry":"PS","ShipAddress":"62 Pierstorff Pass","ShipName":"Willms Inc","OrderDate":"4/8/2017","TotalPayment":"$568559.76","Status":4,"Type":1},{"OrderID":"36987-1393","ShipCountry":"ID","ShipAddress":"04609 Little Fleur Place","ShipName":"Kovacek-Borer","OrderDate":"6/26/2016","TotalPayment":"$577011.38","Status":4,"Type":1},{"OrderID":"55316-318","ShipCountry":"MX","ShipAddress":"5 Hovde Crossing","ShipName":"Goyette-Berge","OrderDate":"7/16/2016","TotalPayment":"$831446.38","Status":3,"Type":1},{"OrderID":"49288-0649","ShipCountry":"MA","ShipAddress":"0943 Badeau Point","ShipName":"Champlin-Schimmel","OrderDate":"4/10/2016","TotalPayment":"$201785.70","Status":5,"Type":1},{"OrderID":"65923-077","ShipCountry":"AT","ShipAddress":"7 Donald Court","ShipName":"Boyer-Torp","OrderDate":"9/21/2017","TotalPayment":"$842665.34","Status":3,"Type":1},{"OrderID":"61919-118","ShipCountry":"CN","ShipAddress":"1207 Delaware Drive","ShipName":"Barrows, Kiehn and Quitzon","OrderDate":"5/29/2016","TotalPayment":"$1140872.88","Status":3,"Type":1},{"OrderID":"60760-279","ShipCountry":"CN","ShipAddress":"15258 Lunder Junction","ShipName":"Wunsch-Kassulke","OrderDate":"10/7/2016","TotalPayment":"$1021350.75","Status":1,"Type":3},{"OrderID":"0093-3010","ShipCountry":"PH","ShipAddress":"221 Cardinal Pass","ShipName":"Gusikowski, Tremblay and O\'Conner","OrderDate":"2/18/2016","TotalPayment":"$826709.00","Status":2,"Type":1}]},\n{"RecordID":308,"FirstName":"Geri","LastName":"Hukin","Company":"Snaptags","Email":"ghukin8j@umich.edu","Phone":"315-384-3095","Status":1,"Type":3,"Orders":[{"OrderID":"0904-0789","ShipCountry":"HR","ShipAddress":"63100 Reinke Pass","ShipName":"Harvey, Weimann and Walter","OrderDate":"10/21/2017","TotalPayment":"$883177.44","Status":6,"Type":2},{"OrderID":"10147-0891","ShipCountry":"VN","ShipAddress":"99084 Susan Way","ShipName":"Considine-Runolfsdottir","OrderDate":"9/7/2017","TotalPayment":"$236803.03","Status":3,"Type":2},{"OrderID":"21695-030","ShipCountry":"AZ","ShipAddress":"635 Marquette Hill","ShipName":"Dietrich Inc","OrderDate":"1/28/2016","TotalPayment":"$959310.86","Status":2,"Type":2},{"OrderID":"52797-020","ShipCountry":"BR","ShipAddress":"05825 Bartelt Plaza","ShipName":"Koch and Sons","OrderDate":"3/14/2017","TotalPayment":"$866617.09","Status":4,"Type":3},{"OrderID":"60344-6001","ShipCountry":"SE","ShipAddress":"984 Harbort Hill","ShipName":"Stroman Inc","OrderDate":"8/6/2016","TotalPayment":"$1147624.75","Status":4,"Type":3},{"OrderID":"68647-197","ShipCountry":"CN","ShipAddress":"2 Sommers Lane","ShipName":"Rutherford LLC","OrderDate":"8/3/2017","TotalPayment":"$1159630.21","Status":3,"Type":2},{"OrderID":"49643-423","ShipCountry":"GM","ShipAddress":"1605 Rutledge Lane","ShipName":"Murphy, Veum and Cole","OrderDate":"12/12/2017","TotalPayment":"$1035802.70","Status":3,"Type":1},{"OrderID":"57815-011","ShipCountry":"HN","ShipAddress":"63134 Gina Pass","ShipName":"Pagac-Miller","OrderDate":"5/7/2017","TotalPayment":"$870877.09","Status":3,"Type":1},{"OrderID":"42982-4461","ShipCountry":"RU","ShipAddress":"4 Waxwing Junction","ShipName":"Brown LLC","OrderDate":"8/9/2017","TotalPayment":"$818041.50","Status":2,"Type":3}]},\n{"RecordID":309,"FirstName":"Gard","LastName":"Ullyott","Company":"Mynte","Email":"gullyott8k@microsoft.com","Phone":"649-149-0674","Status":1,"Type":1,"Orders":[{"OrderID":"49349-588","ShipCountry":"CN","ShipAddress":"457 Ryan Hill","ShipName":"Considine, Pacocha and Russel","OrderDate":"5/15/2017","TotalPayment":"$184861.78","Status":3,"Type":3},{"OrderID":"51009-127","ShipCountry":"RU","ShipAddress":"27 Hudson Drive","ShipName":"Emmerich Group","OrderDate":"9/14/2016","TotalPayment":"$59717.32","Status":3,"Type":1},{"OrderID":"66472-024","ShipCountry":"PH","ShipAddress":"12795 Waxwing Street","ShipName":"Gleichner LLC","OrderDate":"4/24/2016","TotalPayment":"$566963.97","Status":6,"Type":3},{"OrderID":"0363-0070","ShipCountry":"ID","ShipAddress":"27 Moose Park","ShipName":"Nikolaus and Sons","OrderDate":"8/5/2017","TotalPayment":"$650946.40","Status":5,"Type":1},{"OrderID":"53041-412","ShipCountry":"NO","ShipAddress":"61 Gulseth Road","ShipName":"Purdy, Prohaska and McKenzie","OrderDate":"12/14/2017","TotalPayment":"$50533.46","Status":1,"Type":3},{"OrderID":"0904-5572","ShipCountry":"PL","ShipAddress":"362 Eagle Crest Drive","ShipName":"Gibson, Bechtelar and Jacobs","OrderDate":"1/26/2016","TotalPayment":"$228418.32","Status":5,"Type":3},{"OrderID":"55154-6159","ShipCountry":"ID","ShipAddress":"1902 Warbler Place","ShipName":"Lubowitz-Krajcik","OrderDate":"11/15/2017","TotalPayment":"$517298.79","Status":3,"Type":3},{"OrderID":"10812-409","ShipCountry":"CN","ShipAddress":"76054 Chive Junction","ShipName":"King Inc","OrderDate":"12/26/2017","TotalPayment":"$767770.21","Status":6,"Type":3}]},\n{"RecordID":310,"FirstName":"Red","LastName":"MacLure","Company":"Yakitri","Email":"rmaclure8l@comsenz.com","Phone":"999-953-7813","Status":5,"Type":2,"Orders":[{"OrderID":"68703-117","ShipCountry":"MN","ShipAddress":"6 8th Terrace","ShipName":"Mraz, Langworth and Hahn","OrderDate":"1/25/2017","TotalPayment":"$922771.82","Status":4,"Type":2},{"OrderID":"49348-702","ShipCountry":"JP","ShipAddress":"609 Lunder Parkway","ShipName":"Boyer-Greenfelder","OrderDate":"5/16/2017","TotalPayment":"$273015.04","Status":4,"Type":3},{"OrderID":"49204-001","ShipCountry":"PH","ShipAddress":"77 Leroy Drive","ShipName":"Russel-Russel","OrderDate":"12/21/2016","TotalPayment":"$876503.66","Status":1,"Type":3},{"OrderID":"0131-1810","ShipCountry":"YE","ShipAddress":"3865 Reindahl Plaza","ShipName":"Hackett, Nicolas and Pouros","OrderDate":"2/13/2016","TotalPayment":"$848125.74","Status":4,"Type":3},{"OrderID":"67457-108","ShipCountry":"ID","ShipAddress":"4 Eliot Junction","ShipName":"Grimes LLC","OrderDate":"1/14/2016","TotalPayment":"$70401.03","Status":6,"Type":1},{"OrderID":"0363-2529","ShipCountry":"PL","ShipAddress":"2558 Welch Place","ShipName":"Carter Inc","OrderDate":"8/25/2016","TotalPayment":"$516740.73","Status":6,"Type":1},{"OrderID":"68026-241","ShipCountry":"RU","ShipAddress":"05772 Redwing Circle","ShipName":"Kunze LLC","OrderDate":"6/10/2016","TotalPayment":"$119635.20","Status":6,"Type":1},{"OrderID":"43063-014","ShipCountry":"CA","ShipAddress":"9573 Derek Crossing","ShipName":"Weimann LLC","OrderDate":"8/15/2017","TotalPayment":"$1197521.66","Status":4,"Type":1},{"OrderID":"0159-2500","ShipCountry":"PL","ShipAddress":"1 Briar Crest Avenue","ShipName":"Schuppe, Hammes and Breitenberg","OrderDate":"3/7/2016","TotalPayment":"$667446.76","Status":6,"Type":2},{"OrderID":"31645-157","ShipCountry":"PH","ShipAddress":"7 East Crossing","ShipName":"Brekke, Fahey and Fisher","OrderDate":"5/25/2016","TotalPayment":"$916128.90","Status":4,"Type":1}]},\n{"RecordID":311,"FirstName":"Eugenio","LastName":"Parfett","Company":"Jatri","Email":"eparfett8m@geocities.jp","Phone":"773-334-2162","Status":4,"Type":2,"Orders":[{"OrderID":"55711-064","ShipCountry":"CN","ShipAddress":"1895 Monica Alley","ShipName":"Schaefer LLC","OrderDate":"5/11/2016","TotalPayment":"$251421.52","Status":1,"Type":2},{"OrderID":"68828-111","ShipCountry":"CN","ShipAddress":"3 Browning Plaza","ShipName":"Schaefer LLC","OrderDate":"4/12/2016","TotalPayment":"$925764.47","Status":6,"Type":3},{"OrderID":"64893-495","ShipCountry":"JP","ShipAddress":"59908 Rusk Avenue","ShipName":"Stanton Group","OrderDate":"12/11/2017","TotalPayment":"$861910.69","Status":3,"Type":2},{"OrderID":"43857-0119","ShipCountry":"NZ","ShipAddress":"5699 Sutteridge Place","ShipName":"Luettgen, Medhurst and Jerde","OrderDate":"12/2/2017","TotalPayment":"$618701.94","Status":6,"Type":2},{"OrderID":"68462-293","ShipCountry":"NI","ShipAddress":"59 Hintze Parkway","ShipName":"Mueller and Sons","OrderDate":"5/9/2016","TotalPayment":"$190095.51","Status":3,"Type":3},{"OrderID":"63187-016","ShipCountry":"CO","ShipAddress":"43915 Clarendon Street","ShipName":"Lesch Group","OrderDate":"10/26/2016","TotalPayment":"$837483.34","Status":2,"Type":1},{"OrderID":"54569-1889","ShipCountry":"PL","ShipAddress":"5 Annamark Pass","ShipName":"Zieme-Ondricka","OrderDate":"8/15/2016","TotalPayment":"$766942.49","Status":3,"Type":2},{"OrderID":"55315-466","ShipCountry":"SE","ShipAddress":"47 Fieldstone Street","ShipName":"Stroman, Predovic and MacGyver","OrderDate":"11/20/2017","TotalPayment":"$1155352.03","Status":4,"Type":3},{"OrderID":"54868-5412","ShipCountry":"FR","ShipAddress":"04 Rockefeller Park","ShipName":"Reichert Group","OrderDate":"4/18/2017","TotalPayment":"$839692.40","Status":1,"Type":1}]},\n{"RecordID":312,"FirstName":"Maxwell","LastName":"Clucas","Company":"Innotype","Email":"mclucas8n@japanpost.jp","Phone":"525-609-6336","Status":5,"Type":1,"Orders":[{"OrderID":"52567-124","ShipCountry":"US","ShipAddress":"45613 Kennedy Parkway","ShipName":"Kunze, Nienow and Frami","OrderDate":"8/11/2017","TotalPayment":"$307398.57","Status":6,"Type":2},{"OrderID":"44946-1024","ShipCountry":"PH","ShipAddress":"47032 Blue Bill Park Drive","ShipName":"Walsh and Sons","OrderDate":"3/10/2017","TotalPayment":"$195241.57","Status":4,"Type":2},{"OrderID":"76347-125","ShipCountry":"MX","ShipAddress":"82 Prentice Avenue","ShipName":"Davis Group","OrderDate":"6/28/2017","TotalPayment":"$1175101.49","Status":4,"Type":2},{"OrderID":"60913-031","ShipCountry":"PE","ShipAddress":"74 Canary Street","ShipName":"Schiller-Shields","OrderDate":"4/23/2016","TotalPayment":"$456188.46","Status":2,"Type":2},{"OrderID":"49035-015","ShipCountry":"CZ","ShipAddress":"2275 Amoth Place","ShipName":"Kilback-Corkery","OrderDate":"8/19/2017","TotalPayment":"$350970.49","Status":5,"Type":1},{"OrderID":"54868-6212","ShipCountry":"ID","ShipAddress":"322 Manufacturers Center","ShipName":"Carter, Kunze and Konopelski","OrderDate":"12/5/2017","TotalPayment":"$515344.90","Status":2,"Type":2},{"OrderID":"36800-063","ShipCountry":"FR","ShipAddress":"2289 Rockefeller Center","ShipName":"Runolfsson, Cremin and Hammes","OrderDate":"6/25/2017","TotalPayment":"$173328.95","Status":6,"Type":1}]},\n{"RecordID":313,"FirstName":"Neala","LastName":"Darque","Company":"Topiczoom","Email":"ndarque8o@nytimes.com","Phone":"252-980-5741","Status":3,"Type":2,"Orders":[{"OrderID":"60429-205","ShipCountry":"SE","ShipAddress":"7 Mccormick Point","ShipName":"McLaughlin-Waelchi","OrderDate":"10/4/2017","TotalPayment":"$764597.29","Status":2,"Type":1},{"OrderID":"76045-006","ShipCountry":"MN","ShipAddress":"9 Tennyson Point","ShipName":"Doyle Group","OrderDate":"10/24/2016","TotalPayment":"$175321.72","Status":1,"Type":2},{"OrderID":"48951-5070","ShipCountry":"ID","ShipAddress":"28180 Heffernan Lane","ShipName":"Champlin LLC","OrderDate":"11/18/2017","TotalPayment":"$576901.78","Status":1,"Type":2},{"OrderID":"43269-670","ShipCountry":"US","ShipAddress":"764 Corscot Way","ShipName":"Beer Inc","OrderDate":"4/28/2016","TotalPayment":"$852967.10","Status":1,"Type":1},{"OrderID":"57687-906","ShipCountry":"FR","ShipAddress":"85 Ramsey Hill","ShipName":"Romaguera LLC","OrderDate":"2/8/2017","TotalPayment":"$166482.89","Status":3,"Type":2},{"OrderID":"30142-243","ShipCountry":"CN","ShipAddress":"14 Roxbury Point","ShipName":"Dietrich, Tromp and Lakin","OrderDate":"3/9/2016","TotalPayment":"$898210.76","Status":6,"Type":2},{"OrderID":"68016-224","ShipCountry":"LK","ShipAddress":"8025 Meadow Ridge Terrace","ShipName":"Predovic, Abernathy and Mitchell","OrderDate":"1/12/2016","TotalPayment":"$1056395.61","Status":1,"Type":2},{"OrderID":"44911-0121","ShipCountry":"ID","ShipAddress":"357 Lerdahl Crossing","ShipName":"Greenfelder, Metz and Okuneva","OrderDate":"11/3/2016","TotalPayment":"$589020.95","Status":3,"Type":1},{"OrderID":"24623-049","ShipCountry":"PH","ShipAddress":"914 Truax Alley","ShipName":"Gottlieb, Champlin and Koch","OrderDate":"1/22/2016","TotalPayment":"$857670.92","Status":2,"Type":2},{"OrderID":"37808-495","ShipCountry":"RU","ShipAddress":"2403 Namekagon Plaza","ShipName":"Gerlach LLC","OrderDate":"5/12/2017","TotalPayment":"$362763.59","Status":4,"Type":3},{"OrderID":"57520-0038","ShipCountry":"LU","ShipAddress":"251 School Avenue","ShipName":"Bartell, Krajcik and Jacobson","OrderDate":"6/28/2016","TotalPayment":"$347214.03","Status":5,"Type":1},{"OrderID":"41250-154","ShipCountry":"JP","ShipAddress":"94 Ridgeway Center","ShipName":"Bauch, Paucek and Lindgren","OrderDate":"9/4/2017","TotalPayment":"$596945.86","Status":3,"Type":2}]},\n{"RecordID":314,"FirstName":"Alexandros","LastName":"Wankel","Company":"Zava","Email":"awankel8p@bravesites.com","Phone":"229-711-8704","Status":2,"Type":2,"Orders":[{"OrderID":"42507-897","ShipCountry":"NC","ShipAddress":"941 Golf Road","ShipName":"Lowe-Deckow","OrderDate":"7/4/2016","TotalPayment":"$200440.86","Status":3,"Type":3},{"OrderID":"0904-5763","ShipCountry":"CN","ShipAddress":"986 Pearson Alley","ShipName":"Kshlerin LLC","OrderDate":"2/23/2017","TotalPayment":"$10262.84","Status":5,"Type":1},{"OrderID":"68788-0179","ShipCountry":"DO","ShipAddress":"712 Waubesa Plaza","ShipName":"O\'Reilly, Terry and Hansen","OrderDate":"6/24/2016","TotalPayment":"$562313.16","Status":1,"Type":2},{"OrderID":"64117-208","ShipCountry":"MT","ShipAddress":"859 Elka Drive","ShipName":"Fritsch Inc","OrderDate":"6/18/2017","TotalPayment":"$1178199.44","Status":3,"Type":1},{"OrderID":"0409-2053","ShipCountry":"SD","ShipAddress":"8 Bayside Lane","ShipName":"Christiansen Inc","OrderDate":"9/21/2017","TotalPayment":"$46013.96","Status":6,"Type":2},{"OrderID":"49967-295","ShipCountry":"PL","ShipAddress":"912 Knutson Park","ShipName":"Ratke LLC","OrderDate":"6/29/2017","TotalPayment":"$311575.83","Status":3,"Type":3},{"OrderID":"52959-008","ShipCountry":"TH","ShipAddress":"18 Old Shore Parkway","ShipName":"Mann-Bosco","OrderDate":"10/14/2017","TotalPayment":"$953358.16","Status":1,"Type":3}]},\n{"RecordID":315,"FirstName":"Bianka","LastName":"Lawry","Company":"Lazzy","Email":"blawry8q@guardian.co.uk","Phone":"351-736-6828","Status":3,"Type":2,"Orders":[{"OrderID":"0378-0723","ShipCountry":"ID","ShipAddress":"1316 Dorton Crossing","ShipName":"Zemlak Inc","OrderDate":"9/12/2017","TotalPayment":"$494997.16","Status":1,"Type":2},{"OrderID":"60681-1103","ShipCountry":"RU","ShipAddress":"7631 Monument Plaza","ShipName":"Schuppe, Hirthe and Willms","OrderDate":"8/9/2017","TotalPayment":"$603260.19","Status":2,"Type":1},{"OrderID":"68788-9212","ShipCountry":"BR","ShipAddress":"188 Evergreen Road","ShipName":"Quitzon Inc","OrderDate":"1/11/2017","TotalPayment":"$929199.56","Status":2,"Type":3},{"OrderID":"14537-408","ShipCountry":"FR","ShipAddress":"61 Lawn Crossing","ShipName":"Towne-Ondricka","OrderDate":"4/8/2016","TotalPayment":"$955762.50","Status":2,"Type":3},{"OrderID":"0378-0080","ShipCountry":"PL","ShipAddress":"82786 Sherman Pass","ShipName":"Heller and Sons","OrderDate":"9/30/2017","TotalPayment":"$759515.15","Status":3,"Type":2}]},\n{"RecordID":316,"FirstName":"Krisha","LastName":"Readie","Company":"Flashset","Email":"kreadie8r@marketplace.net","Phone":"495-724-7500","Status":6,"Type":1,"Orders":[{"OrderID":"57520-0614","ShipCountry":"PE","ShipAddress":"0228 Namekagon Road","ShipName":"Greenholt Inc","OrderDate":"10/25/2017","TotalPayment":"$743610.16","Status":4,"Type":2},{"OrderID":"58411-179","ShipCountry":"MZ","ShipAddress":"57620 Valley Edge Parkway","ShipName":"Blanda-Thiel","OrderDate":"1/6/2016","TotalPayment":"$1074951.10","Status":5,"Type":1},{"OrderID":"42571-112","ShipCountry":"CN","ShipAddress":"2 Granby Street","ShipName":"Gorczany-Marks","OrderDate":"2/18/2016","TotalPayment":"$494784.78","Status":4,"Type":2},{"OrderID":"0054-0079","ShipCountry":"RU","ShipAddress":"317 Lakewood Alley","ShipName":"Sawayn, Kertzmann and Cartwright","OrderDate":"7/15/2017","TotalPayment":"$1079073.56","Status":3,"Type":2},{"OrderID":"54738-904","ShipCountry":"US","ShipAddress":"223 Dryden Park","ShipName":"Jerde, Turner and Walker","OrderDate":"3/3/2017","TotalPayment":"$421220.21","Status":6,"Type":3},{"OrderID":"24236-484","ShipCountry":"CN","ShipAddress":"260 Ilene Lane","ShipName":"Sporer, Medhurst and Legros","OrderDate":"6/1/2016","TotalPayment":"$127894.92","Status":6,"Type":2},{"OrderID":"41163-180","ShipCountry":"SE","ShipAddress":"2 Cardinal Junction","ShipName":"Davis, Hudson and Mertz","OrderDate":"1/6/2016","TotalPayment":"$942725.09","Status":2,"Type":3},{"OrderID":"49348-080","ShipCountry":"ID","ShipAddress":"6 Banding Court","ShipName":"McLaughlin-Schaden","OrderDate":"3/10/2017","TotalPayment":"$596546.63","Status":2,"Type":2},{"OrderID":"55154-0355","ShipCountry":"PH","ShipAddress":"7 Barby Junction","ShipName":"Sauer-Tillman","OrderDate":"9/24/2017","TotalPayment":"$712159.85","Status":6,"Type":3},{"OrderID":"30142-344","ShipCountry":"BR","ShipAddress":"26312 Armistice Terrace","ShipName":"Emmerich, Hauck and Schimmel","OrderDate":"3/16/2017","TotalPayment":"$992802.71","Status":5,"Type":1},{"OrderID":"31645-152","ShipCountry":"AM","ShipAddress":"95065 Muir Plaza","ShipName":"Hane-Friesen","OrderDate":"7/16/2017","TotalPayment":"$937493.65","Status":6,"Type":1},{"OrderID":"59762-6691","ShipCountry":"CN","ShipAddress":"048 Badeau Center","ShipName":"Lang, Koelpin and Gerlach","OrderDate":"2/20/2016","TotalPayment":"$270636.18","Status":5,"Type":1},{"OrderID":"49702-225","ShipCountry":"RS","ShipAddress":"160 Mendota Pass","ShipName":"Dare, Rau and Prosacco","OrderDate":"6/26/2017","TotalPayment":"$356133.37","Status":3,"Type":2},{"OrderID":"67172-113","ShipCountry":"JP","ShipAddress":"69 Ryan Plaza","ShipName":"Ryan-Cole","OrderDate":"11/26/2016","TotalPayment":"$909910.86","Status":3,"Type":1},{"OrderID":"63459-177","ShipCountry":"CN","ShipAddress":"00280 Delladonna Place","ShipName":"Batz, Thompson and Kub","OrderDate":"1/17/2016","TotalPayment":"$1185397.58","Status":2,"Type":2},{"OrderID":"67457-177","ShipCountry":"PH","ShipAddress":"9 Reinke Avenue","ShipName":"Hessel Inc","OrderDate":"4/8/2016","TotalPayment":"$645250.45","Status":5,"Type":1}]},\n{"RecordID":317,"FirstName":"Julianna","LastName":"Fintoph","Company":"Kare","Email":"jfintoph8s@istockphoto.com","Phone":"240-865-2909","Status":6,"Type":3,"Orders":[{"OrderID":"0615-7831","ShipCountry":"CN","ShipAddress":"35 Shopko Crossing","ShipName":"Corwin-White","OrderDate":"8/4/2016","TotalPayment":"$156930.08","Status":4,"Type":2},{"OrderID":"61957-0550","ShipCountry":"ID","ShipAddress":"38 Harper Hill","ShipName":"Morar, Murphy and Altenwerth","OrderDate":"6/10/2016","TotalPayment":"$589028.66","Status":1,"Type":1},{"OrderID":"13734-121","ShipCountry":"UA","ShipAddress":"2086 Springview Point","ShipName":"Schimmel-Flatley","OrderDate":"11/28/2017","TotalPayment":"$1020266.71","Status":5,"Type":1},{"OrderID":"21695-216","ShipCountry":"CN","ShipAddress":"14 Center Alley","ShipName":"Kuvalis-Gibson","OrderDate":"8/5/2016","TotalPayment":"$852347.59","Status":5,"Type":2},{"OrderID":"68788-9892","ShipCountry":"CN","ShipAddress":"5375 Erie Court","ShipName":"Farrell LLC","OrderDate":"10/20/2017","TotalPayment":"$607349.40","Status":1,"Type":2},{"OrderID":"68828-054","ShipCountry":"HR","ShipAddress":"813 Gulseth Street","ShipName":"Keebler, Goodwin and Farrell","OrderDate":"3/18/2016","TotalPayment":"$174268.94","Status":1,"Type":3},{"OrderID":"55154-9364","ShipCountry":"TH","ShipAddress":"03 Northridge Hill","ShipName":"Batz Inc","OrderDate":"11/17/2017","TotalPayment":"$542528.44","Status":2,"Type":2},{"OrderID":"13537-408","ShipCountry":"MX","ShipAddress":"304 Mendota Plaza","ShipName":"Lemke, Weimann and O\'Kon","OrderDate":"3/25/2017","TotalPayment":"$675847.62","Status":1,"Type":2},{"OrderID":"58411-196","ShipCountry":"PL","ShipAddress":"78 Park Meadow Pass","ShipName":"Nikolaus LLC","OrderDate":"5/21/2017","TotalPayment":"$1136578.42","Status":3,"Type":3},{"OrderID":"60681-3003","ShipCountry":"HR","ShipAddress":"919 Truax Circle","ShipName":"Bashirian-Gaylord","OrderDate":"5/12/2017","TotalPayment":"$148883.21","Status":5,"Type":3},{"OrderID":"27808-002","ShipCountry":"UG","ShipAddress":"59311 Hanson Park","ShipName":"Wiegand-Batz","OrderDate":"12/17/2016","TotalPayment":"$310664.45","Status":2,"Type":3},{"OrderID":"41163-397","ShipCountry":"IR","ShipAddress":"902 Rutledge Place","ShipName":"Trantow Inc","OrderDate":"9/22/2017","TotalPayment":"$149981.04","Status":1,"Type":1},{"OrderID":"0135-0430","ShipCountry":"CA","ShipAddress":"37 Monica Pass","ShipName":"Hodkiewicz-Stamm","OrderDate":"2/1/2016","TotalPayment":"$470522.01","Status":2,"Type":1},{"OrderID":"40104-263","ShipCountry":"CM","ShipAddress":"4 Dwight Street","ShipName":"Boyer, Zulauf and Treutel","OrderDate":"7/6/2016","TotalPayment":"$212556.22","Status":4,"Type":1},{"OrderID":"50419-456","ShipCountry":"PL","ShipAddress":"1 Schiller Circle","ShipName":"Robel, Haag and Crist","OrderDate":"6/3/2017","TotalPayment":"$1081981.74","Status":2,"Type":3},{"OrderID":"63824-395","ShipCountry":"PH","ShipAddress":"32905 Lukken Parkway","ShipName":"McGlynn, Reichel and Barton","OrderDate":"2/21/2016","TotalPayment":"$86769.10","Status":2,"Type":1},{"OrderID":"49825-123","ShipCountry":"PL","ShipAddress":"230 Heath Junction","ShipName":"Hoeger LLC","OrderDate":"2/17/2017","TotalPayment":"$170852.83","Status":5,"Type":3},{"OrderID":"58232-4021","ShipCountry":"CN","ShipAddress":"587 Cherokee Trail","ShipName":"Wehner Group","OrderDate":"10/18/2016","TotalPayment":"$1020210.79","Status":2,"Type":3}]},\n{"RecordID":318,"FirstName":"Bree","LastName":"Mariot","Company":"Trilith","Email":"bmariot8t@photobucket.com","Phone":"968-173-1083","Status":2,"Type":2,"Orders":[{"OrderID":"16714-404","ShipCountry":"TH","ShipAddress":"507 Mcbride Parkway","ShipName":"McKenzie-Konopelski","OrderDate":"5/4/2017","TotalPayment":"$854737.75","Status":2,"Type":2},{"OrderID":"13734-015","ShipCountry":"NG","ShipAddress":"69936 Fallview Point","ShipName":"Tromp LLC","OrderDate":"10/29/2017","TotalPayment":"$822174.82","Status":3,"Type":1},{"OrderID":"41163-450","ShipCountry":"PT","ShipAddress":"3226 Huxley Parkway","ShipName":"Hane, Swift and Lynch","OrderDate":"4/1/2017","TotalPayment":"$883588.48","Status":2,"Type":3},{"OrderID":"68382-651","ShipCountry":"CN","ShipAddress":"354 1st Street","ShipName":"Halvorson Inc","OrderDate":"7/7/2017","TotalPayment":"$467483.39","Status":5,"Type":2},{"OrderID":"24670-0001","ShipCountry":"GT","ShipAddress":"57 Duke Court","ShipName":"White, Ruecker and Murphy","OrderDate":"1/14/2017","TotalPayment":"$161868.82","Status":3,"Type":2},{"OrderID":"51079-076","ShipCountry":"CZ","ShipAddress":"63533 Continental Plaza","ShipName":"Braun-Wiza","OrderDate":"6/28/2016","TotalPayment":"$1001811.78","Status":3,"Type":1},{"OrderID":"0093-2049","ShipCountry":"JP","ShipAddress":"48 Green Court","ShipName":"Leffler-Kohler","OrderDate":"2/12/2017","TotalPayment":"$352888.11","Status":6,"Type":2},{"OrderID":"54868-5075","ShipCountry":"CN","ShipAddress":"04098 International Alley","ShipName":"Schamberger and Sons","OrderDate":"5/18/2017","TotalPayment":"$509278.64","Status":6,"Type":3}]},\n{"RecordID":319,"FirstName":"Millie","LastName":"Shilstone","Company":"Babbleopia","Email":"mshilstone8u@tmall.com","Phone":"171-598-1450","Status":6,"Type":3,"Orders":[{"OrderID":"45567-0455","ShipCountry":"BR","ShipAddress":"6 Monument Way","ShipName":"Marquardt LLC","OrderDate":"3/6/2016","TotalPayment":"$726366.51","Status":6,"Type":1},{"OrderID":"37012-852","ShipCountry":"FR","ShipAddress":"2907 Dennis Parkway","ShipName":"Johnson-Farrell","OrderDate":"6/9/2017","TotalPayment":"$591574.35","Status":5,"Type":2},{"OrderID":"52533-106","ShipCountry":"GR","ShipAddress":"20327 Garrison Drive","ShipName":"O\'Reilly-Mante","OrderDate":"4/5/2016","TotalPayment":"$780691.84","Status":5,"Type":3},{"OrderID":"63629-3321","ShipCountry":"CN","ShipAddress":"70865 Spenser Terrace","ShipName":"Crona-Blick","OrderDate":"12/3/2016","TotalPayment":"$784585.34","Status":3,"Type":3},{"OrderID":"63146-101","ShipCountry":"AF","ShipAddress":"72 Summer Ridge Place","ShipName":"Leuschke-Schuster","OrderDate":"5/12/2017","TotalPayment":"$182332.49","Status":3,"Type":2},{"OrderID":"21695-037","ShipCountry":"RU","ShipAddress":"08 Thompson Drive","ShipName":"Raynor-Larkin","OrderDate":"4/18/2017","TotalPayment":"$571697.31","Status":2,"Type":1},{"OrderID":"11695-1436","ShipCountry":"SI","ShipAddress":"1967 Pond Alley","ShipName":"Williamson-Botsford","OrderDate":"12/5/2016","TotalPayment":"$674075.34","Status":1,"Type":1},{"OrderID":"42806-048","ShipCountry":"AL","ShipAddress":"4949 Corry Road","ShipName":"Davis-Wisozk","OrderDate":"7/19/2016","TotalPayment":"$1183537.41","Status":3,"Type":1}]},\n{"RecordID":320,"FirstName":"Molli","LastName":"Garton","Company":"Skiptube","Email":"mgarton8v@washingtonpost.com","Phone":"306-184-4274","Status":2,"Type":3,"Orders":[{"OrderID":"67510-0083","ShipCountry":"DE","ShipAddress":"50 Nelson Crossing","ShipName":"Rau Inc","OrderDate":"1/19/2017","TotalPayment":"$66478.49","Status":6,"Type":3},{"OrderID":"58118-2520","ShipCountry":"BR","ShipAddress":"7 Thackeray Avenue","ShipName":"Tromp-Kreiger","OrderDate":"11/8/2016","TotalPayment":"$1100818.58","Status":5,"Type":2},{"OrderID":"12634-849","ShipCountry":"HR","ShipAddress":"338 Rusk Court","ShipName":"Hermiston, Gerlach and Towne","OrderDate":"5/24/2016","TotalPayment":"$1145951.38","Status":2,"Type":2},{"OrderID":"0781-7137","ShipCountry":"CZ","ShipAddress":"71722 Scott Place","ShipName":"Roberts-Funk","OrderDate":"6/4/2017","TotalPayment":"$665660.73","Status":5,"Type":3},{"OrderID":"65862-491","ShipCountry":"PE","ShipAddress":"11140 Bluejay Hill","ShipName":"Gislason-Shanahan","OrderDate":"10/24/2016","TotalPayment":"$286521.53","Status":4,"Type":1},{"OrderID":"60505-3255","ShipCountry":"UA","ShipAddress":"14678 Sauthoff Road","ShipName":"Krajcik-Koelpin","OrderDate":"5/4/2016","TotalPayment":"$297218.72","Status":1,"Type":3},{"OrderID":"63039-1002","ShipCountry":"CN","ShipAddress":"74 4th Trail","ShipName":"Braun and Sons","OrderDate":"6/5/2016","TotalPayment":"$1107893.17","Status":2,"Type":3},{"OrderID":"0496-0752","ShipCountry":"BR","ShipAddress":"13053 Becker Plaza","ShipName":"Mohr LLC","OrderDate":"2/8/2016","TotalPayment":"$28494.27","Status":6,"Type":3},{"OrderID":"48951-9009","ShipCountry":"VN","ShipAddress":"3763 Warrior Hill","ShipName":"Wilderman LLC","OrderDate":"9/6/2016","TotalPayment":"$611206.00","Status":6,"Type":1},{"OrderID":"0363-1676","ShipCountry":"CN","ShipAddress":"035 Veith Way","ShipName":"Hayes, Ledner and Conroy","OrderDate":"7/9/2016","TotalPayment":"$545476.50","Status":6,"Type":1},{"OrderID":"0363-0060","ShipCountry":"CN","ShipAddress":"51 Almo Place","ShipName":"Wunsch and Sons","OrderDate":"1/15/2017","TotalPayment":"$340269.42","Status":5,"Type":3},{"OrderID":"58503-049","ShipCountry":"IR","ShipAddress":"589 Harper Parkway","ShipName":"Anderson-White","OrderDate":"9/5/2017","TotalPayment":"$194518.41","Status":6,"Type":3},{"OrderID":"49348-361","ShipCountry":"US","ShipAddress":"203 Myrtle Court","ShipName":"Reichert LLC","OrderDate":"3/12/2016","TotalPayment":"$1199954.20","Status":5,"Type":1},{"OrderID":"16590-140","ShipCountry":"MX","ShipAddress":"85 Esch Hill","ShipName":"Brakus, Kuvalis and Bosco","OrderDate":"2/1/2017","TotalPayment":"$124561.55","Status":2,"Type":2},{"OrderID":"17478-120","ShipCountry":"PT","ShipAddress":"326 Autumn Leaf Way","ShipName":"Adams, Ebert and Hoppe","OrderDate":"12/9/2017","TotalPayment":"$508945.40","Status":6,"Type":3},{"OrderID":"68745-1145","ShipCountry":"CN","ShipAddress":"91 Manufacturers Point","ShipName":"Fisher, Parker and Hickle","OrderDate":"1/19/2016","TotalPayment":"$1121382.45","Status":2,"Type":3},{"OrderID":"62713-814","ShipCountry":"GN","ShipAddress":"4 Brentwood Alley","ShipName":"Williamson LLC","OrderDate":"1/10/2017","TotalPayment":"$646656.75","Status":2,"Type":1}]},\n{"RecordID":321,"FirstName":"Axe","LastName":"Loudyan","Company":"Dynabox","Email":"aloudyan8w@narod.ru","Phone":"401-862-7429","Status":1,"Type":1,"Orders":[{"OrderID":"10019-641","ShipCountry":"SE","ShipAddress":"2995 Charing Cross Avenue","ShipName":"West, Dare and Williamson","OrderDate":"8/3/2016","TotalPayment":"$747155.54","Status":6,"Type":3},{"OrderID":"65862-185","ShipCountry":"CN","ShipAddress":"3 Toban Avenue","ShipName":"Littel-Brekke","OrderDate":"3/11/2017","TotalPayment":"$222222.55","Status":4,"Type":2},{"OrderID":"61722-081","ShipCountry":"IE","ShipAddress":"547 Kingsford Lane","ShipName":"Ernser Group","OrderDate":"5/21/2016","TotalPayment":"$653686.19","Status":4,"Type":1},{"OrderID":"0591-0862","ShipCountry":"RU","ShipAddress":"43 Kinsman Alley","ShipName":"Brakus and Sons","OrderDate":"2/16/2016","TotalPayment":"$797915.20","Status":5,"Type":3},{"OrderID":"36987-2730","ShipCountry":"CZ","ShipAddress":"25 Westridge Crossing","ShipName":"Casper-Huel","OrderDate":"1/1/2017","TotalPayment":"$1139637.98","Status":6,"Type":2},{"OrderID":"53808-0967","ShipCountry":"CN","ShipAddress":"458 Messerschmidt Terrace","ShipName":"Maggio, Mayert and Altenwerth","OrderDate":"8/25/2017","TotalPayment":"$568125.70","Status":2,"Type":3},{"OrderID":"47202-1404","ShipCountry":"GT","ShipAddress":"7 Mendota Circle","ShipName":"Emmerich, Skiles and Hintz","OrderDate":"4/24/2016","TotalPayment":"$1097730.68","Status":1,"Type":1},{"OrderID":"65517-1006","ShipCountry":"CD","ShipAddress":"001 Spohn Drive","ShipName":"Greenholt and Sons","OrderDate":"2/24/2017","TotalPayment":"$550426.75","Status":5,"Type":3},{"OrderID":"36987-1612","ShipCountry":"ID","ShipAddress":"58 Dahle Lane","ShipName":"Christiansen LLC","OrderDate":"4/11/2016","TotalPayment":"$535942.83","Status":4,"Type":2},{"OrderID":"49609-102","ShipCountry":"TH","ShipAddress":"0408 Welch Parkway","ShipName":"Champlin-Bogisich","OrderDate":"1/4/2016","TotalPayment":"$435625.48","Status":3,"Type":3},{"OrderID":"51769-615","ShipCountry":"IR","ShipAddress":"4 Graceland Way","ShipName":"Stanton, Bahringer and Armstrong","OrderDate":"9/26/2016","TotalPayment":"$1131486.51","Status":6,"Type":1},{"OrderID":"55154-8294","ShipCountry":"NC","ShipAddress":"03 Hagan Terrace","ShipName":"Lemke-Schroeder","OrderDate":"10/1/2016","TotalPayment":"$1189322.24","Status":6,"Type":3},{"OrderID":"0173-0388","ShipCountry":"CN","ShipAddress":"79 Bartillon Terrace","ShipName":"Kuhlman-Zieme","OrderDate":"7/15/2017","TotalPayment":"$952684.42","Status":2,"Type":2},{"OrderID":"10671-011","ShipCountry":"CN","ShipAddress":"073 Russell Avenue","ShipName":"Nienow and Sons","OrderDate":"12/21/2017","TotalPayment":"$59264.10","Status":1,"Type":2},{"OrderID":"51367-009","ShipCountry":"CO","ShipAddress":"55995 Westerfield Center","ShipName":"Dare and Sons","OrderDate":"5/25/2017","TotalPayment":"$764705.34","Status":5,"Type":1},{"OrderID":"52125-157","ShipCountry":"PE","ShipAddress":"0 Sutteridge Parkway","ShipName":"Feil LLC","OrderDate":"7/22/2016","TotalPayment":"$176632.30","Status":6,"Type":1},{"OrderID":"54838-548","ShipCountry":"PL","ShipAddress":"6 Hooker Crossing","ShipName":"Berge-Satterfield","OrderDate":"9/2/2016","TotalPayment":"$437988.45","Status":5,"Type":1},{"OrderID":"53808-0386","ShipCountry":"AF","ShipAddress":"52 Dunning Parkway","ShipName":"Bechtelar, Bahringer and Heaney","OrderDate":"10/8/2016","TotalPayment":"$348299.58","Status":2,"Type":2}]},\n{"RecordID":322,"FirstName":"Tamma","LastName":"Caroline","Company":"Livepath","Email":"tcaroline8x@merriam-webster.com","Phone":"413-923-2588","Status":5,"Type":1,"Orders":[{"OrderID":"41250-248","ShipCountry":"IL","ShipAddress":"2303 Barby Crossing","ShipName":"Heathcote, Heidenreich and Streich","OrderDate":"11/26/2016","TotalPayment":"$107994.91","Status":1,"Type":3},{"OrderID":"30142-001","ShipCountry":"NG","ShipAddress":"4 Fremont Way","ShipName":"Upton Group","OrderDate":"6/22/2017","TotalPayment":"$904609.27","Status":4,"Type":3},{"OrderID":"21695-709","ShipCountry":"ID","ShipAddress":"4696 Artisan Lane","ShipName":"Will LLC","OrderDate":"1/11/2016","TotalPayment":"$56626.03","Status":6,"Type":1},{"OrderID":"68788-9520","ShipCountry":"PT","ShipAddress":"90 Claremont Drive","ShipName":"Parker, Douglas and Zieme","OrderDate":"8/10/2017","TotalPayment":"$1003638.57","Status":2,"Type":2},{"OrderID":"67542-010","ShipCountry":"MN","ShipAddress":"6 Pleasure Junction","ShipName":"Koelpin-Stehr","OrderDate":"6/3/2016","TotalPayment":"$501962.68","Status":1,"Type":3},{"OrderID":"0185-0017","ShipCountry":"PT","ShipAddress":"53 Gulseth Circle","ShipName":"Simonis, Nolan and Wyman","OrderDate":"12/15/2017","TotalPayment":"$805799.74","Status":2,"Type":1},{"OrderID":"41250-866","ShipCountry":"UA","ShipAddress":"502 Grover Parkway","ShipName":"Morar Group","OrderDate":"10/22/2016","TotalPayment":"$744354.45","Status":4,"Type":1},{"OrderID":"67112-401","ShipCountry":"GR","ShipAddress":"37299 Kropf Alley","ShipName":"Kling, Swaniawski and Keeling","OrderDate":"5/11/2017","TotalPayment":"$910211.34","Status":1,"Type":1},{"OrderID":"10742-0204","ShipCountry":"ID","ShipAddress":"85 Lindbergh Court","ShipName":"Hand, Rohan and Jerde","OrderDate":"6/28/2016","TotalPayment":"$944844.32","Status":5,"Type":3}]},\n{"RecordID":323,"FirstName":"Winni","LastName":"Haughton","Company":"Voonix","Email":"whaughton8y@ameblo.jp","Phone":"216-215-6182","Status":5,"Type":2,"Orders":[{"OrderID":"42291-834","ShipCountry":"ID","ShipAddress":"0900 Sauthoff Plaza","ShipName":"Bartoletti LLC","OrderDate":"12/14/2017","TotalPayment":"$309063.51","Status":6,"Type":2},{"OrderID":"0268-0879","ShipCountry":"PT","ShipAddress":"8 Meadow Ridge Park","ShipName":"Friesen, Bechtelar and Reinger","OrderDate":"4/21/2016","TotalPayment":"$883586.17","Status":5,"Type":3},{"OrderID":"70253-025","ShipCountry":"CN","ShipAddress":"48 Corry Point","ShipName":"Oberbrunner and Sons","OrderDate":"5/1/2016","TotalPayment":"$491569.44","Status":2,"Type":2},{"OrderID":"58930-039","ShipCountry":"BR","ShipAddress":"30 Del Mar Pass","ShipName":"Olson-Rice","OrderDate":"6/19/2017","TotalPayment":"$375138.70","Status":5,"Type":2},{"OrderID":"35356-848","ShipCountry":"GR","ShipAddress":"550 Lien Avenue","ShipName":"Brekke-Hamill","OrderDate":"6/30/2016","TotalPayment":"$547084.42","Status":1,"Type":1},{"OrderID":"0074-4317","ShipCountry":"ID","ShipAddress":"79 Jackson Junction","ShipName":"Herzog LLC","OrderDate":"5/13/2016","TotalPayment":"$477330.98","Status":6,"Type":3},{"OrderID":"53389-562","ShipCountry":"ID","ShipAddress":"4 Glendale Terrace","ShipName":"Cormier Inc","OrderDate":"3/11/2017","TotalPayment":"$1104276.41","Status":2,"Type":2}]},\n{"RecordID":324,"FirstName":"Madlin","LastName":"Rimell","Company":"Yoveo","Email":"mrimell8z@sakura.ne.jp","Phone":"964-414-4046","Status":2,"Type":1,"Orders":[{"OrderID":"47781-306","ShipCountry":"RU","ShipAddress":"072 Dawn Parkway","ShipName":"Goldner-Koss","OrderDate":"7/15/2016","TotalPayment":"$684766.55","Status":1,"Type":3},{"OrderID":"50458-594","ShipCountry":"HR","ShipAddress":"32 Division Circle","ShipName":"Daniel, Schulist and Gleichner","OrderDate":"1/25/2016","TotalPayment":"$1016454.78","Status":1,"Type":3},{"OrderID":"55289-135","ShipCountry":"US","ShipAddress":"8 Hazelcrest Road","ShipName":"Thiel-Lebsack","OrderDate":"3/27/2017","TotalPayment":"$965107.72","Status":5,"Type":3},{"OrderID":"54131-001","ShipCountry":"US","ShipAddress":"81 School Road","ShipName":"Fadel, Welch and Borer","OrderDate":"3/22/2016","TotalPayment":"$1199081.90","Status":1,"Type":3},{"OrderID":"67046-274","ShipCountry":"PH","ShipAddress":"1590 Oneill Court","ShipName":"Weber-Smith","OrderDate":"7/8/2016","TotalPayment":"$578826.11","Status":5,"Type":1},{"OrderID":"13537-040","ShipCountry":"BR","ShipAddress":"431 Anzinger Drive","ShipName":"Jakubowski-Daugherty","OrderDate":"12/31/2016","TotalPayment":"$49437.53","Status":3,"Type":3},{"OrderID":"61957-1103","ShipCountry":"IT","ShipAddress":"414 Farmco Crossing","ShipName":"Waters-Shanahan","OrderDate":"4/20/2017","TotalPayment":"$560785.82","Status":1,"Type":2},{"OrderID":"57520-0368","ShipCountry":"CN","ShipAddress":"2 Truax Pass","ShipName":"Ritchie-Smitham","OrderDate":"7/25/2017","TotalPayment":"$383848.35","Status":5,"Type":3},{"OrderID":"43857-0272","ShipCountry":"IR","ShipAddress":"81620 Mayer Street","ShipName":"Yundt, Durgan and Johnson","OrderDate":"12/28/2016","TotalPayment":"$145904.43","Status":2,"Type":2},{"OrderID":"0091-3725","ShipCountry":"LV","ShipAddress":"02374 Blue Bill Park Place","ShipName":"Hackett Inc","OrderDate":"7/17/2016","TotalPayment":"$234954.27","Status":3,"Type":2},{"OrderID":"11523-0165","ShipCountry":"CN","ShipAddress":"5759 Novick Parkway","ShipName":"D\'Amore-Schuster","OrderDate":"8/31/2016","TotalPayment":"$544399.73","Status":1,"Type":3},{"OrderID":"14049-830","ShipCountry":"ID","ShipAddress":"6 Commercial Street","ShipName":"Gleichner, Walter and Cummerata","OrderDate":"1/7/2017","TotalPayment":"$92056.23","Status":5,"Type":3}]},\n{"RecordID":325,"FirstName":"Salmon","LastName":"Tankus","Company":"Skiptube","Email":"stankus90@deviantart.com","Phone":"208-824-6841","Status":1,"Type":3,"Orders":[{"OrderID":"52389-627","ShipCountry":"CN","ShipAddress":"865 Dayton Point","ShipName":"Smith-Dickinson","OrderDate":"8/25/2017","TotalPayment":"$1186999.02","Status":3,"Type":2},{"OrderID":"61312-002","ShipCountry":"PA","ShipAddress":"31800 Dixon Trail","ShipName":"Goldner, Windler and Gleason","OrderDate":"1/28/2016","TotalPayment":"$320789.78","Status":1,"Type":1},{"OrderID":"68462-343","ShipCountry":"DE","ShipAddress":"069 Browning Place","ShipName":"Lynch, Bergnaum and Ernser","OrderDate":"4/22/2017","TotalPayment":"$968208.80","Status":6,"Type":3},{"OrderID":"17478-514","ShipCountry":"MX","ShipAddress":"594 American Drive","ShipName":"Little-Kling","OrderDate":"6/30/2016","TotalPayment":"$511246.89","Status":2,"Type":2},{"OrderID":"54868-6088","ShipCountry":"BR","ShipAddress":"0 Nobel Parkway","ShipName":"Connelly, Koss and Huels","OrderDate":"9/30/2016","TotalPayment":"$728153.44","Status":5,"Type":2},{"OrderID":"49348-029","ShipCountry":"ID","ShipAddress":"90541 Merchant Street","ShipName":"Jaskolski, Koch and Cole","OrderDate":"1/27/2016","TotalPayment":"$176077.28","Status":2,"Type":1},{"OrderID":"57541-000","ShipCountry":"RU","ShipAddress":"0035 Maywood Alley","ShipName":"Reynolds-Lind","OrderDate":"8/26/2016","TotalPayment":"$35327.13","Status":1,"Type":2},{"OrderID":"36987-2927","ShipCountry":"CN","ShipAddress":"160 East Parkway","ShipName":"Padberg-Shanahan","OrderDate":"11/20/2017","TotalPayment":"$296563.02","Status":3,"Type":1},{"OrderID":"49349-806","ShipCountry":"PH","ShipAddress":"46861 Larry Hill","ShipName":"Douglas-Leannon","OrderDate":"3/10/2016","TotalPayment":"$932779.05","Status":2,"Type":2},{"OrderID":"0363-0333","ShipCountry":"CN","ShipAddress":"26895 South Center","ShipName":"Maggio, Hermiston and Mitchell","OrderDate":"11/7/2016","TotalPayment":"$1052678.93","Status":1,"Type":2},{"OrderID":"76282-258","ShipCountry":"ID","ShipAddress":"7 Butterfield Drive","ShipName":"Fahey-Champlin","OrderDate":"9/16/2017","TotalPayment":"$522936.19","Status":5,"Type":2},{"OrderID":"61442-161","ShipCountry":"CZ","ShipAddress":"59302 Moose Junction","ShipName":"Jacobson-Feil","OrderDate":"10/28/2016","TotalPayment":"$689444.87","Status":5,"Type":3}]},\n{"RecordID":326,"FirstName":"Fiann","LastName":"Panketh","Company":"Yadel","Email":"fpanketh91@e-recht24.de","Phone":"114-899-4582","Status":2,"Type":3,"Orders":[{"OrderID":"23155-147","ShipCountry":"SA","ShipAddress":"0 Monica Drive","ShipName":"VonRueden-Boehm","OrderDate":"9/20/2016","TotalPayment":"$938392.45","Status":4,"Type":3},{"OrderID":"0407-2707","ShipCountry":"SL","ShipAddress":"8665 Dakota Parkway","ShipName":"Thiel Group","OrderDate":"11/11/2016","TotalPayment":"$1188713.85","Status":2,"Type":3},{"OrderID":"51393-7334","ShipCountry":"NG","ShipAddress":"5400 Alpine Street","ShipName":"Crist Group","OrderDate":"1/31/2017","TotalPayment":"$438045.89","Status":3,"Type":2},{"OrderID":"10812-397","ShipCountry":"MD","ShipAddress":"6 Elka Street","ShipName":"Littel-Reilly","OrderDate":"10/30/2016","TotalPayment":"$868508.17","Status":3,"Type":2},{"OrderID":"49348-380","ShipCountry":"JO","ShipAddress":"27875 Kings Park","ShipName":"Torp and Sons","OrderDate":"2/1/2016","TotalPayment":"$981983.88","Status":6,"Type":2},{"OrderID":"0143-9938","ShipCountry":"FR","ShipAddress":"8 Rockefeller Center","ShipName":"Hirthe, Flatley and Reilly","OrderDate":"11/24/2017","TotalPayment":"$489415.43","Status":4,"Type":2},{"OrderID":"49349-085","ShipCountry":"CZ","ShipAddress":"8249 Evergreen Trail","ShipName":"Schaefer-McCullough","OrderDate":"5/30/2017","TotalPayment":"$655025.60","Status":4,"Type":3},{"OrderID":"51209-003","ShipCountry":"ID","ShipAddress":"53450 Center Hill","ShipName":"Walker, Witting and Hodkiewicz","OrderDate":"12/2/2016","TotalPayment":"$103015.27","Status":4,"Type":1},{"OrderID":"49999-943","ShipCountry":"ID","ShipAddress":"71 Randy Place","ShipName":"Emard-Brekke","OrderDate":"9/17/2016","TotalPayment":"$639616.60","Status":2,"Type":2},{"OrderID":"57520-0224","ShipCountry":"RU","ShipAddress":"3107 Nancy Way","ShipName":"Wolff and Sons","OrderDate":"7/29/2016","TotalPayment":"$54671.81","Status":4,"Type":1}]},\n{"RecordID":327,"FirstName":"Lou","LastName":"Haryngton","Company":"Yadel","Email":"lharyngton92@ow.ly","Phone":"475-989-4445","Status":1,"Type":3,"Orders":[{"OrderID":"0135-0157","ShipCountry":"ID","ShipAddress":"4860 Commercial Street","ShipName":"Lind and Sons","OrderDate":"6/21/2016","TotalPayment":"$1044101.83","Status":6,"Type":1},{"OrderID":"0904-5633","ShipCountry":"ID","ShipAddress":"67533 Rieder Point","ShipName":"Eichmann-Nikolaus","OrderDate":"3/6/2017","TotalPayment":"$53299.34","Status":5,"Type":2},{"OrderID":"54569-1139","ShipCountry":"MA","ShipAddress":"82145 Hansons Circle","ShipName":"Brown Inc","OrderDate":"5/27/2017","TotalPayment":"$616250.96","Status":5,"Type":1},{"OrderID":"76237-214","ShipCountry":"SE","ShipAddress":"5232 Duke Parkway","ShipName":"Murray, Ankunding and Hoeger","OrderDate":"7/23/2017","TotalPayment":"$636036.58","Status":3,"Type":1},{"OrderID":"49260-613","ShipCountry":"RU","ShipAddress":"420 Sutherland Place","ShipName":"Herzog Group","OrderDate":"5/16/2017","TotalPayment":"$382141.23","Status":5,"Type":1},{"OrderID":"21695-194","ShipCountry":"RU","ShipAddress":"125 Michigan Center","ShipName":"White Inc","OrderDate":"2/21/2017","TotalPayment":"$1196449.21","Status":4,"Type":3},{"OrderID":"51414-600","ShipCountry":"ID","ShipAddress":"195 Park Meadow Plaza","ShipName":"Lynch Group","OrderDate":"8/18/2016","TotalPayment":"$671960.45","Status":3,"Type":2},{"OrderID":"68788-9182","ShipCountry":"PK","ShipAddress":"42719 Monterey Court","ShipName":"Reichel-Stroman","OrderDate":"11/14/2016","TotalPayment":"$808395.96","Status":3,"Type":1},{"OrderID":"36987-2839","ShipCountry":"CN","ShipAddress":"8 Buhler Alley","ShipName":"Lesch-Pollich","OrderDate":"9/21/2016","TotalPayment":"$1022561.29","Status":1,"Type":1},{"OrderID":"51346-142","ShipCountry":"CN","ShipAddress":"928 Dennis Crossing","ShipName":"Ward-Wehner","OrderDate":"9/24/2017","TotalPayment":"$1123693.39","Status":2,"Type":1},{"OrderID":"0135-0135","ShipCountry":"NC","ShipAddress":"6488 Sugar Place","ShipName":"Sipes, Harber and Keebler","OrderDate":"1/7/2017","TotalPayment":"$429820.84","Status":3,"Type":1},{"OrderID":"15370-110","ShipCountry":"JP","ShipAddress":"87 Utah Park","ShipName":"Kub LLC","OrderDate":"12/24/2016","TotalPayment":"$1024731.52","Status":1,"Type":3},{"OrderID":"58281-563","ShipCountry":"HN","ShipAddress":"31279 Gale Drive","ShipName":"Lebsack, Kunze and VonRueden","OrderDate":"8/22/2016","TotalPayment":"$223217.63","Status":2,"Type":1},{"OrderID":"68180-202","ShipCountry":"BG","ShipAddress":"224 Golden Leaf Avenue","ShipName":"Erdman and Sons","OrderDate":"11/25/2017","TotalPayment":"$126780.88","Status":4,"Type":2},{"OrderID":"0703-2395","ShipCountry":"CL","ShipAddress":"0633 Florence Hill","ShipName":"Nitzsche Group","OrderDate":"12/8/2016","TotalPayment":"$55762.83","Status":5,"Type":1},{"OrderID":"0462-0434","ShipCountry":"PL","ShipAddress":"5751 Northridge Street","ShipName":"Gerlach Group","OrderDate":"6/16/2017","TotalPayment":"$49907.79","Status":2,"Type":2},{"OrderID":"55312-949","ShipCountry":"CN","ShipAddress":"080 Stone Corner Way","ShipName":"Armstrong, Kris and Grady","OrderDate":"1/27/2016","TotalPayment":"$531069.19","Status":3,"Type":3},{"OrderID":"0245-0213","ShipCountry":"ID","ShipAddress":"4531 Lawn Lane","ShipName":"Wilderman, Upton and Beer","OrderDate":"10/27/2016","TotalPayment":"$191209.78","Status":1,"Type":1},{"OrderID":"56062-047","ShipCountry":"CZ","ShipAddress":"15450 Talmadge Drive","ShipName":"Brekke-MacGyver","OrderDate":"7/7/2017","TotalPayment":"$632037.67","Status":1,"Type":3}]},\n{"RecordID":328,"FirstName":"Fons","LastName":"Braidwood","Company":"Aimbu","Email":"fbraidwood93@constantcontact.com","Phone":"956-759-4168","Status":1,"Type":2,"Orders":[{"OrderID":"36987-2282","ShipCountry":"CN","ShipAddress":"6 Sheridan Terrace","ShipName":"Ruecker, Bosco and Rutherford","OrderDate":"1/2/2017","TotalPayment":"$487701.77","Status":6,"Type":3},{"OrderID":"55714-1103","ShipCountry":"ID","ShipAddress":"089 Graedel Place","ShipName":"Abbott-Bauch","OrderDate":"2/1/2017","TotalPayment":"$1037624.31","Status":1,"Type":2},{"OrderID":"63404-0910","ShipCountry":"PE","ShipAddress":"2 Schmedeman Road","ShipName":"Fisher and Sons","OrderDate":"10/5/2016","TotalPayment":"$114937.97","Status":1,"Type":3},{"OrderID":"68428-114","ShipCountry":"PH","ShipAddress":"0 Charing Cross Road","ShipName":"Boehm-Upton","OrderDate":"11/18/2017","TotalPayment":"$1056969.25","Status":4,"Type":1},{"OrderID":"21695-154","ShipCountry":"CA","ShipAddress":"4942 John Wall Plaza","ShipName":"Haley, Koch and Keebler","OrderDate":"6/27/2016","TotalPayment":"$701424.44","Status":5,"Type":3},{"OrderID":"0904-6139","ShipCountry":"AR","ShipAddress":"17 Express Pass","ShipName":"Leffler-Luettgen","OrderDate":"9/29/2016","TotalPayment":"$138904.42","Status":2,"Type":2},{"OrderID":"59779-100","ShipCountry":"FR","ShipAddress":"855 Ridge Oak Place","ShipName":"Gulgowski, Parisian and Lemke","OrderDate":"5/29/2016","TotalPayment":"$1039218.39","Status":1,"Type":2},{"OrderID":"61748-304","ShipCountry":"US","ShipAddress":"9209 Westridge Terrace","ShipName":"Blick Inc","OrderDate":"12/14/2017","TotalPayment":"$689569.57","Status":1,"Type":2}]},\n{"RecordID":329,"FirstName":"Roldan","LastName":"Antonellini","Company":"Fatz","Email":"rantonellini94@yandex.ru","Phone":"509-780-6815","Status":1,"Type":2,"Orders":[{"OrderID":"24208-399","ShipCountry":"PK","ShipAddress":"9 Northland Drive","ShipName":"McGlynn-MacGyver","OrderDate":"11/13/2016","TotalPayment":"$1051398.59","Status":3,"Type":2},{"OrderID":"50268-111","ShipCountry":"CN","ShipAddress":"1 Ryan Lane","ShipName":"Koss and Sons","OrderDate":"10/2/2017","TotalPayment":"$1189123.71","Status":2,"Type":2},{"OrderID":"54868-2464","ShipCountry":"PH","ShipAddress":"4911 Becker Avenue","ShipName":"Kautzer, Herman and Marquardt","OrderDate":"7/24/2017","TotalPayment":"$737666.93","Status":2,"Type":2},{"OrderID":"50383-025","ShipCountry":"GR","ShipAddress":"1 Muir Way","ShipName":"Schiller Inc","OrderDate":"1/14/2016","TotalPayment":"$902636.91","Status":4,"Type":3},{"OrderID":"68400-308","ShipCountry":"MY","ShipAddress":"7 Buhler Place","ShipName":"Wunsch, Kihn and Cummerata","OrderDate":"1/12/2017","TotalPayment":"$498910.99","Status":3,"Type":1},{"OrderID":"49349-712","ShipCountry":"FR","ShipAddress":"796 Glendale Junction","ShipName":"Fadel-Gerhold","OrderDate":"9/13/2016","TotalPayment":"$794027.75","Status":2,"Type":3},{"OrderID":"60429-374","ShipCountry":"VE","ShipAddress":"9613 Russell Trail","ShipName":"Olson-Koch","OrderDate":"12/11/2017","TotalPayment":"$125344.39","Status":3,"Type":3},{"OrderID":"0378-6088","ShipCountry":"PH","ShipAddress":"49 Golden Leaf Plaza","ShipName":"Abshire and Sons","OrderDate":"10/1/2016","TotalPayment":"$1012863.41","Status":2,"Type":3},{"OrderID":"68712-049","ShipCountry":"RU","ShipAddress":"4 Fulton Avenue","ShipName":"Effertz Group","OrderDate":"5/30/2016","TotalPayment":"$57503.49","Status":4,"Type":3},{"OrderID":"55714-4419","ShipCountry":"ID","ShipAddress":"1559 Little Fleur Alley","ShipName":"Dare LLC","OrderDate":"3/29/2017","TotalPayment":"$616984.05","Status":4,"Type":2},{"OrderID":"51079-753","ShipCountry":"CN","ShipAddress":"0429 Vahlen Pass","ShipName":"Schmitt Group","OrderDate":"6/24/2016","TotalPayment":"$446177.44","Status":6,"Type":2},{"OrderID":"51346-059","ShipCountry":"PE","ShipAddress":"0852 Toban Crossing","ShipName":"Lemke-Beatty","OrderDate":"2/3/2016","TotalPayment":"$530728.20","Status":2,"Type":2}]},\n{"RecordID":330,"FirstName":"Selie","LastName":"Pawlowicz","Company":"Yamia","Email":"spawlowicz95@newyorker.com","Phone":"543-950-5875","Status":6,"Type":2,"Orders":[{"OrderID":"63629-1467","ShipCountry":"PL","ShipAddress":"5804 Esch Alley","ShipName":"Waters-Hackett","OrderDate":"3/14/2016","TotalPayment":"$138809.48","Status":3,"Type":2},{"OrderID":"55319-500","ShipCountry":"ID","ShipAddress":"01229 Wayridge Street","ShipName":"Gulgowski Inc","OrderDate":"12/1/2016","TotalPayment":"$692904.90","Status":1,"Type":1},{"OrderID":"48256-0041","ShipCountry":"US","ShipAddress":"4 Warrior Avenue","ShipName":"Boyer, Reinger and Bauch","OrderDate":"8/2/2017","TotalPayment":"$735650.68","Status":3,"Type":2},{"OrderID":"68788-9683","ShipCountry":"LU","ShipAddress":"5526 Schurz Junction","ShipName":"Moore LLC","OrderDate":"12/17/2016","TotalPayment":"$174337.32","Status":4,"Type":2},{"OrderID":"54868-5313","ShipCountry":"PH","ShipAddress":"6 Manufacturers Crossing","ShipName":"Gottlieb, Oberbrunner and Cummings","OrderDate":"8/14/2016","TotalPayment":"$914304.96","Status":1,"Type":2},{"OrderID":"0944-2833","ShipCountry":"SY","ShipAddress":"5485 Almo Point","ShipName":"MacGyver, Marvin and Blick","OrderDate":"12/23/2016","TotalPayment":"$477948.96","Status":3,"Type":1},{"OrderID":"53807-521","ShipCountry":"CN","ShipAddress":"24763 Carioca Terrace","ShipName":"Kozey and Sons","OrderDate":"2/28/2017","TotalPayment":"$1038029.73","Status":4,"Type":2},{"OrderID":"49288-0179","ShipCountry":"SE","ShipAddress":"73 Eliot Trail","ShipName":"Spinka-Glover","OrderDate":"10/5/2017","TotalPayment":"$945389.90","Status":4,"Type":2},{"OrderID":"54868-6364","ShipCountry":"PT","ShipAddress":"55 Pawling Point","ShipName":"Wisoky LLC","OrderDate":"2/20/2017","TotalPayment":"$622149.95","Status":6,"Type":2},{"OrderID":"12121-001","ShipCountry":"CN","ShipAddress":"7063 Dorton Drive","ShipName":"Hodkiewicz, Botsford and Carroll","OrderDate":"2/6/2016","TotalPayment":"$244011.02","Status":6,"Type":3},{"OrderID":"44087-1150","ShipCountry":"AO","ShipAddress":"7 Forest Point","ShipName":"Stroman-Macejkovic","OrderDate":"7/15/2017","TotalPayment":"$283075.30","Status":4,"Type":3}]},\n{"RecordID":331,"FirstName":"Tris","LastName":"Leatt","Company":"LiveZ","Email":"tleatt96@tinyurl.com","Phone":"566-709-6996","Status":2,"Type":1,"Orders":[{"OrderID":"66390-0001","ShipCountry":"GR","ShipAddress":"6 Sloan Trail","ShipName":"McCullough-Hoppe","OrderDate":"9/8/2017","TotalPayment":"$565743.42","Status":3,"Type":3},{"OrderID":"41250-843","ShipCountry":"RU","ShipAddress":"751 Cherokee Pass","ShipName":"Lubowitz, Kirlin and Littel","OrderDate":"6/26/2017","TotalPayment":"$296083.50","Status":5,"Type":3},{"OrderID":"24208-602","ShipCountry":"TJ","ShipAddress":"091 Cambridge Parkway","ShipName":"Prosacco-Boehm","OrderDate":"4/3/2017","TotalPayment":"$1035005.97","Status":1,"Type":1},{"OrderID":"62620-2001","ShipCountry":"YE","ShipAddress":"1561 Goodland Way","ShipName":"Boyer, Kuhic and Stiedemann","OrderDate":"7/9/2016","TotalPayment":"$62184.60","Status":2,"Type":3},{"OrderID":"42002-445","ShipCountry":"BR","ShipAddress":"41 Merchant Drive","ShipName":"Schamberger-Funk","OrderDate":"9/20/2017","TotalPayment":"$670698.53","Status":5,"Type":2},{"OrderID":"64942-1113","ShipCountry":"NO","ShipAddress":"42 3rd Drive","ShipName":"Dach, Medhurst and Gusikowski","OrderDate":"1/27/2016","TotalPayment":"$1110357.19","Status":5,"Type":3},{"OrderID":"45802-094","ShipCountry":"TZ","ShipAddress":"09970 Blaine Pass","ShipName":"Bednar-Wyman","OrderDate":"1/14/2017","TotalPayment":"$422330.92","Status":6,"Type":1},{"OrderID":"64205-211","ShipCountry":"FR","ShipAddress":"39183 Jenifer Way","ShipName":"Grant-Mraz","OrderDate":"4/3/2016","TotalPayment":"$678111.61","Status":4,"Type":3},{"OrderID":"52533-028","ShipCountry":"ID","ShipAddress":"63297 Spohn Drive","ShipName":"Stanton-Hoppe","OrderDate":"5/24/2016","TotalPayment":"$599102.33","Status":4,"Type":3},{"OrderID":"30142-548","ShipCountry":"CN","ShipAddress":"6530 Oak Center","ShipName":"Spinka-Goldner","OrderDate":"5/31/2016","TotalPayment":"$830294.10","Status":1,"Type":1},{"OrderID":"67345-0006","ShipCountry":"EC","ShipAddress":"6534 South Alley","ShipName":"Wintheiser, Cole and Hodkiewicz","OrderDate":"7/16/2016","TotalPayment":"$41470.39","Status":1,"Type":1}]},\n{"RecordID":332,"FirstName":"Catlee","LastName":"Bramham","Company":"Trudoo","Email":"cbramham97@ow.ly","Phone":"182-146-7652","Status":1,"Type":2,"Orders":[{"OrderID":"0338-1119","ShipCountry":"US","ShipAddress":"30 Fremont Point","ShipName":"O\'Hara and Sons","OrderDate":"9/19/2017","TotalPayment":"$1035348.44","Status":5,"Type":3},{"OrderID":"29500-2433","ShipCountry":"TH","ShipAddress":"58 Briar Crest Terrace","ShipName":"Swaniawski-Padberg","OrderDate":"2/5/2016","TotalPayment":"$886225.24","Status":4,"Type":1},{"OrderID":"0363-0751","ShipCountry":"CF","ShipAddress":"134 Dovetail Court","ShipName":"O\'Reilly-Kris","OrderDate":"8/6/2016","TotalPayment":"$883260.02","Status":5,"Type":1},{"OrderID":"66993-025","ShipCountry":"MX","ShipAddress":"17196 Old Shore Circle","ShipName":"Armstrong-Will","OrderDate":"10/9/2017","TotalPayment":"$49080.85","Status":1,"Type":1},{"OrderID":"60760-211","ShipCountry":"JP","ShipAddress":"15 Meadow Ridge Terrace","ShipName":"Reinger Group","OrderDate":"5/16/2017","TotalPayment":"$853066.51","Status":1,"Type":1},{"OrderID":"50436-8700","ShipCountry":"NI","ShipAddress":"999 Bashford Alley","ShipName":"Dietrich, Fritsch and Erdman","OrderDate":"11/26/2017","TotalPayment":"$929530.00","Status":1,"Type":2},{"OrderID":"0363-0397","ShipCountry":"RU","ShipAddress":"565 Clemons Lane","ShipName":"Homenick-Batz","OrderDate":"6/15/2016","TotalPayment":"$1130342.62","Status":2,"Type":3},{"OrderID":"68462-106","ShipCountry":"ID","ShipAddress":"70179 Grim Pass","ShipName":"Nader-Bayer","OrderDate":"12/17/2016","TotalPayment":"$711207.18","Status":1,"Type":1},{"OrderID":"0338-3991","ShipCountry":"BR","ShipAddress":"766 Comanche Alley","ShipName":"Klein Inc","OrderDate":"1/18/2017","TotalPayment":"$174164.23","Status":4,"Type":3},{"OrderID":"37808-297","ShipCountry":"US","ShipAddress":"43472 Elka Street","ShipName":"Leuschke, Corkery and Larkin","OrderDate":"2/25/2016","TotalPayment":"$839864.86","Status":5,"Type":1},{"OrderID":"36800-140","ShipCountry":"PE","ShipAddress":"7973 Bluestem Place","ShipName":"Green, Kuhn and Stark","OrderDate":"2/29/2016","TotalPayment":"$728786.40","Status":2,"Type":2},{"OrderID":"53808-0707","ShipCountry":"TH","ShipAddress":"993 Scofield Circle","ShipName":"Lang Group","OrderDate":"5/25/2016","TotalPayment":"$270730.83","Status":4,"Type":3},{"OrderID":"23155-217","ShipCountry":"PE","ShipAddress":"49 Arkansas Pass","ShipName":"Batz, Goldner and Mann","OrderDate":"1/11/2017","TotalPayment":"$277138.73","Status":6,"Type":2},{"OrderID":"0024-5850","ShipCountry":"TJ","ShipAddress":"392 Melrose Junction","ShipName":"West and Sons","OrderDate":"3/31/2016","TotalPayment":"$134229.16","Status":5,"Type":3},{"OrderID":"53208-520","ShipCountry":"ID","ShipAddress":"4 Waxwing Parkway","ShipName":"Funk, Bashirian and Breitenberg","OrderDate":"4/4/2017","TotalPayment":"$935266.08","Status":1,"Type":3},{"OrderID":"27789-911","ShipCountry":"CN","ShipAddress":"36 Forest Run Way","ShipName":"Jacobi Inc","OrderDate":"9/22/2016","TotalPayment":"$715918.46","Status":5,"Type":1},{"OrderID":"59923-601","ShipCountry":"MY","ShipAddress":"64205 Coleman Hill","ShipName":"Weissnat-Lakin","OrderDate":"6/5/2017","TotalPayment":"$102732.76","Status":6,"Type":2},{"OrderID":"65862-477","ShipCountry":"MX","ShipAddress":"35161 Debra Pass","ShipName":"Schneider-Beatty","OrderDate":"9/22/2016","TotalPayment":"$838772.17","Status":4,"Type":2}]},\n{"RecordID":333,"FirstName":"Alonso","LastName":"Goodlad","Company":"Rhyloo","Email":"agoodlad98@ustream.tv","Phone":"545-277-2965","Status":5,"Type":1,"Orders":[{"OrderID":"68820-107","ShipCountry":"CN","ShipAddress":"8 South Park","ShipName":"Bauch, Raynor and Ritchie","OrderDate":"7/9/2017","TotalPayment":"$270076.42","Status":5,"Type":2},{"OrderID":"0179-0124","ShipCountry":"CN","ShipAddress":"733 Prentice Plaza","ShipName":"Skiles, Sauer and Breitenberg","OrderDate":"11/14/2016","TotalPayment":"$1083010.67","Status":1,"Type":1},{"OrderID":"61570-075","ShipCountry":"ID","ShipAddress":"16 Sugar Lane","ShipName":"Koch, Lynch and Ondricka","OrderDate":"9/18/2017","TotalPayment":"$309138.32","Status":1,"Type":3},{"OrderID":"66116-429","ShipCountry":"PY","ShipAddress":"9 Kipling Park","ShipName":"Hudson, Green and Beier","OrderDate":"12/6/2017","TotalPayment":"$1167943.18","Status":3,"Type":3},{"OrderID":"21695-554","ShipCountry":"ID","ShipAddress":"15809 Laurel Way","ShipName":"Huel and Sons","OrderDate":"2/26/2017","TotalPayment":"$77216.87","Status":6,"Type":1},{"OrderID":"33342-087","ShipCountry":"DO","ShipAddress":"875 Holmberg Trail","ShipName":"Wolf-Simonis","OrderDate":"8/18/2016","TotalPayment":"$325160.91","Status":5,"Type":2},{"OrderID":"16103-357","ShipCountry":"MN","ShipAddress":"5279 Grim Terrace","ShipName":"Schultz LLC","OrderDate":"7/12/2017","TotalPayment":"$805308.80","Status":3,"Type":2},{"OrderID":"55154-4786","ShipCountry":"UZ","ShipAddress":"7342 Mccormick Park","ShipName":"Larson-Hilll","OrderDate":"4/16/2017","TotalPayment":"$446739.75","Status":5,"Type":3},{"OrderID":"31645-158","ShipCountry":"JP","ShipAddress":"2 Katie Parkway","ShipName":"Bode, Gleason and Marvin","OrderDate":"10/26/2016","TotalPayment":"$469957.76","Status":4,"Type":2},{"OrderID":"0615-3559","ShipCountry":"CA","ShipAddress":"231 Sauthoff Junction","ShipName":"Treutel LLC","OrderDate":"3/24/2016","TotalPayment":"$483495.40","Status":4,"Type":1},{"OrderID":"54458-923","ShipCountry":"VN","ShipAddress":"66404 Sachs Avenue","ShipName":"Roob-Herman","OrderDate":"8/4/2017","TotalPayment":"$402755.45","Status":6,"Type":1},{"OrderID":"0944-2833","ShipCountry":"US","ShipAddress":"69 Reinke Parkway","ShipName":"Bauch, Rodriguez and Lueilwitz","OrderDate":"10/25/2016","TotalPayment":"$1184071.14","Status":3,"Type":3},{"OrderID":"0944-4175","ShipCountry":"CZ","ShipAddress":"40 Mallard Road","ShipName":"Prohaska-Kling","OrderDate":"12/5/2017","TotalPayment":"$469539.10","Status":1,"Type":2},{"OrderID":"68151-2111","ShipCountry":"MY","ShipAddress":"98067 Jana Terrace","ShipName":"Kreiger, Miller and Blanda","OrderDate":"11/12/2017","TotalPayment":"$612490.17","Status":3,"Type":1},{"OrderID":"59021-011","ShipCountry":"PH","ShipAddress":"7 Manitowish Drive","ShipName":"Heaney-Farrell","OrderDate":"5/12/2016","TotalPayment":"$768180.99","Status":6,"Type":2},{"OrderID":"24488-036","ShipCountry":"CN","ShipAddress":"1849 Hauk Court","ShipName":"Willms Inc","OrderDate":"7/20/2017","TotalPayment":"$735146.05","Status":4,"Type":2}]},\n{"RecordID":334,"FirstName":"Bibi","LastName":"Atte-Stone","Company":"Dabshots","Email":"battestone99@nymag.com","Phone":"741-312-9280","Status":5,"Type":3,"Orders":[{"OrderID":"11410-128","ShipCountry":"CN","ShipAddress":"486 Ridgeway Alley","ShipName":"Hartmann, Hermann and Flatley","OrderDate":"10/7/2016","TotalPayment":"$49008.44","Status":6,"Type":1},{"OrderID":"64117-236","ShipCountry":"CN","ShipAddress":"4183 Logan Center","ShipName":"Dietrich, Fritsch and Vandervort","OrderDate":"11/15/2016","TotalPayment":"$676695.30","Status":3,"Type":3},{"OrderID":"52544-892","ShipCountry":"ID","ShipAddress":"1062 Nova Place","ShipName":"Fadel Inc","OrderDate":"3/29/2017","TotalPayment":"$284721.67","Status":6,"Type":1},{"OrderID":"54569-1983","ShipCountry":"CZ","ShipAddress":"2603 Sachs Circle","ShipName":"Russel Inc","OrderDate":"11/19/2017","TotalPayment":"$447277.03","Status":5,"Type":3},{"OrderID":"75921-409","ShipCountry":"IE","ShipAddress":"98 Hallows Junction","ShipName":"Schuppe-Terry","OrderDate":"5/17/2016","TotalPayment":"$216328.15","Status":5,"Type":1},{"OrderID":"65044-2203","ShipCountry":"HR","ShipAddress":"80 Delaware Court","ShipName":"Beer, Macejkovic and Romaguera","OrderDate":"10/31/2016","TotalPayment":"$1047392.24","Status":1,"Type":1},{"OrderID":"10202-337","ShipCountry":"PH","ShipAddress":"91004 Granby Alley","ShipName":"Littel, Franecki and Ebert","OrderDate":"2/10/2017","TotalPayment":"$252241.01","Status":4,"Type":3},{"OrderID":"53808-0863","ShipCountry":"IE","ShipAddress":"11 Lerdahl Court","ShipName":"Pagac-Mann","OrderDate":"1/3/2016","TotalPayment":"$711080.84","Status":6,"Type":3},{"OrderID":"33992-0329","ShipCountry":"FR","ShipAddress":"42294 Vera Street","ShipName":"Spencer Group","OrderDate":"12/6/2016","TotalPayment":"$1182756.09","Status":3,"Type":1},{"OrderID":"68210-1902","ShipCountry":"BG","ShipAddress":"6 Hoepker Alley","ShipName":"McLaughlin-Schowalter","OrderDate":"4/22/2017","TotalPayment":"$984585.55","Status":2,"Type":1},{"OrderID":"43269-679","ShipCountry":"CN","ShipAddress":"029 Trailsway Circle","ShipName":"Casper, Shields and Bernhard","OrderDate":"12/5/2016","TotalPayment":"$892727.11","Status":2,"Type":2},{"OrderID":"54868-5334","ShipCountry":"ID","ShipAddress":"5582 Eagle Crest Road","ShipName":"Cremin-Reinger","OrderDate":"5/26/2017","TotalPayment":"$456967.06","Status":5,"Type":3}]},\n{"RecordID":335,"FirstName":"Dolley","LastName":"Dymock","Company":"Kare","Email":"ddymock9a@cisco.com","Phone":"965-302-9119","Status":3,"Type":1,"Orders":[{"OrderID":"51996-001","ShipCountry":"MX","ShipAddress":"78720 Blackbird Road","ShipName":"McCullough Group","OrderDate":"5/22/2017","TotalPayment":"$297254.14","Status":3,"Type":3},{"OrderID":"0603-9418","ShipCountry":"FR","ShipAddress":"6 Ryan Way","ShipName":"Beatty and Sons","OrderDate":"7/25/2016","TotalPayment":"$758836.88","Status":2,"Type":1},{"OrderID":"52959-540","ShipCountry":"PH","ShipAddress":"61014 Hintze Parkway","ShipName":"Keebler, Steuber and Purdy","OrderDate":"5/4/2016","TotalPayment":"$1046977.70","Status":1,"Type":3},{"OrderID":"42549-620","ShipCountry":"PE","ShipAddress":"66776 Arrowood Park","ShipName":"Swaniawski, Champlin and Sipes","OrderDate":"3/28/2016","TotalPayment":"$553875.88","Status":1,"Type":3},{"OrderID":"50804-080","ShipCountry":"ID","ShipAddress":"3635 Algoma Terrace","ShipName":"Romaguera-Connelly","OrderDate":"6/6/2017","TotalPayment":"$598947.84","Status":6,"Type":1},{"OrderID":"36800-571","ShipCountry":"KR","ShipAddress":"51123 Dixon Street","ShipName":"Oberbrunner Group","OrderDate":"3/30/2016","TotalPayment":"$538008.93","Status":1,"Type":1},{"OrderID":"28877-5960","ShipCountry":"US","ShipAddress":"603 Burning Wood Plaza","ShipName":"Lebsack Group","OrderDate":"1/29/2017","TotalPayment":"$430455.26","Status":4,"Type":1},{"OrderID":"36987-2314","ShipCountry":"FR","ShipAddress":"807 Cottonwood Trail","ShipName":"Johnson, Conn and Turcotte","OrderDate":"3/7/2017","TotalPayment":"$1115430.50","Status":6,"Type":3},{"OrderID":"10019-037","ShipCountry":"JP","ShipAddress":"5795 Pankratz Park","ShipName":"Sanford-Davis","OrderDate":"12/11/2017","TotalPayment":"$833895.18","Status":6,"Type":1},{"OrderID":"0288-2203","ShipCountry":"GR","ShipAddress":"23 Grover Center","ShipName":"Stracke, Torp and Tillman","OrderDate":"2/7/2017","TotalPayment":"$673531.69","Status":3,"Type":1},{"OrderID":"68258-1972","ShipCountry":"PT","ShipAddress":"5031 Kinsman Plaza","ShipName":"Bartell-Schmidt","OrderDate":"5/11/2016","TotalPayment":"$75686.01","Status":1,"Type":3},{"OrderID":"61380-259","ShipCountry":"PS","ShipAddress":"249 Dwight Park","ShipName":"Deckow, Lehner and Krajcik","OrderDate":"7/3/2016","TotalPayment":"$546606.41","Status":6,"Type":1},{"OrderID":"42508-159","ShipCountry":"CA","ShipAddress":"19 Twin Pines Terrace","ShipName":"Reichert, Pagac and Schmitt","OrderDate":"3/27/2017","TotalPayment":"$817272.67","Status":5,"Type":3},{"OrderID":"50268-728","ShipCountry":"MT","ShipAddress":"408 Holmberg Parkway","ShipName":"Osinski, Sanford and Zemlak","OrderDate":"6/13/2017","TotalPayment":"$364571.62","Status":3,"Type":3},{"OrderID":"64679-906","ShipCountry":"VN","ShipAddress":"0917 Lunder Court","ShipName":"Leuschke, Prosacco and Gutmann","OrderDate":"5/19/2017","TotalPayment":"$342402.97","Status":1,"Type":2},{"OrderID":"31645-171","ShipCountry":"NO","ShipAddress":"14 Barby Lane","ShipName":"Hessel, Gutmann and Dickinson","OrderDate":"4/18/2017","TotalPayment":"$1003389.02","Status":2,"Type":3},{"OrderID":"68084-213","ShipCountry":"ID","ShipAddress":"02 Shopko Avenue","ShipName":"Stracke, Beer and Wolff","OrderDate":"2/9/2017","TotalPayment":"$742788.99","Status":4,"Type":1}]},\n{"RecordID":336,"FirstName":"Guillemette","LastName":"Lowre","Company":"Npath","Email":"glowre9b@odnoklassniki.ru","Phone":"455-354-7623","Status":4,"Type":2,"Orders":[{"OrderID":"59623-002","ShipCountry":"CH","ShipAddress":"13186 Larry Lane","ShipName":"Oberbrunner and Sons","OrderDate":"1/21/2017","TotalPayment":"$582039.67","Status":6,"Type":2},{"OrderID":"43063-533","ShipCountry":"AF","ShipAddress":"401 Comanche Park","ShipName":"Farrell, Franecki and Howe","OrderDate":"8/8/2016","TotalPayment":"$511459.66","Status":2,"Type":1},{"OrderID":"0517-0034","ShipCountry":"JP","ShipAddress":"535 Morrow Park","ShipName":"Walsh-MacGyver","OrderDate":"12/6/2017","TotalPayment":"$752946.52","Status":5,"Type":3},{"OrderID":"0781-7171","ShipCountry":"PT","ShipAddress":"9384 Amoth Pass","ShipName":"Heaney-Dare","OrderDate":"2/6/2016","TotalPayment":"$476517.27","Status":4,"Type":1},{"OrderID":"52584-317","ShipCountry":"AO","ShipAddress":"8913 Oxford Park","ShipName":"Price-Welch","OrderDate":"8/10/2017","TotalPayment":"$776745.22","Status":4,"Type":1},{"OrderID":"61957-2030","ShipCountry":"KG","ShipAddress":"191 Mitchell Pass","ShipName":"Waters-Hansen","OrderDate":"10/6/2016","TotalPayment":"$902223.87","Status":1,"Type":2},{"OrderID":"51621-030","ShipCountry":"PH","ShipAddress":"179 Lake View Way","ShipName":"Murray and Sons","OrderDate":"1/5/2016","TotalPayment":"$745046.02","Status":6,"Type":2},{"OrderID":"60561-0001","ShipCountry":"BR","ShipAddress":"90 Hallows Center","ShipName":"Lynch and Sons","OrderDate":"11/10/2016","TotalPayment":"$17444.27","Status":2,"Type":3},{"OrderID":"0131-2470","ShipCountry":"ID","ShipAddress":"582 Bobwhite Way","ShipName":"Labadie, Raynor and Frami","OrderDate":"5/1/2017","TotalPayment":"$43893.73","Status":5,"Type":3}]},\n{"RecordID":337,"FirstName":"Petronilla","LastName":"Filippo","Company":"Skinix","Email":"pfilippo9c@soundcloud.com","Phone":"835-342-3849","Status":5,"Type":2,"Orders":[{"OrderID":"0268-6745","ShipCountry":"PE","ShipAddress":"100 Lighthouse Bay Point","ShipName":"Hoeger, Hahn and Jacobson","OrderDate":"10/28/2017","TotalPayment":"$1059274.91","Status":6,"Type":1},{"OrderID":"36800-328","ShipCountry":"BR","ShipAddress":"310 Arrowood Pass","ShipName":"Torphy-Kunde","OrderDate":"1/29/2016","TotalPayment":"$429966.79","Status":1,"Type":1},{"OrderID":"52054-804","ShipCountry":"IT","ShipAddress":"984 Bowman Trail","ShipName":"Brown Group","OrderDate":"8/5/2017","TotalPayment":"$587171.50","Status":1,"Type":1},{"OrderID":"64117-718","ShipCountry":"FR","ShipAddress":"9 Northwestern Alley","ShipName":"Heidenreich LLC","OrderDate":"4/22/2016","TotalPayment":"$1082959.45","Status":4,"Type":3},{"OrderID":"24385-005","ShipCountry":"RU","ShipAddress":"08 Melvin Parkway","ShipName":"Mills Inc","OrderDate":"12/25/2016","TotalPayment":"$619144.24","Status":3,"Type":1},{"OrderID":"60793-145","ShipCountry":"US","ShipAddress":"1 Union Court","ShipName":"Corkery-Morissette","OrderDate":"11/5/2017","TotalPayment":"$507828.99","Status":4,"Type":1},{"OrderID":"0093-7291","ShipCountry":"ID","ShipAddress":"76 Green Ridge Terrace","ShipName":"Mraz, Moen and Lesch","OrderDate":"1/12/2017","TotalPayment":"$184555.67","Status":2,"Type":2},{"OrderID":"63629-4526","ShipCountry":"PF","ShipAddress":"885 Blaine Court","ShipName":"Spencer Group","OrderDate":"1/29/2017","TotalPayment":"$1047969.64","Status":6,"Type":3},{"OrderID":"67544-568","ShipCountry":"ID","ShipAddress":"91589 Dorton Crossing","ShipName":"VonRueden Inc","OrderDate":"5/12/2016","TotalPayment":"$1183317.91","Status":1,"Type":2},{"OrderID":"49288-0304","ShipCountry":"SN","ShipAddress":"85289 Bunker Hill Plaza","ShipName":"Ernser, Farrell and Berge","OrderDate":"11/1/2016","TotalPayment":"$13312.00","Status":3,"Type":2},{"OrderID":"37205-848","ShipCountry":"ID","ShipAddress":"9 Shasta Junction","ShipName":"Gerlach-Nader","OrderDate":"6/5/2016","TotalPayment":"$502893.55","Status":6,"Type":1},{"OrderID":"65862-560","ShipCountry":"KE","ShipAddress":"02785 Milwaukee Junction","ShipName":"Graham Group","OrderDate":"9/11/2016","TotalPayment":"$646279.20","Status":1,"Type":2},{"OrderID":"57896-199","ShipCountry":"GR","ShipAddress":"93022 Chinook Center","ShipName":"Eichmann Inc","OrderDate":"5/10/2017","TotalPayment":"$981102.21","Status":1,"Type":1},{"OrderID":"0409-1775","ShipCountry":"RU","ShipAddress":"963 Sunbrook Junction","ShipName":"McLaughlin Group","OrderDate":"5/14/2017","TotalPayment":"$944807.37","Status":3,"Type":1}]},\n{"RecordID":338,"FirstName":"Ericha","LastName":"Creavin","Company":"Oba","Email":"ecreavin9d@51.la","Phone":"491-148-0797","Status":3,"Type":3,"Orders":[{"OrderID":"52686-329","ShipCountry":"JP","ShipAddress":"7 Erie Center","ShipName":"Hirthe-Witting","OrderDate":"4/29/2017","TotalPayment":"$937231.85","Status":4,"Type":1},{"OrderID":"0268-1224","ShipCountry":"GU","ShipAddress":"9 Fulton Circle","ShipName":"Purdy, Harvey and Nicolas","OrderDate":"4/24/2016","TotalPayment":"$81928.95","Status":6,"Type":2},{"OrderID":"69170-102","ShipCountry":"PL","ShipAddress":"9 Miller Plaza","ShipName":"Dooley and Sons","OrderDate":"9/9/2016","TotalPayment":"$1138292.04","Status":3,"Type":1},{"OrderID":"48951-8158","ShipCountry":"BW","ShipAddress":"43 Dryden Crossing","ShipName":"Wunsch LLC","OrderDate":"4/27/2017","TotalPayment":"$51083.78","Status":5,"Type":2},{"OrderID":"10191-1603","ShipCountry":"CI","ShipAddress":"7 3rd Lane","ShipName":"Anderson-Kris","OrderDate":"6/25/2016","TotalPayment":"$1083210.00","Status":2,"Type":2},{"OrderID":"67777-231","ShipCountry":"IE","ShipAddress":"18698 Eastlawn Hill","ShipName":"Howell LLC","OrderDate":"6/14/2017","TotalPayment":"$887273.87","Status":3,"Type":2},{"OrderID":"55154-6164","ShipCountry":"RU","ShipAddress":"28 Forest Dale Plaza","ShipName":"Hartmann, McGlynn and Stracke","OrderDate":"6/12/2017","TotalPayment":"$989555.18","Status":3,"Type":2},{"OrderID":"0517-7201","ShipCountry":"DE","ShipAddress":"4695 Melby Crossing","ShipName":"McDermott, Lebsack and Mann","OrderDate":"1/3/2016","TotalPayment":"$736440.86","Status":4,"Type":2},{"OrderID":"42291-895","ShipCountry":"FI","ShipAddress":"8 Fulton Trail","ShipName":"Doyle, Kulas and Schimmel","OrderDate":"9/14/2016","TotalPayment":"$54138.43","Status":1,"Type":2},{"OrderID":"68647-206","ShipCountry":"RU","ShipAddress":"6569 Northwestern Way","ShipName":"Braun LLC","OrderDate":"10/24/2017","TotalPayment":"$240907.89","Status":1,"Type":2},{"OrderID":"52584-485","ShipCountry":"AF","ShipAddress":"76 Clarendon Junction","ShipName":"Gislason, Kessler and Botsford","OrderDate":"8/17/2017","TotalPayment":"$544501.87","Status":1,"Type":2},{"OrderID":"63187-054","ShipCountry":"UA","ShipAddress":"9 Bay Drive","ShipName":"Stanton and Sons","OrderDate":"1/27/2017","TotalPayment":"$966245.13","Status":6,"Type":2},{"OrderID":"36987-2123","ShipCountry":"ID","ShipAddress":"98998 Reinke Road","ShipName":"Kautzer-Weissnat","OrderDate":"9/1/2016","TotalPayment":"$683253.40","Status":6,"Type":2},{"OrderID":"53675-100","ShipCountry":"CO","ShipAddress":"193 Reindahl Place","ShipName":"Feest-Cummings","OrderDate":"9/27/2017","TotalPayment":"$819447.52","Status":1,"Type":2},{"OrderID":"52664-003","ShipCountry":"ID","ShipAddress":"901 Lake View Hill","ShipName":"Pouros-Kerluke","OrderDate":"7/1/2017","TotalPayment":"$679598.00","Status":3,"Type":1},{"OrderID":"0591-3159","ShipCountry":"AM","ShipAddress":"9 Donald Drive","ShipName":"Beahan, Zulauf and Kreiger","OrderDate":"7/15/2016","TotalPayment":"$1152279.01","Status":4,"Type":1}]},\n{"RecordID":339,"FirstName":"Wash","LastName":"Perrie","Company":"Divanoodle","Email":"wperrie9e@about.com","Phone":"600-549-2636","Status":3,"Type":2,"Orders":[{"OrderID":"63730-216","ShipCountry":"ID","ShipAddress":"0956 Alpine Road","ShipName":"Cartwright, Hoeger and Hessel","OrderDate":"12/16/2017","TotalPayment":"$293131.05","Status":1,"Type":3},{"OrderID":"14783-035","ShipCountry":"ID","ShipAddress":"02115 Macpherson Plaza","ShipName":"Cummings, Thompson and Kulas","OrderDate":"1/21/2016","TotalPayment":"$937132.33","Status":3,"Type":3},{"OrderID":"49349-248","ShipCountry":"SA","ShipAddress":"352 Golden Leaf Trail","ShipName":"Jerde LLC","OrderDate":"7/18/2016","TotalPayment":"$1083750.74","Status":4,"Type":3},{"OrderID":"42858-002","ShipCountry":"PH","ShipAddress":"623 Raven Way","ShipName":"Kautzer-Hilll","OrderDate":"11/28/2016","TotalPayment":"$942385.73","Status":5,"Type":1},{"OrderID":"46122-262","ShipCountry":"MX","ShipAddress":"810 Thierer Park","ShipName":"Kerluke-Erdman","OrderDate":"5/14/2017","TotalPayment":"$991719.55","Status":1,"Type":1},{"OrderID":"24385-493","ShipCountry":"US","ShipAddress":"3066 Loeprich Pass","ShipName":"Grady-Schmitt","OrderDate":"7/21/2017","TotalPayment":"$1155633.31","Status":4,"Type":1},{"OrderID":"0615-7730","ShipCountry":"ID","ShipAddress":"3 Luster Place","ShipName":"Pagac-Okuneva","OrderDate":"3/3/2017","TotalPayment":"$1054047.93","Status":5,"Type":3},{"OrderID":"49371-027","ShipCountry":"TH","ShipAddress":"8 Jana Alley","ShipName":"Herzog, Kemmer and Kulas","OrderDate":"11/28/2016","TotalPayment":"$624527.31","Status":1,"Type":3},{"OrderID":"43419-027","ShipCountry":"PH","ShipAddress":"9 Montana Circle","ShipName":"Stoltenberg-Steuber","OrderDate":"7/12/2016","TotalPayment":"$1139604.64","Status":4,"Type":1},{"OrderID":"68084-267","ShipCountry":"PH","ShipAddress":"84 Division Lane","ShipName":"Volkman and Sons","OrderDate":"3/30/2016","TotalPayment":"$1005201.05","Status":6,"Type":3},{"OrderID":"0597-0120","ShipCountry":"CN","ShipAddress":"220 2nd Circle","ShipName":"Batz and Sons","OrderDate":"9/5/2017","TotalPayment":"$758119.95","Status":2,"Type":3},{"OrderID":"0007-4882","ShipCountry":"LY","ShipAddress":"833 Dwight Avenue","ShipName":"Pfannerstill-Robel","OrderDate":"2/21/2016","TotalPayment":"$1183447.15","Status":1,"Type":3},{"OrderID":"66078-504","ShipCountry":"ID","ShipAddress":"44 Dunning Alley","ShipName":"Hettinger-Hermann","OrderDate":"2/1/2016","TotalPayment":"$468281.64","Status":2,"Type":3},{"OrderID":"57520-0203","ShipCountry":"BR","ShipAddress":"193 Orin Point","ShipName":"Mueller-Jast","OrderDate":"11/3/2016","TotalPayment":"$778696.63","Status":6,"Type":1}]},\n{"RecordID":340,"FirstName":"Raynard","LastName":"Kennicott","Company":"Skinder","Email":"rkennicott9f@squidoo.com","Phone":"360-873-3622","Status":2,"Type":1,"Orders":[{"OrderID":"50436-9978","ShipCountry":"BY","ShipAddress":"49 Monument Hill","ShipName":"Reilly, Dooley and Lehner","OrderDate":"9/13/2016","TotalPayment":"$662075.08","Status":2,"Type":1},{"OrderID":"59779-888","ShipCountry":"JP","ShipAddress":"06 Marquette Plaza","ShipName":"Macejkovic, McDermott and Gaylord","OrderDate":"12/5/2016","TotalPayment":"$640008.50","Status":6,"Type":3},{"OrderID":"54973-2909","ShipCountry":"PH","ShipAddress":"665 Mendota Park","ShipName":"Abshire LLC","OrderDate":"4/24/2016","TotalPayment":"$991084.70","Status":2,"Type":3},{"OrderID":"47593-521","ShipCountry":"GB","ShipAddress":"9097 John Wall Way","ShipName":"O\'Hara Inc","OrderDate":"10/26/2016","TotalPayment":"$456846.17","Status":3,"Type":3},{"OrderID":"47918-840","ShipCountry":"CN","ShipAddress":"80253 Brickson Park Point","ShipName":"Tillman, Streich and Howell","OrderDate":"5/26/2017","TotalPayment":"$700679.62","Status":5,"Type":3},{"OrderID":"36987-2595","ShipCountry":"CZ","ShipAddress":"8881 Lakewood Gardens Drive","ShipName":"Bergstrom, Hamill and Ondricka","OrderDate":"3/17/2016","TotalPayment":"$858369.04","Status":6,"Type":3},{"OrderID":"51346-014","ShipCountry":"RU","ShipAddress":"8961 Eagle Crest Crossing","ShipName":"Hirthe and Sons","OrderDate":"2/22/2017","TotalPayment":"$215306.15","Status":6,"Type":1},{"OrderID":"64942-1338","ShipCountry":"AL","ShipAddress":"5027 Blackbird Road","ShipName":"Stracke, Auer and Simonis","OrderDate":"7/10/2016","TotalPayment":"$1063269.13","Status":2,"Type":2},{"OrderID":"59883-920","ShipCountry":"PH","ShipAddress":"5834 Straubel Park","ShipName":"Graham-Torp","OrderDate":"12/2/2016","TotalPayment":"$43405.44","Status":6,"Type":2},{"OrderID":"60505-0598","ShipCountry":"MN","ShipAddress":"00244 Corry Park","ShipName":"Mohr and Sons","OrderDate":"4/18/2016","TotalPayment":"$299131.91","Status":5,"Type":1},{"OrderID":"0245-0169","ShipCountry":"HT","ShipAddress":"3883 Farwell Lane","ShipName":"Homenick-Schmeler","OrderDate":"8/11/2016","TotalPayment":"$1039293.08","Status":6,"Type":1},{"OrderID":"68745-1044","ShipCountry":"CZ","ShipAddress":"518 Springs Drive","ShipName":"Pagac and Sons","OrderDate":"5/28/2017","TotalPayment":"$217827.54","Status":5,"Type":3},{"OrderID":"57451-5065","ShipCountry":"RU","ShipAddress":"3773 Walton Point","ShipName":"Maggio and Sons","OrderDate":"5/18/2016","TotalPayment":"$930067.77","Status":4,"Type":1},{"OrderID":"65954-064","ShipCountry":"PF","ShipAddress":"8101 Garrison Park","ShipName":"Hilll, McDermott and Rowe","OrderDate":"5/5/2016","TotalPayment":"$1122616.04","Status":3,"Type":3}]},\n{"RecordID":341,"FirstName":"Leroi","LastName":"Albone","Company":"Eayo","Email":"lalbone9g@unesco.org","Phone":"333-157-2913","Status":6,"Type":2,"Orders":[{"OrderID":"68084-475","ShipCountry":"CO","ShipAddress":"8 Village Green Point","ShipName":"Stark-Bernier","OrderDate":"10/26/2016","TotalPayment":"$1197920.92","Status":2,"Type":2},{"OrderID":"60429-297","ShipCountry":"BD","ShipAddress":"275 Scott Pass","ShipName":"Connelly-Simonis","OrderDate":"5/21/2017","TotalPayment":"$807074.59","Status":3,"Type":1},{"OrderID":"0603-6161","ShipCountry":"FR","ShipAddress":"6 Independence Parkway","ShipName":"Carter-DuBuque","OrderDate":"5/27/2016","TotalPayment":"$77254.00","Status":3,"Type":1},{"OrderID":"62175-124","ShipCountry":"CA","ShipAddress":"8978 8th Lane","ShipName":"Dicki-Lubowitz","OrderDate":"8/5/2017","TotalPayment":"$1126974.10","Status":2,"Type":3},{"OrderID":"53738-9905","ShipCountry":"CN","ShipAddress":"0385 Hudson Circle","ShipName":"Kihn Inc","OrderDate":"5/17/2017","TotalPayment":"$606646.13","Status":2,"Type":2},{"OrderID":"51346-186","ShipCountry":"RU","ShipAddress":"315 Carpenter Crossing","ShipName":"Eichmann Group","OrderDate":"3/5/2016","TotalPayment":"$270413.18","Status":4,"Type":2},{"OrderID":"0904-1102","ShipCountry":"CN","ShipAddress":"6 Lien Street","ShipName":"Ryan-Bartell","OrderDate":"10/27/2016","TotalPayment":"$640997.03","Status":2,"Type":2},{"OrderID":"63162-518","ShipCountry":"HN","ShipAddress":"6 Melvin Plaza","ShipName":"Bayer, Gusikowski and Howe","OrderDate":"11/11/2017","TotalPayment":"$935472.23","Status":2,"Type":1},{"OrderID":"49349-087","ShipCountry":"PE","ShipAddress":"9 Randy Parkway","ShipName":"Goodwin, Mosciski and Collier","OrderDate":"8/12/2017","TotalPayment":"$106689.37","Status":3,"Type":1},{"OrderID":"0944-4351","ShipCountry":"SE","ShipAddress":"042 Commercial Center","ShipName":"Hilll LLC","OrderDate":"1/8/2016","TotalPayment":"$736436.10","Status":6,"Type":3},{"OrderID":"11410-150","ShipCountry":"CN","ShipAddress":"6 Packers Terrace","ShipName":"Littel, Dare and Wehner","OrderDate":"3/28/2017","TotalPayment":"$314603.75","Status":4,"Type":2},{"OrderID":"63730-204","ShipCountry":"BD","ShipAddress":"5 Esker Way","ShipName":"Langworth Group","OrderDate":"4/20/2017","TotalPayment":"$867355.82","Status":4,"Type":1},{"OrderID":"68788-9669","ShipCountry":"RU","ShipAddress":"08651 Corben Center","ShipName":"Stoltenberg Group","OrderDate":"2/6/2017","TotalPayment":"$998959.77","Status":3,"Type":2},{"OrderID":"50458-398","ShipCountry":"IE","ShipAddress":"3172 Delladonna Way","ShipName":"Prosacco-Jakubowski","OrderDate":"8/13/2017","TotalPayment":"$1117672.04","Status":4,"Type":1},{"OrderID":"0143-9682","ShipCountry":"PH","ShipAddress":"808 Moulton Court","ShipName":"Bins Inc","OrderDate":"5/8/2016","TotalPayment":"$605688.31","Status":5,"Type":1},{"OrderID":"49348-397","ShipCountry":"ID","ShipAddress":"3 Hoffman Drive","ShipName":"Paucek Inc","OrderDate":"7/21/2016","TotalPayment":"$265659.50","Status":2,"Type":2},{"OrderID":"68001-154","ShipCountry":"PT","ShipAddress":"73 Kings Plaza","ShipName":"Towne, Trantow and O\'Hara","OrderDate":"9/27/2017","TotalPayment":"$748557.88","Status":4,"Type":1},{"OrderID":"65156-515","ShipCountry":"CN","ShipAddress":"3450 Prentice Way","ShipName":"Rowe Inc","OrderDate":"3/13/2017","TotalPayment":"$578726.88","Status":2,"Type":1},{"OrderID":"12022-240","ShipCountry":"AU","ShipAddress":"63 Mifflin Hill","ShipName":"Schowalter-Predovic","OrderDate":"5/12/2017","TotalPayment":"$427878.41","Status":2,"Type":1}]},\n{"RecordID":342,"FirstName":"Marjy","LastName":"South","Company":"Tazzy","Email":"msouth9h@google.es","Phone":"736-438-4260","Status":5,"Type":2,"Orders":[{"OrderID":"0615-5536","ShipCountry":"KZ","ShipAddress":"2 Barnett Center","ShipName":"Shields-Parker","OrderDate":"5/2/2016","TotalPayment":"$254109.76","Status":3,"Type":1},{"OrderID":"52125-115","ShipCountry":"PT","ShipAddress":"3 Hovde Trail","ShipName":"Schneider LLC","OrderDate":"1/25/2016","TotalPayment":"$591392.17","Status":5,"Type":3},{"OrderID":"49738-399","ShipCountry":"LU","ShipAddress":"5022 Jackson Road","ShipName":"Pagac, Smitham and Boyle","OrderDate":"5/1/2017","TotalPayment":"$985497.79","Status":6,"Type":2},{"OrderID":"54868-1073","ShipCountry":"NE","ShipAddress":"06759 Westend Pass","ShipName":"Donnelly LLC","OrderDate":"12/30/2017","TotalPayment":"$402350.05","Status":3,"Type":3},{"OrderID":"59676-565","ShipCountry":"ID","ShipAddress":"30 Pennsylvania Drive","ShipName":"Walker-Walter","OrderDate":"4/4/2017","TotalPayment":"$347570.74","Status":4,"Type":2},{"OrderID":"66336-579","ShipCountry":"CN","ShipAddress":"46 Larry Alley","ShipName":"Johnston, Smith and Wilderman","OrderDate":"7/14/2016","TotalPayment":"$278759.39","Status":2,"Type":2},{"OrderID":"58914-301","ShipCountry":"KM","ShipAddress":"2 Upham Drive","ShipName":"Sauer-Raynor","OrderDate":"1/8/2017","TotalPayment":"$102360.43","Status":2,"Type":3},{"OrderID":"42507-240","ShipCountry":"JP","ShipAddress":"444 Gateway Point","ShipName":"Nader-Hilpert","OrderDate":"3/1/2016","TotalPayment":"$1152106.98","Status":5,"Type":2},{"OrderID":"58232-0723","ShipCountry":"IE","ShipAddress":"0807 Golf Point","ShipName":"Bailey-Batz","OrderDate":"12/8/2017","TotalPayment":"$169134.72","Status":5,"Type":1},{"OrderID":"54868-3757","ShipCountry":"TD","ShipAddress":"11 Mallard Park","ShipName":"Koss Group","OrderDate":"9/19/2017","TotalPayment":"$647833.15","Status":6,"Type":3},{"OrderID":"42043-320","ShipCountry":"BR","ShipAddress":"15 Summit Parkway","ShipName":"Witting-Konopelski","OrderDate":"7/1/2017","TotalPayment":"$1172158.54","Status":3,"Type":3},{"OrderID":"63629-1639","ShipCountry":"CN","ShipAddress":"8 Del Mar Terrace","ShipName":"Kuvalis-Pacocha","OrderDate":"10/26/2017","TotalPayment":"$889157.02","Status":4,"Type":2},{"OrderID":"26050-101","ShipCountry":"FR","ShipAddress":"853 Evergreen Place","ShipName":"Cartwright Group","OrderDate":"11/26/2016","TotalPayment":"$891719.59","Status":1,"Type":2},{"OrderID":"48951-8170","ShipCountry":"ID","ShipAddress":"865 Sloan Plaza","ShipName":"Cole-Deckow","OrderDate":"1/4/2016","TotalPayment":"$916136.23","Status":6,"Type":2},{"OrderID":"59779-116","ShipCountry":"US","ShipAddress":"3 Hudson Alley","ShipName":"Mueller-Ledner","OrderDate":"5/10/2017","TotalPayment":"$347855.04","Status":4,"Type":3},{"OrderID":"68084-044","ShipCountry":"PH","ShipAddress":"3171 Lukken Parkway","ShipName":"Padberg, Powlowski and Gerhold","OrderDate":"8/9/2017","TotalPayment":"$276805.15","Status":2,"Type":2},{"OrderID":"49781-074","ShipCountry":"ES","ShipAddress":"128 Hovde Drive","ShipName":"Spencer-Grimes","OrderDate":"11/28/2017","TotalPayment":"$896783.34","Status":2,"Type":2},{"OrderID":"10191-1249","ShipCountry":"PH","ShipAddress":"0 Farwell Court","ShipName":"Lindgren-Boehm","OrderDate":"7/31/2016","TotalPayment":"$582816.42","Status":5,"Type":3},{"OrderID":"57520-0620","ShipCountry":"BR","ShipAddress":"3 Roxbury Park","ShipName":"Connelly, Kilback and Marvin","OrderDate":"1/1/2016","TotalPayment":"$219005.64","Status":4,"Type":1}]},\n{"RecordID":343,"FirstName":"Bayard","LastName":"Proctor","Company":"Trupe","Email":"bproctor9i@discuz.net","Phone":"236-187-0969","Status":5,"Type":3,"Orders":[{"OrderID":"50580-269","ShipCountry":"RU","ShipAddress":"92840 Moose Park","ShipName":"Hauck-Yost","OrderDate":"9/26/2017","TotalPayment":"$591735.25","Status":6,"Type":2},{"OrderID":"54569-2571","ShipCountry":"ID","ShipAddress":"619 David Drive","ShipName":"Lubowitz, Keeling and Keebler","OrderDate":"4/8/2016","TotalPayment":"$24880.39","Status":1,"Type":1},{"OrderID":"43857-0193","ShipCountry":"RU","ShipAddress":"1015 Packers Center","ShipName":"Cormier and Sons","OrderDate":"11/6/2017","TotalPayment":"$588580.04","Status":1,"Type":2},{"OrderID":"62296-0032","ShipCountry":"TZ","ShipAddress":"3 Division Place","ShipName":"McLaughlin-Bartoletti","OrderDate":"7/16/2017","TotalPayment":"$607189.16","Status":2,"Type":2},{"OrderID":"56152-0010","ShipCountry":"PL","ShipAddress":"03 Buell Alley","ShipName":"Crist Group","OrderDate":"11/21/2016","TotalPayment":"$178479.03","Status":1,"Type":3},{"OrderID":"13925-103","ShipCountry":"RU","ShipAddress":"89898 Milwaukee Drive","ShipName":"Beier-Marvin","OrderDate":"7/17/2016","TotalPayment":"$319696.15","Status":6,"Type":3},{"OrderID":"59762-0075","ShipCountry":"MX","ShipAddress":"4 Bonner Street","ShipName":"Armstrong, Fritsch and Romaguera","OrderDate":"5/14/2017","TotalPayment":"$290390.62","Status":1,"Type":1},{"OrderID":"60505-3454","ShipCountry":"BR","ShipAddress":"5761 Grasskamp Trail","ShipName":"Senger LLC","OrderDate":"10/21/2017","TotalPayment":"$413409.05","Status":6,"Type":3},{"OrderID":"57520-0106","ShipCountry":"LS","ShipAddress":"08707 Blackbird Plaza","ShipName":"Jerde-Sporer","OrderDate":"5/29/2016","TotalPayment":"$877615.03","Status":4,"Type":1},{"OrderID":"33261-992","ShipCountry":"PA","ShipAddress":"73 Pleasure Parkway","ShipName":"Reichel and Sons","OrderDate":"2/15/2016","TotalPayment":"$266845.65","Status":5,"Type":2},{"OrderID":"64980-130","ShipCountry":"XK","ShipAddress":"3777 Sachs Avenue","ShipName":"Hilpert-Wuckert","OrderDate":"8/21/2017","TotalPayment":"$191776.50","Status":1,"Type":3}]},\n{"RecordID":344,"FirstName":"Ira","LastName":"Comley","Company":"Vimbo","Email":"icomley9j@wiley.com","Phone":"656-190-8225","Status":6,"Type":2,"Orders":[{"OrderID":"49348-001","ShipCountry":"CN","ShipAddress":"7 West Alley","ShipName":"Klein, Kulas and Leannon","OrderDate":"8/4/2016","TotalPayment":"$1149000.51","Status":4,"Type":1},{"OrderID":"11410-106","ShipCountry":"PS","ShipAddress":"7 Hoepker Point","ShipName":"Ruecker, Shanahan and Flatley","OrderDate":"1/31/2017","TotalPayment":"$400282.27","Status":4,"Type":3},{"OrderID":"55714-2322","ShipCountry":"VN","ShipAddress":"539 Merry Hill","ShipName":"Ledner Group","OrderDate":"7/13/2016","TotalPayment":"$608049.34","Status":2,"Type":2},{"OrderID":"0378-2073","ShipCountry":"AR","ShipAddress":"5 Jackson Park","ShipName":"Krajcik-Kerluke","OrderDate":"5/24/2017","TotalPayment":"$83508.55","Status":2,"Type":3},{"OrderID":"37808-198","ShipCountry":"ID","ShipAddress":"1602 Becker Crossing","ShipName":"Mante and Sons","OrderDate":"7/21/2017","TotalPayment":"$832475.56","Status":3,"Type":2},{"OrderID":"0407-0690","ShipCountry":"BR","ShipAddress":"257 Florence Circle","ShipName":"Emmerich Group","OrderDate":"4/6/2016","TotalPayment":"$774815.58","Status":3,"Type":1},{"OrderID":"0904-0789","ShipCountry":"PH","ShipAddress":"7 Mockingbird Pass","ShipName":"Kemmer LLC","OrderDate":"2/3/2017","TotalPayment":"$251372.02","Status":5,"Type":3},{"OrderID":"60505-0010","ShipCountry":"CN","ShipAddress":"837 Larry Place","ShipName":"Beatty Inc","OrderDate":"8/19/2016","TotalPayment":"$899945.32","Status":6,"Type":1},{"OrderID":"57469-021","ShipCountry":"CN","ShipAddress":"616 Drewry Road","ShipName":"Kuhic and Sons","OrderDate":"12/12/2016","TotalPayment":"$199795.06","Status":6,"Type":3},{"OrderID":"63629-5219","ShipCountry":"VN","ShipAddress":"219 Gina Lane","ShipName":"Konopelski LLC","OrderDate":"4/3/2017","TotalPayment":"$249576.61","Status":1,"Type":3},{"OrderID":"51672-2088","ShipCountry":"PG","ShipAddress":"405 Dawn Plaza","ShipName":"Mayert-Treutel","OrderDate":"9/7/2016","TotalPayment":"$1010260.42","Status":6,"Type":2},{"OrderID":"65342-1009","ShipCountry":"SE","ShipAddress":"2 Banding Hill","ShipName":"DuBuque-Oberbrunner","OrderDate":"4/16/2016","TotalPayment":"$742308.86","Status":2,"Type":3},{"OrderID":"0245-0219","ShipCountry":"RU","ShipAddress":"057 La Follette Place","ShipName":"Bashirian, Barton and Hilpert","OrderDate":"1/18/2016","TotalPayment":"$437329.28","Status":5,"Type":3},{"OrderID":"52915-020","ShipCountry":"MK","ShipAddress":"36 Moulton Crossing","ShipName":"Kessler-Mosciski","OrderDate":"9/24/2017","TotalPayment":"$289692.16","Status":3,"Type":2},{"OrderID":"36987-1246","ShipCountry":"CN","ShipAddress":"85 Fair Oaks Avenue","ShipName":"Marks Inc","OrderDate":"4/28/2017","TotalPayment":"$881128.16","Status":3,"Type":2},{"OrderID":"52389-136","ShipCountry":"ID","ShipAddress":"7 Bartillon Point","ShipName":"Johnston-McDermott","OrderDate":"8/30/2016","TotalPayment":"$230907.64","Status":1,"Type":3},{"OrderID":"62011-0050","ShipCountry":"ID","ShipAddress":"5919 Hovde Parkway","ShipName":"Schmeler-Legros","OrderDate":"6/16/2016","TotalPayment":"$335635.98","Status":1,"Type":3},{"OrderID":"0228-2982","ShipCountry":"ID","ShipAddress":"3 Carberry Park","ShipName":"Grimes-Wiza","OrderDate":"8/13/2017","TotalPayment":"$402470.76","Status":1,"Type":3},{"OrderID":"43742-0200","ShipCountry":"KW","ShipAddress":"3822 Kedzie Place","ShipName":"Orn LLC","OrderDate":"12/21/2017","TotalPayment":"$10263.83","Status":5,"Type":3}]},\n{"RecordID":345,"FirstName":"Rosetta","LastName":"MacKenney","Company":"Flipopia","Email":"rmackenney9k@skyrock.com","Phone":"579-148-4004","Status":3,"Type":1,"Orders":[{"OrderID":"54569-0452","ShipCountry":"KP","ShipAddress":"2835 Saint Paul Avenue","ShipName":"Rippin-Zemlak","OrderDate":"8/8/2016","TotalPayment":"$876392.85","Status":6,"Type":3},{"OrderID":"29500-909","ShipCountry":"ID","ShipAddress":"56159 Reindahl Park","ShipName":"Barrows-Abernathy","OrderDate":"7/30/2016","TotalPayment":"$804654.46","Status":2,"Type":2},{"OrderID":"64942-1192","ShipCountry":"FI","ShipAddress":"82946 Carioca Pass","ShipName":"Kling Group","OrderDate":"10/7/2016","TotalPayment":"$53359.03","Status":2,"Type":3},{"OrderID":"68094-716","ShipCountry":"PH","ShipAddress":"11173 Prairieview Center","ShipName":"Fritsch, Kuvalis and Wolf","OrderDate":"5/29/2016","TotalPayment":"$472940.89","Status":6,"Type":3},{"OrderID":"36987-1343","ShipCountry":"PT","ShipAddress":"3 Drewry Circle","ShipName":"Torp and Sons","OrderDate":"2/12/2016","TotalPayment":"$1151739.56","Status":3,"Type":3},{"OrderID":"0378-2268","ShipCountry":"MK","ShipAddress":"86 Alpine Hill","ShipName":"Bruen and Sons","OrderDate":"12/3/2017","TotalPayment":"$493260.11","Status":2,"Type":1},{"OrderID":"52544-931","ShipCountry":"GR","ShipAddress":"4996 Southridge Avenue","ShipName":"Stokes-McClure","OrderDate":"2/29/2016","TotalPayment":"$680304.90","Status":5,"Type":1},{"OrderID":"54575-228","ShipCountry":"CN","ShipAddress":"1691 Gerald Junction","ShipName":"Altenwerth-Raynor","OrderDate":"3/19/2017","TotalPayment":"$492839.92","Status":6,"Type":1},{"OrderID":"37000-357","ShipCountry":"ID","ShipAddress":"6 Packers Circle","ShipName":"Beatty, Hansen and Windler","OrderDate":"2/9/2016","TotalPayment":"$86700.84","Status":4,"Type":1},{"OrderID":"59045-1004","ShipCountry":"CN","ShipAddress":"9342 Hauk Pass","ShipName":"Witting-Berge","OrderDate":"12/15/2017","TotalPayment":"$462483.14","Status":6,"Type":1},{"OrderID":"61919-101","ShipCountry":"VN","ShipAddress":"2450 Oak Valley Junction","ShipName":"Muller-Strosin","OrderDate":"7/11/2017","TotalPayment":"$908102.14","Status":1,"Type":3},{"OrderID":"10678-003","ShipCountry":"CN","ShipAddress":"610 Green Circle","ShipName":"O\'Hara and Sons","OrderDate":"4/13/2016","TotalPayment":"$371167.28","Status":6,"Type":3},{"OrderID":"49349-190","ShipCountry":"RU","ShipAddress":"32324 Bluestem Park","ShipName":"Stroman-Cartwright","OrderDate":"9/16/2016","TotalPayment":"$939230.78","Status":3,"Type":1},{"OrderID":"62566-001","ShipCountry":"CN","ShipAddress":"92 Mallard Way","ShipName":"Ziemann, Walter and Witting","OrderDate":"5/28/2016","TotalPayment":"$713802.87","Status":4,"Type":1}]},\n{"RecordID":346,"FirstName":"Aura","LastName":"Pentin","Company":"Abata","Email":"apentin9l@eventbrite.com","Phone":"171-847-5084","Status":3,"Type":3,"Orders":[{"OrderID":"58657-421","ShipCountry":"PH","ShipAddress":"2359 Mendota Road","ShipName":"Armstrong, Kuvalis and Reynolds","OrderDate":"9/5/2016","TotalPayment":"$273450.96","Status":6,"Type":1},{"OrderID":"59746-307","ShipCountry":"MA","ShipAddress":"12582 Kim Pass","ShipName":"Kiehn, Considine and Towne","OrderDate":"1/4/2016","TotalPayment":"$520493.45","Status":5,"Type":2},{"OrderID":"0185-0325","ShipCountry":"HK","ShipAddress":"40322 Spaight Court","ShipName":"Hudson, Kessler and Hayes","OrderDate":"9/26/2016","TotalPayment":"$1024557.96","Status":1,"Type":3},{"OrderID":"36987-2828","ShipCountry":"KP","ShipAddress":"8287 Pawling Crossing","ShipName":"Bruen Inc","OrderDate":"9/28/2016","TotalPayment":"$727154.87","Status":1,"Type":3},{"OrderID":"13734-117","ShipCountry":"CN","ShipAddress":"08 Montana Street","ShipName":"Hoppe Group","OrderDate":"8/29/2016","TotalPayment":"$393648.66","Status":2,"Type":1},{"OrderID":"54738-903","ShipCountry":"PL","ShipAddress":"609 Trailsway Crossing","ShipName":"Watsica-Crooks","OrderDate":"2/26/2016","TotalPayment":"$365955.18","Status":3,"Type":3},{"OrderID":"23155-001","ShipCountry":"CN","ShipAddress":"8939 Forster Trail","ShipName":"D\'Amore Group","OrderDate":"6/5/2017","TotalPayment":"$974164.30","Status":5,"Type":3}]},\n{"RecordID":347,"FirstName":"Bambi","LastName":"Overil","Company":"Jabbersphere","Email":"boveril9m@flickr.com","Phone":"797-280-3131","Status":6,"Type":3,"Orders":[{"OrderID":"36987-2949","ShipCountry":"CN","ShipAddress":"4 School Terrace","ShipName":"Witting-Bogisich","OrderDate":"12/12/2016","TotalPayment":"$605928.90","Status":5,"Type":1},{"OrderID":"68462-104","ShipCountry":"CA","ShipAddress":"5492 Del Sol Point","ShipName":"Predovic, Wunsch and Denesik","OrderDate":"1/26/2017","TotalPayment":"$474222.86","Status":3,"Type":2},{"OrderID":"68016-190","ShipCountry":"AR","ShipAddress":"46380 Shasta Hill","ShipName":"Gleichner, O\'Conner and Hodkiewicz","OrderDate":"12/28/2017","TotalPayment":"$801189.76","Status":1,"Type":2},{"OrderID":"44004-802","ShipCountry":"CN","ShipAddress":"5987 Golf Course Center","ShipName":"Fisher, Rempel and Reinger","OrderDate":"7/25/2016","TotalPayment":"$1066038.27","Status":6,"Type":3},{"OrderID":"54868-6167","ShipCountry":"PT","ShipAddress":"72 Waxwing Street","ShipName":"Buckridge-Corwin","OrderDate":"9/20/2016","TotalPayment":"$548563.91","Status":4,"Type":1},{"OrderID":"60512-6502","ShipCountry":"PH","ShipAddress":"74454 Meadow Vale Avenue","ShipName":"Ratke-Howe","OrderDate":"3/9/2016","TotalPayment":"$194860.68","Status":3,"Type":2},{"OrderID":"23155-028","ShipCountry":"GR","ShipAddress":"88300 Spaight Pass","ShipName":"Larkin-Prosacco","OrderDate":"8/18/2016","TotalPayment":"$1180587.36","Status":4,"Type":1},{"OrderID":"46123-021","ShipCountry":"PH","ShipAddress":"75595 Maywood Terrace","ShipName":"Bernhard-Funk","OrderDate":"7/13/2017","TotalPayment":"$138618.75","Status":2,"Type":2},{"OrderID":"67457-507","ShipCountry":"CZ","ShipAddress":"81 Acker Court","ShipName":"Spencer, Ondricka and Hamill","OrderDate":"7/11/2017","TotalPayment":"$29873.79","Status":6,"Type":2},{"OrderID":"55513-730","ShipCountry":"SE","ShipAddress":"494 Riverside Plaza","ShipName":"Quigley, Jenkins and Muller","OrderDate":"10/25/2017","TotalPayment":"$998897.81","Status":4,"Type":2}]},\n{"RecordID":348,"FirstName":"Ave","LastName":"McEntagart","Company":"Podcat","Email":"amcentagart9n@homestead.com","Phone":"782-598-0729","Status":3,"Type":3,"Orders":[{"OrderID":"53238-001","ShipCountry":"PT","ShipAddress":"68 Mandrake Lane","ShipName":"Lueilwitz, Adams and Kuhlman","OrderDate":"3/18/2016","TotalPayment":"$466148.05","Status":5,"Type":1},{"OrderID":"45802-014","ShipCountry":"MX","ShipAddress":"7 Upham Junction","ShipName":"Simonis and Sons","OrderDate":"8/29/2016","TotalPayment":"$286495.68","Status":2,"Type":2},{"OrderID":"62584-781","ShipCountry":"UA","ShipAddress":"4099 Merry Plaza","ShipName":"Lemke, Balistreri and Windler","OrderDate":"3/22/2017","TotalPayment":"$637212.62","Status":5,"Type":2},{"OrderID":"54569-6121","ShipCountry":"BR","ShipAddress":"780 Manley Parkway","ShipName":"Bailey, Schiller and Kling","OrderDate":"12/24/2017","TotalPayment":"$1058402.05","Status":2,"Type":3},{"OrderID":"0527-1638","ShipCountry":"GR","ShipAddress":"52 Lillian Lane","ShipName":"Hoppe, Sanford and Jacobs","OrderDate":"9/8/2016","TotalPayment":"$601221.51","Status":3,"Type":2},{"OrderID":"49349-549","ShipCountry":"ZA","ShipAddress":"50590 Valley Edge Hill","ShipName":"Borer-Reichel","OrderDate":"11/20/2016","TotalPayment":"$959770.81","Status":2,"Type":2},{"OrderID":"0187-2201","ShipCountry":"PE","ShipAddress":"1 Hintze Lane","ShipName":"Jast, Hodkiewicz and Feest","OrderDate":"2/11/2016","TotalPayment":"$1056217.09","Status":4,"Type":3},{"OrderID":"68472-104","ShipCountry":"IE","ShipAddress":"152 Hoepker Lane","ShipName":"Stehr, Lemke and Johnston","OrderDate":"5/3/2016","TotalPayment":"$194573.19","Status":3,"Type":3},{"OrderID":"49349-561","ShipCountry":"RU","ShipAddress":"68989 Sheridan Pass","ShipName":"Koch, Luettgen and Powlowski","OrderDate":"8/20/2016","TotalPayment":"$887508.70","Status":6,"Type":1},{"OrderID":"21130-463","ShipCountry":"PT","ShipAddress":"22998 Crownhardt Lane","ShipName":"Crist and Sons","OrderDate":"9/22/2017","TotalPayment":"$1075519.13","Status":5,"Type":2},{"OrderID":"10019-510","ShipCountry":"EG","ShipAddress":"6 Vernon Drive","ShipName":"Hodkiewicz LLC","OrderDate":"6/14/2016","TotalPayment":"$1037033.00","Status":1,"Type":3},{"OrderID":"49349-156","ShipCountry":"CZ","ShipAddress":"456 Straubel Lane","ShipName":"Balistreri, Blanda and Heaney","OrderDate":"3/29/2016","TotalPayment":"$663026.23","Status":2,"Type":3},{"OrderID":"30142-839","ShipCountry":"CN","ShipAddress":"5585 Erie Hill","ShipName":"O\'Keefe-Hagenes","OrderDate":"3/31/2016","TotalPayment":"$558067.95","Status":6,"Type":2},{"OrderID":"54482-147","ShipCountry":"BR","ShipAddress":"65 Trailsway Center","ShipName":"Waters-Fritsch","OrderDate":"4/24/2016","TotalPayment":"$299405.61","Status":1,"Type":3},{"OrderID":"50227-3251","ShipCountry":"FR","ShipAddress":"9059 Brickson Park Junction","ShipName":"Kovacek-Tromp","OrderDate":"11/10/2016","TotalPayment":"$654083.49","Status":6,"Type":1},{"OrderID":"10742-8214","ShipCountry":"NL","ShipAddress":"7550 Spenser Place","ShipName":"Mitchell-McDermott","OrderDate":"3/8/2016","TotalPayment":"$86975.70","Status":3,"Type":2},{"OrderID":"0409-0221","ShipCountry":"PL","ShipAddress":"05285 Hanover Parkway","ShipName":"Mitchell, Zemlak and Schroeder","OrderDate":"9/23/2016","TotalPayment":"$1154629.91","Status":4,"Type":2},{"OrderID":"0378-5272","ShipCountry":"CN","ShipAddress":"50 Rockefeller Point","ShipName":"Larkin-Ledner","OrderDate":"8/17/2017","TotalPayment":"$1112197.52","Status":1,"Type":2}]},\n{"RecordID":349,"FirstName":"Nial","LastName":"Beden","Company":"Feedspan","Email":"nbeden9o@hostgator.com","Phone":"465-123-8300","Status":1,"Type":2,"Orders":[{"OrderID":"54868-5649","ShipCountry":"PH","ShipAddress":"594 Anderson Road","ShipName":"Daniel-Huel","OrderDate":"6/24/2016","TotalPayment":"$762496.04","Status":4,"Type":1},{"OrderID":"0078-0327","ShipCountry":"PH","ShipAddress":"2 Lotheville Parkway","ShipName":"Baumbach, Parisian and Ruecker","OrderDate":"2/6/2016","TotalPayment":"$999714.19","Status":2,"Type":1},{"OrderID":"0363-2173","ShipCountry":"CN","ShipAddress":"5921 Becker Terrace","ShipName":"Rohan-Marks","OrderDate":"7/2/2016","TotalPayment":"$44425.99","Status":4,"Type":2},{"OrderID":"14783-105","ShipCountry":"BR","ShipAddress":"9 Waubesa Court","ShipName":"Anderson, Gutkowski and Zieme","OrderDate":"6/15/2016","TotalPayment":"$144439.32","Status":1,"Type":3},{"OrderID":"59779-215","ShipCountry":"PT","ShipAddress":"4 Clarendon Alley","ShipName":"Cremin, Leuschke and Marks","OrderDate":"9/7/2016","TotalPayment":"$158843.95","Status":1,"Type":1},{"OrderID":"49349-655","ShipCountry":"LR","ShipAddress":"3033 Arrowood Park","ShipName":"Boyle, Dicki and Wilderman","OrderDate":"3/17/2016","TotalPayment":"$840995.38","Status":2,"Type":1},{"OrderID":"37000-821","ShipCountry":"DE","ShipAddress":"8 Esch Drive","ShipName":"Bogisich and Sons","OrderDate":"5/11/2016","TotalPayment":"$852346.75","Status":5,"Type":2},{"OrderID":"36987-2794","ShipCountry":"PY","ShipAddress":"94302 Katie Place","ShipName":"Doyle, Boyer and Franecki","OrderDate":"5/1/2016","TotalPayment":"$1086070.09","Status":6,"Type":3},{"OrderID":"52533-172","ShipCountry":"ID","ShipAddress":"93 Parkside Center","ShipName":"King and Sons","OrderDate":"1/22/2017","TotalPayment":"$628455.94","Status":3,"Type":2}]},\n{"RecordID":350,"FirstName":"Teddie","LastName":"Ferneley","Company":"Dabtype","Email":"tferneley9p@oakley.com","Phone":"284-728-5534","Status":6,"Type":2,"Orders":[{"OrderID":"13734-023","ShipCountry":"CN","ShipAddress":"3434 Gulseth Plaza","ShipName":"Hauck LLC","OrderDate":"7/12/2016","TotalPayment":"$707730.01","Status":3,"Type":2},{"OrderID":"64406-008","ShipCountry":"ID","ShipAddress":"4 Boyd Avenue","ShipName":"Dickens-Mann","OrderDate":"7/31/2016","TotalPayment":"$675692.10","Status":1,"Type":3},{"OrderID":"64117-596","ShipCountry":"IR","ShipAddress":"40 Katie Circle","ShipName":"Cremin, D\'Amore and Rowe","OrderDate":"12/4/2017","TotalPayment":"$479956.28","Status":1,"Type":2},{"OrderID":"0591-2784","ShipCountry":"CA","ShipAddress":"42 Sutherland Pass","ShipName":"Hermann-Schroeder","OrderDate":"6/25/2016","TotalPayment":"$242558.93","Status":3,"Type":2},{"OrderID":"55154-4029","ShipCountry":"PT","ShipAddress":"801 Badeau Alley","ShipName":"Cole, King and Crona","OrderDate":"10/12/2017","TotalPayment":"$641687.48","Status":6,"Type":2},{"OrderID":"65862-208","ShipCountry":"ID","ShipAddress":"325 Birchwood Alley","ShipName":"Anderson, Corkery and Gleason","OrderDate":"3/3/2016","TotalPayment":"$1180528.08","Status":5,"Type":3}]}]'),a=$(".kt-datatable").KTDatatable({data:{type:"local",source:r,pageSize:10},layout:{scroll:!1,height:null,footer:!1},sortable:!0,filterable:!1,pagination:!0,detail:{title:"Load sub table",content:e},search:{input:$("#generalSearch")},columns:[{field:"RecordID",title:"",sortable:!1,width:30,textAlign:"center"},{field:"FirstName",title:"First Name"},{field:"LastName",title:"Last Name"},{field:"Company",title:"Company"},{field:"Email",title:"Email"},{field:"Status",title:"Status",template:function(e){var r={1:{title:"Pending",class:"kt-badge--brand"},2:{title:"Delivered",class:" kt-badge--danger"},3:{title:"Canceled",class:" kt-badge--primary"},4:{title:"Success",class:" kt-badge--success"},5:{title:"Info",class:" kt-badge--info"},6:{title:"Danger",class:" kt-badge--danger"},7:{title:"Warning",class:" kt-badge--warning"}};return''+r[e.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(e){var r={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return' '+r[e.Type].title+""}},{field:"Actions",width:130,title:"Actions",sortable:!1,overflow:"visible",template:function(){return'\t\t \t\t \t\t \t\t \t\t \t\t \t\t \t\t '}}]}),$("#kt_form_status").on("change",function(){a.search($(this).val().toLowerCase(),"Status")}),$("#kt_form_type").on("change",function(){a.search($(this).val().toLowerCase(),"Type")}),$("#kt_form_status,#kt_form_type").selectpicker()}}}();jQuery(document).ready(function(){KTDatatableChildDataLocalDemo.init()}); \ No newline at end of file +'use strict'; +var KTDatatableChildDataLocalDemo = (function() { + var e = function(e) { + $('
    ') + .attr('id', 'child_data_local_' + e.data.RecordID) + .appendTo(e.detailCell) + .KTDatatable({ + data: { type: 'local', source: e.data.Orders, pageSize: 10 }, + layout: { scroll: !0, height: 300, footer: !1, spinner: { type: 1, theme: 'default' } }, + sortable: !0, + columns: [ + { field: 'OrderID', title: 'Order ID', sortable: !1 }, + { field: 'ShipCountry', title: 'Country', width: 100 }, + { field: 'ShipAddress', title: 'Ship Address' }, + { field: 'ShipName', title: 'Ship Name' }, + { field: 'OrderDate', title: 'Order Date' }, + { field: 'TotalPayment', title: 'Total Payment' }, + { + field: 'Status', + title: 'Status', + template: function(e) { + var r = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return ( + '' + + r[e.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Type', + autoHide: !1, + template: function(e) { + var r = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return ( + ' ' + + r[e.Type].title + + '' + ); + }, + }, + ], + }); + }; + return { + init: function() { + var r, a; + (r = JSON.parse( + '[{"RecordID":1,"FirstName":"Tommie","LastName":"Pee","Company":"Roodel","Email":"tpee0@slashdot.org","Phone":"103-891-3486","Status":4,"Type":1,"Orders":[{"OrderID":"41250-166","ShipCountry":"FR","ShipAddress":"5 Rutledge Court","ShipName":"Rogahn-Shanahan","OrderDate":"3/7/2017","TotalPayment":"$591994.23","Status":5,"Type":1},{"OrderID":"0078-0595","ShipCountry":"CN","ShipAddress":"953 Schlimgen Park","ShipName":"Hilpert-Sanford","OrderDate":"5/12/2017","TotalPayment":"$79774.93","Status":1,"Type":1},{"OrderID":"47593-443","ShipCountry":"BY","ShipAddress":"46925 Memorial Park","ShipName":"Brakus and Sons","OrderDate":"2/12/2017","TotalPayment":"$1095029.28","Status":1,"Type":1},{"OrderID":"50114-5236","ShipCountry":"NZ","ShipAddress":"1420 Mockingbird Drive","ShipName":"Beer-Harris","OrderDate":"6/6/2017","TotalPayment":"$778690.72","Status":5,"Type":3},{"OrderID":"36987-2826","ShipCountry":"PL","ShipAddress":"3995 Huxley Court","ShipName":"Kling, Miller and Quitzon","OrderDate":"9/1/2017","TotalPayment":"$773995.02","Status":5,"Type":2},{"OrderID":"62750-006","ShipCountry":"ID","ShipAddress":"2064 Dennis Parkway","ShipName":"Lang, Kohler and Considine","OrderDate":"9/21/2017","TotalPayment":"$830550.45","Status":5,"Type":2},{"OrderID":"59779-597","ShipCountry":"IR","ShipAddress":"32 Golf Course Parkway","ShipName":"Jaskolski-Hilll","OrderDate":"4/4/2017","TotalPayment":"$754685.32","Status":3,"Type":3},{"OrderID":"59762-3743","ShipCountry":"HT","ShipAddress":"76 Anthes Hill","ShipName":"Reynolds Group","OrderDate":"1/23/2017","TotalPayment":"$295435.66","Status":2,"Type":1},{"OrderID":"64942-1114","ShipCountry":"ID","ShipAddress":"7511 Mayfield Avenue","ShipName":"Purdy and Sons","OrderDate":"12/1/2016","TotalPayment":"$636911.04","Status":6,"Type":2},{"OrderID":"13537-505","ShipCountry":"KZ","ShipAddress":"36303 Esch Parkway","ShipName":"Reinger, Howe and Kertzmann","OrderDate":"1/31/2016","TotalPayment":"$753691.79","Status":4,"Type":1},{"OrderID":"16781-426","ShipCountry":"SE","ShipAddress":"507 Columbus Lane","ShipName":"Carter, Gibson and Kassulke","OrderDate":"10/26/2017","TotalPayment":"$873190.14","Status":2,"Type":2},{"OrderID":"60512-1008","ShipCountry":"ID","ShipAddress":"8 Jana Lane","ShipName":"Rutherford and Sons","OrderDate":"1/10/2017","TotalPayment":"$242894.68","Status":3,"Type":1},{"OrderID":"0456-0461","ShipCountry":"CN","ShipAddress":"5127 Roxbury Trail","ShipName":"Johnson Inc","OrderDate":"12/10/2017","TotalPayment":"$328850.50","Status":5,"Type":3},{"OrderID":"63304-098","ShipCountry":"GR","ShipAddress":"54627 Randy Lane","ShipName":"Johnston, Veum and Funk","OrderDate":"12/11/2016","TotalPayment":"$278247.03","Status":3,"Type":2},{"OrderID":"64092-317","ShipCountry":"CN","ShipAddress":"292 Rusk Lane","ShipName":"Bode, Zboncak and Reichel","OrderDate":"4/10/2016","TotalPayment":"$798173.38","Status":2,"Type":2},{"OrderID":"36987-1483","ShipCountry":"CU","ShipAddress":"2225 Saint Paul Junction","ShipName":"Dach, Haag and Koss","OrderDate":"2/7/2017","TotalPayment":"$1147799.38","Status":4,"Type":2},{"OrderID":"68084-814","ShipCountry":"ID","ShipAddress":"0 Sheridan Avenue","ShipName":"Little-O\'Hara","OrderDate":"11/24/2016","TotalPayment":"$394051.79","Status":6,"Type":1},{"OrderID":"42023-131","ShipCountry":"BR","ShipAddress":"4238 Roth Drive","ShipName":"Boehm LLC","OrderDate":"4/23/2016","TotalPayment":"$300684.31","Status":6,"Type":3},{"OrderID":"14290-350","ShipCountry":"CN","ShipAddress":"41950 Troy Point","ShipName":"Windler, Larkin and Collier","OrderDate":"4/17/2017","TotalPayment":"$467794.40","Status":4,"Type":1}]},\n{"RecordID":2,"FirstName":"Scott","LastName":"Coldbreath","Company":"Zooxo","Email":"scoldbreath1@zdnet.com","Phone":"143-179-5104","Status":5,"Type":1,"Orders":[{"OrderID":"55316-029","ShipCountry":"ID","ShipAddress":"56955 Rusk Street","ShipName":"Paucek, Dietrich and Bergnaum","OrderDate":"9/27/2016","TotalPayment":"$662732.49","Status":2,"Type":3},{"OrderID":"68462-467","ShipCountry":"CN","ShipAddress":"13005 Bultman Court","ShipName":"Stamm Group","OrderDate":"3/22/2017","TotalPayment":"$653958.68","Status":4,"Type":2},{"OrderID":"55154-8270","ShipCountry":"UG","ShipAddress":"6 Brentwood Place","ShipName":"Stroman, Schowalter and Bogan","OrderDate":"8/20/2016","TotalPayment":"$57166.20","Status":3,"Type":2},{"OrderID":"63736-002","ShipCountry":"ID","ShipAddress":"51 Banding Junction","ShipName":"Crona-Konopelski","OrderDate":"2/5/2017","TotalPayment":"$733681.16","Status":3,"Type":2},{"OrderID":"54868-5182","ShipCountry":"CN","ShipAddress":"629 Oxford Alley","ShipName":"Lindgren LLC","OrderDate":"5/21/2016","TotalPayment":"$921137.56","Status":3,"Type":2},{"OrderID":"55714-4529","ShipCountry":"JP","ShipAddress":"9 Melvin Point","ShipName":"Kris-Will","OrderDate":"4/29/2016","TotalPayment":"$184624.81","Status":1,"Type":2},{"OrderID":"63736-305","ShipCountry":"CN","ShipAddress":"84196 New Castle Junction","ShipName":"Lockman-Luettgen","OrderDate":"9/7/2016","TotalPayment":"$922821.30","Status":2,"Type":2}]},\n{"RecordID":3,"FirstName":"Flss","LastName":"Thake","Company":"Riffpath","Email":"fthake2@ifeng.com","Phone":"695-591-2075","Status":3,"Type":1,"Orders":[{"OrderID":"0113-0461","ShipCountry":"PS","ShipAddress":"797 Crownhardt Junction","ShipName":"Eichmann and Sons","OrderDate":"3/16/2016","TotalPayment":"$241462.16","Status":2,"Type":3},{"OrderID":"51824-023","ShipCountry":"BR","ShipAddress":"3066 Emmet Drive","ShipName":"Strosin, Lehner and Gislason","OrderDate":"9/17/2016","TotalPayment":"$194555.85","Status":3,"Type":2},{"OrderID":"57520-0221","ShipCountry":"BR","ShipAddress":"2 Havey Trail","ShipName":"Lang, Anderson and Keebler","OrderDate":"6/18/2016","TotalPayment":"$386865.72","Status":2,"Type":1},{"OrderID":"56062-388","ShipCountry":"CN","ShipAddress":"9 Boyd Avenue","ShipName":"Hegmann-Kemmer","OrderDate":"7/1/2016","TotalPayment":"$837648.17","Status":1,"Type":1},{"OrderID":"35356-723","ShipCountry":"UA","ShipAddress":"35 Chive Lane","ShipName":"Konopelski-Cummings","OrderDate":"7/17/2017","TotalPayment":"$730238.90","Status":5,"Type":2},{"OrderID":"35356-491","ShipCountry":"SE","ShipAddress":"6343 Talmadge Street","ShipName":"Wolf Inc","OrderDate":"1/18/2017","TotalPayment":"$777918.32","Status":6,"Type":1},{"OrderID":"76369-4001","ShipCountry":"CN","ShipAddress":"8737 Dunning Plaza","ShipName":"Cruickshank, Gleichner and Gerlach","OrderDate":"9/20/2016","TotalPayment":"$1197505.61","Status":1,"Type":3},{"OrderID":"0378-5042","ShipCountry":"TH","ShipAddress":"1 Old Shore Plaza","ShipName":"Olson-Stark","OrderDate":"8/2/2016","TotalPayment":"$661232.02","Status":5,"Type":2}]},\n{"RecordID":4,"FirstName":"Vincents","LastName":"Frearson","Company":"Katz","Email":"vfrearson3@amazon.de","Phone":"197-717-7100","Status":4,"Type":2,"Orders":[{"OrderID":"68084-502","ShipCountry":"BR","ShipAddress":"0814 Briar Crest Plaza","ShipName":"Olson-Connelly","OrderDate":"4/8/2016","TotalPayment":"$494707.94","Status":3,"Type":2},{"OrderID":"76167-002","ShipCountry":"SE","ShipAddress":"7 Quincy Road","ShipName":"Heaney, Lemke and McCullough","OrderDate":"1/10/2017","TotalPayment":"$372281.64","Status":5,"Type":3},{"OrderID":"0517-9702","ShipCountry":"RU","ShipAddress":"948 Granby Lane","ShipName":"Abshire-Cartwright","OrderDate":"1/17/2017","TotalPayment":"$720235.30","Status":1,"Type":1},{"OrderID":"53499-7272","ShipCountry":"UA","ShipAddress":"2553 Ronald Regan Point","ShipName":"Hudson-Breitenberg","OrderDate":"4/29/2017","TotalPayment":"$590146.91","Status":3,"Type":3},{"OrderID":"23155-001","ShipCountry":"ID","ShipAddress":"0237 Larry Park","ShipName":"Fahey, Fritsch and Boyer","OrderDate":"12/7/2016","TotalPayment":"$918885.26","Status":6,"Type":3},{"OrderID":"24909-162","ShipCountry":"AR","ShipAddress":"338 Prentice Road","ShipName":"Yost-Kunde","OrderDate":"4/17/2016","TotalPayment":"$320952.62","Status":6,"Type":3},{"OrderID":"59078-031","ShipCountry":"CN","ShipAddress":"23409 Gale Court","ShipName":"Jenkins-Dickens","OrderDate":"9/28/2016","TotalPayment":"$374124.12","Status":1,"Type":3},{"OrderID":"30142-822","ShipCountry":"VE","ShipAddress":"64 Boyd Center","ShipName":"Bartell Group","OrderDate":"2/12/2016","TotalPayment":"$11592.95","Status":2,"Type":2},{"OrderID":"36987-3147","ShipCountry":"PK","ShipAddress":"66010 Express Pass","ShipName":"Cole, Wilkinson and Macejkovic","OrderDate":"1/28/2016","TotalPayment":"$594910.09","Status":3,"Type":2},{"OrderID":"65841-626","ShipCountry":"PH","ShipAddress":"9 West Way","ShipName":"Batz, Nienow and Spencer","OrderDate":"2/7/2016","TotalPayment":"$742058.75","Status":1,"Type":2},{"OrderID":"57520-0025","ShipCountry":"AU","ShipAddress":"18 Hanover Place","ShipName":"Bode, Upton and Christiansen","OrderDate":"3/28/2016","TotalPayment":"$555669.10","Status":2,"Type":2},{"OrderID":"24236-786","ShipCountry":"BG","ShipAddress":"29471 Kim Alley","ShipName":"Lakin-Murazik","OrderDate":"7/9/2016","TotalPayment":"$164304.08","Status":6,"Type":3}]},\n{"RecordID":5,"FirstName":"Antony","LastName":"Stranger","Company":"Tavu","Email":"astranger4@sfgate.com","Phone":"165-466-2893","Status":2,"Type":3,"Orders":[{"OrderID":"53462-175","ShipCountry":"CL","ShipAddress":"6 Spohn Way","ShipName":"O\'Connell Inc","OrderDate":"2/3/2016","TotalPayment":"$749928.82","Status":1,"Type":3},{"OrderID":"53808-0733","ShipCountry":"VN","ShipAddress":"3 Warbler Point","ShipName":"Willms, Glover and O\'Keefe","OrderDate":"5/16/2016","TotalPayment":"$632155.47","Status":1,"Type":1},{"OrderID":"0054-0252","ShipCountry":"CN","ShipAddress":"65 Havey Alley","ShipName":"Deckow, Runolfsson and Kemmer","OrderDate":"4/10/2016","TotalPayment":"$1116585.99","Status":6,"Type":1},{"OrderID":"0093-9660","ShipCountry":"CN","ShipAddress":"2 Maple Drive","ShipName":"Padberg, Powlowski and Brekke","OrderDate":"4/11/2017","TotalPayment":"$513356.12","Status":3,"Type":3},{"OrderID":"63739-047","ShipCountry":"EC","ShipAddress":"0 Talmadge Junction","ShipName":"Rosenbaum-Yundt","OrderDate":"2/19/2016","TotalPayment":"$655497.21","Status":2,"Type":2},{"OrderID":"63323-370","ShipCountry":"ID","ShipAddress":"0 Ramsey Hill","ShipName":"Ankunding, Walsh and Stiedemann","OrderDate":"9/13/2017","TotalPayment":"$380382.26","Status":1,"Type":1},{"OrderID":"57237-040","ShipCountry":"CN","ShipAddress":"945 Golf View Junction","ShipName":"Gulgowski, Feil and Bosco","OrderDate":"2/3/2016","TotalPayment":"$545464.59","Status":3,"Type":1},{"OrderID":"62584-741","ShipCountry":"PY","ShipAddress":"82775 Prairieview Lane","ShipName":"Kihn-Barton","OrderDate":"10/16/2016","TotalPayment":"$571182.87","Status":3,"Type":2},{"OrderID":"0268-0196","ShipCountry":"RU","ShipAddress":"20712 Prentice Terrace","ShipName":"Spencer-Powlowski","OrderDate":"6/7/2017","TotalPayment":"$207925.11","Status":1,"Type":1},{"OrderID":"76214-002","ShipCountry":"US","ShipAddress":"587 Mccormick Parkway","ShipName":"King, O\'Hara and White","OrderDate":"11/14/2016","TotalPayment":"$751439.27","Status":1,"Type":1}]},\n{"RecordID":6,"FirstName":"Valaree","LastName":"Keson","Company":"Tagcat","Email":"vkeson5@tamu.edu","Phone":"973-838-6443","Status":5,"Type":1,"Orders":[{"OrderID":"52125-512","ShipCountry":"DO","ShipAddress":"262 Muir Point","ShipName":"Macejkovic Group","OrderDate":"6/15/2017","TotalPayment":"$536675.40","Status":2,"Type":1},{"OrderID":"0832-2012","ShipCountry":"US","ShipAddress":"54258 Westport Center","ShipName":"Walker-Sawayn","OrderDate":"8/19/2016","TotalPayment":"$465873.67","Status":4,"Type":3},{"OrderID":"63187-026","ShipCountry":"YE","ShipAddress":"82133 Holy Cross Court","ShipName":"Harber LLC","OrderDate":"11/4/2016","TotalPayment":"$654402.52","Status":1,"Type":3},{"OrderID":"0591-3292","ShipCountry":"CN","ShipAddress":"68361 Stoughton Park","ShipName":"Armstrong Group","OrderDate":"12/13/2017","TotalPayment":"$1079957.36","Status":1,"Type":1},{"OrderID":"17478-221","ShipCountry":"JP","ShipAddress":"4964 Green Circle","ShipName":"Wuckert-Wiegand","OrderDate":"5/27/2016","TotalPayment":"$1033548.36","Status":5,"Type":2},{"OrderID":"67525-100","ShipCountry":"MA","ShipAddress":"22008 Susan Court","ShipName":"Monahan, Goldner and Ebert","OrderDate":"11/25/2016","TotalPayment":"$1085910.23","Status":2,"Type":3},{"OrderID":"55150-156","ShipCountry":"AR","ShipAddress":"25 Melody Point","ShipName":"Wyman-Rau","OrderDate":"2/8/2017","TotalPayment":"$223935.72","Status":6,"Type":1},{"OrderID":"49349-549","ShipCountry":"CN","ShipAddress":"129 Warner Street","ShipName":"Dietrich-Huel","OrderDate":"5/15/2017","TotalPayment":"$870692.75","Status":3,"Type":3},{"OrderID":"76237-142","ShipCountry":"JP","ShipAddress":"75958 Clyde Gallagher Parkway","ShipName":"Prosacco, Streich and Hyatt","OrderDate":"4/20/2016","TotalPayment":"$431437.76","Status":4,"Type":1},{"OrderID":"42507-668","ShipCountry":"PH","ShipAddress":"25573 La Follette Parkway","ShipName":"Deckow, Green and Larson","OrderDate":"1/26/2017","TotalPayment":"$111453.40","Status":3,"Type":3},{"OrderID":"41520-304","ShipCountry":"CN","ShipAddress":"07 Southridge Pass","ShipName":"Bechtelar Group","OrderDate":"6/25/2016","TotalPayment":"$1164588.04","Status":6,"Type":3},{"OrderID":"0054-0291","ShipCountry":"AR","ShipAddress":"9 Bobwhite Drive","ShipName":"Reichel-Kuhlman","OrderDate":"9/7/2016","TotalPayment":"$864874.30","Status":5,"Type":2},{"OrderID":"53777-001","ShipCountry":"PH","ShipAddress":"9 Spaight Point","ShipName":"Schulist-Fahey","OrderDate":"7/30/2016","TotalPayment":"$893502.67","Status":3,"Type":2}]},\n{"RecordID":7,"FirstName":"Loella","LastName":"Tenniswood","Company":"Midel","Email":"ltenniswood6@godaddy.com","Phone":"179-534-7335","Status":6,"Type":3,"Orders":[{"OrderID":"52125-861","ShipCountry":"SE","ShipAddress":"95 Nova Place","ShipName":"Greenholt, Mosciski and Zboncak","OrderDate":"12/20/2016","TotalPayment":"$16133.40","Status":3,"Type":1},{"OrderID":"10135-541","ShipCountry":"KE","ShipAddress":"30337 Ludington Avenue","ShipName":"Deckow-Sauer","OrderDate":"1/6/2016","TotalPayment":"$653404.99","Status":3,"Type":2},{"OrderID":"50383-705","ShipCountry":"MK","ShipAddress":"92 Petterle Terrace","ShipName":"Kutch-Yundt","OrderDate":"1/6/2017","TotalPayment":"$1199359.14","Status":3,"Type":2},{"OrderID":"0006-0705","ShipCountry":"ZA","ShipAddress":"0883 Prairieview Lane","ShipName":"Emard-Cummings","OrderDate":"9/10/2017","TotalPayment":"$1082110.44","Status":6,"Type":3},{"OrderID":"49371-024","ShipCountry":"PT","ShipAddress":"0 Rutledge Crossing","ShipName":"Stracke, Mohr and Schaefer","OrderDate":"7/5/2017","TotalPayment":"$203360.38","Status":6,"Type":1},{"OrderID":"55154-6282","ShipCountry":"RU","ShipAddress":"80006 Dwight Hill","ShipName":"Zulauf, Reichert and Schaden","OrderDate":"4/21/2016","TotalPayment":"$1190061.80","Status":3,"Type":3},{"OrderID":"53808-0856","ShipCountry":"CN","ShipAddress":"87 Doe Crossing Parkway","ShipName":"Goyette, Stoltenberg and Little","OrderDate":"2/22/2016","TotalPayment":"$49978.51","Status":5,"Type":3},{"OrderID":"0363-0666","ShipCountry":"CN","ShipAddress":"13142 Chinook Street","ShipName":"Funk-Thiel","OrderDate":"1/20/2017","TotalPayment":"$524037.58","Status":5,"Type":1},{"OrderID":"11523-1350","ShipCountry":"CN","ShipAddress":"16721 Grover Trail","ShipName":"Schultz Inc","OrderDate":"1/14/2016","TotalPayment":"$716249.49","Status":5,"Type":2},{"OrderID":"43419-514","ShipCountry":"PA","ShipAddress":"273 Pankratz Park","ShipName":"Kassulke and Sons","OrderDate":"7/3/2016","TotalPayment":"$1120010.29","Status":5,"Type":1},{"OrderID":"46581-440","ShipCountry":"MA","ShipAddress":"75197 Shelley Park","ShipName":"Ritchie Group","OrderDate":"9/2/2017","TotalPayment":"$342248.74","Status":4,"Type":1},{"OrderID":"49035-005","ShipCountry":"BR","ShipAddress":"478 Forest Dale Center","ShipName":"Sporer, O\'Conner and Wehner","OrderDate":"10/9/2016","TotalPayment":"$373207.58","Status":5,"Type":2},{"OrderID":"36987-1846","ShipCountry":"KZ","ShipAddress":"60142 Kipling Pass","ShipName":"Purdy Group","OrderDate":"3/31/2017","TotalPayment":"$453333.00","Status":5,"Type":2},{"OrderID":"57525-002","ShipCountry":"GR","ShipAddress":"466 Reindahl Road","ShipName":"Halvorson, Jacobs and Moen","OrderDate":"10/17/2017","TotalPayment":"$811809.59","Status":2,"Type":1},{"OrderID":"61657-0377","ShipCountry":"PE","ShipAddress":"0910 Bunting Street","ShipName":"Rippin and Sons","OrderDate":"2/5/2017","TotalPayment":"$249995.75","Status":2,"Type":2},{"OrderID":"49230-194","ShipCountry":"AF","ShipAddress":"23 Menomonie Crossing","ShipName":"Shanahan-Considine","OrderDate":"8/18/2017","TotalPayment":"$1157608.85","Status":3,"Type":1},{"OrderID":"24385-337","ShipCountry":"SD","ShipAddress":"17 1st Junction","ShipName":"Haag, White and Sanford","OrderDate":"10/5/2017","TotalPayment":"$253432.68","Status":6,"Type":2},{"OrderID":"44911-0008","ShipCountry":"CN","ShipAddress":"1656 Lerdahl Lane","ShipName":"Effertz Group","OrderDate":"2/9/2017","TotalPayment":"$190727.96","Status":5,"Type":1},{"OrderID":"52584-201","ShipCountry":"SE","ShipAddress":"0 Summerview Avenue","ShipName":"Greenfelder Inc","OrderDate":"3/7/2016","TotalPayment":"$274799.62","Status":4,"Type":1}]},\n{"RecordID":8,"FirstName":"Marinna","LastName":"Oda","Company":"Photofeed","Email":"moda7@live.com","Phone":"502-962-0995","Status":6,"Type":2,"Orders":[{"OrderID":"0409-3508","ShipCountry":"BJ","ShipAddress":"68092 Spaight Alley","ShipName":"Runolfsdottir Group","OrderDate":"1/6/2017","TotalPayment":"$807827.85","Status":6,"Type":3},{"OrderID":"59915-1001","ShipCountry":"CO","ShipAddress":"519 Warbler Junction","ShipName":"Flatley LLC","OrderDate":"6/3/2017","TotalPayment":"$160408.58","Status":6,"Type":1},{"OrderID":"76007-012","ShipCountry":"ID","ShipAddress":"4808 Merrick Drive","ShipName":"Fahey, Gleichner and Pacocha","OrderDate":"2/2/2017","TotalPayment":"$661547.32","Status":5,"Type":2},{"OrderID":"15127-909","ShipCountry":"CN","ShipAddress":"981 Utah Place","ShipName":"Howe Inc","OrderDate":"4/15/2017","TotalPayment":"$516128.85","Status":6,"Type":1},{"OrderID":"57469-024","ShipCountry":"BO","ShipAddress":"72 Dahle Crossing","ShipName":"Stoltenberg Inc","OrderDate":"11/11/2017","TotalPayment":"$351384.82","Status":4,"Type":3},{"OrderID":"55154-8298","ShipCountry":"IE","ShipAddress":"320 Rieder Crossing","ShipName":"Jacobi-Weber","OrderDate":"2/28/2016","TotalPayment":"$802338.51","Status":6,"Type":1},{"OrderID":"42507-355","ShipCountry":"RU","ShipAddress":"56 Morning Street","ShipName":"Klocko, Wunsch and Durgan","OrderDate":"8/31/2016","TotalPayment":"$931824.41","Status":2,"Type":3},{"OrderID":"43269-681","ShipCountry":"CN","ShipAddress":"52 Wayridge Plaza","ShipName":"Glover Inc","OrderDate":"10/13/2017","TotalPayment":"$415160.43","Status":6,"Type":2},{"OrderID":"49967-983","ShipCountry":"CL","ShipAddress":"1755 Independence Alley","ShipName":"Cummings Inc","OrderDate":"12/24/2017","TotalPayment":"$224564.93","Status":5,"Type":2},{"OrderID":"55910-645","ShipCountry":"AM","ShipAddress":"7 Sage Park","ShipName":"Turcotte-McDermott","OrderDate":"8/22/2016","TotalPayment":"$1033625.12","Status":1,"Type":2},{"OrderID":"51143-213","ShipCountry":"PH","ShipAddress":"127 Macpherson Junction","ShipName":"Grant-Feil","OrderDate":"6/21/2017","TotalPayment":"$237824.76","Status":3,"Type":1},{"OrderID":"49288-0689","ShipCountry":"ID","ShipAddress":"76 Hoard Court","ShipName":"Brakus LLC","OrderDate":"3/11/2017","TotalPayment":"$1116744.39","Status":4,"Type":1},{"OrderID":"50580-351","ShipCountry":"VN","ShipAddress":"9305 Carpenter Road","ShipName":"Little, Cole and Towne","OrderDate":"4/14/2016","TotalPayment":"$534989.20","Status":2,"Type":2},{"OrderID":"55714-4532","ShipCountry":"PT","ShipAddress":"454 Rutledge Lane","ShipName":"Bins and Sons","OrderDate":"3/30/2016","TotalPayment":"$822775.85","Status":6,"Type":3},{"OrderID":"0536-4534","ShipCountry":"FR","ShipAddress":"4 Mesta Circle","ShipName":"Glover Inc","OrderDate":"11/14/2016","TotalPayment":"$376289.30","Status":4,"Type":3},{"OrderID":"61442-122","ShipCountry":"PT","ShipAddress":"6 Canary Crossing","ShipName":"Schmeler Group","OrderDate":"2/11/2016","TotalPayment":"$1106593.62","Status":1,"Type":3},{"OrderID":"21695-314","ShipCountry":"SV","ShipAddress":"7610 Oak Trail","ShipName":"Robel, Dickens and Padberg","OrderDate":"5/12/2016","TotalPayment":"$1059270.23","Status":6,"Type":3},{"OrderID":"62032-516","ShipCountry":"PK","ShipAddress":"96678 Gerald Trail","ShipName":"Price-Leffler","OrderDate":"7/16/2017","TotalPayment":"$275030.55","Status":3,"Type":1}]},\n{"RecordID":9,"FirstName":"Tarra","LastName":"Dallicott","Company":"Yamia","Email":"tdallicott8@goodreads.com","Phone":"575-583-1308","Status":1,"Type":2,"Orders":[{"OrderID":"17856-1000","ShipCountry":"JP","ShipAddress":"86 Basil Point","ShipName":"Kihn, Welch and Terry","OrderDate":"6/19/2017","TotalPayment":"$1129795.73","Status":2,"Type":1},{"OrderID":"60505-2761","ShipCountry":"YE","ShipAddress":"94 Aberg Pass","ShipName":"Emmerich-Mohr","OrderDate":"4/14/2017","TotalPayment":"$164303.03","Status":3,"Type":1},{"OrderID":"55714-2295","ShipCountry":"CN","ShipAddress":"857 Emmet Circle","ShipName":"Spencer, Sporer and Nikolaus","OrderDate":"4/4/2017","TotalPayment":"$671692.16","Status":1,"Type":2},{"OrderID":"48951-8185","ShipCountry":"ID","ShipAddress":"88174 Knutson Street","ShipName":"Collier, Kris and Altenwerth","OrderDate":"10/16/2016","TotalPayment":"$362918.01","Status":2,"Type":3},{"OrderID":"34690-3001","ShipCountry":"BY","ShipAddress":"69633 Kennedy Way","ShipName":"Hammes Group","OrderDate":"12/15/2016","TotalPayment":"$1069509.73","Status":4,"Type":1},{"OrderID":"31645-163","ShipCountry":"TH","ShipAddress":"8810 Bartelt Center","ShipName":"Lynch LLC","OrderDate":"4/1/2017","TotalPayment":"$156114.60","Status":1,"Type":1},{"OrderID":"36987-1341","ShipCountry":"CN","ShipAddress":"16254 Pond Pass","ShipName":"Rempel-Little","OrderDate":"3/7/2016","TotalPayment":"$576844.64","Status":2,"Type":1},{"OrderID":"54868-5190","ShipCountry":"SE","ShipAddress":"8 New Castle Pass","ShipName":"Terry, Effertz and Jerde","OrderDate":"2/15/2016","TotalPayment":"$248019.58","Status":5,"Type":1},{"OrderID":"43857-0106","ShipCountry":"CN","ShipAddress":"29 Grayhawk Hill","ShipName":"Hessel, Shanahan and Gislason","OrderDate":"10/14/2017","TotalPayment":"$449682.61","Status":3,"Type":2},{"OrderID":"53808-0858","ShipCountry":"JP","ShipAddress":"658 Nancy Pass","ShipName":"Toy and Sons","OrderDate":"4/18/2017","TotalPayment":"$1147441.95","Status":1,"Type":1}]},\n{"RecordID":10,"FirstName":"Hakim","LastName":"Coat","Company":"Zoombox","Email":"hcoat9@google.ca","Phone":"604-363-0650","Status":3,"Type":2,"Orders":[{"OrderID":"53603-2001","ShipCountry":"US","ShipAddress":"6 Atwood Drive","ShipName":"Dare Group","OrderDate":"9/6/2017","TotalPayment":"$703020.46","Status":4,"Type":2},{"OrderID":"30142-656","ShipCountry":"BR","ShipAddress":"00472 Bayside Court","ShipName":"Cruickshank and Sons","OrderDate":"7/5/2016","TotalPayment":"$886164.21","Status":4,"Type":2},{"OrderID":"42291-755","ShipCountry":"AR","ShipAddress":"90 Coolidge Terrace","ShipName":"Denesik-McDermott","OrderDate":"5/22/2016","TotalPayment":"$749431.02","Status":4,"Type":2},{"OrderID":"60760-130","ShipCountry":"CN","ShipAddress":"42 Hoard Parkway","ShipName":"Toy, Cassin and Hoppe","OrderDate":"4/16/2016","TotalPayment":"$177828.40","Status":3,"Type":1},{"OrderID":"50845-0169","ShipCountry":"PK","ShipAddress":"0 Browning Court","ShipName":"Rogahn-Cummerata","OrderDate":"12/11/2017","TotalPayment":"$252364.93","Status":1,"Type":3},{"OrderID":"15127-268","ShipCountry":"MY","ShipAddress":"26759 Eastlawn Road","ShipName":"Schulist, Lakin and Kling","OrderDate":"4/11/2016","TotalPayment":"$406789.79","Status":6,"Type":1},{"OrderID":"0409-1144","ShipCountry":"LI","ShipAddress":"8756 Manley Avenue","ShipName":"Halvorson, Rempel and Cassin","OrderDate":"5/15/2017","TotalPayment":"$655797.50","Status":4,"Type":3},{"OrderID":"59762-0066","ShipCountry":"ID","ShipAddress":"70 Gateway Plaza","ShipName":"Davis and Sons","OrderDate":"11/24/2017","TotalPayment":"$1053827.22","Status":3,"Type":3},{"OrderID":"0615-7571","ShipCountry":"ID","ShipAddress":"0 Knutson Avenue","ShipName":"Murray-Christiansen","OrderDate":"4/14/2016","TotalPayment":"$611395.25","Status":3,"Type":2},{"OrderID":"46122-243","ShipCountry":"GR","ShipAddress":"75 Kedzie Lane","ShipName":"Mayert and Sons","OrderDate":"9/15/2017","TotalPayment":"$983523.78","Status":4,"Type":1},{"OrderID":"10812-302","ShipCountry":"BR","ShipAddress":"0030 David Junction","ShipName":"Streich, Lubowitz and Hilpert","OrderDate":"6/9/2016","TotalPayment":"$950269.54","Status":1,"Type":1},{"OrderID":"49349-209","ShipCountry":"PH","ShipAddress":"7812 Delaware Road","ShipName":"Franecki-Bosco","OrderDate":"4/7/2017","TotalPayment":"$969032.18","Status":5,"Type":3},{"OrderID":"66184-510","ShipCountry":"PA","ShipAddress":"123 Chive Avenue","ShipName":"Rogahn and Sons","OrderDate":"5/22/2017","TotalPayment":"$798858.17","Status":4,"Type":2}]},\n{"RecordID":11,"FirstName":"Ailsun","LastName":"Duferie","Company":"Aimbu","Email":"aduferiea@marriott.com","Phone":"468-718-9867","Status":6,"Type":2,"Orders":[{"OrderID":"51346-232","ShipCountry":"RU","ShipAddress":"1036 Stang Point","ShipName":"Flatley-Lockman","OrderDate":"6/1/2016","TotalPayment":"$333376.53","Status":4,"Type":1},{"OrderID":"11390-025","ShipCountry":"FI","ShipAddress":"230 Northfield Way","ShipName":"Braun Inc","OrderDate":"2/20/2017","TotalPayment":"$1018242.29","Status":5,"Type":3},{"OrderID":"51346-014","ShipCountry":"CN","ShipAddress":"18 Farragut Crossing","ShipName":"Zboncak-Boyle","OrderDate":"11/17/2017","TotalPayment":"$1024900.54","Status":6,"Type":1},{"OrderID":"76485-1044","ShipCountry":"AR","ShipAddress":"8051 Birchwood Alley","ShipName":"Lehner, Ritchie and Legros","OrderDate":"7/1/2017","TotalPayment":"$868747.00","Status":1,"Type":3},{"OrderID":"0268-0921","ShipCountry":"HN","ShipAddress":"224 Summer Ridge Court","ShipName":"Mraz LLC","OrderDate":"4/1/2016","TotalPayment":"$306559.14","Status":2,"Type":2},{"OrderID":"54575-963","ShipCountry":"ID","ShipAddress":"738 Myrtle Lane","ShipName":"Willms, McKenzie and Konopelski","OrderDate":"9/18/2016","TotalPayment":"$381823.72","Status":5,"Type":2},{"OrderID":"0143-2128","ShipCountry":"ID","ShipAddress":"26 Spaight Circle","ShipName":"Kiehn-Hauck","OrderDate":"12/18/2017","TotalPayment":"$329032.46","Status":1,"Type":2},{"OrderID":"43269-710","ShipCountry":"PS","ShipAddress":"8883 Northridge Street","ShipName":"Kunze Group","OrderDate":"3/24/2017","TotalPayment":"$304989.41","Status":4,"Type":1},{"OrderID":"57520-0548","ShipCountry":"CN","ShipAddress":"3470 Sloan Drive","ShipName":"Heller-Bartoletti","OrderDate":"5/30/2017","TotalPayment":"$852826.32","Status":1,"Type":1},{"OrderID":"64578-0059","ShipCountry":"AM","ShipAddress":"1622 Melby Point","ShipName":"Kilback, Rohan and Berge","OrderDate":"10/11/2016","TotalPayment":"$100818.99","Status":2,"Type":1},{"OrderID":"65862-174","ShipCountry":"ID","ShipAddress":"3 Vernon Parkway","ShipName":"Schuppe, Terry and Steuber","OrderDate":"7/1/2016","TotalPayment":"$854813.26","Status":5,"Type":3},{"OrderID":"64778-0494","ShipCountry":"SE","ShipAddress":"6 Marquette Circle","ShipName":"Barrows Inc","OrderDate":"12/27/2017","TotalPayment":"$895872.94","Status":3,"Type":3}]},\n{"RecordID":12,"FirstName":"Henrie","LastName":"Rizzelli","Company":"Gabvine","Email":"hrizzellib@google.ca","Phone":"577-614-0198","Status":2,"Type":3,"Orders":[{"OrderID":"0268-1418","ShipCountry":"TH","ShipAddress":"745 Barnett Avenue","ShipName":"Okuneva Group","OrderDate":"6/16/2017","TotalPayment":"$549432.48","Status":5,"Type":2},{"OrderID":"60681-1702","ShipCountry":"NG","ShipAddress":"9147 Sunnyside Drive","ShipName":"Simonis Inc","OrderDate":"10/18/2016","TotalPayment":"$1048987.69","Status":2,"Type":2},{"OrderID":"54868-4992","ShipCountry":"CN","ShipAddress":"262 Alpine Circle","ShipName":"Connelly-Medhurst","OrderDate":"11/9/2017","TotalPayment":"$270509.02","Status":3,"Type":3},{"OrderID":"54868-0295","ShipCountry":"BR","ShipAddress":"14 Little Fleur Crossing","ShipName":"Strosin, Frami and Kohler","OrderDate":"11/20/2016","TotalPayment":"$236751.98","Status":2,"Type":2},{"OrderID":"0067-2083","ShipCountry":"BF","ShipAddress":"07276 Pepper Wood Hill","ShipName":"Ondricka-Kling","OrderDate":"3/5/2016","TotalPayment":"$806806.54","Status":2,"Type":3},{"OrderID":"59584-140","ShipCountry":"FR","ShipAddress":"2853 Ryan Center","ShipName":"Gleichner LLC","OrderDate":"9/28/2016","TotalPayment":"$605758.72","Status":6,"Type":3},{"OrderID":"0904-5633","ShipCountry":"RU","ShipAddress":"98748 Cottonwood Road","ShipName":"Cormier and Sons","OrderDate":"8/14/2016","TotalPayment":"$73438.51","Status":1,"Type":3},{"OrderID":"11673-054","ShipCountry":"PT","ShipAddress":"464 Myrtle Road","ShipName":"Schaefer Inc","OrderDate":"10/13/2016","TotalPayment":"$847457.03","Status":6,"Type":3},{"OrderID":"35000-703","ShipCountry":"PT","ShipAddress":"1195 Goodland Drive","ShipName":"Franecki, Ullrich and Reinger","OrderDate":"10/19/2016","TotalPayment":"$549390.75","Status":1,"Type":3},{"OrderID":"50804-252","ShipCountry":"UA","ShipAddress":"3 Nelson Hill","ShipName":"Yundt-West","OrderDate":"7/10/2016","TotalPayment":"$602875.09","Status":5,"Type":3}]},\n{"RecordID":13,"FirstName":"Marjy","LastName":"Knevit","Company":"Topicstorm","Email":"mknevitc@nyu.edu","Phone":"927-108-0751","Status":1,"Type":2,"Orders":[{"OrderID":"0054-8299","ShipCountry":"RU","ShipAddress":"44 Thompson Way","ShipName":"Labadie Group","OrderDate":"12/20/2017","TotalPayment":"$634798.75","Status":6,"Type":2},{"OrderID":"0179-1482","ShipCountry":"MY","ShipAddress":"48716 Scofield Drive","ShipName":"Gleichner, Cremin and Becker","OrderDate":"4/21/2016","TotalPayment":"$882102.56","Status":6,"Type":3},{"OrderID":"43353-888","ShipCountry":"EC","ShipAddress":"2135 Northfield Drive","ShipName":"Dickens, Hills and Zulauf","OrderDate":"1/18/2016","TotalPayment":"$292760.70","Status":1,"Type":1},{"OrderID":"63459-548","ShipCountry":"AR","ShipAddress":"22 Carberry Alley","ShipName":"Gerhold, Padberg and Strosin","OrderDate":"3/22/2017","TotalPayment":"$1168455.92","Status":5,"Type":1},{"OrderID":"69261-001","ShipCountry":"PL","ShipAddress":"73536 Crescent Oaks Drive","ShipName":"Mante-Olson","OrderDate":"8/30/2016","TotalPayment":"$107961.66","Status":3,"Type":2},{"OrderID":"49999-347","ShipCountry":"CZ","ShipAddress":"695 Truax Crossing","ShipName":"Collins, Eichmann and Trantow","OrderDate":"11/17/2016","TotalPayment":"$958790.75","Status":6,"Type":1},{"OrderID":"49288-0454","ShipCountry":"PT","ShipAddress":"460 Waxwing Place","ShipName":"Carter, Will and MacGyver","OrderDate":"9/29/2016","TotalPayment":"$264659.62","Status":3,"Type":2},{"OrderID":"62175-570","ShipCountry":"CA","ShipAddress":"84 Tony Way","ShipName":"O\'Kon, Rodriguez and Pfeffer","OrderDate":"3/28/2016","TotalPayment":"$1114174.72","Status":2,"Type":3},{"OrderID":"36987-1757","ShipCountry":"CN","ShipAddress":"8115 Lerdahl Terrace","ShipName":"Schiller Inc","OrderDate":"5/12/2016","TotalPayment":"$358901.83","Status":4,"Type":2},{"OrderID":"48951-1149","ShipCountry":"JP","ShipAddress":"0 Jana Point","ShipName":"Kerluke, Boehm and Schamberger","OrderDate":"8/18/2017","TotalPayment":"$432215.44","Status":2,"Type":2},{"OrderID":"55648-315","ShipCountry":"FR","ShipAddress":"8674 Roxbury Terrace","ShipName":"Morar-Gutkowski","OrderDate":"7/27/2017","TotalPayment":"$1077213.84","Status":6,"Type":1},{"OrderID":"67544-268","ShipCountry":"ID","ShipAddress":"2264 Manufacturers Road","ShipName":"Kuhic Inc","OrderDate":"7/17/2016","TotalPayment":"$70671.10","Status":1,"Type":3},{"OrderID":"68788-9933","ShipCountry":"NG","ShipAddress":"74 Village Trail","ShipName":"Gerlach, Hodkiewicz and Ankunding","OrderDate":"12/8/2016","TotalPayment":"$239201.40","Status":3,"Type":2},{"OrderID":"37808-234","ShipCountry":"CZ","ShipAddress":"81263 Calypso Plaza","ShipName":"Willms and Sons","OrderDate":"7/5/2017","TotalPayment":"$29271.02","Status":4,"Type":3},{"OrderID":"48951-3009","ShipCountry":"TH","ShipAddress":"13796 Monument Center","ShipName":"Grant, Carter and Koss","OrderDate":"12/18/2017","TotalPayment":"$1110434.95","Status":5,"Type":2},{"OrderID":"67253-145","ShipCountry":"PL","ShipAddress":"39 Butternut Crossing","ShipName":"Klein-Bechtelar","OrderDate":"12/4/2016","TotalPayment":"$94688.79","Status":1,"Type":1},{"OrderID":"52125-968","ShipCountry":"PT","ShipAddress":"47 Independence Lane","ShipName":"Pollich, Waters and Braun","OrderDate":"11/22/2016","TotalPayment":"$516304.60","Status":6,"Type":1},{"OrderID":"0378-2264","ShipCountry":"PH","ShipAddress":"0 Comanche Court","ShipName":"Johnston-Kautzer","OrderDate":"10/21/2017","TotalPayment":"$892603.93","Status":5,"Type":3},{"OrderID":"36987-1216","ShipCountry":"CO","ShipAddress":"019 Kenwood Point","ShipName":"Effertz and Sons","OrderDate":"9/6/2016","TotalPayment":"$445064.37","Status":4,"Type":2}]},\n{"RecordID":14,"FirstName":"Baillie","LastName":"Gullyes","Company":"Skinder","Email":"bgullyesd@army.mil","Phone":"566-804-6864","Status":4,"Type":3,"Orders":[{"OrderID":"50436-1223","ShipCountry":"PH","ShipAddress":"2571 Helena Road","ShipName":"Barrows-Dach","OrderDate":"11/8/2017","TotalPayment":"$1101259.11","Status":3,"Type":1},{"OrderID":"43846-0021","ShipCountry":"PE","ShipAddress":"50363 Butterfield Point","ShipName":"Jones, Kuhic and Frami","OrderDate":"4/12/2016","TotalPayment":"$182473.50","Status":5,"Type":3},{"OrderID":"54868-1173","ShipCountry":"ZA","ShipAddress":"250 Morningstar Parkway","ShipName":"Swift-Bergnaum","OrderDate":"10/3/2017","TotalPayment":"$1134676.85","Status":5,"Type":2},{"OrderID":"49643-423","ShipCountry":"PL","ShipAddress":"0295 Glacier Hill Terrace","ShipName":"Langworth-Kohler","OrderDate":"4/6/2016","TotalPayment":"$718961.06","Status":4,"Type":2},{"OrderID":"63354-322","ShipCountry":"ET","ShipAddress":"4140 Dakota Center","ShipName":"Oberbrunner, Fadel and Renner","OrderDate":"10/27/2017","TotalPayment":"$291614.46","Status":5,"Type":2},{"OrderID":"44924-003","ShipCountry":"PH","ShipAddress":"647 Toban Terrace","ShipName":"Wehner-Lind","OrderDate":"11/18/2016","TotalPayment":"$562090.23","Status":2,"Type":2},{"OrderID":"63323-282","ShipCountry":"PT","ShipAddress":"07 Nobel Parkway","ShipName":"Swaniawski, Altenwerth and Kuphal","OrderDate":"10/27/2017","TotalPayment":"$140295.88","Status":3,"Type":3},{"OrderID":"52685-442","ShipCountry":"ID","ShipAddress":"70686 Del Sol Plaza","ShipName":"Price, Hessel and Bahringer","OrderDate":"2/28/2016","TotalPayment":"$313738.32","Status":6,"Type":3}]},\n{"RecordID":15,"FirstName":"Cris","LastName":"Domke","Company":"Yamia","Email":"cdomkee@xing.com","Phone":"591-995-0816","Status":1,"Type":2,"Orders":[{"OrderID":"58118-0613","ShipCountry":"CN","ShipAddress":"38 Scofield Alley","ShipName":"Parisian-Deckow","OrderDate":"7/17/2017","TotalPayment":"$858726.54","Status":6,"Type":3},{"OrderID":"0378-5550","ShipCountry":"IT","ShipAddress":"2755 Coolidge Point","ShipName":"Jast, Bechtelar and Conroy","OrderDate":"3/5/2017","TotalPayment":"$349939.86","Status":3,"Type":2},{"OrderID":"11410-044","ShipCountry":"ID","ShipAddress":"3344 Lerdahl Street","ShipName":"Kautzer, Fahey and Barrows","OrderDate":"1/19/2017","TotalPayment":"$324163.14","Status":1,"Type":3},{"OrderID":"11822-0843","ShipCountry":"CI","ShipAddress":"8609 Kedzie Park","ShipName":"Corkery-Bergnaum","OrderDate":"12/2/2016","TotalPayment":"$680415.41","Status":2,"Type":1},{"OrderID":"75990-365","ShipCountry":"CN","ShipAddress":"8 Eastlawn Circle","ShipName":"Braun, Oberbrunner and Bode","OrderDate":"11/20/2016","TotalPayment":"$898420.40","Status":2,"Type":2},{"OrderID":"68135-301","ShipCountry":"CN","ShipAddress":"501 Loftsgordon Court","ShipName":"Ryan-Gislason","OrderDate":"11/28/2017","TotalPayment":"$1040364.18","Status":5,"Type":3},{"OrderID":"24236-496","ShipCountry":"PT","ShipAddress":"13933 Clyde Gallagher Place","ShipName":"Boehm, Stehr and Frami","OrderDate":"4/12/2017","TotalPayment":"$948812.54","Status":2,"Type":2},{"OrderID":"48951-7053","ShipCountry":"AR","ShipAddress":"74 Fremont Terrace","ShipName":"Kilback LLC","OrderDate":"2/4/2017","TotalPayment":"$943938.97","Status":1,"Type":2}]},\n{"RecordID":16,"FirstName":"Myranda","LastName":"Risebarer","Company":"Devbug","Email":"mrisebarerf@icq.com","Phone":"127-856-4898","Status":6,"Type":1,"Orders":[{"OrderID":"0591-3204","ShipCountry":"CO","ShipAddress":"49559 Stephen Road","ShipName":"Lemke and Sons","OrderDate":"10/18/2017","TotalPayment":"$742084.02","Status":5,"Type":1},{"OrderID":"49483-272","ShipCountry":"ID","ShipAddress":"30 Forster Alley","ShipName":"Harber-Brakus","OrderDate":"10/25/2017","TotalPayment":"$629172.17","Status":6,"Type":1},{"OrderID":"11673-330","ShipCountry":"YE","ShipAddress":"8 Vahlen Drive","ShipName":"Dach and Sons","OrderDate":"11/18/2017","TotalPayment":"$161271.00","Status":6,"Type":1},{"OrderID":"37000-238","ShipCountry":"FR","ShipAddress":"62 Clove Avenue","ShipName":"Rau-Price","OrderDate":"12/2/2016","TotalPayment":"$744246.99","Status":6,"Type":1},{"OrderID":"0085-0517","ShipCountry":"PT","ShipAddress":"08 8th Pass","ShipName":"Marquardt-Graham","OrderDate":"12/8/2016","TotalPayment":"$1066352.27","Status":3,"Type":1},{"OrderID":"51285-063","ShipCountry":"JP","ShipAddress":"40821 Fallview Alley","ShipName":"Thompson-Sipes","OrderDate":"7/26/2016","TotalPayment":"$803965.87","Status":5,"Type":3},{"OrderID":"58118-1512","ShipCountry":"BR","ShipAddress":"43474 Heffernan Way","ShipName":"Predovic, Lynch and Rogahn","OrderDate":"2/13/2016","TotalPayment":"$964045.35","Status":1,"Type":2},{"OrderID":"41167-4002","ShipCountry":"CN","ShipAddress":"6989 Moland Plaza","ShipName":"Carter, Braun and Ferry","OrderDate":"6/3/2016","TotalPayment":"$987904.62","Status":1,"Type":3},{"OrderID":"16590-295","ShipCountry":"TZ","ShipAddress":"80 Forest Run Point","ShipName":"Witting, Bergnaum and Stroman","OrderDate":"5/1/2017","TotalPayment":"$655363.89","Status":5,"Type":3},{"OrderID":"24208-299","ShipCountry":"CN","ShipAddress":"41 Upham Alley","ShipName":"Harvey, Reinger and Boyle","OrderDate":"12/24/2016","TotalPayment":"$753640.29","Status":2,"Type":3},{"OrderID":"55910-437","ShipCountry":"BG","ShipAddress":"935 Rockefeller Center","ShipName":"Boyer, Cassin and Schaden","OrderDate":"1/14/2017","TotalPayment":"$791040.48","Status":4,"Type":2},{"OrderID":"63868-612","ShipCountry":"CN","ShipAddress":"7304 Kedzie Park","ShipName":"Pfeffer Inc","OrderDate":"4/23/2017","TotalPayment":"$146510.35","Status":2,"Type":1},{"OrderID":"63868-133","ShipCountry":"PK","ShipAddress":"823 Rusk Park","ShipName":"Stroman-Kris","OrderDate":"8/23/2017","TotalPayment":"$808374.39","Status":3,"Type":3},{"OrderID":"0409-9157","ShipCountry":"FR","ShipAddress":"8638 Lawn Point","ShipName":"Watsica-Hermann","OrderDate":"2/20/2016","TotalPayment":"$213632.22","Status":1,"Type":3}]},\n{"RecordID":17,"FirstName":"Lana","LastName":"Redit","Company":"Edgetag","Email":"lreditg@rambler.ru","Phone":"443-713-4257","Status":5,"Type":1,"Orders":[{"OrderID":"49999-122","ShipCountry":"ID","ShipAddress":"24171 Iowa Park","ShipName":"Harber Inc","OrderDate":"4/18/2017","TotalPayment":"$188645.10","Status":6,"Type":1},{"OrderID":"53808-0644","ShipCountry":"TH","ShipAddress":"90 Rusk Avenue","ShipName":"Heller and Sons","OrderDate":"11/4/2017","TotalPayment":"$285957.55","Status":2,"Type":1},{"OrderID":"68258-6010","ShipCountry":"SE","ShipAddress":"436 Commercial Avenue","ShipName":"Ullrich-Gislason","OrderDate":"5/21/2017","TotalPayment":"$423935.10","Status":2,"Type":2},{"OrderID":"65465-0001","ShipCountry":"SO","ShipAddress":"26343 Fulton Terrace","ShipName":"Langosh-Moen","OrderDate":"11/3/2017","TotalPayment":"$96756.85","Status":1,"Type":1},{"OrderID":"67172-595","ShipCountry":"RU","ShipAddress":"38 Towne Avenue","ShipName":"Franecki-Jacobi","OrderDate":"7/17/2017","TotalPayment":"$889970.24","Status":3,"Type":2},{"OrderID":"55316-431","ShipCountry":"PK","ShipAddress":"242 Ruskin Junction","ShipName":"Grimes-Kemmer","OrderDate":"11/3/2017","TotalPayment":"$453780.44","Status":2,"Type":2},{"OrderID":"63304-951","ShipCountry":"BJ","ShipAddress":"2495 Pawling Road","ShipName":"Adams-Morissette","OrderDate":"8/28/2016","TotalPayment":"$392175.26","Status":3,"Type":1},{"OrderID":"63739-494","ShipCountry":"PH","ShipAddress":"3962 Heath Circle","ShipName":"Wilderman, Zboncak and Wisozk","OrderDate":"7/24/2016","TotalPayment":"$988233.53","Status":6,"Type":1},{"OrderID":"45737-242","ShipCountry":"CN","ShipAddress":"1 Westridge Circle","ShipName":"Jones, Reichel and McLaughlin","OrderDate":"9/24/2016","TotalPayment":"$725217.59","Status":1,"Type":1},{"OrderID":"57344-150","ShipCountry":"VN","ShipAddress":"7395 Amoth Pass","ShipName":"Carroll, Kiehn and Hahn","OrderDate":"4/22/2017","TotalPayment":"$781462.83","Status":3,"Type":3},{"OrderID":"33261-491","ShipCountry":"CN","ShipAddress":"1 Loomis Court","ShipName":"McLaughlin Group","OrderDate":"12/26/2017","TotalPayment":"$283735.31","Status":5,"Type":1}]},\n{"RecordID":18,"FirstName":"Pascal","LastName":"Richold","Company":"Lazz","Email":"pricholdh@ed.gov","Phone":"423-479-6879","Status":4,"Type":1,"Orders":[{"OrderID":"68788-9549","ShipCountry":"MV","ShipAddress":"003 Jenifer Center","ShipName":"Gleichner, Ziemann and DuBuque","OrderDate":"8/2/2017","TotalPayment":"$125706.11","Status":3,"Type":2},{"OrderID":"0517-0730","ShipCountry":"AF","ShipAddress":"88773 Nancy Circle","ShipName":"Hamill Group","OrderDate":"5/24/2016","TotalPayment":"$36318.26","Status":1,"Type":1},{"OrderID":"65588-1206","ShipCountry":"UA","ShipAddress":"01097 Gerald Hill","ShipName":"Bednar Group","OrderDate":"5/18/2016","TotalPayment":"$1106007.43","Status":5,"Type":3},{"OrderID":"52125-561","ShipCountry":"PT","ShipAddress":"067 Delaware Place","ShipName":"Harber LLC","OrderDate":"4/17/2017","TotalPayment":"$270198.81","Status":4,"Type":1},{"OrderID":"68016-073","ShipCountry":"CN","ShipAddress":"24 Stang Center","ShipName":"Grimes and Sons","OrderDate":"8/1/2017","TotalPayment":"$665773.24","Status":5,"Type":2},{"OrderID":"0093-5562","ShipCountry":"UA","ShipAddress":"4772 Thackeray Hill","ShipName":"Deckow Group","OrderDate":"2/24/2017","TotalPayment":"$466943.51","Status":6,"Type":1},{"OrderID":"55154-6265","ShipCountry":"RU","ShipAddress":"2 Mandrake Court","ShipName":"Bernhard-Feil","OrderDate":"1/26/2017","TotalPayment":"$12260.64","Status":5,"Type":1}]},\n{"RecordID":19,"FirstName":"Evered","LastName":"Massow","Company":"Chatterbridge","Email":"emassowi@apple.com","Phone":"429-251-6310","Status":5,"Type":2,"Orders":[{"OrderID":"63629-5435","ShipCountry":"CM","ShipAddress":"0 Moose Plaza","ShipName":"Gorczany and Sons","OrderDate":"6/27/2017","TotalPayment":"$474565.63","Status":1,"Type":1},{"OrderID":"64117-534","ShipCountry":"ID","ShipAddress":"1236 Ryan Avenue","ShipName":"Upton, Kuvalis and Welch","OrderDate":"2/5/2016","TotalPayment":"$260489.33","Status":4,"Type":3},{"OrderID":"52544-495","ShipCountry":"PH","ShipAddress":"27073 Mayer Place","ShipName":"Prohaska-Skiles","OrderDate":"12/27/2017","TotalPayment":"$901171.25","Status":6,"Type":3},{"OrderID":"49349-430","ShipCountry":"YE","ShipAddress":"6613 Evergreen Park","ShipName":"Watsica-Kub","OrderDate":"11/15/2017","TotalPayment":"$594278.46","Status":5,"Type":3},{"OrderID":"54569-0322","ShipCountry":"CZ","ShipAddress":"48 Thompson Drive","ShipName":"Barton LLC","OrderDate":"6/20/2016","TotalPayment":"$348473.52","Status":6,"Type":3},{"OrderID":"0378-1813","ShipCountry":"FR","ShipAddress":"698 Graedel Lane","ShipName":"Collins, Marks and Goyette","OrderDate":"6/26/2017","TotalPayment":"$859477.22","Status":6,"Type":1},{"OrderID":"52125-399","ShipCountry":"RU","ShipAddress":"0621 Arizona Road","ShipName":"Jacobi-Conn","OrderDate":"4/14/2017","TotalPayment":"$743880.29","Status":4,"Type":2},{"OrderID":"55910-038","ShipCountry":"US","ShipAddress":"3803 Evergreen Road","ShipName":"Pfeffer-Lueilwitz","OrderDate":"10/22/2017","TotalPayment":"$204204.28","Status":2,"Type":3},{"OrderID":"51655-301","ShipCountry":"RU","ShipAddress":"8512 Calypso Terrace","ShipName":"Nienow and Sons","OrderDate":"11/18/2017","TotalPayment":"$160761.72","Status":6,"Type":3},{"OrderID":"24385-200","ShipCountry":"CN","ShipAddress":"28347 Heath Street","ShipName":"Shanahan Group","OrderDate":"5/5/2017","TotalPayment":"$1040163.34","Status":6,"Type":3},{"OrderID":"10956-003","ShipCountry":"ID","ShipAddress":"00 Southridge Avenue","ShipName":"Crooks Group","OrderDate":"8/11/2017","TotalPayment":"$945611.35","Status":6,"Type":1},{"OrderID":"65626-017","ShipCountry":"MV","ShipAddress":"70123 Knutson Parkway","ShipName":"O\'Conner, Veum and Blanda","OrderDate":"11/21/2017","TotalPayment":"$621240.52","Status":3,"Type":1},{"OrderID":"58668-1103","ShipCountry":"ID","ShipAddress":"0513 Anzinger Park","ShipName":"Greenholt, Bartell and Kemmer","OrderDate":"10/5/2017","TotalPayment":"$506764.60","Status":4,"Type":2},{"OrderID":"0781-3302","ShipCountry":"BR","ShipAddress":"725 Myrtle Lane","ShipName":"Barrows-Heidenreich","OrderDate":"6/24/2017","TotalPayment":"$64651.31","Status":3,"Type":2},{"OrderID":"0115-5911","ShipCountry":"BR","ShipAddress":"98143 Mesta Alley","ShipName":"Daniel-Welch","OrderDate":"9/3/2016","TotalPayment":"$804125.45","Status":4,"Type":2},{"OrderID":"61657-0052","ShipCountry":"CN","ShipAddress":"54126 Banding Point","ShipName":"Dickens-Koss","OrderDate":"3/28/2017","TotalPayment":"$489717.89","Status":4,"Type":3},{"OrderID":"29500-2435","ShipCountry":"SY","ShipAddress":"6 Kinsman Circle","ShipName":"Ledner Inc","OrderDate":"5/16/2017","TotalPayment":"$523060.11","Status":1,"Type":2}]},\n{"RecordID":20,"FirstName":"Werner","LastName":"Davy","Company":"Mybuzz","Email":"wdavyj@lycos.com","Phone":"207-709-2159","Status":5,"Type":3,"Orders":[{"OrderID":"0409-6637","ShipCountry":"US","ShipAddress":"8 Golf Way","ShipName":"VonRueden Group","OrderDate":"12/3/2017","TotalPayment":"$676139.26","Status":5,"Type":2},{"OrderID":"55154-4728","ShipCountry":"PK","ShipAddress":"4443 Fallview Junction","ShipName":"Ziemann-King","OrderDate":"6/7/2016","TotalPayment":"$909920.97","Status":6,"Type":1},{"OrderID":"64141-010","ShipCountry":"CN","ShipAddress":"4 Laurel Drive","ShipName":"Heaney-Leffler","OrderDate":"9/22/2017","TotalPayment":"$305292.44","Status":1,"Type":3},{"OrderID":"0268-1182","ShipCountry":"UA","ShipAddress":"9 Arkansas Plaza","ShipName":"Cruickshank LLC","OrderDate":"3/29/2016","TotalPayment":"$1183733.44","Status":6,"Type":2},{"OrderID":"0115-9633","ShipCountry":"ID","ShipAddress":"229 Spenser Circle","ShipName":"Harvey-Johnston","OrderDate":"9/28/2017","TotalPayment":"$806663.05","Status":1,"Type":3},{"OrderID":"47335-804","ShipCountry":"VN","ShipAddress":"6 Forest Dale Avenue","ShipName":"Gerhold-Ratke","OrderDate":"6/20/2017","TotalPayment":"$771173.24","Status":4,"Type":2},{"OrderID":"0363-4816","ShipCountry":"NL","ShipAddress":"945 Scott Junction","ShipName":"Morissette, Hodkiewicz and Grimes","OrderDate":"1/13/2017","TotalPayment":"$912300.59","Status":4,"Type":1},{"OrderID":"12634-909","ShipCountry":"CO","ShipAddress":"2372 Havey Pass","ShipName":"Hand, Nader and Jerde","OrderDate":"1/22/2016","TotalPayment":"$90438.21","Status":3,"Type":1},{"OrderID":"0054-4581","ShipCountry":"ID","ShipAddress":"3 Hanson Point","ShipName":"Gutmann-Crona","OrderDate":"1/7/2016","TotalPayment":"$319363.30","Status":6,"Type":1},{"OrderID":"49371-024","ShipCountry":"CN","ShipAddress":"98148 Kenwood Pass","ShipName":"Raynor Group","OrderDate":"1/31/2016","TotalPayment":"$27223.28","Status":3,"Type":2},{"OrderID":"61699-3977","ShipCountry":"PH","ShipAddress":"91522 Cambridge Lane","ShipName":"Waters, Herman and Hudson","OrderDate":"12/11/2016","TotalPayment":"$576844.09","Status":2,"Type":1},{"OrderID":"50452-221","ShipCountry":"US","ShipAddress":"20658 Shopko Park","ShipName":"Aufderhar Group","OrderDate":"8/4/2017","TotalPayment":"$1092940.53","Status":6,"Type":2},{"OrderID":"41163-557","ShipCountry":"FR","ShipAddress":"155 Sutteridge Avenue","ShipName":"Koelpin, Hessel and Rogahn","OrderDate":"8/13/2017","TotalPayment":"$546465.11","Status":4,"Type":2}]},\n{"RecordID":21,"FirstName":"Carina","LastName":"Sloyan","Company":"Edgepulse","Email":"csloyank@qq.com","Phone":"211-855-3589","Status":2,"Type":2,"Orders":[{"OrderID":"49884-932","ShipCountry":"CN","ShipAddress":"30239 Service Lane","ShipName":"Schmitt, Littel and Hayes","OrderDate":"1/20/2017","TotalPayment":"$23390.21","Status":1,"Type":1},{"OrderID":"49349-562","ShipCountry":"AR","ShipAddress":"8 Shoshone Court","ShipName":"McGlynn, Kling and Heaney","OrderDate":"1/18/2017","TotalPayment":"$185932.20","Status":5,"Type":1},{"OrderID":"24286-1558","ShipCountry":"US","ShipAddress":"46 Melrose Terrace","ShipName":"Satterfield, Reynolds and Johnson","OrderDate":"4/13/2016","TotalPayment":"$672941.27","Status":3,"Type":2},{"OrderID":"67345-0671","ShipCountry":"TT","ShipAddress":"032 Emmet Court","ShipName":"Ratke-Brown","OrderDate":"6/25/2017","TotalPayment":"$302787.56","Status":2,"Type":1},{"OrderID":"65626-206","ShipCountry":"CN","ShipAddress":"44 Iowa Terrace","ShipName":"Cormier, Gerlach and Goodwin","OrderDate":"5/22/2016","TotalPayment":"$1112348.00","Status":4,"Type":2},{"OrderID":"62802-116","ShipCountry":"GT","ShipAddress":"604 Scott Court","ShipName":"Jacobi, Pollich and Hoeger","OrderDate":"8/22/2017","TotalPayment":"$732225.33","Status":3,"Type":2},{"OrderID":"0363-0443","ShipCountry":"ID","ShipAddress":"5 Eggendart Way","ShipName":"Rolfson, Bradtke and Turner","OrderDate":"11/19/2016","TotalPayment":"$820850.48","Status":2,"Type":1},{"OrderID":"10733-395","ShipCountry":"UA","ShipAddress":"71557 Brickson Park Terrace","ShipName":"Dickens-Erdman","OrderDate":"3/21/2017","TotalPayment":"$574900.99","Status":3,"Type":3},{"OrderID":"13668-001","ShipCountry":"CN","ShipAddress":"7 Springview Alley","ShipName":"Hettinger Inc","OrderDate":"10/1/2016","TotalPayment":"$390271.23","Status":2,"Type":2},{"OrderID":"11118-3000","ShipCountry":"CN","ShipAddress":"06 Clarendon Hill","ShipName":"Kohler, Hirthe and Erdman","OrderDate":"3/18/2016","TotalPayment":"$840691.78","Status":2,"Type":2},{"OrderID":"60505-6087","ShipCountry":"CN","ShipAddress":"369 Grayhawk Junction","ShipName":"Price-Rippin","OrderDate":"1/30/2017","TotalPayment":"$242520.21","Status":1,"Type":1},{"OrderID":"69097-149","ShipCountry":"CO","ShipAddress":"862 Carioca Circle","ShipName":"Huels-Hayes","OrderDate":"12/2/2016","TotalPayment":"$450006.58","Status":4,"Type":3},{"OrderID":"68084-108","ShipCountry":"NG","ShipAddress":"0 Kings Junction","ShipName":"Mitchell, Schneider and Schulist","OrderDate":"2/1/2016","TotalPayment":"$471457.13","Status":2,"Type":2},{"OrderID":"64117-285","ShipCountry":"NO","ShipAddress":"896 Nancy Terrace","ShipName":"Fay LLC","OrderDate":"1/7/2016","TotalPayment":"$334428.76","Status":6,"Type":2},{"OrderID":"52125-144","ShipCountry":"US","ShipAddress":"10 Waxwing Hill","ShipName":"Fritsch-Bins","OrderDate":"10/28/2017","TotalPayment":"$1015892.49","Status":6,"Type":3}]},\n{"RecordID":22,"FirstName":"Dyane","LastName":"Petraitis","Company":"Thoughtmix","Email":"dpetraitisl@chronoengine.com","Phone":"400-332-4756","Status":2,"Type":1,"Orders":[{"OrderID":"54868-4970","ShipCountry":"PL","ShipAddress":"1382 Heffernan Place","ShipName":"Walker, Lehner and Schumm","OrderDate":"10/22/2016","TotalPayment":"$550011.09","Status":5,"Type":2},{"OrderID":"0781-7244","ShipCountry":"NZ","ShipAddress":"340 Carioca Hill","ShipName":"Ritchie-Kertzmann","OrderDate":"7/15/2016","TotalPayment":"$301703.59","Status":2,"Type":1},{"OrderID":"50563-301","ShipCountry":"CN","ShipAddress":"0 Union Lane","ShipName":"Bechtelar-Cormier","OrderDate":"4/16/2016","TotalPayment":"$738279.45","Status":6,"Type":1},{"OrderID":"47781-264","ShipCountry":"AM","ShipAddress":"00 Old Gate Drive","ShipName":"Bauch Group","OrderDate":"10/31/2016","TotalPayment":"$552838.67","Status":6,"Type":3},{"OrderID":"58411-129","ShipCountry":"CN","ShipAddress":"231 Randy Place","ShipName":"Halvorson-Kulas","OrderDate":"12/13/2017","TotalPayment":"$121851.27","Status":2,"Type":1},{"OrderID":"64380-735","ShipCountry":"CN","ShipAddress":"21 Dryden Avenue","ShipName":"Kuhlman, Lockman and Schmidt","OrderDate":"2/15/2016","TotalPayment":"$1179842.45","Status":4,"Type":3},{"OrderID":"37012-498","ShipCountry":"MD","ShipAddress":"24437 Southridge Park","ShipName":"Mraz-Rempel","OrderDate":"8/30/2017","TotalPayment":"$872008.48","Status":2,"Type":1},{"OrderID":"64058-145","ShipCountry":"SE","ShipAddress":"3608 Anthes Crossing","ShipName":"DuBuque-Gleason","OrderDate":"9/19/2016","TotalPayment":"$471599.11","Status":6,"Type":2},{"OrderID":"0781-3222","ShipCountry":"FR","ShipAddress":"1 Graceland Junction","ShipName":"McLaughlin-Mayer","OrderDate":"11/17/2017","TotalPayment":"$939417.30","Status":6,"Type":3},{"OrderID":"13537-533","ShipCountry":"CN","ShipAddress":"637 Mcbride Lane","ShipName":"Wolf, Wuckert and Witting","OrderDate":"11/22/2016","TotalPayment":"$364109.83","Status":2,"Type":2},{"OrderID":"64011-010","ShipCountry":"CZ","ShipAddress":"86543 Raven Place","ShipName":"Schuster, Reinger and Stokes","OrderDate":"4/7/2017","TotalPayment":"$1077247.86","Status":3,"Type":3},{"OrderID":"50242-073","ShipCountry":"MG","ShipAddress":"5147 Northfield Lane","ShipName":"Daugherty, Pagac and Hackett","OrderDate":"3/23/2017","TotalPayment":"$191786.31","Status":3,"Type":2}]},\n{"RecordID":23,"FirstName":"Stanislaw","LastName":"Fruen","Company":"Kwideo","Email":"sfruenm@senate.gov","Phone":"962-404-6507","Status":2,"Type":1,"Orders":[{"OrderID":"76485-1013","ShipCountry":"GQ","ShipAddress":"67725 4th Junction","ShipName":"Ward-Welch","OrderDate":"7/30/2017","TotalPayment":"$359608.70","Status":3,"Type":3},{"OrderID":"43269-803","ShipCountry":"PE","ShipAddress":"4 Mallard Drive","ShipName":"Waters Inc","OrderDate":"7/21/2017","TotalPayment":"$482120.25","Status":5,"Type":2},{"OrderID":"59663-130","ShipCountry":"CN","ShipAddress":"095 Farwell Park","ShipName":"Hansen LLC","OrderDate":"8/5/2017","TotalPayment":"$209680.67","Status":2,"Type":1},{"OrderID":"0363-0591","ShipCountry":"CN","ShipAddress":"4 Northland Avenue","ShipName":"Padberg, Bogan and Buckridge","OrderDate":"9/28/2017","TotalPayment":"$954836.79","Status":5,"Type":1},{"OrderID":"0185-0342","ShipCountry":"CO","ShipAddress":"33 Roxbury Junction","ShipName":"Gislason, Zieme and Huels","OrderDate":"11/13/2016","TotalPayment":"$468101.37","Status":6,"Type":2},{"OrderID":"59779-603","ShipCountry":"ID","ShipAddress":"33143 Red Cloud Trail","ShipName":"Ledner Inc","OrderDate":"3/13/2017","TotalPayment":"$420910.81","Status":4,"Type":1},{"OrderID":"0172-5412","ShipCountry":"ES","ShipAddress":"07560 Warbler Way","ShipName":"Ward, Sawayn and Brown","OrderDate":"9/30/2017","TotalPayment":"$275684.41","Status":5,"Type":1},{"OrderID":"64942-1048","ShipCountry":"CN","ShipAddress":"570 Bartillon Plaza","ShipName":"Huels, Dietrich and Ondricka","OrderDate":"3/11/2017","TotalPayment":"$1148838.85","Status":4,"Type":2},{"OrderID":"42546-270","ShipCountry":"RU","ShipAddress":"35 Wayridge Alley","ShipName":"Ledner, Rosenbaum and Kreiger","OrderDate":"11/14/2016","TotalPayment":"$849166.46","Status":3,"Type":3},{"OrderID":"55312-053","ShipCountry":"CN","ShipAddress":"00 Bartillon Road","ShipName":"Spencer LLC","OrderDate":"11/15/2017","TotalPayment":"$360062.76","Status":2,"Type":2},{"OrderID":"51060-052","ShipCountry":"CN","ShipAddress":"753 Lillian Drive","ShipName":"Kautzer-Murphy","OrderDate":"3/27/2017","TotalPayment":"$176638.86","Status":2,"Type":2},{"OrderID":"0245-0014","ShipCountry":"HT","ShipAddress":"401 Oak Crossing","ShipName":"Durgan LLC","OrderDate":"7/11/2017","TotalPayment":"$301693.94","Status":1,"Type":1},{"OrderID":"59762-0811","ShipCountry":"GR","ShipAddress":"0209 Menomonie Circle","ShipName":"Pouros Inc","OrderDate":"12/9/2016","TotalPayment":"$977827.86","Status":3,"Type":1}]},\n{"RecordID":24,"FirstName":"Claudette","LastName":"Warmisham","Company":"Babbleset","Email":"cwarmishamn@over-blog.com","Phone":"762-180-1606","Status":6,"Type":3,"Orders":[{"OrderID":"60681-1001","ShipCountry":"ID","ShipAddress":"59125 Longview Place","ShipName":"Runolfsson Group","OrderDate":"9/19/2016","TotalPayment":"$766887.24","Status":5,"Type":2},{"OrderID":"62011-0100","ShipCountry":"BR","ShipAddress":"313 Porter Point","ShipName":"Okuneva, Cremin and Schumm","OrderDate":"11/3/2017","TotalPayment":"$250500.74","Status":5,"Type":2},{"OrderID":"36800-030","ShipCountry":"CF","ShipAddress":"2 Shasta Circle","ShipName":"Wilkinson Inc","OrderDate":"8/12/2017","TotalPayment":"$87063.24","Status":6,"Type":1},{"OrderID":"50014-100","ShipCountry":"UA","ShipAddress":"86 Granby Terrace","ShipName":"Bosco-Mosciski","OrderDate":"11/1/2016","TotalPayment":"$1091822.07","Status":4,"Type":2},{"OrderID":"59630-993","ShipCountry":"ID","ShipAddress":"0785 Nevada Place","ShipName":"Stehr-Wisozk","OrderDate":"6/30/2016","TotalPayment":"$887185.07","Status":1,"Type":1},{"OrderID":"72036-720","ShipCountry":"FR","ShipAddress":"36797 Cottonwood Point","ShipName":"Hegmann LLC","OrderDate":"10/6/2016","TotalPayment":"$385042.54","Status":2,"Type":3},{"OrderID":"0603-3162","ShipCountry":"AR","ShipAddress":"38 Utah Way","ShipName":"Hintz LLC","OrderDate":"2/16/2016","TotalPayment":"$743289.41","Status":2,"Type":1},{"OrderID":"55154-5074","ShipCountry":"BR","ShipAddress":"96306 Bultman Hill","ShipName":"Moore-Yundt","OrderDate":"11/25/2017","TotalPayment":"$767884.55","Status":3,"Type":3},{"OrderID":"55154-2388","ShipCountry":"CU","ShipAddress":"01365 Brickson Park Terrace","ShipName":"Ward, Marquardt and Schimmel","OrderDate":"8/16/2017","TotalPayment":"$581799.78","Status":1,"Type":2},{"OrderID":"63776-694","ShipCountry":"DK","ShipAddress":"01967 Cherokee Court","ShipName":"Stehr-Keeling","OrderDate":"3/3/2017","TotalPayment":"$910431.75","Status":5,"Type":2},{"OrderID":"65954-770","ShipCountry":"FR","ShipAddress":"692 Chinook Crossing","ShipName":"Lebsack, Yost and Little","OrderDate":"4/11/2017","TotalPayment":"$516514.31","Status":2,"Type":2},{"OrderID":"49035-454","ShipCountry":"FR","ShipAddress":"19777 7th Road","ShipName":"Collier, Jacobi and Botsford","OrderDate":"4/13/2016","TotalPayment":"$873455.68","Status":6,"Type":3},{"OrderID":"29500-9711","ShipCountry":"KP","ShipAddress":"540 Pepper Wood Circle","ShipName":"Halvorson, Miller and Block","OrderDate":"3/23/2016","TotalPayment":"$280279.42","Status":1,"Type":1},{"OrderID":"0115-1245","ShipCountry":"ID","ShipAddress":"5921 Shelley Trail","ShipName":"Hackett-Hilpert","OrderDate":"7/10/2017","TotalPayment":"$535967.95","Status":2,"Type":2},{"OrderID":"54868-5499","ShipCountry":"CN","ShipAddress":"4625 Fremont Court","ShipName":"Blanda-Leannon","OrderDate":"8/2/2017","TotalPayment":"$89560.17","Status":6,"Type":1},{"OrderID":"35356-754","ShipCountry":"GT","ShipAddress":"7654 Killdeer Alley","ShipName":"Fahey, Greenfelder and Jacobson","OrderDate":"11/2/2017","TotalPayment":"$100090.40","Status":5,"Type":3}]},\n{"RecordID":25,"FirstName":"Dalia","LastName":"Smitton","Company":"Dynabox","Email":"dsmittono@sohu.com","Phone":"787-788-1737","Status":5,"Type":1,"Orders":[{"OrderID":"64762-874","ShipCountry":"SV","ShipAddress":"134 Lillian Lane","ShipName":"Ankunding, Kunze and Hoppe","OrderDate":"2/10/2017","TotalPayment":"$441824.95","Status":4,"Type":2},{"OrderID":"50964-100","ShipCountry":"ID","ShipAddress":"70 Grim Circle","ShipName":"Runolfsson, Considine and Kshlerin","OrderDate":"1/1/2016","TotalPayment":"$528602.82","Status":1,"Type":2},{"OrderID":"60512-8033","ShipCountry":"BR","ShipAddress":"4561 Hoffman Avenue","ShipName":"Barrows-Reichel","OrderDate":"6/20/2017","TotalPayment":"$883125.66","Status":3,"Type":3},{"OrderID":"49348-527","ShipCountry":"YE","ShipAddress":"6 Cascade Pass","ShipName":"Feil-Bernier","OrderDate":"11/26/2016","TotalPayment":"$394440.43","Status":3,"Type":1},{"OrderID":"0135-0136","ShipCountry":"IE","ShipAddress":"02409 Nelson Street","ShipName":"Osinski, Kreiger and Strosin","OrderDate":"2/12/2016","TotalPayment":"$892613.88","Status":4,"Type":2},{"OrderID":"50685-006","ShipCountry":"CN","ShipAddress":"98 Jackson Way","ShipName":"Krajcik-Goyette","OrderDate":"8/4/2017","TotalPayment":"$968152.25","Status":2,"Type":1},{"OrderID":"0093-4444","ShipCountry":"PK","ShipAddress":"931 Trailsway Court","ShipName":"Brown, Kris and Lockman","OrderDate":"8/25/2017","TotalPayment":"$595249.08","Status":5,"Type":3},{"OrderID":"0363-9030","ShipCountry":"SE","ShipAddress":"86613 Hayes Alley","ShipName":"Breitenberg-Ledner","OrderDate":"8/10/2016","TotalPayment":"$1113571.26","Status":2,"Type":1},{"OrderID":"65044-2855","ShipCountry":"CN","ShipAddress":"90286 Clove Parkway","ShipName":"Will-Howell","OrderDate":"2/16/2016","TotalPayment":"$1140836.17","Status":5,"Type":1},{"OrderID":"0268-6316","ShipCountry":"PT","ShipAddress":"84 Kinsman Point","ShipName":"Lowe-Bernhard","OrderDate":"5/30/2016","TotalPayment":"$1079786.05","Status":1,"Type":1},{"OrderID":"59779-375","ShipCountry":"PH","ShipAddress":"186 Moose Road","ShipName":"Goyette-Donnelly","OrderDate":"3/20/2016","TotalPayment":"$687723.83","Status":5,"Type":3},{"OrderID":"76420-482","ShipCountry":"PH","ShipAddress":"42 Carpenter Plaza","ShipName":"Stamm-Nolan","OrderDate":"7/1/2017","TotalPayment":"$309255.05","Status":6,"Type":2},{"OrderID":"61715-093","ShipCountry":"NI","ShipAddress":"01836 Golden Leaf Way","ShipName":"Welch, Schmitt and Flatley","OrderDate":"10/22/2017","TotalPayment":"$480961.06","Status":2,"Type":1}]},\n{"RecordID":26,"FirstName":"Amara","LastName":"Livett","Company":"Tambee","Email":"alivettp@acquirethisname.com","Phone":"738-721-3662","Status":6,"Type":3,"Orders":[{"OrderID":"62756-543","ShipCountry":"CN","ShipAddress":"7851 Ramsey Park","ShipName":"O\'Connell, MacGyver and Boyer","OrderDate":"1/1/2017","TotalPayment":"$637633.93","Status":1,"Type":2},{"OrderID":"10742-1567","ShipCountry":"IE","ShipAddress":"5616 Springs Junction","ShipName":"Funk, Bernier and Stark","OrderDate":"10/29/2017","TotalPayment":"$49512.18","Status":6,"Type":1},{"OrderID":"50051-0010","ShipCountry":"FR","ShipAddress":"7997 Warrior Center","ShipName":"Rosenbaum-Braun","OrderDate":"11/5/2017","TotalPayment":"$390657.00","Status":2,"Type":1},{"OrderID":"65044-6513","ShipCountry":"CN","ShipAddress":"283 Sullivan Drive","ShipName":"Willms, Batz and Gleason","OrderDate":"4/22/2016","TotalPayment":"$534376.39","Status":3,"Type":2},{"OrderID":"65044-2862","ShipCountry":"AR","ShipAddress":"32877 Kipling Alley","ShipName":"Quitzon, Harber and Nitzsche","OrderDate":"3/30/2017","TotalPayment":"$775956.38","Status":1,"Type":3},{"OrderID":"53113-557","ShipCountry":"PE","ShipAddress":"3178 Di Loreto Place","ShipName":"Schneider, Boyer and Feil","OrderDate":"6/24/2017","TotalPayment":"$1042514.12","Status":6,"Type":2},{"OrderID":"53217-009","ShipCountry":"VN","ShipAddress":"0 Mayfield Junction","ShipName":"Hoppe, Goyette and Hagenes","OrderDate":"7/28/2017","TotalPayment":"$41944.00","Status":4,"Type":1},{"OrderID":"55312-588","ShipCountry":"ID","ShipAddress":"236 Vidon Parkway","ShipName":"Heathcote-Powlowski","OrderDate":"3/26/2017","TotalPayment":"$495197.89","Status":6,"Type":2},{"OrderID":"50988-454","ShipCountry":"GR","ShipAddress":"6 Jenna Park","ShipName":"Reichert-Nolan","OrderDate":"11/17/2016","TotalPayment":"$134992.56","Status":5,"Type":3},{"OrderID":"59779-812","ShipCountry":"ID","ShipAddress":"36203 Talisman Parkway","ShipName":"Miller Inc","OrderDate":"5/3/2017","TotalPayment":"$1017603.90","Status":2,"Type":2},{"OrderID":"0574-0118","ShipCountry":"PL","ShipAddress":"5374 Myrtle Center","ShipName":"Schmeler, Howell and Luettgen","OrderDate":"2/19/2017","TotalPayment":"$943709.39","Status":2,"Type":3},{"OrderID":"10742-1538","ShipCountry":"MU","ShipAddress":"9 Fieldstone Pass","ShipName":"Tromp-Altenwerth","OrderDate":"9/4/2017","TotalPayment":"$396688.33","Status":1,"Type":3},{"OrderID":"76329-3012","ShipCountry":"ID","ShipAddress":"24 Luster Pass","ShipName":"Daniel, Zboncak and Bergstrom","OrderDate":"3/22/2016","TotalPayment":"$839859.79","Status":5,"Type":2},{"OrderID":"10812-198","ShipCountry":"CN","ShipAddress":"175 Springview Avenue","ShipName":"Hickle-Jast","OrderDate":"5/31/2017","TotalPayment":"$1066695.07","Status":5,"Type":2},{"OrderID":"57664-502","ShipCountry":"JP","ShipAddress":"20281 Brickson Park Park","ShipName":"Flatley Inc","OrderDate":"9/16/2016","TotalPayment":"$63615.82","Status":3,"Type":3},{"OrderID":"64117-181","ShipCountry":"CN","ShipAddress":"34 Chinook Parkway","ShipName":"Block, Hamill and Kulas","OrderDate":"5/7/2017","TotalPayment":"$469520.18","Status":2,"Type":3},{"OrderID":"0603-5439","ShipCountry":"SI","ShipAddress":"670 New Castle Plaza","ShipName":"Gerlach and Sons","OrderDate":"6/24/2016","TotalPayment":"$303449.81","Status":4,"Type":3},{"OrderID":"76045-103","ShipCountry":"ID","ShipAddress":"34970 Cody Place","ShipName":"Braun and Sons","OrderDate":"1/26/2016","TotalPayment":"$329380.58","Status":6,"Type":1},{"OrderID":"52891-104","ShipCountry":"CN","ShipAddress":"244 Ramsey Pass","ShipName":"Kulas-Quitzon","OrderDate":"7/14/2017","TotalPayment":"$54868.44","Status":4,"Type":3}]},\n{"RecordID":27,"FirstName":"Lucky","LastName":"Pendlebury","Company":"Flashdog","Email":"lpendleburyq@gravatar.com","Phone":"360-362-9735","Status":4,"Type":3,"Orders":[{"OrderID":"35356-948","ShipCountry":"BR","ShipAddress":"5075 Golf View Plaza","ShipName":"Jakubowski, Nikolaus and Little","OrderDate":"7/5/2017","TotalPayment":"$674147.25","Status":3,"Type":1},{"OrderID":"63323-398","ShipCountry":"GB","ShipAddress":"74 Shopko Terrace","ShipName":"Schimmel LLC","OrderDate":"2/15/2016","TotalPayment":"$475506.35","Status":1,"Type":1},{"OrderID":"25021-501","ShipCountry":"MY","ShipAddress":"461 Hoard Crossing","ShipName":"Bashirian, Wilkinson and Gottlieb","OrderDate":"7/31/2016","TotalPayment":"$79868.33","Status":5,"Type":1},{"OrderID":"68788-9182","ShipCountry":"CN","ShipAddress":"9773 Waubesa Drive","ShipName":"Feeney-Kub","OrderDate":"11/1/2017","TotalPayment":"$81480.05","Status":3,"Type":3},{"OrderID":"63941-525","ShipCountry":"BY","ShipAddress":"17 Birchwood Parkway","ShipName":"Zulauf-Ankunding","OrderDate":"5/13/2017","TotalPayment":"$939205.77","Status":5,"Type":2},{"OrderID":"49702-207","ShipCountry":"ID","ShipAddress":"095 Delladonna Center","ShipName":"Zboncak, Klein and Moen","OrderDate":"11/10/2017","TotalPayment":"$222069.03","Status":3,"Type":1}]},\n{"RecordID":28,"FirstName":"Aidan","LastName":"Bonsall","Company":"Jayo","Email":"abonsallr@ycombinator.com","Phone":"691-647-3894","Status":3,"Type":1,"Orders":[{"OrderID":"54092-515","ShipCountry":"IE","ShipAddress":"1810 Golden Leaf Court","ShipName":"Lindgren Group","OrderDate":"9/2/2016","TotalPayment":"$1155450.50","Status":3,"Type":1},{"OrderID":"57520-0938","ShipCountry":"BR","ShipAddress":"6687 Harbort Plaza","ShipName":"Erdman-McGlynn","OrderDate":"4/28/2017","TotalPayment":"$711798.08","Status":4,"Type":3},{"OrderID":"61995-2390","ShipCountry":"ID","ShipAddress":"899 Clemons Alley","ShipName":"Prosacco-Bailey","OrderDate":"8/24/2016","TotalPayment":"$170894.15","Status":5,"Type":1},{"OrderID":"75857-1001","ShipCountry":"PL","ShipAddress":"5 Del Mar Alley","ShipName":"Anderson-Effertz","OrderDate":"12/8/2017","TotalPayment":"$440996.85","Status":5,"Type":3},{"OrderID":"42549-613","ShipCountry":"SV","ShipAddress":"891 Truax Pass","ShipName":"Ratke, Glover and Davis","OrderDate":"10/30/2016","TotalPayment":"$985272.60","Status":1,"Type":1}]},\n{"RecordID":29,"FirstName":"Dolores","LastName":"Dabs","Company":"Dabvine","Email":"ddabss@xing.com","Phone":"608-905-5454","Status":1,"Type":3,"Orders":[{"OrderID":"0019-1177","ShipCountry":"ID","ShipAddress":"4682 Brentwood Center","ShipName":"Hermiston, McCullough and Durgan","OrderDate":"10/17/2016","TotalPayment":"$417957.95","Status":1,"Type":1},{"OrderID":"0268-0130","ShipCountry":"GR","ShipAddress":"337 Forster Hill","ShipName":"Turcotte-Walker","OrderDate":"7/24/2017","TotalPayment":"$97200.49","Status":5,"Type":2},{"OrderID":"11523-7237","ShipCountry":"AR","ShipAddress":"2 Alpine Parkway","ShipName":"Kuhn, Skiles and Jakubowski","OrderDate":"4/18/2016","TotalPayment":"$689237.51","Status":1,"Type":3},{"OrderID":"36987-2537","ShipCountry":"MA","ShipAddress":"3 Banding Trail","ShipName":"Cole-Denesik","OrderDate":"1/3/2017","TotalPayment":"$871155.51","Status":2,"Type":1},{"OrderID":"0781-6141","ShipCountry":"ID","ShipAddress":"17 Bellgrove Park","ShipName":"Deckow-Feest","OrderDate":"12/15/2016","TotalPayment":"$280265.77","Status":5,"Type":2},{"OrderID":"68180-185","ShipCountry":"PY","ShipAddress":"69963 Pleasure Plaza","ShipName":"Halvorson-Kunde","OrderDate":"6/16/2017","TotalPayment":"$986175.37","Status":5,"Type":3},{"OrderID":"52686-230","ShipCountry":"PE","ShipAddress":"3 Walton Place","ShipName":"Windler LLC","OrderDate":"2/4/2017","TotalPayment":"$1072678.60","Status":1,"Type":1},{"OrderID":"37000-761","ShipCountry":"EG","ShipAddress":"0996 Merchant Crossing","ShipName":"Towne and Sons","OrderDate":"7/22/2016","TotalPayment":"$117592.52","Status":5,"Type":2},{"OrderID":"60691-116","ShipCountry":"CN","ShipAddress":"5072 Welch Pass","ShipName":"Weber-Prosacco","OrderDate":"6/3/2017","TotalPayment":"$670103.20","Status":3,"Type":2}]},\n{"RecordID":30,"FirstName":"Page","LastName":"Ethridge","Company":"Zoonoodle","Email":"pethridget@biblegateway.com","Phone":"535-144-7585","Status":6,"Type":2,"Orders":[{"OrderID":"55312-468","ShipCountry":"RU","ShipAddress":"3774 Golden Leaf Parkway","ShipName":"Kihn, Kuhic and Braun","OrderDate":"1/18/2017","TotalPayment":"$218591.20","Status":4,"Type":1},{"OrderID":"21130-439","ShipCountry":"CM","ShipAddress":"793 Oakridge Parkway","ShipName":"Hoppe Group","OrderDate":"6/19/2016","TotalPayment":"$815754.18","Status":3,"Type":3},{"OrderID":"41520-112","ShipCountry":"SY","ShipAddress":"3 Continental Trail","ShipName":"Bogisich Group","OrderDate":"7/21/2016","TotalPayment":"$695252.50","Status":6,"Type":2},{"OrderID":"59535-3301","ShipCountry":"HN","ShipAddress":"21 John Wall Center","ShipName":"Rutherford Inc","OrderDate":"1/1/2017","TotalPayment":"$653041.23","Status":5,"Type":3},{"OrderID":"42227-081","ShipCountry":"CZ","ShipAddress":"8 Ramsey Center","ShipName":"MacGyver, Bogan and Bashirian","OrderDate":"7/5/2016","TotalPayment":"$159205.76","Status":4,"Type":3},{"OrderID":"33261-142","ShipCountry":"CN","ShipAddress":"2 Fordem Point","ShipName":"Fay, Nader and Mayer","OrderDate":"5/9/2017","TotalPayment":"$402665.55","Status":2,"Type":3},{"OrderID":"17478-122","ShipCountry":"PT","ShipAddress":"9125 Kenwood Crossing","ShipName":"Kozey-Mitchell","OrderDate":"9/20/2016","TotalPayment":"$385255.13","Status":6,"Type":1},{"OrderID":"49035-066","ShipCountry":"FR","ShipAddress":"547 Jackson Point","ShipName":"Legros-Lemke","OrderDate":"4/5/2017","TotalPayment":"$916118.34","Status":5,"Type":3},{"OrderID":"0378-0344","ShipCountry":"CN","ShipAddress":"9 Mallard Lane","ShipName":"Collins-Deckow","OrderDate":"1/2/2016","TotalPayment":"$992891.41","Status":6,"Type":3},{"OrderID":"51523-034","ShipCountry":"US","ShipAddress":"02 8th Center","ShipName":"Schimmel-Lueilwitz","OrderDate":"7/11/2017","TotalPayment":"$922442.63","Status":5,"Type":2},{"OrderID":"67046-477","ShipCountry":"AL","ShipAddress":"71 Continental Drive","ShipName":"Wolff-Fisher","OrderDate":"3/23/2017","TotalPayment":"$875333.65","Status":3,"Type":3},{"OrderID":"60429-300","ShipCountry":"CN","ShipAddress":"02 Merry Park","ShipName":"Fadel Inc","OrderDate":"12/15/2017","TotalPayment":"$170451.35","Status":6,"Type":3},{"OrderID":"65841-673","ShipCountry":"CN","ShipAddress":"6 Waubesa Pass","ShipName":"Barrows Inc","OrderDate":"5/5/2016","TotalPayment":"$997586.75","Status":4,"Type":2},{"OrderID":"58892-336","ShipCountry":"GR","ShipAddress":"83673 Thompson Street","ShipName":"Schowalter-Toy","OrderDate":"6/17/2016","TotalPayment":"$1115920.56","Status":2,"Type":2}]},\n{"RecordID":31,"FirstName":"Codie","LastName":"Martusewicz","Company":"Avavee","Email":"cmartusewiczu@soup.io","Phone":"824-564-5918","Status":1,"Type":2,"Orders":[{"OrderID":"51079-294","ShipCountry":"PH","ShipAddress":"93 Hoard Crossing","ShipName":"Gleason Group","OrderDate":"2/20/2017","TotalPayment":"$1082321.51","Status":4,"Type":3},{"OrderID":"21130-199","ShipCountry":"HN","ShipAddress":"1 Gerald Junction","ShipName":"Labadie LLC","OrderDate":"1/10/2017","TotalPayment":"$59374.44","Status":1,"Type":3},{"OrderID":"48951-5032","ShipCountry":"NZ","ShipAddress":"150 Arizona Center","ShipName":"Heaney and Sons","OrderDate":"12/20/2017","TotalPayment":"$802593.16","Status":4,"Type":1},{"OrderID":"0597-0286","ShipCountry":"ID","ShipAddress":"100 Bellgrove Crossing","ShipName":"Kulas and Sons","OrderDate":"8/21/2017","TotalPayment":"$169613.88","Status":1,"Type":3},{"OrderID":"60505-3807","ShipCountry":"PL","ShipAddress":"63 Garrison Circle","ShipName":"Dickens LLC","OrderDate":"1/5/2016","TotalPayment":"$194662.61","Status":5,"Type":2},{"OrderID":"35356-570","ShipCountry":"CN","ShipAddress":"362 Eggendart Lane","ShipName":"Hills, Medhurst and Borer","OrderDate":"10/12/2016","TotalPayment":"$1150726.41","Status":1,"Type":1},{"OrderID":"42924-001","ShipCountry":"MT","ShipAddress":"36150 Evergreen Park","ShipName":"Zboncak-Kiehn","OrderDate":"2/14/2016","TotalPayment":"$1078465.02","Status":5,"Type":3},{"OrderID":"0178-0891","ShipCountry":"CO","ShipAddress":"3696 Sundown Lane","ShipName":"Considine, Hand and Auer","OrderDate":"3/31/2016","TotalPayment":"$1040290.68","Status":2,"Type":3},{"OrderID":"60429-765","ShipCountry":"BR","ShipAddress":"5 Chive Drive","ShipName":"Will Inc","OrderDate":"2/2/2017","TotalPayment":"$130815.95","Status":5,"Type":2},{"OrderID":"63833-616","ShipCountry":"MX","ShipAddress":"65 Waxwing Street","ShipName":"Marvin, Johns and Mosciski","OrderDate":"3/21/2016","TotalPayment":"$948358.82","Status":4,"Type":2},{"OrderID":"0185-0325","ShipCountry":"CN","ShipAddress":"582 Calypso Place","ShipName":"Hyatt LLC","OrderDate":"5/26/2016","TotalPayment":"$570088.03","Status":4,"Type":3},{"OrderID":"63323-127","ShipCountry":"PH","ShipAddress":"9 Maywood Plaza","ShipName":"Morar and Sons","OrderDate":"11/7/2016","TotalPayment":"$340195.83","Status":3,"Type":3},{"OrderID":"13537-217","ShipCountry":"UA","ShipAddress":"0 Pierstorff Street","ShipName":"Keeling and Sons","OrderDate":"7/28/2017","TotalPayment":"$373640.81","Status":4,"Type":1},{"OrderID":"0409-7075","ShipCountry":"UG","ShipAddress":"4767 High Crossing Pass","ShipName":"Pfannerstill, Lubowitz and Robel","OrderDate":"8/18/2016","TotalPayment":"$510518.43","Status":3,"Type":1},{"OrderID":"63323-379","ShipCountry":"IE","ShipAddress":"2613 Anhalt Way","ShipName":"Hansen, Howell and Durgan","OrderDate":"7/15/2016","TotalPayment":"$100254.95","Status":5,"Type":3},{"OrderID":"64525-0562","ShipCountry":"SY","ShipAddress":"770 Thackeray Junction","ShipName":"Renner-Keebler","OrderDate":"9/11/2017","TotalPayment":"$999829.02","Status":3,"Type":3},{"OrderID":"0603-5770","ShipCountry":"RU","ShipAddress":"23407 Lighthouse Bay Center","ShipName":"Stokes-Durgan","OrderDate":"7/12/2017","TotalPayment":"$550153.43","Status":2,"Type":2}]},\n{"RecordID":32,"FirstName":"Goldina","LastName":"Houltham","Company":"Rooxo","Email":"ghoulthamv@chron.com","Phone":"285-375-1139","Status":5,"Type":3,"Orders":[{"OrderID":"0143-2424","ShipCountry":"RU","ShipAddress":"61 Hoepker Place","ShipName":"Weissnat-Schiller","OrderDate":"11/26/2016","TotalPayment":"$1149558.15","Status":5,"Type":3},{"OrderID":"65862-619","ShipCountry":"PH","ShipAddress":"46405 Clarendon Circle","ShipName":"Rogahn-Jaskolski","OrderDate":"1/3/2017","TotalPayment":"$1082455.50","Status":3,"Type":3},{"OrderID":"0597-0191","ShipCountry":"PH","ShipAddress":"14090 Corben Avenue","ShipName":"Fisher, Casper and Will","OrderDate":"5/3/2016","TotalPayment":"$1021605.17","Status":4,"Type":1},{"OrderID":"49349-519","ShipCountry":"PE","ShipAddress":"05 Kings Center","ShipName":"Hintz, Hamill and Lindgren","OrderDate":"9/21/2016","TotalPayment":"$64126.33","Status":4,"Type":3},{"OrderID":"57955-5071","ShipCountry":"RU","ShipAddress":"1898 Ronald Regan Parkway","ShipName":"Wilderman, Renner and Pagac","OrderDate":"4/17/2016","TotalPayment":"$978612.20","Status":5,"Type":2},{"OrderID":"55648-635","ShipCountry":"CN","ShipAddress":"3 Ramsey Parkway","ShipName":"Mitchell, Beer and Rowe","OrderDate":"8/31/2017","TotalPayment":"$84201.59","Status":5,"Type":2},{"OrderID":"41167-0040","ShipCountry":"HR","ShipAddress":"8 La Follette Terrace","ShipName":"McClure, Effertz and Hamill","OrderDate":"11/24/2017","TotalPayment":"$940416.17","Status":5,"Type":3},{"OrderID":"50436-4604","ShipCountry":"AF","ShipAddress":"27 Claremont Avenue","ShipName":"Rau, Murphy and Bradtke","OrderDate":"5/6/2016","TotalPayment":"$932412.96","Status":4,"Type":1},{"OrderID":"68196-115","ShipCountry":"HN","ShipAddress":"0 Southridge Drive","ShipName":"Hoppe, Harvey and Kihn","OrderDate":"5/1/2017","TotalPayment":"$221770.47","Status":3,"Type":3},{"OrderID":"59746-127","ShipCountry":"PH","ShipAddress":"46491 Lerdahl Alley","ShipName":"Lang, Larson and Schumm","OrderDate":"2/24/2016","TotalPayment":"$996454.79","Status":1,"Type":1},{"OrderID":"0615-7507","ShipCountry":"ID","ShipAddress":"3 Saint Paul Drive","ShipName":"Fadel-Corkery","OrderDate":"11/23/2016","TotalPayment":"$173926.73","Status":4,"Type":3}]},\n{"RecordID":33,"FirstName":"Rosalind","LastName":"Denerley","Company":"Skidoo","Email":"rdenerleyw@xing.com","Phone":"356-957-2661","Status":6,"Type":1,"Orders":[{"OrderID":"0527-1375","ShipCountry":"CN","ShipAddress":"6019 Union Alley","ShipName":"Zieme-Schimmel","OrderDate":"6/28/2016","TotalPayment":"$64016.90","Status":4,"Type":2},{"OrderID":"60432-126","ShipCountry":"TH","ShipAddress":"66 Amoth Trail","ShipName":"Dickinson-Cremin","OrderDate":"5/25/2017","TotalPayment":"$691416.33","Status":3,"Type":1},{"OrderID":"0113-0335","ShipCountry":"CN","ShipAddress":"555 Londonderry Street","ShipName":"O\'Connell Group","OrderDate":"4/14/2017","TotalPayment":"$551411.79","Status":2,"Type":3},{"OrderID":"45802-840","ShipCountry":"MX","ShipAddress":"9285 Arapahoe Lane","ShipName":"Mann-Kautzer","OrderDate":"1/26/2017","TotalPayment":"$453296.70","Status":2,"Type":1},{"OrderID":"54868-5268","ShipCountry":"ID","ShipAddress":"71136 Ruskin Center","ShipName":"Carter-Collins","OrderDate":"5/30/2016","TotalPayment":"$794042.64","Status":5,"Type":1},{"OrderID":"41167-0675","ShipCountry":"PH","ShipAddress":"18 Bartillon Park","ShipName":"Macejkovic, Ziemann and Lowe","OrderDate":"7/12/2017","TotalPayment":"$800530.44","Status":2,"Type":3},{"OrderID":"76237-246","ShipCountry":"BR","ShipAddress":"885 Nobel Plaza","ShipName":"Wintheiser, Turcotte and Altenwerth","OrderDate":"9/29/2017","TotalPayment":"$214393.89","Status":1,"Type":2},{"OrderID":"13630-0012","ShipCountry":"CL","ShipAddress":"84330 Steensland Junction","ShipName":"Streich Inc","OrderDate":"10/13/2016","TotalPayment":"$517036.83","Status":1,"Type":2},{"OrderID":"35813-374","ShipCountry":"ID","ShipAddress":"3 School Pass","ShipName":"Huel Inc","OrderDate":"1/12/2017","TotalPayment":"$179662.13","Status":5,"Type":3},{"OrderID":"21695-741","ShipCountry":"SE","ShipAddress":"8 Hovde Hill","ShipName":"Bosco, Ratke and Lemke","OrderDate":"8/19/2017","TotalPayment":"$860068.75","Status":1,"Type":1},{"OrderID":"68400-358","ShipCountry":"SD","ShipAddress":"26 Reinke Junction","ShipName":"Watsica, Marquardt and O\'Conner","OrderDate":"8/28/2017","TotalPayment":"$824030.40","Status":3,"Type":2},{"OrderID":"43063-522","ShipCountry":"JP","ShipAddress":"1 Monument Hill","ShipName":"Carroll, Nitzsche and Cronin","OrderDate":"11/16/2016","TotalPayment":"$494506.55","Status":4,"Type":3},{"OrderID":"14783-441","ShipCountry":"NG","ShipAddress":"7 Russell Street","ShipName":"Davis Inc","OrderDate":"10/4/2017","TotalPayment":"$1049593.38","Status":3,"Type":2},{"OrderID":"60549-2108","ShipCountry":"CN","ShipAddress":"83 Maple Wood Drive","ShipName":"Russel-McClure","OrderDate":"7/23/2017","TotalPayment":"$1047584.16","Status":3,"Type":1},{"OrderID":"0054-0118","ShipCountry":"LT","ShipAddress":"52595 Morning Plaza","ShipName":"Stroman, Buckridge and Mosciski","OrderDate":"6/9/2016","TotalPayment":"$908316.52","Status":6,"Type":1},{"OrderID":"34645-4025","ShipCountry":"PT","ShipAddress":"5 Rigney Park","ShipName":"Rempel and Sons","OrderDate":"5/22/2017","TotalPayment":"$1004712.01","Status":1,"Type":2},{"OrderID":"0024-5840","ShipCountry":"JP","ShipAddress":"5 Daystar Avenue","ShipName":"Kiehn, Bednar and McGlynn","OrderDate":"12/7/2016","TotalPayment":"$751946.80","Status":6,"Type":1}]},\n{"RecordID":34,"FirstName":"Urson","LastName":"Medendorp","Company":"Thoughtbridge","Email":"umedendorpx@gmpg.org","Phone":"262-251-2289","Status":4,"Type":2,"Orders":[{"OrderID":"53808-0394","ShipCountry":"HR","ShipAddress":"492 Warrior Avenue","ShipName":"Kunde-Bashirian","OrderDate":"6/21/2017","TotalPayment":"$595872.62","Status":1,"Type":3},{"OrderID":"59779-529","ShipCountry":"PE","ShipAddress":"0 Nelson Junction","ShipName":"Hayes Inc","OrderDate":"3/7/2016","TotalPayment":"$472874.02","Status":3,"Type":3},{"OrderID":"60512-0016","ShipCountry":"AZ","ShipAddress":"147 Maryland Terrace","ShipName":"Jast-Hettinger","OrderDate":"3/30/2016","TotalPayment":"$454118.42","Status":5,"Type":1},{"OrderID":"36987-2388","ShipCountry":"CN","ShipAddress":"778 Almo Terrace","ShipName":"Quitzon LLC","OrderDate":"3/12/2017","TotalPayment":"$1031362.22","Status":3,"Type":2},{"OrderID":"49288-0463","ShipCountry":"BR","ShipAddress":"992 Buhler Point","ShipName":"Kuhlman-Koepp","OrderDate":"6/19/2016","TotalPayment":"$83031.65","Status":2,"Type":2},{"OrderID":"63187-064","ShipCountry":"ID","ShipAddress":"8858 Heath Plaza","ShipName":"Ratke-Mayert","OrderDate":"2/4/2016","TotalPayment":"$29605.88","Status":4,"Type":2},{"OrderID":"55154-0884","ShipCountry":"RU","ShipAddress":"130 Bonner Court","ShipName":"Schoen-Farrell","OrderDate":"8/15/2017","TotalPayment":"$844867.03","Status":2,"Type":3},{"OrderID":"37000-148","ShipCountry":"RU","ShipAddress":"004 Bunting Drive","ShipName":"Denesik and Sons","OrderDate":"4/5/2016","TotalPayment":"$1038868.30","Status":2,"Type":2},{"OrderID":"68180-196","ShipCountry":"PH","ShipAddress":"17407 Gateway Alley","ShipName":"Ziemann-Runte","OrderDate":"9/16/2016","TotalPayment":"$57899.32","Status":1,"Type":2},{"OrderID":"0615-7641","ShipCountry":"ID","ShipAddress":"647 Mosinee Plaza","ShipName":"Metz LLC","OrderDate":"6/9/2016","TotalPayment":"$819345.62","Status":2,"Type":2},{"OrderID":"24987-435","ShipCountry":"GR","ShipAddress":"5830 Express Center","ShipName":"Osinski Group","OrderDate":"6/14/2017","TotalPayment":"$544925.79","Status":3,"Type":2},{"OrderID":"41190-203","ShipCountry":"PL","ShipAddress":"9476 East Center","ShipName":"Wehner LLC","OrderDate":"10/18/2017","TotalPayment":"$32903.01","Status":5,"Type":1},{"OrderID":"65862-287","ShipCountry":"MX","ShipAddress":"19 Pine View Terrace","ShipName":"Effertz, Jast and Johnston","OrderDate":"9/30/2016","TotalPayment":"$803140.47","Status":2,"Type":3},{"OrderID":"59564-251","ShipCountry":"EE","ShipAddress":"5164 Chinook Junction","ShipName":"Nitzsche-Runolfsdottir","OrderDate":"10/20/2016","TotalPayment":"$541197.47","Status":2,"Type":3},{"OrderID":"65841-763","ShipCountry":"BR","ShipAddress":"8730 Schurz Center","ShipName":"Hudson, Turner and Hartmann","OrderDate":"3/9/2017","TotalPayment":"$926490.96","Status":5,"Type":2},{"OrderID":"65044-1791","ShipCountry":"MU","ShipAddress":"6 Hanson Drive","ShipName":"Grimes Inc","OrderDate":"1/1/2016","TotalPayment":"$28888.89","Status":6,"Type":3},{"OrderID":"0409-3374","ShipCountry":"CZ","ShipAddress":"8797 Blackbird Park","ShipName":"Cremin Group","OrderDate":"10/2/2016","TotalPayment":"$781105.83","Status":6,"Type":2},{"OrderID":"67296-0673","ShipCountry":"CN","ShipAddress":"03 Emmet Point","ShipName":"Hackett Inc","OrderDate":"4/21/2017","TotalPayment":"$959853.95","Status":3,"Type":1},{"OrderID":"68703-080","ShipCountry":"MZ","ShipAddress":"22018 Randy Terrace","ShipName":"Buckridge-Keebler","OrderDate":"2/26/2016","TotalPayment":"$826774.96","Status":1,"Type":1},{"OrderID":"49035-732","ShipCountry":"CN","ShipAddress":"2817 Spenser Hill","ShipName":"Mante-Yundt","OrderDate":"5/8/2017","TotalPayment":"$888048.45","Status":6,"Type":3}]},\n{"RecordID":35,"FirstName":"Henderson","LastName":"L\'Episcopio","Company":"Meevee","Email":"hlepiscopioy@weebly.com","Phone":"973-729-6584","Status":6,"Type":2,"Orders":[{"OrderID":"43772-0043","ShipCountry":"PL","ShipAddress":"209 Harper Lane","ShipName":"Pouros-Quigley","OrderDate":"6/20/2016","TotalPayment":"$32152.57","Status":3,"Type":2},{"OrderID":"14783-018","ShipCountry":"SD","ShipAddress":"42 Meadow Ridge Crossing","ShipName":"Rempel, Fritsch and Wiegand","OrderDate":"9/30/2016","TotalPayment":"$763902.07","Status":5,"Type":3},{"OrderID":"33342-058","ShipCountry":"BR","ShipAddress":"4047 Almo Terrace","ShipName":"Kemmer-Dach","OrderDate":"3/29/2016","TotalPayment":"$113475.23","Status":2,"Type":1},{"OrderID":"0406-0360","ShipCountry":"ZM","ShipAddress":"0 Charing Cross Alley","ShipName":"Hagenes-Hand","OrderDate":"3/25/2017","TotalPayment":"$819581.17","Status":2,"Type":2},{"OrderID":"52125-526","ShipCountry":"ID","ShipAddress":"31038 Mcguire Point","ShipName":"Altenwerth-Kemmer","OrderDate":"10/7/2016","TotalPayment":"$685401.03","Status":3,"Type":1},{"OrderID":"68828-127","ShipCountry":"UA","ShipAddress":"376 Ridge Oak Place","ShipName":"Douglas LLC","OrderDate":"8/21/2016","TotalPayment":"$806224.79","Status":6,"Type":3},{"OrderID":"13537-068","ShipCountry":"FI","ShipAddress":"29035 Vidon Terrace","ShipName":"Smitham, Macejkovic and Kohler","OrderDate":"10/1/2017","TotalPayment":"$385796.57","Status":4,"Type":3},{"OrderID":"52584-810","ShipCountry":"ID","ShipAddress":"69089 Morningstar Court","ShipName":"Cormier and Sons","OrderDate":"9/16/2016","TotalPayment":"$52052.87","Status":3,"Type":2},{"OrderID":"37000-402","ShipCountry":"CN","ShipAddress":"61 Brickson Park Street","ShipName":"Cummerata, Hoeger and Lynch","OrderDate":"3/25/2017","TotalPayment":"$185200.96","Status":2,"Type":3},{"OrderID":"61995-0758","ShipCountry":"RU","ShipAddress":"6640 Di Loreto Pass","ShipName":"Hegmann, Wilkinson and Barrows","OrderDate":"5/6/2017","TotalPayment":"$1004277.88","Status":6,"Type":2},{"OrderID":"11523-0934","ShipCountry":"RU","ShipAddress":"3850 Delaware Pass","ShipName":"Senger-Wuckert","OrderDate":"1/1/2017","TotalPayment":"$306635.63","Status":6,"Type":2},{"OrderID":"58118-9895","ShipCountry":"SE","ShipAddress":"15 Clove Drive","ShipName":"Abshire Inc","OrderDate":"2/24/2016","TotalPayment":"$486383.83","Status":5,"Type":1},{"OrderID":"63941-299","ShipCountry":"MK","ShipAddress":"25 Jenifer Plaza","ShipName":"Auer Group","OrderDate":"3/13/2017","TotalPayment":"$1059189.62","Status":1,"Type":1},{"OrderID":"48951-8029","ShipCountry":"CN","ShipAddress":"0391 Everett Lane","ShipName":"Ortiz, Dare and Kilback","OrderDate":"2/11/2016","TotalPayment":"$893831.46","Status":1,"Type":2},{"OrderID":"65785-160","ShipCountry":"CN","ShipAddress":"60696 Marcy Plaza","ShipName":"Littel, Abernathy and Welch","OrderDate":"12/12/2017","TotalPayment":"$1079219.05","Status":1,"Type":2},{"OrderID":"0093-5118","ShipCountry":"ID","ShipAddress":"4302 Green Ridge Crossing","ShipName":"Torp Group","OrderDate":"9/30/2017","TotalPayment":"$260832.45","Status":6,"Type":3},{"OrderID":"10158-001","ShipCountry":"KE","ShipAddress":"3287 Talmadge Terrace","ShipName":"Gleason-Wilkinson","OrderDate":"8/17/2016","TotalPayment":"$139911.09","Status":5,"Type":1},{"OrderID":"0135-0522","ShipCountry":"ID","ShipAddress":"3 Sullivan Street","ShipName":"Watsica-Tremblay","OrderDate":"5/6/2016","TotalPayment":"$682951.51","Status":5,"Type":3},{"OrderID":"68001-115","ShipCountry":"CZ","ShipAddress":"3 Surrey Point","ShipName":"Lowe-Anderson","OrderDate":"6/26/2017","TotalPayment":"$688893.09","Status":1,"Type":3}]},\n{"RecordID":36,"FirstName":"Barclay","LastName":"Fern","Company":"Demizz","Email":"bfernz@cloudflare.com","Phone":"692-973-4785","Status":6,"Type":3,"Orders":[{"OrderID":"55154-1399","ShipCountry":"RU","ShipAddress":"67 Lillian Pass","ShipName":"Nikolaus-McGlynn","OrderDate":"11/15/2016","TotalPayment":"$752538.83","Status":3,"Type":1},{"OrderID":"42571-103","ShipCountry":"CN","ShipAddress":"35343 Veith Crossing","ShipName":"Wiegand, Abbott and Green","OrderDate":"12/1/2017","TotalPayment":"$1089143.16","Status":5,"Type":2},{"OrderID":"51991-631","ShipCountry":"UA","ShipAddress":"42 Division Road","ShipName":"VonRueden-Harris","OrderDate":"2/13/2017","TotalPayment":"$677628.11","Status":6,"Type":1},{"OrderID":"16714-583","ShipCountry":"GR","ShipAddress":"22 American Ash Park","ShipName":"Gerlach-Bayer","OrderDate":"12/22/2016","TotalPayment":"$302661.75","Status":3,"Type":1},{"OrderID":"49351-018","ShipCountry":"PL","ShipAddress":"52767 Jenifer Parkway","ShipName":"Swift and Sons","OrderDate":"6/25/2016","TotalPayment":"$1124477.50","Status":5,"Type":3},{"OrderID":"54868-2223","ShipCountry":"BR","ShipAddress":"198 Scoville Road","ShipName":"Funk LLC","OrderDate":"11/11/2017","TotalPayment":"$1022352.31","Status":6,"Type":2},{"OrderID":"68180-182","ShipCountry":"ID","ShipAddress":"25765 Northland Alley","ShipName":"McGlynn LLC","OrderDate":"10/14/2017","TotalPayment":"$928775.03","Status":5,"Type":3},{"OrderID":"49035-091","ShipCountry":"ID","ShipAddress":"89 Mitchell Center","ShipName":"Bode, Kshlerin and Mante","OrderDate":"8/30/2016","TotalPayment":"$61556.61","Status":5,"Type":2},{"OrderID":"55045-3602","ShipCountry":"CN","ShipAddress":"211 Dottie Junction","ShipName":"Leffler, Bergnaum and D\'Amore","OrderDate":"1/18/2016","TotalPayment":"$75868.02","Status":2,"Type":2},{"OrderID":"61314-628","ShipCountry":"UA","ShipAddress":"19 Nobel Junction","ShipName":"Rodriguez-Schaefer","OrderDate":"1/8/2016","TotalPayment":"$1102042.50","Status":3,"Type":1},{"OrderID":"10742-8456","ShipCountry":"RU","ShipAddress":"2 Corben Street","ShipName":"Stamm, Stoltenberg and Schuppe","OrderDate":"12/16/2017","TotalPayment":"$632144.68","Status":4,"Type":1},{"OrderID":"40046-0043","ShipCountry":"UY","ShipAddress":"06294 Pierstorff Place","ShipName":"Hudson, Grant and Huels","OrderDate":"3/15/2017","TotalPayment":"$982299.72","Status":3,"Type":3},{"OrderID":"55711-069","ShipCountry":"RU","ShipAddress":"55 Gateway Park","ShipName":"Rowe-Miller","OrderDate":"5/8/2017","TotalPayment":"$683301.38","Status":4,"Type":3},{"OrderID":"36987-2299","ShipCountry":"JP","ShipAddress":"756 Springs Drive","ShipName":"Braun, Gaylord and Aufderhar","OrderDate":"4/17/2017","TotalPayment":"$742007.82","Status":1,"Type":2},{"OrderID":"33992-2360","ShipCountry":"CN","ShipAddress":"39 Fieldstone Junction","ShipName":"Torphy-Harber","OrderDate":"4/9/2016","TotalPayment":"$1105142.07","Status":6,"Type":1},{"OrderID":"65977-5033","ShipCountry":"MG","ShipAddress":"2 Raven Park","ShipName":"Balistreri, Rippin and Quigley","OrderDate":"11/16/2017","TotalPayment":"$153891.34","Status":5,"Type":3}]},\n{"RecordID":37,"FirstName":"Samuele","LastName":"Ewdale","Company":"Wordpedia","Email":"sewdale10@plala.or.jp","Phone":"323-311-3835","Status":1,"Type":2,"Orders":[{"OrderID":"43857-0288","ShipCountry":"CN","ShipAddress":"355 Dixon Pass","ShipName":"Howell, Koss and Dietrich","OrderDate":"11/12/2016","TotalPayment":"$969261.35","Status":6,"Type":3},{"OrderID":"55390-163","ShipCountry":"IR","ShipAddress":"492 Bluestem Place","ShipName":"Emmerich and Sons","OrderDate":"8/13/2017","TotalPayment":"$182758.14","Status":1,"Type":2},{"OrderID":"0087-6071","ShipCountry":"US","ShipAddress":"76 La Follette Circle","ShipName":"Willms-Bruen","OrderDate":"11/22/2017","TotalPayment":"$864683.60","Status":5,"Type":2},{"OrderID":"21695-044","ShipCountry":"CA","ShipAddress":"3955 Colorado Plaza","ShipName":"Huels LLC","OrderDate":"11/17/2017","TotalPayment":"$136107.89","Status":6,"Type":3},{"OrderID":"0378-3632","ShipCountry":"GR","ShipAddress":"69784 Golf View Park","ShipName":"Medhurst LLC","OrderDate":"1/31/2017","TotalPayment":"$321838.99","Status":6,"Type":3},{"OrderID":"68001-182","ShipCountry":"CN","ShipAddress":"16 Lakewood Gardens Lane","ShipName":"Rippin, Bruen and Gerhold","OrderDate":"6/24/2017","TotalPayment":"$211092.23","Status":6,"Type":3},{"OrderID":"46123-014","ShipCountry":"KZ","ShipAddress":"84262 Kensington Street","ShipName":"Rippin-Gulgowski","OrderDate":"8/13/2016","TotalPayment":"$766848.55","Status":6,"Type":1},{"OrderID":"52125-012","ShipCountry":"BR","ShipAddress":"596 Rowland Place","ShipName":"Streich-Mraz","OrderDate":"12/21/2016","TotalPayment":"$702098.92","Status":3,"Type":3},{"OrderID":"0054-0544","ShipCountry":"CZ","ShipAddress":"64 Dayton Way","ShipName":"Krajcik-Waelchi","OrderDate":"12/28/2016","TotalPayment":"$726630.53","Status":4,"Type":1},{"OrderID":"64578-0094","ShipCountry":"ID","ShipAddress":"95821 Debs Center","ShipName":"Macejkovic-Sawayn","OrderDate":"10/25/2016","TotalPayment":"$1199043.82","Status":6,"Type":1}]},\n{"RecordID":38,"FirstName":"Melonie","LastName":"McCarney","Company":"Shufflebeat","Email":"mmccarney11@edublogs.org","Phone":"631-770-4502","Status":1,"Type":2,"Orders":[{"OrderID":"67544-697","ShipCountry":"TZ","ShipAddress":"5115 Prentice Hill","ShipName":"Koelpin-Dicki","OrderDate":"9/15/2017","TotalPayment":"$398654.43","Status":2,"Type":1},{"OrderID":"59676-101","ShipCountry":"PL","ShipAddress":"76 Tennessee Way","ShipName":"Muller, Torphy and Stokes","OrderDate":"10/27/2016","TotalPayment":"$1099193.30","Status":5,"Type":2},{"OrderID":"68788-9163","ShipCountry":"VN","ShipAddress":"9 Schurz Road","ShipName":"O\'Conner-Hagenes","OrderDate":"2/22/2017","TotalPayment":"$624422.78","Status":1,"Type":1},{"OrderID":"50988-232","ShipCountry":"CK","ShipAddress":"48079 Kingsford Park","ShipName":"Beatty-Adams","OrderDate":"10/21/2017","TotalPayment":"$386294.23","Status":6,"Type":3},{"OrderID":"52125-707","ShipCountry":"CN","ShipAddress":"8 Dawn Crossing","ShipName":"Homenick-Wintheiser","OrderDate":"3/27/2016","TotalPayment":"$995026.46","Status":6,"Type":2}]},\n{"RecordID":39,"FirstName":"Kissie","LastName":"Evelyn","Company":"Twiyo","Email":"kevelyn12@canalblog.com","Phone":"311-553-7561","Status":5,"Type":2,"Orders":[{"OrderID":"55289-963","ShipCountry":"CN","ShipAddress":"031 Bashford Way","ShipName":"Mertz, Kozey and Kling","OrderDate":"9/17/2017","TotalPayment":"$475627.03","Status":5,"Type":2},{"OrderID":"64679-105","ShipCountry":"CN","ShipAddress":"27612 Briar Crest Center","ShipName":"Schroeder-Wisozk","OrderDate":"2/11/2016","TotalPayment":"$280942.11","Status":5,"Type":2},{"OrderID":"61715-122","ShipCountry":"ID","ShipAddress":"4 Banding Center","ShipName":"Wolf Group","OrderDate":"4/2/2016","TotalPayment":"$390933.48","Status":2,"Type":1},{"OrderID":"63739-801","ShipCountry":"CN","ShipAddress":"95077 Redwing Alley","ShipName":"Feeney, Emard and Bergnaum","OrderDate":"8/22/2017","TotalPayment":"$968871.16","Status":5,"Type":1},{"OrderID":"59779-806","ShipCountry":"RU","ShipAddress":"943 Garrison Crossing","ShipName":"Hagenes Inc","OrderDate":"3/15/2016","TotalPayment":"$165356.77","Status":1,"Type":1},{"OrderID":"16590-286","ShipCountry":"RU","ShipAddress":"5 Porter Terrace","ShipName":"Abshire-Morar","OrderDate":"7/31/2016","TotalPayment":"$1005759.58","Status":4,"Type":1}]},\n{"RecordID":40,"FirstName":"Margret","LastName":"Skarr","Company":"Blognation","Email":"mskarr13@dagondesign.com","Phone":"942-648-8669","Status":3,"Type":1,"Orders":[{"OrderID":"49035-678","ShipCountry":"RU","ShipAddress":"2 Cardinal Park","ShipName":"Bergnaum-Tromp","OrderDate":"7/3/2016","TotalPayment":"$596489.01","Status":3,"Type":3},{"OrderID":"44523-609","ShipCountry":"FR","ShipAddress":"16 Scott Way","ShipName":"Dach-Jones","OrderDate":"1/12/2017","TotalPayment":"$1111810.58","Status":2,"Type":1},{"OrderID":"0517-0101","ShipCountry":"FR","ShipAddress":"2633 Anzinger Court","ShipName":"Moore-Wisozk","OrderDate":"11/9/2016","TotalPayment":"$886320.75","Status":5,"Type":2},{"OrderID":"63629-4355","ShipCountry":"CN","ShipAddress":"714 Oakridge Park","ShipName":"Hammes-Howe","OrderDate":"1/28/2016","TotalPayment":"$475892.16","Status":6,"Type":1},{"OrderID":"54866-003","ShipCountry":"ID","ShipAddress":"5067 Gerald Park","ShipName":"Emard Inc","OrderDate":"5/6/2016","TotalPayment":"$1156916.28","Status":1,"Type":2},{"OrderID":"43353-614","ShipCountry":"MT","ShipAddress":"099 Manufacturers Park","ShipName":"Gutmann, Jaskolski and Terry","OrderDate":"11/23/2017","TotalPayment":"$679301.95","Status":6,"Type":3},{"OrderID":"54569-1218","ShipCountry":"CZ","ShipAddress":"4256 Blaine Avenue","ShipName":"Cremin, Hessel and Gusikowski","OrderDate":"8/28/2016","TotalPayment":"$771630.39","Status":4,"Type":1},{"OrderID":"21695-737","ShipCountry":"PH","ShipAddress":"75739 Ramsey Alley","ShipName":"Larkin-Farrell","OrderDate":"6/13/2017","TotalPayment":"$571486.78","Status":1,"Type":3},{"OrderID":"51079-588","ShipCountry":"CZ","ShipAddress":"2771 Portage Avenue","ShipName":"Corkery Group","OrderDate":"8/27/2016","TotalPayment":"$220458.70","Status":2,"Type":1},{"OrderID":"68210-1902","ShipCountry":"CO","ShipAddress":"5998 Hoepker Hill","ShipName":"O\'Connell and Sons","OrderDate":"11/8/2017","TotalPayment":"$1010159.51","Status":3,"Type":1},{"OrderID":"62914-1000","ShipCountry":"DK","ShipAddress":"1 Barby Crossing","ShipName":"Fahey, Corwin and Shields","OrderDate":"5/26/2016","TotalPayment":"$556641.10","Status":4,"Type":2},{"OrderID":"63667-976","ShipCountry":"KZ","ShipAddress":"247 Hagan Lane","ShipName":"Kertzmann Group","OrderDate":"11/28/2017","TotalPayment":"$239193.74","Status":5,"Type":3},{"OrderID":"0378-3530","ShipCountry":"ID","ShipAddress":"984 Canary Crossing","ShipName":"Cormier Group","OrderDate":"4/22/2017","TotalPayment":"$707338.78","Status":4,"Type":2}]},\n{"RecordID":41,"FirstName":"Walden","LastName":"Chese","Company":"Vimbo","Email":"wchese14@technorati.com","Phone":"164-917-9924","Status":3,"Type":3,"Orders":[{"OrderID":"50228-107","ShipCountry":"CN","ShipAddress":"9922 Corscot Park","ShipName":"Pfeffer and Sons","OrderDate":"12/2/2017","TotalPayment":"$751619.40","Status":4,"Type":3},{"OrderID":"55154-7456","ShipCountry":"CN","ShipAddress":"8 Stone Corner Alley","ShipName":"Kiehn-Turner","OrderDate":"3/17/2017","TotalPayment":"$258007.35","Status":6,"Type":3},{"OrderID":"0093-3193","ShipCountry":"CN","ShipAddress":"873 High Crossing Crossing","ShipName":"Schmidt, Gusikowski and Volkman","OrderDate":"1/8/2016","TotalPayment":"$798690.80","Status":1,"Type":3},{"OrderID":"49288-0468","ShipCountry":"CN","ShipAddress":"363 Karstens Hill","ShipName":"Kuphal, Robel and Hane","OrderDate":"4/13/2016","TotalPayment":"$338272.63","Status":5,"Type":3},{"OrderID":"0904-5050","ShipCountry":"CN","ShipAddress":"9803 Green Place","ShipName":"Spencer Group","OrderDate":"5/29/2017","TotalPayment":"$860121.94","Status":4,"Type":3},{"OrderID":"0113-0955","ShipCountry":"SA","ShipAddress":"42 Cambridge Court","ShipName":"Ratke, Gaylord and Kuhlman","OrderDate":"11/26/2017","TotalPayment":"$642703.71","Status":4,"Type":1},{"OrderID":"43269-684","ShipCountry":"ID","ShipAddress":"0 Vidon Center","ShipName":"Boyle, Boehm and Nienow","OrderDate":"3/11/2017","TotalPayment":"$170585.44","Status":3,"Type":3},{"OrderID":"48951-1116","ShipCountry":"JP","ShipAddress":"34966 Blue Bill Park Way","ShipName":"Ziemann-Davis","OrderDate":"1/26/2016","TotalPayment":"$246611.81","Status":5,"Type":3},{"OrderID":"67226-2820","ShipCountry":"CN","ShipAddress":"9481 Bunker Hill Junction","ShipName":"Becker-Cruickshank","OrderDate":"7/13/2016","TotalPayment":"$250093.33","Status":2,"Type":2}]},\n{"RecordID":42,"FirstName":"Wilfrid","LastName":"Gameson","Company":"Mycat","Email":"wgameson15@trellian.com","Phone":"928-458-7479","Status":1,"Type":1,"Orders":[{"OrderID":"57520-0615","ShipCountry":"CO","ShipAddress":"52 Erie Avenue","ShipName":"Rice LLC","OrderDate":"11/18/2017","TotalPayment":"$719018.05","Status":6,"Type":2},{"OrderID":"37808-970","ShipCountry":"VN","ShipAddress":"18 Sycamore Junction","ShipName":"Batz Inc","OrderDate":"12/18/2017","TotalPayment":"$262747.46","Status":5,"Type":3},{"OrderID":"64720-141","ShipCountry":"FR","ShipAddress":"45512 Westerfield Circle","ShipName":"Sauer Inc","OrderDate":"10/13/2017","TotalPayment":"$841888.13","Status":1,"Type":2},{"OrderID":"10812-913","ShipCountry":"RU","ShipAddress":"29 Nova Court","ShipName":"Beier and Sons","OrderDate":"8/14/2016","TotalPayment":"$846404.28","Status":5,"Type":2},{"OrderID":"42707-1001","ShipCountry":"BD","ShipAddress":"37525 Roth Avenue","ShipName":"Carroll Inc","OrderDate":"7/28/2017","TotalPayment":"$445332.68","Status":2,"Type":2},{"OrderID":"54868-3267","ShipCountry":"BH","ShipAddress":"16 Barnett Alley","ShipName":"Torp Group","OrderDate":"5/16/2016","TotalPayment":"$778074.64","Status":2,"Type":3},{"OrderID":"55150-116","ShipCountry":"RU","ShipAddress":"34 Mendota Drive","ShipName":"Kshlerin, Koch and Friesen","OrderDate":"8/9/2017","TotalPayment":"$804843.31","Status":3,"Type":3},{"OrderID":"49288-0768","ShipCountry":"BR","ShipAddress":"796 Superior Parkway","ShipName":"Gibson Group","OrderDate":"12/8/2016","TotalPayment":"$872624.76","Status":4,"Type":3},{"OrderID":"24286-1557","ShipCountry":"CN","ShipAddress":"98108 Kim Street","ShipName":"Heaney, Cronin and Witting","OrderDate":"11/20/2017","TotalPayment":"$141214.07","Status":2,"Type":2},{"OrderID":"35356-890","ShipCountry":"ID","ShipAddress":"56 Lien Hill","ShipName":"Mitchell Group","OrderDate":"3/9/2017","TotalPayment":"$1077387.51","Status":5,"Type":2}]},\n{"RecordID":43,"FirstName":"Lenora","LastName":"Tremain","Company":"Talane","Email":"ltremain16@multiply.com","Phone":"661-344-3222","Status":2,"Type":1,"Orders":[{"OrderID":"0781-5181","ShipCountry":"ID","ShipAddress":"24 Warner Way","ShipName":"Stark, Langosh and Kerluke","OrderDate":"11/26/2017","TotalPayment":"$457333.38","Status":2,"Type":1},{"OrderID":"36987-1237","ShipCountry":"TH","ShipAddress":"9893 Fairfield Place","ShipName":"Connelly and Sons","OrderDate":"1/9/2016","TotalPayment":"$521519.72","Status":3,"Type":3},{"OrderID":"65841-755","ShipCountry":"ZA","ShipAddress":"1907 Shasta Pass","ShipName":"Stehr-Boyle","OrderDate":"9/7/2016","TotalPayment":"$266053.75","Status":1,"Type":2},{"OrderID":"0363-0462","ShipCountry":"MA","ShipAddress":"0 Spohn Junction","ShipName":"Ullrich, Mante and Willms","OrderDate":"12/21/2016","TotalPayment":"$330258.63","Status":6,"Type":2},{"OrderID":"0363-0871","ShipCountry":"GT","ShipAddress":"5 Schurz Lane","ShipName":"Erdman-Wunsch","OrderDate":"7/14/2017","TotalPayment":"$239149.26","Status":3,"Type":3},{"OrderID":"10122-510","ShipCountry":"ID","ShipAddress":"97119 Springview Terrace","ShipName":"Dach, Daugherty and Howell","OrderDate":"3/6/2016","TotalPayment":"$119613.27","Status":3,"Type":3},{"OrderID":"42377-001","ShipCountry":"RU","ShipAddress":"887 Chinook Avenue","ShipName":"Franecki, Pagac and Schmidt","OrderDate":"3/25/2016","TotalPayment":"$120602.49","Status":5,"Type":1},{"OrderID":"10210-0008","ShipCountry":"PH","ShipAddress":"598 Messerschmidt Way","ShipName":"Heathcote-Haley","OrderDate":"11/10/2016","TotalPayment":"$341362.85","Status":6,"Type":1},{"OrderID":"62864-902","ShipCountry":"PE","ShipAddress":"329 Sunnyside Parkway","ShipName":"Kreiger, Grant and Stark","OrderDate":"7/6/2016","TotalPayment":"$906952.88","Status":6,"Type":2},{"OrderID":"58668-2541","ShipCountry":"GR","ShipAddress":"10193 Rigney Avenue","ShipName":"Fisher Group","OrderDate":"11/21/2017","TotalPayment":"$174111.01","Status":3,"Type":1},{"OrderID":"0268-7000","ShipCountry":"JM","ShipAddress":"7219 Ludington Court","ShipName":"Cassin-Dickinson","OrderDate":"10/12/2017","TotalPayment":"$809990.29","Status":3,"Type":3},{"OrderID":"41268-041","ShipCountry":"ID","ShipAddress":"7573 Kedzie Pass","ShipName":"Brakus-Raynor","OrderDate":"4/28/2016","TotalPayment":"$188810.10","Status":1,"Type":2},{"OrderID":"36987-2883","ShipCountry":"CN","ShipAddress":"3354 Dwight Trail","ShipName":"Kling-Gerhold","OrderDate":"4/14/2017","TotalPayment":"$456085.21","Status":1,"Type":2},{"OrderID":"52125-748","ShipCountry":"PL","ShipAddress":"1 Alpine Street","ShipName":"Thiel-Hamill","OrderDate":"6/20/2017","TotalPayment":"$142366.65","Status":3,"Type":1},{"OrderID":"68258-3012","ShipCountry":"BF","ShipAddress":"55 Cordelia Park","ShipName":"Feest, Pollich and Fritsch","OrderDate":"1/30/2017","TotalPayment":"$86471.29","Status":3,"Type":3},{"OrderID":"63354-316","ShipCountry":"CN","ShipAddress":"15 Valley Edge Center","ShipName":"Williamson Group","OrderDate":"4/10/2017","TotalPayment":"$925246.86","Status":3,"Type":1},{"OrderID":"61722-060","ShipCountry":"MX","ShipAddress":"2 American Ash Hill","ShipName":"Frami Inc","OrderDate":"4/2/2016","TotalPayment":"$804470.91","Status":4,"Type":3}]},\n{"RecordID":44,"FirstName":"Earl","LastName":"Thoma","Company":"Wikido","Email":"ethoma17@google.com.hk","Phone":"637-246-5413","Status":6,"Type":3,"Orders":[{"OrderID":"21839-011","ShipCountry":"CN","ShipAddress":"6186 Troy Road","ShipName":"Donnelly and Sons","OrderDate":"8/25/2017","TotalPayment":"$424860.70","Status":3,"Type":3},{"OrderID":"11084-534","ShipCountry":"VN","ShipAddress":"92874 Killdeer Terrace","ShipName":"Hammes, Price and Murazik","OrderDate":"8/25/2017","TotalPayment":"$876134.76","Status":5,"Type":1},{"OrderID":"58411-194","ShipCountry":"AR","ShipAddress":"4225 Hoard Junction","ShipName":"Treutel, Littel and Buckridge","OrderDate":"12/25/2016","TotalPayment":"$49424.17","Status":6,"Type":1},{"OrderID":"55316-177","ShipCountry":"CN","ShipAddress":"478 Fair Oaks Circle","ShipName":"Dickens, Ruecker and Fay","OrderDate":"6/30/2017","TotalPayment":"$1074464.54","Status":5,"Type":1},{"OrderID":"44924-111","ShipCountry":"CN","ShipAddress":"58505 Toban Avenue","ShipName":"Robel and Sons","OrderDate":"10/19/2016","TotalPayment":"$401377.25","Status":2,"Type":1},{"OrderID":"65044-6518","ShipCountry":"ID","ShipAddress":"6371 Dorton Terrace","ShipName":"Donnelly-Kuhic","OrderDate":"8/26/2016","TotalPayment":"$819994.95","Status":4,"Type":3}]},\n{"RecordID":45,"FirstName":"Paola","LastName":"Gibling","Company":"DabZ","Email":"pgibling18@spotify.com","Phone":"557-392-7467","Status":6,"Type":3,"Orders":[{"OrderID":"36987-2564","ShipCountry":"CN","ShipAddress":"5001 Harper Street","ShipName":"Keeling Group","OrderDate":"7/6/2017","TotalPayment":"$206368.10","Status":5,"Type":1},{"OrderID":"52125-169","ShipCountry":"EE","ShipAddress":"4 Burrows Street","ShipName":"Huels LLC","OrderDate":"1/11/2016","TotalPayment":"$720624.25","Status":6,"Type":2},{"OrderID":"49281-395","ShipCountry":"CN","ShipAddress":"4 Armistice Circle","ShipName":"Borer-Berge","OrderDate":"2/27/2016","TotalPayment":"$424993.82","Status":4,"Type":2},{"OrderID":"67253-940","ShipCountry":"JP","ShipAddress":"58351 Farragut Hill","ShipName":"Bernhard, Bode and Mayert","OrderDate":"11/10/2017","TotalPayment":"$337747.37","Status":3,"Type":2},{"OrderID":"49999-845","ShipCountry":"RU","ShipAddress":"8 Montana Way","ShipName":"Wolf, Denesik and Waelchi","OrderDate":"6/6/2017","TotalPayment":"$803617.91","Status":5,"Type":1},{"OrderID":"55714-4447","ShipCountry":"CN","ShipAddress":"36 Fuller Crossing","ShipName":"Tillman-Brakus","OrderDate":"7/15/2016","TotalPayment":"$1124857.80","Status":3,"Type":3},{"OrderID":"39822-1001","ShipCountry":"PH","ShipAddress":"85 Moose Way","ShipName":"Orn LLC","OrderDate":"7/1/2016","TotalPayment":"$699686.49","Status":5,"Type":1},{"OrderID":"36987-1390","ShipCountry":"ME","ShipAddress":"61489 Bellgrove Trail","ShipName":"Becker LLC","OrderDate":"10/20/2016","TotalPayment":"$663753.44","Status":1,"Type":2},{"OrderID":"17575-005","ShipCountry":"RU","ShipAddress":"779 Jay Crossing","ShipName":"Heathcote-Homenick","OrderDate":"9/8/2017","TotalPayment":"$438328.73","Status":3,"Type":3},{"OrderID":"42508-255","ShipCountry":"PH","ShipAddress":"5 Macpherson Court","ShipName":"Medhurst Group","OrderDate":"4/3/2016","TotalPayment":"$826521.68","Status":3,"Type":2},{"OrderID":"55312-550","ShipCountry":"IQ","ShipAddress":"8635 Knutson Pass","ShipName":"Erdman and Sons","OrderDate":"12/29/2017","TotalPayment":"$165123.17","Status":5,"Type":1},{"OrderID":"51346-235","ShipCountry":"ID","ShipAddress":"23141 7th Circle","ShipName":"Rolfson LLC","OrderDate":"6/23/2017","TotalPayment":"$132620.49","Status":4,"Type":2},{"OrderID":"30142-425","ShipCountry":"TH","ShipAddress":"917 Comanche Lane","ShipName":"Lakin and Sons","OrderDate":"3/16/2017","TotalPayment":"$99883.02","Status":5,"Type":2},{"OrderID":"51991-526","ShipCountry":"BR","ShipAddress":"70 La Follette Point","ShipName":"Bartell LLC","OrderDate":"10/25/2017","TotalPayment":"$111899.61","Status":3,"Type":1},{"OrderID":"37000-609","ShipCountry":"ID","ShipAddress":"3052 Darwin Crossing","ShipName":"Thiel and Sons","OrderDate":"1/21/2016","TotalPayment":"$539670.97","Status":1,"Type":1}]},\n{"RecordID":46,"FirstName":"Ninetta","LastName":"Havvock","Company":"Jabberbean","Email":"nhavvock19@e-recht24.de","Phone":"526-460-3680","Status":5,"Type":2,"Orders":[{"OrderID":"33261-144","ShipCountry":"CN","ShipAddress":"78213 Fuller Park","ShipName":"Sanford-Kutch","OrderDate":"4/11/2016","TotalPayment":"$409098.57","Status":3,"Type":3},{"OrderID":"25225-020","ShipCountry":"BR","ShipAddress":"93795 Bonner Court","ShipName":"Davis-Conroy","OrderDate":"6/27/2016","TotalPayment":"$891701.23","Status":4,"Type":3},{"OrderID":"0378-1054","ShipCountry":"TH","ShipAddress":"2821 Buhler Crossing","ShipName":"Crooks LLC","OrderDate":"1/11/2017","TotalPayment":"$247783.70","Status":6,"Type":1},{"OrderID":"58633-269","ShipCountry":"CN","ShipAddress":"8373 Elmside Crossing","ShipName":"Gorczany LLC","OrderDate":"12/10/2016","TotalPayment":"$812871.73","Status":3,"Type":2},{"OrderID":"10544-079","ShipCountry":"ID","ShipAddress":"805 Bobwhite Way","ShipName":"Franecki-Hills","OrderDate":"10/13/2016","TotalPayment":"$36221.83","Status":5,"Type":1},{"OrderID":"0268-1191","ShipCountry":"MG","ShipAddress":"86 Quincy Plaza","ShipName":"Considine-Jenkins","OrderDate":"5/7/2017","TotalPayment":"$109307.23","Status":6,"Type":1},{"OrderID":"42806-014","ShipCountry":"SE","ShipAddress":"8658 Schurz Parkway","ShipName":"Wintheiser and Sons","OrderDate":"8/15/2016","TotalPayment":"$1019123.78","Status":1,"Type":2},{"OrderID":"49817-0049","ShipCountry":"CN","ShipAddress":"720 Union Terrace","ShipName":"Nikolaus-Shields","OrderDate":"6/3/2016","TotalPayment":"$547806.95","Status":6,"Type":2},{"OrderID":"63304-736","ShipCountry":"BR","ShipAddress":"397 Monterey Parkway","ShipName":"Abshire-Spinka","OrderDate":"6/10/2016","TotalPayment":"$753996.77","Status":2,"Type":1},{"OrderID":"68927-0819","ShipCountry":"GR","ShipAddress":"89155 Farmco Circle","ShipName":"Trantow Group","OrderDate":"2/2/2016","TotalPayment":"$476306.31","Status":2,"Type":1},{"OrderID":"64495-2366","ShipCountry":"AR","ShipAddress":"046 Arizona Lane","ShipName":"Emmerich, Miller and Wuckert","OrderDate":"4/30/2017","TotalPayment":"$408891.07","Status":1,"Type":3},{"OrderID":"56104-008","ShipCountry":"CN","ShipAddress":"9 Sommers Road","ShipName":"Douglas, Walter and Barton","OrderDate":"9/27/2017","TotalPayment":"$699330.78","Status":4,"Type":2},{"OrderID":"54838-115","ShipCountry":"ID","ShipAddress":"4039 Washington Way","ShipName":"Jenkins LLC","OrderDate":"12/5/2017","TotalPayment":"$13689.52","Status":2,"Type":2},{"OrderID":"13537-429","ShipCountry":"US","ShipAddress":"27 Loftsgordon Pass","ShipName":"Hirthe, Botsford and Heidenreich","OrderDate":"2/8/2016","TotalPayment":"$582740.39","Status":3,"Type":1},{"OrderID":"57520-0608","ShipCountry":"PL","ShipAddress":"6578 Macpherson Road","ShipName":"Smith-Pagac","OrderDate":"9/19/2017","TotalPayment":"$126112.66","Status":5,"Type":1},{"OrderID":"63936-8504","ShipCountry":"CD","ShipAddress":"32490 Harbort Road","ShipName":"Bernhard-Kilback","OrderDate":"7/3/2017","TotalPayment":"$772950.81","Status":3,"Type":2},{"OrderID":"54575-299","ShipCountry":"US","ShipAddress":"11 Kenwood Trail","ShipName":"Veum Group","OrderDate":"11/9/2017","TotalPayment":"$989986.95","Status":6,"Type":1},{"OrderID":"58980-811","ShipCountry":"BD","ShipAddress":"1 Morningstar Parkway","ShipName":"Halvorson Group","OrderDate":"7/29/2016","TotalPayment":"$262119.50","Status":6,"Type":1}]},\n{"RecordID":47,"FirstName":"Lebbie","LastName":"Winson","Company":"Trupe","Email":"lwinson1a@comcast.net","Phone":"713-500-3935","Status":3,"Type":3,"Orders":[{"OrderID":"14783-034","ShipCountry":"ID","ShipAddress":"0677 Goodland Center","ShipName":"Zieme and Sons","OrderDate":"2/1/2016","TotalPayment":"$162901.45","Status":6,"Type":2},{"OrderID":"63304-579","ShipCountry":"MX","ShipAddress":"5 Florence Alley","ShipName":"Schoen-Schmidt","OrderDate":"5/24/2016","TotalPayment":"$537381.19","Status":1,"Type":2},{"OrderID":"0168-0056","ShipCountry":"CN","ShipAddress":"0854 Cardinal Street","ShipName":"Beier-Borer","OrderDate":"5/22/2016","TotalPayment":"$1059210.06","Status":1,"Type":1},{"OrderID":"49349-107","ShipCountry":"UG","ShipAddress":"7779 Heffernan Way","ShipName":"Windler, Mayer and Will","OrderDate":"1/10/2017","TotalPayment":"$934099.74","Status":5,"Type":3},{"OrderID":"49288-0959","ShipCountry":"BO","ShipAddress":"7091 Forest Trail","ShipName":"Schmeler Group","OrderDate":"1/9/2016","TotalPayment":"$243944.30","Status":4,"Type":2},{"OrderID":"60541-0706","ShipCountry":"PH","ShipAddress":"1463 Lillian Parkway","ShipName":"Rowe, Kuphal and Goyette","OrderDate":"9/10/2016","TotalPayment":"$276150.35","Status":1,"Type":3},{"OrderID":"56062-423","ShipCountry":"MX","ShipAddress":"015 Redwing Court","ShipName":"Skiles Group","OrderDate":"10/26/2017","TotalPayment":"$1055541.02","Status":6,"Type":2},{"OrderID":"0603-0209","ShipCountry":"KE","ShipAddress":"29783 Shopko Trail","ShipName":"McDermott-Renner","OrderDate":"7/13/2016","TotalPayment":"$177934.20","Status":1,"Type":2},{"OrderID":"37000-710","ShipCountry":"BR","ShipAddress":"5 Bunker Hill Parkway","ShipName":"Ledner-Ruecker","OrderDate":"7/13/2017","TotalPayment":"$20453.64","Status":6,"Type":2},{"OrderID":"62011-0227","ShipCountry":"PE","ShipAddress":"3240 Ruskin Plaza","ShipName":"Kunze Group","OrderDate":"1/28/2017","TotalPayment":"$355333.68","Status":6,"Type":2},{"OrderID":"10738-302","ShipCountry":"SE","ShipAddress":"6 Vermont Way","ShipName":"Lang, Rath and Hagenes","OrderDate":"1/26/2016","TotalPayment":"$470693.52","Status":6,"Type":1},{"OrderID":"51672-4123","ShipCountry":"RU","ShipAddress":"272 Debra Street","ShipName":"Harris-Kohler","OrderDate":"2/11/2017","TotalPayment":"$89976.51","Status":3,"Type":1},{"OrderID":"68169-0127","ShipCountry":"SE","ShipAddress":"30 Michigan Point","ShipName":"Goodwin Group","OrderDate":"9/13/2017","TotalPayment":"$1076778.47","Status":1,"Type":1},{"OrderID":"67345-0004","ShipCountry":"SI","ShipAddress":"88 Valley Edge Hill","ShipName":"Gutmann Group","OrderDate":"11/30/2016","TotalPayment":"$238794.88","Status":3,"Type":1},{"OrderID":"65841-030","ShipCountry":"MT","ShipAddress":"1 Luster Alley","ShipName":"Quitzon-Reilly","OrderDate":"9/26/2017","TotalPayment":"$684504.51","Status":2,"Type":3},{"OrderID":"0187-2221","ShipCountry":"PH","ShipAddress":"666 Warner Alley","ShipName":"Cremin-Rutherford","OrderDate":"11/27/2016","TotalPayment":"$275011.23","Status":3,"Type":2},{"OrderID":"0093-7601","ShipCountry":"PH","ShipAddress":"14 Saint Paul Lane","ShipName":"West, Sanford and Homenick","OrderDate":"4/7/2016","TotalPayment":"$807291.66","Status":4,"Type":3},{"OrderID":"42549-554","ShipCountry":"CN","ShipAddress":"734 New Castle Plaza","ShipName":"Renner LLC","OrderDate":"4/24/2016","TotalPayment":"$880678.22","Status":5,"Type":2}]},\n{"RecordID":48,"FirstName":"Tabitha","LastName":"Malcher","Company":"Shuffletag","Email":"tmalcher1b@godaddy.com","Phone":"494-929-6491","Status":6,"Type":3,"Orders":[{"OrderID":"49035-104","ShipCountry":"ID","ShipAddress":"82 Bobwhite Park","ShipName":"Heller, Gutmann and Collins","OrderDate":"5/28/2017","TotalPayment":"$959672.54","Status":2,"Type":2},{"OrderID":"35356-821","ShipCountry":"RU","ShipAddress":"00 Sachtjen Trail","ShipName":"Padberg Inc","OrderDate":"1/9/2016","TotalPayment":"$519302.58","Status":6,"Type":2},{"OrderID":"59535-5101","ShipCountry":"ID","ShipAddress":"4849 Kinsman Parkway","ShipName":"Murazik, Marquardt and Brown","OrderDate":"6/22/2016","TotalPayment":"$627948.92","Status":3,"Type":2},{"OrderID":"0641-6063","ShipCountry":"PE","ShipAddress":"89569 Sage Court","ShipName":"Collins, Price and Sawayn","OrderDate":"1/8/2017","TotalPayment":"$104107.44","Status":6,"Type":2},{"OrderID":"62670-3715","ShipCountry":"US","ShipAddress":"7387 Fallview Crossing","ShipName":"Gislason-Bashirian","OrderDate":"4/13/2016","TotalPayment":"$1104414.27","Status":2,"Type":2},{"OrderID":"37205-356","ShipCountry":"CN","ShipAddress":"1 Merrick Point","ShipName":"Wiza, Champlin and Murazik","OrderDate":"11/8/2017","TotalPayment":"$666026.64","Status":3,"Type":2},{"OrderID":"42979-110","ShipCountry":"GR","ShipAddress":"647 Westend Place","ShipName":"Zboncak, Cremin and Kuvalis","OrderDate":"8/15/2016","TotalPayment":"$199307.28","Status":3,"Type":2},{"OrderID":"48951-5027","ShipCountry":"CN","ShipAddress":"4721 Beilfuss Avenue","ShipName":"Roob and Sons","OrderDate":"3/12/2016","TotalPayment":"$354844.94","Status":3,"Type":3},{"OrderID":"0067-8100","ShipCountry":"MK","ShipAddress":"55 Packers Trail","ShipName":"Ankunding-Christiansen","OrderDate":"8/21/2017","TotalPayment":"$21719.68","Status":1,"Type":1},{"OrderID":"24338-516","ShipCountry":"GR","ShipAddress":"60 Bartillon Alley","ShipName":"Pacocha, Walsh and Purdy","OrderDate":"3/17/2016","TotalPayment":"$882486.40","Status":2,"Type":2},{"OrderID":"0406-0123","ShipCountry":"CN","ShipAddress":"7 Forest Run Terrace","ShipName":"Grimes, Lemke and Hackett","OrderDate":"9/16/2016","TotalPayment":"$944836.77","Status":1,"Type":3},{"OrderID":"44523-732","ShipCountry":"CN","ShipAddress":"0 Memorial Crossing","ShipName":"Hermiston, Hand and Greenfelder","OrderDate":"6/19/2016","TotalPayment":"$130224.05","Status":4,"Type":2},{"OrderID":"12213-730","ShipCountry":"HN","ShipAddress":"1325 Victoria Plaza","ShipName":"Reichert-Crooks","OrderDate":"1/16/2016","TotalPayment":"$224481.68","Status":5,"Type":3},{"OrderID":"63629-1532","ShipCountry":"CZ","ShipAddress":"5180 Almo Circle","ShipName":"Spinka and Sons","OrderDate":"7/26/2016","TotalPayment":"$332935.39","Status":2,"Type":3},{"OrderID":"68387-140","ShipCountry":"JP","ShipAddress":"54 Ruskin Terrace","ShipName":"McCullough-Hudson","OrderDate":"11/6/2016","TotalPayment":"$921327.29","Status":6,"Type":1},{"OrderID":"0173-0791","ShipCountry":"RU","ShipAddress":"37 Melby Road","ShipName":"Farrell LLC","OrderDate":"3/21/2016","TotalPayment":"$240964.48","Status":3,"Type":1},{"OrderID":"59630-320","ShipCountry":"PL","ShipAddress":"61416 Orin Way","ShipName":"Welch LLC","OrderDate":"5/31/2016","TotalPayment":"$646061.64","Status":2,"Type":1},{"OrderID":"62037-832","ShipCountry":"CZ","ShipAddress":"280 Glacier Hill Parkway","ShipName":"Lockman Inc","OrderDate":"2/26/2016","TotalPayment":"$421297.23","Status":5,"Type":3},{"OrderID":"36987-3003","ShipCountry":"PH","ShipAddress":"37 Ramsey Pass","ShipName":"Bartoletti, Strosin and Welch","OrderDate":"2/23/2016","TotalPayment":"$700953.45","Status":5,"Type":3}]},\n{"RecordID":49,"FirstName":"Ula","LastName":"Matiasek","Company":"Wikivu","Email":"umatiasek1c@biglobe.ne.jp","Phone":"320-439-1744","Status":6,"Type":2,"Orders":[{"OrderID":"11673-583","ShipCountry":"FI","ShipAddress":"24 Mariners Cove Trail","ShipName":"Kertzmann LLC","OrderDate":"10/29/2017","TotalPayment":"$173255.43","Status":5,"Type":3},{"OrderID":"0462-0162","ShipCountry":"ID","ShipAddress":"5600 Crest Line Parkway","ShipName":"Witting, Terry and Nicolas","OrderDate":"7/4/2016","TotalPayment":"$180949.88","Status":4,"Type":2},{"OrderID":"68472-028","ShipCountry":"FR","ShipAddress":"627 Hoffman Drive","ShipName":"Weimann Inc","OrderDate":"3/13/2017","TotalPayment":"$634807.22","Status":6,"Type":3},{"OrderID":"55312-238","ShipCountry":"JP","ShipAddress":"19057 Southridge Point","ShipName":"Rosenbaum and Sons","OrderDate":"9/1/2016","TotalPayment":"$356832.26","Status":1,"Type":3},{"OrderID":"49371-022","ShipCountry":"RU","ShipAddress":"94194 Fairfield Parkway","ShipName":"Wuckert, Breitenberg and Gerlach","OrderDate":"8/25/2016","TotalPayment":"$927453.65","Status":4,"Type":2},{"OrderID":"61755-005","ShipCountry":"US","ShipAddress":"48 Vahlen Place","ShipName":"Balistreri, Lind and Wilderman","OrderDate":"2/13/2017","TotalPayment":"$129263.86","Status":4,"Type":3},{"OrderID":"65841-666","ShipCountry":"AR","ShipAddress":"97617 Debs Plaza","ShipName":"Larson, Renner and Morar","OrderDate":"8/6/2016","TotalPayment":"$902801.32","Status":1,"Type":2},{"OrderID":"61442-143","ShipCountry":"LU","ShipAddress":"0582 Anhalt Trail","ShipName":"Hauck-Haag","OrderDate":"7/18/2016","TotalPayment":"$282496.35","Status":4,"Type":2},{"OrderID":"42421-229","ShipCountry":"SE","ShipAddress":"18 Hoard Way","ShipName":"Kling, Strosin and Mohr","OrderDate":"9/27/2017","TotalPayment":"$1073110.72","Status":5,"Type":1},{"OrderID":"33261-773","ShipCountry":"SE","ShipAddress":"67428 Hintze Way","ShipName":"Stroman, Bode and Hermann","OrderDate":"11/9/2016","TotalPayment":"$632592.77","Status":1,"Type":1},{"OrderID":"0268-6622","ShipCountry":"CY","ShipAddress":"15676 Lillian Drive","ShipName":"Bashirian Inc","OrderDate":"5/8/2017","TotalPayment":"$1147897.82","Status":1,"Type":3},{"OrderID":"36987-2588","ShipCountry":"FI","ShipAddress":"20131 Hallows Way","ShipName":"Jacobs and Sons","OrderDate":"2/14/2016","TotalPayment":"$255908.82","Status":5,"Type":3},{"OrderID":"49349-694","ShipCountry":"VN","ShipAddress":"3012 Annamark Point","ShipName":"Thompson-Harris","OrderDate":"7/1/2016","TotalPayment":"$1058038.12","Status":4,"Type":3},{"OrderID":"36987-3210","ShipCountry":"CN","ShipAddress":"741 Laurel Circle","ShipName":"Bartoletti Inc","OrderDate":"3/16/2017","TotalPayment":"$444750.02","Status":4,"Type":1},{"OrderID":"61748-302","ShipCountry":"AR","ShipAddress":"0 Chinook Alley","ShipName":"Marquardt, Treutel and Block","OrderDate":"6/14/2017","TotalPayment":"$78799.99","Status":3,"Type":2},{"OrderID":"0268-0199","ShipCountry":"ID","ShipAddress":"926 Maryland Hill","ShipName":"Bergnaum, Oberbrunner and Eichmann","OrderDate":"2/3/2016","TotalPayment":"$282131.79","Status":1,"Type":3},{"OrderID":"48951-7079","ShipCountry":"GR","ShipAddress":"272 Village Hill","ShipName":"Schoen and Sons","OrderDate":"5/24/2016","TotalPayment":"$388145.92","Status":1,"Type":1},{"OrderID":"36987-2890","ShipCountry":"JP","ShipAddress":"5846 Prentice Road","ShipName":"Homenick-Leffler","OrderDate":"4/15/2016","TotalPayment":"$422371.39","Status":3,"Type":1}]},\n{"RecordID":50,"FirstName":"Dwain","LastName":"Ferrey","Company":"Yakidoo","Email":"dferrey1d@fda.gov","Phone":"658-189-1289","Status":5,"Type":3,"Orders":[{"OrderID":"10736-012","ShipCountry":"RU","ShipAddress":"783 Ryan Hill","ShipName":"Huels Group","OrderDate":"12/3/2017","TotalPayment":"$724342.29","Status":3,"Type":1},{"OrderID":"63029-433","ShipCountry":"ID","ShipAddress":"5117 Schiller Terrace","ShipName":"Leannon, Nolan and Abbott","OrderDate":"3/6/2016","TotalPayment":"$1124366.18","Status":1,"Type":2},{"OrderID":"63323-237","ShipCountry":"CU","ShipAddress":"1536 Caliangt Hill","ShipName":"Romaguera-Williamson","OrderDate":"1/14/2016","TotalPayment":"$1073508.60","Status":2,"Type":2},{"OrderID":"68788-9953","ShipCountry":"CY","ShipAddress":"5192 Arapahoe Place","ShipName":"Boehm, Gusikowski and Cummings","OrderDate":"3/6/2017","TotalPayment":"$997731.07","Status":1,"Type":2},{"OrderID":"68151-0526","ShipCountry":"UA","ShipAddress":"5367 Bartillon Terrace","ShipName":"Krajcik-Aufderhar","OrderDate":"5/7/2016","TotalPayment":"$721029.51","Status":6,"Type":1},{"OrderID":"54473-215","ShipCountry":"MK","ShipAddress":"9942 Lunder Pass","ShipName":"Jones LLC","OrderDate":"10/12/2017","TotalPayment":"$1017053.77","Status":1,"Type":1}]},\n{"RecordID":51,"FirstName":"Verne","LastName":"Buggy","Company":"Brainverse","Email":"vbuggy1e@economist.com","Phone":"150-832-2807","Status":2,"Type":2,"Orders":[{"OrderID":"55910-220","ShipCountry":"RU","ShipAddress":"64291 Briar Crest Plaza","ShipName":"Franecki, Dare and Lemke","OrderDate":"10/15/2017","TotalPayment":"$795918.14","Status":4,"Type":1},{"OrderID":"49349-724","ShipCountry":"CN","ShipAddress":"08328 Lukken Court","ShipName":"Satterfield-Waelchi","OrderDate":"2/12/2016","TotalPayment":"$946416.40","Status":4,"Type":1},{"OrderID":"61598-200","ShipCountry":"AL","ShipAddress":"7 Saint Paul Court","ShipName":"Heathcote-Feeney","OrderDate":"3/22/2016","TotalPayment":"$352177.16","Status":5,"Type":3},{"OrderID":"46122-263","ShipCountry":"RS","ShipAddress":"97 Hansons Junction","ShipName":"Breitenberg Group","OrderDate":"6/8/2016","TotalPayment":"$157466.40","Status":6,"Type":2},{"OrderID":"68472-101","ShipCountry":"CN","ShipAddress":"4952 Barnett Hill","ShipName":"Little LLC","OrderDate":"2/19/2016","TotalPayment":"$11785.69","Status":5,"Type":2},{"OrderID":"0280-0922","ShipCountry":"CN","ShipAddress":"429 Crowley Drive","ShipName":"Blick Inc","OrderDate":"1/28/2017","TotalPayment":"$392077.03","Status":3,"Type":1},{"OrderID":"52125-178","ShipCountry":"ID","ShipAddress":"9 Buhler Way","ShipName":"Greenfelder and Sons","OrderDate":"9/26/2017","TotalPayment":"$1029917.26","Status":3,"Type":1},{"OrderID":"59779-425","ShipCountry":"ID","ShipAddress":"4371 Carey Place","ShipName":"Altenwerth LLC","OrderDate":"11/1/2017","TotalPayment":"$1097363.76","Status":2,"Type":3},{"OrderID":"64725-0111","ShipCountry":"ID","ShipAddress":"2 Carberry Center","ShipName":"Rath-Erdman","OrderDate":"12/6/2016","TotalPayment":"$575191.11","Status":6,"Type":1},{"OrderID":"0268-0824","ShipCountry":"RU","ShipAddress":"789 Dixon Park","ShipName":"Purdy, Sawayn and Gutkowski","OrderDate":"10/17/2016","TotalPayment":"$353149.07","Status":2,"Type":1},{"OrderID":"24385-546","ShipCountry":"ID","ShipAddress":"59430 Village Green Hill","ShipName":"Goodwin Group","OrderDate":"2/10/2016","TotalPayment":"$840578.73","Status":1,"Type":2},{"OrderID":"0228-2996","ShipCountry":"AR","ShipAddress":"7 Roth Park","ShipName":"Kulas Group","OrderDate":"4/25/2016","TotalPayment":"$323929.94","Status":6,"Type":1},{"OrderID":"53119-575","ShipCountry":"GH","ShipAddress":"0 Brown Center","ShipName":"Hand-Hyatt","OrderDate":"6/16/2016","TotalPayment":"$477442.21","Status":4,"Type":2}]},\n{"RecordID":52,"FirstName":"Merridie","LastName":"Beasley","Company":"Realbuzz","Email":"mbeasley1f@tamu.edu","Phone":"312-515-8198","Status":5,"Type":3,"Orders":[{"OrderID":"52342-001","ShipCountry":"FR","ShipAddress":"651 Stang Center","ShipName":"Walter, Spencer and Howell","OrderDate":"11/18/2017","TotalPayment":"$815175.88","Status":5,"Type":2},{"OrderID":"45865-451","ShipCountry":"CN","ShipAddress":"307 Fallview Park","ShipName":"Steuber LLC","OrderDate":"5/15/2016","TotalPayment":"$458521.60","Status":4,"Type":1},{"OrderID":"37808-394","ShipCountry":"CN","ShipAddress":"518 Canary Hill","ShipName":"Jakubowski, Barrows and Strosin","OrderDate":"1/19/2016","TotalPayment":"$175739.33","Status":5,"Type":3},{"OrderID":"68084-283","ShipCountry":"CN","ShipAddress":"7 Meadow Vale Court","ShipName":"Thompson-Jaskolski","OrderDate":"8/9/2016","TotalPayment":"$1145971.67","Status":2,"Type":1},{"OrderID":"46708-128","ShipCountry":"CN","ShipAddress":"6 Coleman Center","ShipName":"Aufderhar and Sons","OrderDate":"5/11/2017","TotalPayment":"$695264.81","Status":1,"Type":2},{"OrderID":"55154-4519","ShipCountry":"US","ShipAddress":"7667 Gina Point","ShipName":"Pfannerstill, Simonis and Bergnaum","OrderDate":"12/24/2016","TotalPayment":"$1024535.28","Status":6,"Type":2},{"OrderID":"62011-0214","ShipCountry":"PT","ShipAddress":"5649 Springview Way","ShipName":"Lang and Sons","OrderDate":"6/11/2017","TotalPayment":"$467527.22","Status":5,"Type":3},{"OrderID":"37000-326","ShipCountry":"PE","ShipAddress":"9 Warbler Way","ShipName":"Swift, Nienow and Spencer","OrderDate":"1/3/2017","TotalPayment":"$1041717.40","Status":6,"Type":1},{"OrderID":"66096-175","ShipCountry":"ID","ShipAddress":"77363 Saint Paul Parkway","ShipName":"Kris-Torphy","OrderDate":"9/23/2017","TotalPayment":"$464261.82","Status":6,"Type":2}]},\n{"RecordID":53,"FirstName":"Kathi","LastName":"Soff","Company":"Skippad","Email":"ksoff1g@oracle.com","Phone":"937-813-1057","Status":2,"Type":1,"Orders":[{"OrderID":"58668-1261","ShipCountry":"HR","ShipAddress":"3610 Grasskamp Alley","ShipName":"Heidenreich Inc","OrderDate":"12/19/2017","TotalPayment":"$1181191.29","Status":2,"Type":1},{"OrderID":"0527-1347","ShipCountry":"MN","ShipAddress":"3 Heath Crossing","ShipName":"Howell LLC","OrderDate":"6/13/2017","TotalPayment":"$298197.07","Status":5,"Type":3},{"OrderID":"53208-452","ShipCountry":"TM","ShipAddress":"4 Petterle Court","ShipName":"Effertz, Trantow and Nitzsche","OrderDate":"4/20/2016","TotalPayment":"$532309.33","Status":3,"Type":1},{"OrderID":"54868-4675","ShipCountry":"CN","ShipAddress":"852 Warner Lane","ShipName":"Emmerich, Wisoky and Wolff","OrderDate":"5/28/2017","TotalPayment":"$342952.30","Status":4,"Type":1},{"OrderID":"63868-966","ShipCountry":"PH","ShipAddress":"5 Moose Pass","ShipName":"Hayes and Sons","OrderDate":"9/25/2017","TotalPayment":"$724699.25","Status":6,"Type":2},{"OrderID":"49349-859","ShipCountry":"RU","ShipAddress":"81 Village Crossing","ShipName":"Schowalter, Schneider and Welch","OrderDate":"3/21/2016","TotalPayment":"$288602.33","Status":1,"Type":3},{"OrderID":"68026-108","ShipCountry":"PT","ShipAddress":"964 4th Parkway","ShipName":"Fritsch-Gulgowski","OrderDate":"9/15/2016","TotalPayment":"$708946.01","Status":5,"Type":3},{"OrderID":"30142-546","ShipCountry":"CN","ShipAddress":"45 Lukken Pass","ShipName":"Willms-Corwin","OrderDate":"6/11/2016","TotalPayment":"$334812.48","Status":1,"Type":1},{"OrderID":"13668-160","ShipCountry":"BA","ShipAddress":"010 Lakewood Gardens Avenue","ShipName":"Ondricka-Hyatt","OrderDate":"6/2/2017","TotalPayment":"$944910.96","Status":1,"Type":3},{"OrderID":"21695-673","ShipCountry":"ID","ShipAddress":"18 Fuller Road","ShipName":"Bednar, Hayes and Greenfelder","OrderDate":"8/15/2016","TotalPayment":"$1192286.42","Status":2,"Type":3},{"OrderID":"58118-0798","ShipCountry":"PH","ShipAddress":"5 Mifflin Place","ShipName":"Rath, Adams and Stanton","OrderDate":"11/17/2017","TotalPayment":"$564817.66","Status":6,"Type":1},{"OrderID":"24236-656","ShipCountry":"PT","ShipAddress":"2 Loftsgordon Junction","ShipName":"Grady, Hamill and Kohler","OrderDate":"6/6/2016","TotalPayment":"$410296.55","Status":5,"Type":2},{"OrderID":"0942-9505","ShipCountry":"IR","ShipAddress":"69 South Terrace","ShipName":"Hamill-Ernser","OrderDate":"11/18/2017","TotalPayment":"$482048.52","Status":2,"Type":1},{"OrderID":"36987-3046","ShipCountry":"CL","ShipAddress":"37310 Doe Crossing Junction","ShipName":"Blick-Jacobi","OrderDate":"12/8/2016","TotalPayment":"$895394.40","Status":6,"Type":1}]},\n{"RecordID":54,"FirstName":"Elbert","LastName":"Andrews","Company":"Mybuzz","Email":"eandrews1h@joomla.org","Phone":"707-738-2679","Status":3,"Type":2,"Orders":[{"OrderID":"29300-114","ShipCountry":"PH","ShipAddress":"8 Mallard Avenue","ShipName":"Funk and Sons","OrderDate":"1/30/2016","TotalPayment":"$261492.30","Status":3,"Type":3},{"OrderID":"52125-482","ShipCountry":"PH","ShipAddress":"4549 Morrow Pass","ShipName":"Moore and Sons","OrderDate":"9/5/2016","TotalPayment":"$617726.94","Status":4,"Type":3},{"OrderID":"11410-162","ShipCountry":"ZA","ShipAddress":"3919 Scott Pass","ShipName":"Yost-Boyle","OrderDate":"7/11/2016","TotalPayment":"$1185208.65","Status":6,"Type":1},{"OrderID":"67938-0823","ShipCountry":"FR","ShipAddress":"96 Bluejay Crossing","ShipName":"Brown-Leuschke","OrderDate":"11/7/2017","TotalPayment":"$222774.18","Status":2,"Type":2},{"OrderID":"49349-675","ShipCountry":"PS","ShipAddress":"648 Luster Drive","ShipName":"Rodriguez, Moore and Hackett","OrderDate":"7/13/2016","TotalPayment":"$1182736.62","Status":5,"Type":3},{"OrderID":"16590-102","ShipCountry":"UY","ShipAddress":"98 Swallow Street","ShipName":"Gaylord-Veum","OrderDate":"4/30/2016","TotalPayment":"$68479.58","Status":4,"Type":1},{"OrderID":"63736-232","ShipCountry":"NO","ShipAddress":"476 Calypso Plaza","ShipName":"Bernhard and Sons","OrderDate":"8/11/2017","TotalPayment":"$695993.63","Status":2,"Type":3},{"OrderID":"16590-349","ShipCountry":"CN","ShipAddress":"14 Harbort Circle","ShipName":"Hagenes Group","OrderDate":"12/11/2017","TotalPayment":"$488749.84","Status":4,"Type":3},{"OrderID":"0268-6195","ShipCountry":"ID","ShipAddress":"63733 Elgar Junction","ShipName":"Heidenreich Inc","OrderDate":"9/19/2016","TotalPayment":"$761935.25","Status":6,"Type":2},{"OrderID":"55154-8275","ShipCountry":"CN","ShipAddress":"76 Spohn Street","ShipName":"Mraz-Padberg","OrderDate":"3/7/2017","TotalPayment":"$240494.58","Status":2,"Type":1},{"OrderID":"66902-001","ShipCountry":"ID","ShipAddress":"056 Eastlawn Plaza","ShipName":"Sawayn, Kuphal and Leuschke","OrderDate":"3/7/2016","TotalPayment":"$669821.38","Status":2,"Type":1},{"OrderID":"0113-0990","ShipCountry":"ID","ShipAddress":"7 Nobel Road","ShipName":"Hamill Inc","OrderDate":"8/15/2017","TotalPayment":"$956514.31","Status":2,"Type":1},{"OrderID":"40046-0053","ShipCountry":"CN","ShipAddress":"39134 Tomscot Pass","ShipName":"Eichmann-Brekke","OrderDate":"3/8/2016","TotalPayment":"$690239.56","Status":2,"Type":3}]},\n{"RecordID":55,"FirstName":"Gladi","LastName":"McGillreich","Company":"Skiptube","Email":"gmcgillreich1i@forbes.com","Phone":"426-232-1445","Status":3,"Type":2,"Orders":[{"OrderID":"54868-5776","ShipCountry":"PH","ShipAddress":"9 5th Lane","ShipName":"Treutel-D\'Amore","OrderDate":"8/24/2017","TotalPayment":"$1111440.65","Status":3,"Type":2},{"OrderID":"67544-097","ShipCountry":"BD","ShipAddress":"2 Morning Alley","ShipName":"Herman LLC","OrderDate":"1/13/2017","TotalPayment":"$1018191.16","Status":4,"Type":2},{"OrderID":"36987-1467","ShipCountry":"FI","ShipAddress":"53 Drewry Place","ShipName":"Wiza, Anderson and Schoen","OrderDate":"6/15/2016","TotalPayment":"$934058.55","Status":5,"Type":2},{"OrderID":"0135-0090","ShipCountry":"PK","ShipAddress":"790 8th Point","ShipName":"Pollich Group","OrderDate":"1/5/2017","TotalPayment":"$1084043.22","Status":2,"Type":3},{"OrderID":"11822-0650","ShipCountry":"SE","ShipAddress":"7516 Morningstar Street","ShipName":"Towne Inc","OrderDate":"12/29/2017","TotalPayment":"$837688.74","Status":4,"Type":3},{"OrderID":"0069-9321","ShipCountry":"KE","ShipAddress":"9528 Old Shore Alley","ShipName":"Oberbrunner, Steuber and Gerlach","OrderDate":"4/13/2017","TotalPayment":"$561112.17","Status":4,"Type":2},{"OrderID":"21695-206","ShipCountry":"TZ","ShipAddress":"35 Aberg Court","ShipName":"Pfannerstill Inc","OrderDate":"6/5/2017","TotalPayment":"$406130.84","Status":1,"Type":3},{"OrderID":"59762-1520","ShipCountry":"PK","ShipAddress":"089 Colorado Avenue","ShipName":"Grimes Inc","OrderDate":"6/27/2017","TotalPayment":"$654539.36","Status":3,"Type":2},{"OrderID":"16110-260","ShipCountry":"CN","ShipAddress":"76 Sheridan Park","ShipName":"Kiehn LLC","OrderDate":"6/11/2017","TotalPayment":"$343371.93","Status":4,"Type":2},{"OrderID":"61957-0820","ShipCountry":"ZA","ShipAddress":"6 Mayer Point","ShipName":"Rau, Hahn and Ratke","OrderDate":"7/11/2017","TotalPayment":"$1040467.16","Status":2,"Type":3},{"OrderID":"0597-0031","ShipCountry":"AR","ShipAddress":"9 Jenifer Road","ShipName":"Hamill and Sons","OrderDate":"4/22/2017","TotalPayment":"$33352.82","Status":4,"Type":3},{"OrderID":"68703-043","ShipCountry":"AZ","ShipAddress":"80 Russell Hill","ShipName":"Nicolas-Crona","OrderDate":"10/9/2017","TotalPayment":"$525978.07","Status":3,"Type":1},{"OrderID":"10702-036","ShipCountry":"BR","ShipAddress":"85215 Fair Oaks Crossing","ShipName":"Jast-McLaughlin","OrderDate":"1/20/2017","TotalPayment":"$416971.17","Status":1,"Type":2},{"OrderID":"49643-019","ShipCountry":"UA","ShipAddress":"182 Jackson Road","ShipName":"Weber Group","OrderDate":"5/27/2016","TotalPayment":"$37042.20","Status":2,"Type":2},{"OrderID":"67046-275","ShipCountry":"ID","ShipAddress":"60691 Shelley Street","ShipName":"Dare-Douglas","OrderDate":"4/23/2016","TotalPayment":"$628294.88","Status":3,"Type":1},{"OrderID":"68084-364","ShipCountry":"FR","ShipAddress":"399 Calypso Point","ShipName":"Quigley-Baumbach","OrderDate":"12/5/2017","TotalPayment":"$551561.72","Status":1,"Type":1},{"OrderID":"49349-797","ShipCountry":"CZ","ShipAddress":"49230 Dunning Drive","ShipName":"Weissnat, Welch and Stanton","OrderDate":"3/25/2017","TotalPayment":"$263988.94","Status":4,"Type":1}]},\n{"RecordID":56,"FirstName":"Piotr","LastName":"Spelling","Company":"Thoughtworks","Email":"pspelling1j@sakura.ne.jp","Phone":"584-468-9586","Status":6,"Type":1,"Orders":[{"OrderID":"68428-152","ShipCountry":"PT","ShipAddress":"73 Valley Edge Terrace","ShipName":"Stehr Inc","OrderDate":"8/13/2016","TotalPayment":"$984123.64","Status":3,"Type":2},{"OrderID":"55154-9370","ShipCountry":"ID","ShipAddress":"4495 Pleasure Crossing","ShipName":"Mayer Group","OrderDate":"6/18/2016","TotalPayment":"$1057366.46","Status":2,"Type":2},{"OrderID":"99207-465","ShipCountry":"PE","ShipAddress":"5 Texas Crossing","ShipName":"O\'Kon-Schaden","OrderDate":"10/29/2016","TotalPayment":"$102859.55","Status":4,"Type":2},{"OrderID":"57955-0815","ShipCountry":"AR","ShipAddress":"6310 Quincy Junction","ShipName":"King LLC","OrderDate":"5/15/2016","TotalPayment":"$31103.75","Status":1,"Type":2},{"OrderID":"51815-216","ShipCountry":"PE","ShipAddress":"8486 Mallory Drive","ShipName":"Stanton-Armstrong","OrderDate":"6/5/2016","TotalPayment":"$128531.37","Status":2,"Type":3},{"OrderID":"64578-0110","ShipCountry":"US","ShipAddress":"1 Dunning Terrace","ShipName":"Rolfson LLC","OrderDate":"10/5/2017","TotalPayment":"$1108488.59","Status":1,"Type":2},{"OrderID":"54868-4367","ShipCountry":"EC","ShipAddress":"56 Mariners Cove Way","ShipName":"Gorczany, Windler and Kautzer","OrderDate":"8/19/2016","TotalPayment":"$808188.93","Status":3,"Type":1},{"OrderID":"68196-808","ShipCountry":"GB","ShipAddress":"199 Manitowish Drive","ShipName":"Schmidt LLC","OrderDate":"3/12/2016","TotalPayment":"$1017538.13","Status":1,"Type":2},{"OrderID":"36987-1651","ShipCountry":"BR","ShipAddress":"46043 Kim Lane","ShipName":"Bernhard, Miller and Gulgowski","OrderDate":"5/31/2016","TotalPayment":"$1123363.34","Status":1,"Type":2},{"OrderID":"62756-710","ShipCountry":"EG","ShipAddress":"103 Melby Street","ShipName":"Bartoletti Inc","OrderDate":"7/9/2016","TotalPayment":"$929285.67","Status":3,"Type":1},{"OrderID":"0378-8020","ShipCountry":"AM","ShipAddress":"4 Donald Court","ShipName":"Pollich Inc","OrderDate":"5/25/2017","TotalPayment":"$132844.93","Status":6,"Type":1},{"OrderID":"62211-070","ShipCountry":"ID","ShipAddress":"44 Sherman Point","ShipName":"Beier-Kuhn","OrderDate":"9/24/2016","TotalPayment":"$61639.40","Status":4,"Type":1},{"OrderID":"0404-5991","ShipCountry":"UA","ShipAddress":"108 Shasta Park","ShipName":"Leannon and Sons","OrderDate":"11/17/2017","TotalPayment":"$580430.88","Status":1,"Type":3},{"OrderID":"57520-1005","ShipCountry":"CN","ShipAddress":"413 Eagan Crossing","ShipName":"Weber-Wehner","OrderDate":"4/22/2017","TotalPayment":"$700079.89","Status":3,"Type":2},{"OrderID":"59915-4001","ShipCountry":"ID","ShipAddress":"826 Merchant Place","ShipName":"Jacobs-Grimes","OrderDate":"5/3/2017","TotalPayment":"$142953.49","Status":6,"Type":1}]},\n{"RecordID":57,"FirstName":"Carolyne","LastName":"Corkish","Company":"Zoombox","Email":"ccorkish1k@hugedomains.com","Phone":"457-155-1937","Status":2,"Type":1,"Orders":[{"OrderID":"60505-2865","ShipCountry":"CN","ShipAddress":"8077 Bayside Terrace","ShipName":"Skiles-Nader","OrderDate":"7/21/2017","TotalPayment":"$410521.49","Status":6,"Type":2},{"OrderID":"28595-800","ShipCountry":"ID","ShipAddress":"507 Menomonie Plaza","ShipName":"Walsh, Price and Mertz","OrderDate":"3/17/2016","TotalPayment":"$732271.16","Status":1,"Type":3},{"OrderID":"58160-826","ShipCountry":"FI","ShipAddress":"098 Dovetail Center","ShipName":"Bechtelar and Sons","OrderDate":"6/4/2016","TotalPayment":"$179371.74","Status":3,"Type":2},{"OrderID":"36987-1012","ShipCountry":"CZ","ShipAddress":"54 Barnett Road","ShipName":"Littel-Purdy","OrderDate":"4/18/2017","TotalPayment":"$1091379.75","Status":3,"Type":3},{"OrderID":"51862-215","ShipCountry":"FR","ShipAddress":"9 Jana Circle","ShipName":"Bechtelar-Okuneva","OrderDate":"1/3/2016","TotalPayment":"$458507.55","Status":2,"Type":3},{"OrderID":"52959-891","ShipCountry":"PH","ShipAddress":"2 Lukken Junction","ShipName":"Stiedemann-Watsica","OrderDate":"4/8/2016","TotalPayment":"$752467.95","Status":3,"Type":3},{"OrderID":"0006-0533","ShipCountry":"SY","ShipAddress":"2 Summit Crossing","ShipName":"Hammes Inc","OrderDate":"9/1/2016","TotalPayment":"$1121203.60","Status":6,"Type":2},{"OrderID":"55154-1242","ShipCountry":"PK","ShipAddress":"8 Westend Terrace","ShipName":"Hirthe, Witting and Legros","OrderDate":"11/17/2017","TotalPayment":"$211674.19","Status":5,"Type":1},{"OrderID":"50114-8200","ShipCountry":"CN","ShipAddress":"83528 Melby Lane","ShipName":"Bernier LLC","OrderDate":"4/28/2016","TotalPayment":"$715183.49","Status":4,"Type":2}]},\n{"RecordID":58,"FirstName":"Gan","LastName":"Houlahan","Company":"Oodoo","Email":"ghoulahan1l@reverbnation.com","Phone":"319-445-4983","Status":5,"Type":2,"Orders":[{"OrderID":"55346-0404","ShipCountry":"AR","ShipAddress":"1 Lindbergh Hill","ShipName":"Jacobson-Cummerata","OrderDate":"6/14/2017","TotalPayment":"$626811.81","Status":6,"Type":3},{"OrderID":"0113-0323","ShipCountry":"ID","ShipAddress":"7359 Fairfield Circle","ShipName":"Larkin Group","OrderDate":"8/12/2016","TotalPayment":"$139421.43","Status":4,"Type":2},{"OrderID":"68428-038","ShipCountry":"PL","ShipAddress":"56 Beilfuss Place","ShipName":"Rosenbaum LLC","OrderDate":"8/20/2016","TotalPayment":"$1155009.89","Status":3,"Type":2},{"OrderID":"43063-247","ShipCountry":"ID","ShipAddress":"50 Sycamore Center","ShipName":"Runte-McClure","OrderDate":"11/10/2016","TotalPayment":"$339838.19","Status":4,"Type":1},{"OrderID":"52125-445","ShipCountry":"ID","ShipAddress":"16278 Bultman Parkway","ShipName":"Harris, Barrows and Spinka","OrderDate":"4/5/2016","TotalPayment":"$867179.89","Status":1,"Type":3},{"OrderID":"61957-0903","ShipCountry":"UA","ShipAddress":"6 Johnson Place","ShipName":"Ryan Group","OrderDate":"12/5/2017","TotalPayment":"$1018062.83","Status":4,"Type":2},{"OrderID":"63629-1360","ShipCountry":"RU","ShipAddress":"012 Briar Crest Alley","ShipName":"Littel-Fahey","OrderDate":"9/26/2017","TotalPayment":"$1097609.90","Status":4,"Type":2},{"OrderID":"52000-006","ShipCountry":"LK","ShipAddress":"740 Division Place","ShipName":"Muller Group","OrderDate":"12/29/2016","TotalPayment":"$156068.94","Status":6,"Type":1},{"OrderID":"37205-825","ShipCountry":"UY","ShipAddress":"50 Dennis Pass","ShipName":"Purdy, Sanford and Blanda","OrderDate":"6/11/2016","TotalPayment":"$49563.69","Status":1,"Type":3},{"OrderID":"63347-700","ShipCountry":"MA","ShipAddress":"198 Hansons Place","ShipName":"Bode, Buckridge and Kunze","OrderDate":"12/13/2017","TotalPayment":"$1148595.57","Status":4,"Type":3},{"OrderID":"0049-2770","ShipCountry":"PS","ShipAddress":"2999 Jay Trail","ShipName":"Kunde-Gorczany","OrderDate":"6/11/2017","TotalPayment":"$897972.95","Status":2,"Type":2},{"OrderID":"0378-7010","ShipCountry":"ID","ShipAddress":"15726 Hallows Way","ShipName":"Luettgen, Brekke and Rice","OrderDate":"7/24/2017","TotalPayment":"$85711.90","Status":6,"Type":2},{"OrderID":"0186-0450","ShipCountry":"TN","ShipAddress":"12 Donald Pass","ShipName":"Kuhlman, Kozey and Ruecker","OrderDate":"2/21/2016","TotalPayment":"$515457.45","Status":2,"Type":1},{"OrderID":"36987-1718","ShipCountry":"PT","ShipAddress":"79 Jenna Point","ShipName":"Mayert-Murazik","OrderDate":"1/8/2017","TotalPayment":"$1013729.59","Status":1,"Type":1},{"OrderID":"43063-495","ShipCountry":"CN","ShipAddress":"6 Morning Point","ShipName":"Buckridge-Gleichner","OrderDate":"5/4/2016","TotalPayment":"$307098.37","Status":3,"Type":2},{"OrderID":"36987-2528","ShipCountry":"PH","ShipAddress":"16701 Longview Circle","ShipName":"Miller, McCullough and Dach","OrderDate":"7/26/2016","TotalPayment":"$1088649.56","Status":4,"Type":1},{"OrderID":"41250-423","ShipCountry":"YE","ShipAddress":"45870 Bartillon Drive","ShipName":"McLaughlin-Yundt","OrderDate":"6/22/2017","TotalPayment":"$100498.36","Status":6,"Type":2},{"OrderID":"0378-6165","ShipCountry":"VN","ShipAddress":"5 Tennessee Plaza","ShipName":"Herman-Satterfield","OrderDate":"7/12/2016","TotalPayment":"$509719.53","Status":2,"Type":1},{"OrderID":"57955-0003","ShipCountry":"US","ShipAddress":"0 Armistice Crossing","ShipName":"Hilpert-Mitchell","OrderDate":"1/31/2017","TotalPayment":"$954888.87","Status":3,"Type":2}]},\n{"RecordID":59,"FirstName":"Biddie","LastName":"Gascoyne","Company":"Miboo","Email":"bgascoyne1m@upenn.edu","Phone":"220-871-1081","Status":1,"Type":2,"Orders":[{"OrderID":"68382-387","ShipCountry":"SO","ShipAddress":"41 Brown Park","ShipName":"Anderson-McDermott","OrderDate":"5/25/2016","TotalPayment":"$103189.53","Status":1,"Type":1},{"OrderID":"55319-866","ShipCountry":"NO","ShipAddress":"0590 Melody Avenue","ShipName":"Goodwin, King and Kassulke","OrderDate":"9/3/2016","TotalPayment":"$471805.05","Status":3,"Type":1},{"OrderID":"54436-010","ShipCountry":"AL","ShipAddress":"6506 Schmedeman Pass","ShipName":"Carter LLC","OrderDate":"3/29/2016","TotalPayment":"$60716.55","Status":3,"Type":2},{"OrderID":"60681-2505","ShipCountry":"ID","ShipAddress":"3649 Tomscot Way","ShipName":"O\'Connell and Sons","OrderDate":"4/23/2017","TotalPayment":"$291474.29","Status":5,"Type":2},{"OrderID":"58118-0031","ShipCountry":"GB","ShipAddress":"35 International Street","ShipName":"McDermott, Windler and Lebsack","OrderDate":"9/17/2017","TotalPayment":"$96074.83","Status":1,"Type":1},{"OrderID":"51141-7000","ShipCountry":"CA","ShipAddress":"3 Glacier Hill Lane","ShipName":"Goyette-Zboncak","OrderDate":"12/27/2016","TotalPayment":"$953877.62","Status":4,"Type":2},{"OrderID":"51885-3100","ShipCountry":"UA","ShipAddress":"4856 Rieder Trail","ShipName":"Olson Group","OrderDate":"9/12/2016","TotalPayment":"$93999.71","Status":6,"Type":2},{"OrderID":"62296-0045","ShipCountry":"PK","ShipAddress":"7 Spohn Avenue","ShipName":"Gleason Group","OrderDate":"4/4/2016","TotalPayment":"$230733.27","Status":2,"Type":1},{"OrderID":"52982-107","ShipCountry":"KZ","ShipAddress":"668 Morning Center","ShipName":"Hegmann-Larson","OrderDate":"5/18/2017","TotalPayment":"$116076.80","Status":3,"Type":2},{"OrderID":"59779-946","ShipCountry":"CA","ShipAddress":"351 Bowman Park","ShipName":"Stamm-Stanton","OrderDate":"5/31/2017","TotalPayment":"$127869.15","Status":3,"Type":3},{"OrderID":"41268-535","ShipCountry":"PH","ShipAddress":"2401 Fairfield Avenue","ShipName":"Kiehn, Satterfield and Goyette","OrderDate":"9/18/2017","TotalPayment":"$615467.94","Status":1,"Type":3}]},\n{"RecordID":60,"FirstName":"Tiff","LastName":"McCurlye","Company":"Zava","Email":"tmccurlye1n@marketwatch.com","Phone":"834-559-5951","Status":1,"Type":3,"Orders":[{"OrderID":"0591-3198","ShipCountry":"HN","ShipAddress":"798 Glendale Alley","ShipName":"Hintz, Mertz and Blick","OrderDate":"5/31/2017","TotalPayment":"$321133.54","Status":4,"Type":3},{"OrderID":"0093-8122","ShipCountry":"BR","ShipAddress":"6 Hoffman Trail","ShipName":"Howe, Nader and Steuber","OrderDate":"10/31/2017","TotalPayment":"$406521.92","Status":1,"Type":2},{"OrderID":"0002-8715","ShipCountry":"CN","ShipAddress":"48 Clove Plaza","ShipName":"Wolff, Gottlieb and Fadel","OrderDate":"2/6/2017","TotalPayment":"$592880.01","Status":4,"Type":1},{"OrderID":"41520-300","ShipCountry":"CN","ShipAddress":"1618 Novick Parkway","ShipName":"Langosh Group","OrderDate":"2/6/2017","TotalPayment":"$927933.02","Status":1,"Type":2},{"OrderID":"60505-2658","ShipCountry":"CN","ShipAddress":"18199 Loomis Trail","ShipName":"Johnson-Beer","OrderDate":"10/19/2016","TotalPayment":"$474587.05","Status":3,"Type":3},{"OrderID":"58468-0080","ShipCountry":"CN","ShipAddress":"01 Schlimgen Drive","ShipName":"Klein Group","OrderDate":"5/22/2016","TotalPayment":"$408411.93","Status":1,"Type":1},{"OrderID":"54868-4798","ShipCountry":"ID","ShipAddress":"669 Fordem Park","ShipName":"Koss-Goldner","OrderDate":"3/28/2017","TotalPayment":"$651637.06","Status":5,"Type":3},{"OrderID":"68788-0014","ShipCountry":"SE","ShipAddress":"85 Welch Alley","ShipName":"Gislason-Ankunding","OrderDate":"2/7/2016","TotalPayment":"$899623.09","Status":6,"Type":2},{"OrderID":"67425-007","ShipCountry":"AZ","ShipAddress":"717 Westend Street","ShipName":"Boehm-Murazik","OrderDate":"2/16/2017","TotalPayment":"$873587.91","Status":6,"Type":1},{"OrderID":"54868-4711","ShipCountry":"ZA","ShipAddress":"514 Kropf Parkway","ShipName":"Casper-Fahey","OrderDate":"1/23/2017","TotalPayment":"$545739.51","Status":6,"Type":3}]},\n{"RecordID":61,"FirstName":"Sherill","LastName":"Morrish","Company":"Reallinks","Email":"smorrish1o@wikimedia.org","Phone":"696-168-0798","Status":2,"Type":3,"Orders":[{"OrderID":"68016-440","ShipCountry":"CN","ShipAddress":"01 Algoma Drive","ShipName":"Williamson, Mosciski and VonRueden","OrderDate":"8/14/2016","TotalPayment":"$647322.10","Status":5,"Type":2},{"OrderID":"52125-617","ShipCountry":"ID","ShipAddress":"980 Lunder Court","ShipName":"Bradtke-Keeling","OrderDate":"3/30/2017","TotalPayment":"$769554.30","Status":4,"Type":3},{"OrderID":"0054-8858","ShipCountry":"FR","ShipAddress":"8 Monica Pass","ShipName":"Lebsack, Paucek and Beatty","OrderDate":"2/21/2016","TotalPayment":"$201804.39","Status":4,"Type":3},{"OrderID":"0115-1483","ShipCountry":"FR","ShipAddress":"6541 Old Shore Terrace","ShipName":"Steuber, Hoeger and Deckow","OrderDate":"6/11/2016","TotalPayment":"$404845.13","Status":6,"Type":1},{"OrderID":"64455-106","ShipCountry":"VN","ShipAddress":"92 Merrick Park","ShipName":"Hegmann-Deckow","OrderDate":"2/14/2016","TotalPayment":"$1169704.29","Status":4,"Type":3},{"OrderID":"54157-102","ShipCountry":"KG","ShipAddress":"2875 Fuller Park","ShipName":"Lindgren Inc","OrderDate":"4/23/2016","TotalPayment":"$1162513.37","Status":3,"Type":1},{"OrderID":"52125-740","ShipCountry":"ID","ShipAddress":"50 Delaware Court","ShipName":"Dietrich, Von and Volkman","OrderDate":"5/7/2017","TotalPayment":"$118157.06","Status":4,"Type":1},{"OrderID":"59011-757","ShipCountry":"UA","ShipAddress":"06877 Eagle Crest Terrace","ShipName":"Hettinger, Marvin and Adams","OrderDate":"3/29/2016","TotalPayment":"$826378.02","Status":2,"Type":2},{"OrderID":"0093-2075","ShipCountry":"IR","ShipAddress":"868 Arkansas Avenue","ShipName":"Hessel Group","OrderDate":"1/6/2016","TotalPayment":"$204418.03","Status":6,"Type":1},{"OrderID":"0378-2099","ShipCountry":"AL","ShipAddress":"6 Granby Center","ShipName":"McDermott Inc","OrderDate":"12/29/2016","TotalPayment":"$361967.62","Status":5,"Type":2},{"OrderID":"61657-0251","ShipCountry":"IQ","ShipAddress":"9017 Ohio Crossing","ShipName":"Kuhlman, Hickle and Kuhn","OrderDate":"7/20/2016","TotalPayment":"$366582.30","Status":1,"Type":1},{"OrderID":"0179-0030","ShipCountry":"PE","ShipAddress":"8331 Caliangt Avenue","ShipName":"Rutherford Inc","OrderDate":"1/9/2017","TotalPayment":"$330993.83","Status":5,"Type":1},{"OrderID":"60681-2808","ShipCountry":"US","ShipAddress":"31548 Orin Lane","ShipName":"Hartmann LLC","OrderDate":"9/26/2016","TotalPayment":"$546782.07","Status":2,"Type":2},{"OrderID":"39822-0330","ShipCountry":"NG","ShipAddress":"84129 Ruskin Trail","ShipName":"Gottlieb, Miller and Harvey","OrderDate":"1/18/2016","TotalPayment":"$783652.54","Status":4,"Type":1},{"OrderID":"43857-0276","ShipCountry":"LC","ShipAddress":"3 Raven Avenue","ShipName":"Kshlerin-Schmeler","OrderDate":"6/5/2016","TotalPayment":"$860164.20","Status":6,"Type":2},{"OrderID":"36987-2661","ShipCountry":"HU","ShipAddress":"15 Roxbury Hill","ShipName":"Dietrich Inc","OrderDate":"10/4/2016","TotalPayment":"$799439.42","Status":6,"Type":3},{"OrderID":"16590-087","ShipCountry":"PT","ShipAddress":"63 Sachs Way","ShipName":"Hamill and Sons","OrderDate":"12/5/2016","TotalPayment":"$1192649.55","Status":2,"Type":2},{"OrderID":"21130-217","ShipCountry":"MY","ShipAddress":"4 Thackeray Plaza","ShipName":"Orn, Brown and Windler","OrderDate":"8/26/2016","TotalPayment":"$192648.48","Status":2,"Type":3},{"OrderID":"0093-4741","ShipCountry":"US","ShipAddress":"052 Scofield Crossing","ShipName":"Moen-Herman","OrderDate":"1/25/2017","TotalPayment":"$683628.54","Status":2,"Type":3},{"OrderID":"60512-6037","ShipCountry":"RU","ShipAddress":"1581 Mallard Lane","ShipName":"Wolf LLC","OrderDate":"5/13/2016","TotalPayment":"$868071.30","Status":3,"Type":1}]},\n{"RecordID":62,"FirstName":"Tressa","LastName":"Daouze","Company":"Zooxo","Email":"tdaouze1p@phoca.cz","Phone":"790-731-8935","Status":3,"Type":3,"Orders":[{"OrderID":"42571-105","ShipCountry":"SV","ShipAddress":"047 Calypso Plaza","ShipName":"Wilderman LLC","OrderDate":"12/27/2016","TotalPayment":"$85182.60","Status":4,"Type":1},{"OrderID":"98132-186","ShipCountry":"PA","ShipAddress":"9 Dunning Parkway","ShipName":"Runolfsdottir, Gaylord and Wisoky","OrderDate":"7/29/2017","TotalPayment":"$1192351.31","Status":3,"Type":3},{"OrderID":"55316-678","ShipCountry":"SE","ShipAddress":"3 Mesta Junction","ShipName":"Reynolds-Swaniawski","OrderDate":"1/23/2017","TotalPayment":"$267559.10","Status":6,"Type":3},{"OrderID":"49884-123","ShipCountry":"BR","ShipAddress":"81810 Westerfield Street","ShipName":"Klein Inc","OrderDate":"10/24/2017","TotalPayment":"$13921.52","Status":4,"Type":2},{"OrderID":"0037-0431","ShipCountry":"AU","ShipAddress":"25716 Morrow Point","ShipName":"Lueilwitz, Macejkovic and Ritchie","OrderDate":"2/18/2017","TotalPayment":"$467822.35","Status":6,"Type":1},{"OrderID":"36987-1724","ShipCountry":"MA","ShipAddress":"92725 Blackbird Way","ShipName":"Kuhlman-Williamson","OrderDate":"8/30/2016","TotalPayment":"$1167161.13","Status":2,"Type":2}]},\n{"RecordID":63,"FirstName":"Beatrice","LastName":"Levington","Company":"Quimba","Email":"blevington1q@bloomberg.com","Phone":"847-783-6717","Status":5,"Type":1,"Orders":[{"OrderID":"65862-119","ShipCountry":"HR","ShipAddress":"9850 Luster Hill","ShipName":"Olson-Harber","OrderDate":"10/2/2017","TotalPayment":"$880938.07","Status":4,"Type":1},{"OrderID":"54973-3156","ShipCountry":"RU","ShipAddress":"118 Shoshone Drive","ShipName":"Bernhard, Reilly and Kirlin","OrderDate":"7/26/2017","TotalPayment":"$167984.52","Status":1,"Type":2},{"OrderID":"43353-160","ShipCountry":"CO","ShipAddress":"097 Tomscot Parkway","ShipName":"Stoltenberg, Wolff and Rodriguez","OrderDate":"2/6/2017","TotalPayment":"$766687.92","Status":3,"Type":2},{"OrderID":"0409-2347","ShipCountry":"PT","ShipAddress":"4 Sheridan Alley","ShipName":"Rolfson, Funk and Grimes","OrderDate":"1/22/2016","TotalPayment":"$848597.32","Status":1,"Type":1},{"OrderID":"44523-535","ShipCountry":"CM","ShipAddress":"6807 Raven Plaza","ShipName":"McClure Group","OrderDate":"4/19/2017","TotalPayment":"$385078.10","Status":1,"Type":3},{"OrderID":"62011-0174","ShipCountry":"NO","ShipAddress":"8 Arizona Street","ShipName":"Prohaska Inc","OrderDate":"2/3/2017","TotalPayment":"$1030678.60","Status":3,"Type":3},{"OrderID":"10742-8142","ShipCountry":"BR","ShipAddress":"1 Dixon Court","ShipName":"Gerlach, Bruen and Tillman","OrderDate":"6/4/2017","TotalPayment":"$480874.20","Status":2,"Type":2},{"OrderID":"58411-175","ShipCountry":"CN","ShipAddress":"82260 Dapin Pass","ShipName":"Franecki-Murphy","OrderDate":"8/16/2016","TotalPayment":"$752558.44","Status":5,"Type":1},{"OrderID":"65841-635","ShipCountry":"BR","ShipAddress":"87 Petterle Terrace","ShipName":"Reichert LLC","OrderDate":"9/7/2016","TotalPayment":"$78280.43","Status":4,"Type":3}]},\n{"RecordID":64,"FirstName":"Livvie","LastName":"Rigney","Company":"Voonyx","Email":"lrigney1r@buzzfeed.com","Phone":"630-904-0637","Status":2,"Type":3,"Orders":[{"OrderID":"60429-578","ShipCountry":"CN","ShipAddress":"50661 Grayhawk Junction","ShipName":"Cruickshank and Sons","OrderDate":"10/22/2016","TotalPayment":"$251999.82","Status":1,"Type":2},{"OrderID":"0143-9803","ShipCountry":"AR","ShipAddress":"78 Delladonna Lane","ShipName":"Jacobi-Hammes","OrderDate":"10/19/2016","TotalPayment":"$837678.69","Status":2,"Type":3},{"OrderID":"49999-034","ShipCountry":"BA","ShipAddress":"07889 Basil Alley","ShipName":"O\'Reilly, Ankunding and Schulist","OrderDate":"11/20/2017","TotalPayment":"$893967.72","Status":2,"Type":3},{"OrderID":"11822-6201","ShipCountry":"BY","ShipAddress":"596 Continental Trail","ShipName":"Langosh and Sons","OrderDate":"5/18/2017","TotalPayment":"$1019845.13","Status":4,"Type":3},{"OrderID":"49288-0719","ShipCountry":"ID","ShipAddress":"1 Kim Place","ShipName":"Runte-Trantow","OrderDate":"2/25/2017","TotalPayment":"$1095949.30","Status":4,"Type":3},{"OrderID":"62045-6333","ShipCountry":"BR","ShipAddress":"3092 Nova Place","ShipName":"Kohler-Greenfelder","OrderDate":"11/9/2016","TotalPayment":"$1138141.36","Status":2,"Type":3},{"OrderID":"53208-475","ShipCountry":"AO","ShipAddress":"10718 Bluestem Circle","ShipName":"Schuster-Koss","OrderDate":"5/10/2017","TotalPayment":"$262491.70","Status":4,"Type":3},{"OrderID":"68258-6041","ShipCountry":"PH","ShipAddress":"1 Mockingbird Street","ShipName":"Runte Inc","OrderDate":"12/30/2016","TotalPayment":"$276676.63","Status":3,"Type":2},{"OrderID":"13537-047","ShipCountry":"PL","ShipAddress":"70922 Jenna Park","ShipName":"Schamberger, Reichel and Kemmer","OrderDate":"12/11/2016","TotalPayment":"$865466.93","Status":1,"Type":3}]},\n{"RecordID":65,"FirstName":"Alaine","LastName":"Crudge","Company":"Skaboo","Email":"acrudge1s@cbc.ca","Phone":"951-467-5400","Status":6,"Type":3,"Orders":[{"OrderID":"50436-6103","ShipCountry":"PT","ShipAddress":"84698 Huxley Place","ShipName":"Connelly and Sons","OrderDate":"11/20/2017","TotalPayment":"$645329.23","Status":5,"Type":3},{"OrderID":"43611-006","ShipCountry":"UA","ShipAddress":"80 Oneill Junction","ShipName":"Paucek-Armstrong","OrderDate":"8/12/2016","TotalPayment":"$992644.29","Status":5,"Type":1},{"OrderID":"55316-267","ShipCountry":"JP","ShipAddress":"69 Colorado Alley","ShipName":"Deckow LLC","OrderDate":"12/28/2017","TotalPayment":"$193438.17","Status":3,"Type":3},{"OrderID":"52125-433","ShipCountry":"ID","ShipAddress":"224 Dixon Drive","ShipName":"Koelpin Inc","OrderDate":"2/5/2016","TotalPayment":"$871915.33","Status":1,"Type":3},{"OrderID":"48951-3042","ShipCountry":"PT","ShipAddress":"2 Lillian Alley","ShipName":"Wiza-Jaskolski","OrderDate":"2/27/2016","TotalPayment":"$124340.47","Status":3,"Type":1},{"OrderID":"43063-051","ShipCountry":"PT","ShipAddress":"53 Reindahl Drive","ShipName":"Mertz, Sipes and Quigley","OrderDate":"7/25/2016","TotalPayment":"$59067.64","Status":3,"Type":1},{"OrderID":"54575-220","ShipCountry":"PT","ShipAddress":"421 Gale Center","ShipName":"Kutch-Haag","OrderDate":"8/28/2016","TotalPayment":"$662562.15","Status":3,"Type":3},{"OrderID":"55670-133","ShipCountry":"PH","ShipAddress":"72 Dawn Way","ShipName":"Kemmer LLC","OrderDate":"2/23/2017","TotalPayment":"$109397.00","Status":1,"Type":1},{"OrderID":"0228-3091","ShipCountry":"CN","ShipAddress":"7 Cherokee Lane","ShipName":"Torp and Sons","OrderDate":"7/19/2017","TotalPayment":"$1001560.56","Status":1,"Type":1},{"OrderID":"41525-6001","ShipCountry":"FR","ShipAddress":"3691 Sheridan Way","ShipName":"Johnston-Kemmer","OrderDate":"12/3/2016","TotalPayment":"$879369.23","Status":4,"Type":1},{"OrderID":"20276-158","ShipCountry":"CN","ShipAddress":"0437 Luster Pass","ShipName":"Farrell, Abbott and Hirthe","OrderDate":"10/22/2016","TotalPayment":"$533042.11","Status":2,"Type":1},{"OrderID":"25000-117","ShipCountry":"CO","ShipAddress":"673 Oxford Park","ShipName":"Shields-Beatty","OrderDate":"6/12/2016","TotalPayment":"$796482.24","Status":2,"Type":1},{"OrderID":"55154-5471","ShipCountry":"SV","ShipAddress":"478 Oneill Way","ShipName":"Spinka and Sons","OrderDate":"11/1/2017","TotalPayment":"$265540.20","Status":4,"Type":2},{"OrderID":"51346-101","ShipCountry":"RU","ShipAddress":"64 Susan Plaza","ShipName":"Satterfield, Wolf and Hettinger","OrderDate":"10/24/2016","TotalPayment":"$475446.40","Status":4,"Type":2},{"OrderID":"36987-1138","ShipCountry":"JP","ShipAddress":"1043 Heath Alley","ShipName":"Mitchell LLC","OrderDate":"8/28/2016","TotalPayment":"$970369.46","Status":2,"Type":3}]},\n{"RecordID":66,"FirstName":"Winn","LastName":"Withrington","Company":"Photofeed","Email":"wwithrington1t@cmu.edu","Phone":"224-763-7882","Status":3,"Type":1,"Orders":[{"OrderID":"53499-5159","ShipCountry":"VE","ShipAddress":"62149 Talisman Crossing","ShipName":"Turcotte-Purdy","OrderDate":"11/20/2017","TotalPayment":"$42099.71","Status":5,"Type":3},{"OrderID":"0641-6084","ShipCountry":"ID","ShipAddress":"545 Cody Drive","ShipName":"Haley Group","OrderDate":"9/7/2017","TotalPayment":"$754416.43","Status":6,"Type":3},{"OrderID":"62756-555","ShipCountry":"RU","ShipAddress":"54099 Milwaukee Drive","ShipName":"Sipes, Schmeler and Marvin","OrderDate":"1/8/2016","TotalPayment":"$150675.46","Status":1,"Type":1},{"OrderID":"59148-070","ShipCountry":"ID","ShipAddress":"57 Towne Avenue","ShipName":"Predovic Inc","OrderDate":"5/30/2016","TotalPayment":"$715608.00","Status":2,"Type":2},{"OrderID":"53187-199","ShipCountry":"FR","ShipAddress":"642 Gateway Road","ShipName":"Krajcik, Dach and Huels","OrderDate":"7/29/2016","TotalPayment":"$451757.91","Status":2,"Type":3},{"OrderID":"36800-949","ShipCountry":"CZ","ShipAddress":"01 Bonner Avenue","ShipName":"Turcotte-Franecki","OrderDate":"7/28/2016","TotalPayment":"$977925.68","Status":4,"Type":2},{"OrderID":"42787-101","ShipCountry":"BG","ShipAddress":"26 Bellgrove Terrace","ShipName":"Grimes Inc","OrderDate":"3/5/2016","TotalPayment":"$77092.70","Status":5,"Type":2},{"OrderID":"68703-026","ShipCountry":"US","ShipAddress":"104 Spohn Plaza","ShipName":"Bode-Wilderman","OrderDate":"11/19/2016","TotalPayment":"$328709.01","Status":3,"Type":2},{"OrderID":"0472-0381","ShipCountry":"BR","ShipAddress":"47771 Algoma Parkway","ShipName":"Hegmann-McClure","OrderDate":"9/21/2017","TotalPayment":"$1150766.62","Status":3,"Type":1},{"OrderID":"30698-032","ShipCountry":"BR","ShipAddress":"7523 Buell Street","ShipName":"Stroman, Runolfsson and Daugherty","OrderDate":"5/11/2016","TotalPayment":"$787151.00","Status":2,"Type":3},{"OrderID":"55910-702","ShipCountry":"AL","ShipAddress":"976 Sundown Street","ShipName":"Moen Inc","OrderDate":"10/9/2017","TotalPayment":"$955803.97","Status":6,"Type":2},{"OrderID":"54868-5907","ShipCountry":"CN","ShipAddress":"1 Hansons Circle","ShipName":"Block-Paucek","OrderDate":"2/13/2017","TotalPayment":"$674410.39","Status":1,"Type":1},{"OrderID":"0268-0173","ShipCountry":"CU","ShipAddress":"229 Clemons Hill","ShipName":"Zulauf and Sons","OrderDate":"4/7/2016","TotalPayment":"$452933.31","Status":6,"Type":2}]},\n{"RecordID":67,"FirstName":"Goober","LastName":"Humber","Company":"Latz","Email":"ghumber1u@wiley.com","Phone":"677-646-7765","Status":1,"Type":2,"Orders":[{"OrderID":"55154-5706","ShipCountry":"CN","ShipAddress":"6 Lillian Terrace","ShipName":"Vandervort-Schowalter","OrderDate":"4/28/2017","TotalPayment":"$1166134.32","Status":2,"Type":2},{"OrderID":"65862-525","ShipCountry":"PH","ShipAddress":"06707 Donald Hill","ShipName":"Yundt Group","OrderDate":"7/22/2017","TotalPayment":"$840740.59","Status":3,"Type":3},{"OrderID":"53187-480","ShipCountry":"CN","ShipAddress":"7819 Dawn Plaza","ShipName":"Stracke Group","OrderDate":"11/6/2017","TotalPayment":"$1194013.06","Status":3,"Type":3},{"OrderID":"49035-555","ShipCountry":"MX","ShipAddress":"8893 Forest Way","ShipName":"Abshire-Leannon","OrderDate":"4/26/2017","TotalPayment":"$371421.48","Status":1,"Type":3},{"OrderID":"53808-0396","ShipCountry":"CU","ShipAddress":"539 Waywood Drive","ShipName":"Hills-Braun","OrderDate":"6/30/2017","TotalPayment":"$719684.41","Status":1,"Type":2},{"OrderID":"50390-703","ShipCountry":"ID","ShipAddress":"333 Mccormick Lane","ShipName":"Mante and Sons","OrderDate":"2/2/2016","TotalPayment":"$1056075.81","Status":3,"Type":1},{"OrderID":"66949-339","ShipCountry":"MX","ShipAddress":"89929 Crest Line Street","ShipName":"Schuppe-Littel","OrderDate":"12/7/2016","TotalPayment":"$1179863.92","Status":6,"Type":3},{"OrderID":"53208-447","ShipCountry":"KZ","ShipAddress":"1582 Luster Point","ShipName":"Krajcik-Cassin","OrderDate":"9/10/2017","TotalPayment":"$455342.76","Status":3,"Type":1},{"OrderID":"43063-190","ShipCountry":"BR","ShipAddress":"11191 Dwight Trail","ShipName":"Ortiz, Sauer and Kirlin","OrderDate":"3/3/2017","TotalPayment":"$624489.75","Status":6,"Type":2},{"OrderID":"0067-4000","ShipCountry":"PT","ShipAddress":"03918 Rigney Terrace","ShipName":"Sporer, Muller and Lind","OrderDate":"6/22/2017","TotalPayment":"$936303.83","Status":1,"Type":3},{"OrderID":"42926-120","ShipCountry":"PT","ShipAddress":"68112 Golf Course Crossing","ShipName":"Harris-Nicolas","OrderDate":"4/6/2017","TotalPayment":"$934323.57","Status":1,"Type":1},{"OrderID":"42002-616","ShipCountry":"PL","ShipAddress":"080 Green Ridge Pass","ShipName":"Kihn-Hintz","OrderDate":"2/3/2017","TotalPayment":"$1034113.34","Status":2,"Type":3},{"OrderID":"57955-5151","ShipCountry":"PH","ShipAddress":"29992 Brentwood Court","ShipName":"Bernier, McGlynn and Zboncak","OrderDate":"10/20/2017","TotalPayment":"$86775.26","Status":6,"Type":3},{"OrderID":"63187-017","ShipCountry":"PH","ShipAddress":"39 Eagan Avenue","ShipName":"Corwin, Bins and Lind","OrderDate":"2/20/2016","TotalPayment":"$1007066.30","Status":5,"Type":1},{"OrderID":"36987-3271","ShipCountry":"VN","ShipAddress":"0 4th Alley","ShipName":"Torphy Group","OrderDate":"5/12/2016","TotalPayment":"$541551.65","Status":4,"Type":2},{"OrderID":"0591-3292","ShipCountry":"CO","ShipAddress":"52048 Anthes Plaza","ShipName":"Jacobi, Hahn and Effertz","OrderDate":"11/5/2017","TotalPayment":"$982824.91","Status":6,"Type":2},{"OrderID":"59535-8901","ShipCountry":"FR","ShipAddress":"6 Sommers Point","ShipName":"O\'Connell-Block","OrderDate":"6/23/2017","TotalPayment":"$787012.80","Status":2,"Type":3},{"OrderID":"68788-9077","ShipCountry":"CN","ShipAddress":"37525 Dunning Street","ShipName":"D\'Amore, D\'Amore and Boyer","OrderDate":"2/13/2016","TotalPayment":"$309977.50","Status":5,"Type":3}]},\n{"RecordID":68,"FirstName":"Deana","LastName":"Broxup","Company":"Leenti","Email":"dbroxup1v@cafepress.com","Phone":"548-638-4115","Status":1,"Type":3,"Orders":[{"OrderID":"67777-404","ShipCountry":"CN","ShipAddress":"72898 Portage Road","ShipName":"Kohler and Sons","OrderDate":"4/21/2016","TotalPayment":"$1149407.29","Status":4,"Type":3},{"OrderID":"49884-210","ShipCountry":"BR","ShipAddress":"011 Moose Place","ShipName":"Renner-Klein","OrderDate":"9/30/2017","TotalPayment":"$495209.66","Status":1,"Type":3},{"OrderID":"48951-3116","ShipCountry":"GA","ShipAddress":"29 Londonderry Center","ShipName":"Weber, Olson and Ward","OrderDate":"9/18/2016","TotalPayment":"$1005400.67","Status":3,"Type":1},{"OrderID":"51079-152","ShipCountry":"ID","ShipAddress":"237 Grim Place","ShipName":"Williamson Inc","OrderDate":"4/19/2017","TotalPayment":"$343445.06","Status":6,"Type":2},{"OrderID":"60505-0253","ShipCountry":"MM","ShipAddress":"68 Delaware Point","ShipName":"Boyer Inc","OrderDate":"2/12/2016","TotalPayment":"$408136.08","Status":6,"Type":1},{"OrderID":"50436-7073","ShipCountry":"CN","ShipAddress":"3359 Kedzie Terrace","ShipName":"Mills-Aufderhar","OrderDate":"7/30/2016","TotalPayment":"$1028889.21","Status":5,"Type":2},{"OrderID":"43455-0008","ShipCountry":"SA","ShipAddress":"01 Duke Plaza","ShipName":"Morissette, Nikolaus and Ernser","OrderDate":"8/28/2016","TotalPayment":"$645471.44","Status":2,"Type":1},{"OrderID":"36987-2950","ShipCountry":"PL","ShipAddress":"650 Clarendon Center","ShipName":"Lind LLC","OrderDate":"3/23/2016","TotalPayment":"$362412.69","Status":5,"Type":1},{"OrderID":"52533-060","ShipCountry":"ZA","ShipAddress":"864 Sugar Pass","ShipName":"Anderson-Waelchi","OrderDate":"11/14/2016","TotalPayment":"$201405.21","Status":1,"Type":1},{"OrderID":"49349-550","ShipCountry":"CN","ShipAddress":"8840 Nevada Way","ShipName":"Willms-Kiehn","OrderDate":"2/14/2016","TotalPayment":"$343712.60","Status":4,"Type":3},{"OrderID":"55910-664","ShipCountry":"CN","ShipAddress":"3443 Fairfield Plaza","ShipName":"Wilderman LLC","OrderDate":"7/3/2016","TotalPayment":"$517636.86","Status":2,"Type":1},{"OrderID":"0093-7336","ShipCountry":"CN","ShipAddress":"486 Hoard Hill","ShipName":"Stanton, Bogan and Zemlak","OrderDate":"1/8/2017","TotalPayment":"$241932.54","Status":4,"Type":2},{"OrderID":"33342-016","ShipCountry":"XK","ShipAddress":"3038 Meadow Valley Circle","ShipName":"Botsford, Goldner and Emmerich","OrderDate":"11/5/2016","TotalPayment":"$1075402.45","Status":6,"Type":2},{"OrderID":"0574-0426","ShipCountry":"SY","ShipAddress":"249 Hermina Court","ShipName":"Prohaska, Schumm and Douglas","OrderDate":"1/7/2017","TotalPayment":"$205824.73","Status":6,"Type":1}]},\n{"RecordID":69,"FirstName":"Bernhard","LastName":"Cane","Company":"Trilia","Email":"bcane1w@etsy.com","Phone":"971-738-0822","Status":3,"Type":2,"Orders":[{"OrderID":"36987-1559","ShipCountry":"ID","ShipAddress":"33973 Warbler Circle","ShipName":"Auer-Nader","OrderDate":"8/12/2017","TotalPayment":"$678877.70","Status":1,"Type":1},{"OrderID":"60429-030","ShipCountry":"VN","ShipAddress":"839 Forest Dale Parkway","ShipName":"Hermann, Lubowitz and Kuhic","OrderDate":"4/23/2016","TotalPayment":"$57183.41","Status":2,"Type":3},{"OrderID":"55301-612","ShipCountry":"CN","ShipAddress":"32006 Maryland Place","ShipName":"Casper LLC","OrderDate":"2/21/2016","TotalPayment":"$303638.63","Status":3,"Type":2},{"OrderID":"48951-6028","ShipCountry":"PA","ShipAddress":"1857 Susan Trail","ShipName":"Schuster Inc","OrderDate":"9/29/2016","TotalPayment":"$97080.99","Status":4,"Type":3},{"OrderID":"11523-7356","ShipCountry":"CO","ShipAddress":"25 Carioca Street","ShipName":"Lesch-Torp","OrderDate":"10/18/2017","TotalPayment":"$229844.67","Status":1,"Type":3},{"OrderID":"17478-209","ShipCountry":"RU","ShipAddress":"62 3rd Court","ShipName":"Gaylord-Wehner","OrderDate":"5/20/2016","TotalPayment":"$740851.02","Status":5,"Type":1},{"OrderID":"62742-4030","ShipCountry":"BR","ShipAddress":"39195 Loeprich Way","ShipName":"Wiza-Waters","OrderDate":"8/7/2017","TotalPayment":"$845334.28","Status":5,"Type":1},{"OrderID":"54868-6326","ShipCountry":"AF","ShipAddress":"500 Village Green Plaza","ShipName":"Cormier, Huels and Fritsch","OrderDate":"4/2/2017","TotalPayment":"$199971.24","Status":3,"Type":2},{"OrderID":"53942-503","ShipCountry":"CN","ShipAddress":"94 Eagle Crest Terrace","ShipName":"Feeney Inc","OrderDate":"3/27/2016","TotalPayment":"$565124.63","Status":2,"Type":2},{"OrderID":"61010-8600","ShipCountry":"KP","ShipAddress":"9154 Holmberg Road","ShipName":"Nicolas-Robel","OrderDate":"6/30/2016","TotalPayment":"$870122.32","Status":2,"Type":1},{"OrderID":"76119-1325","ShipCountry":"DO","ShipAddress":"8 Pepper Wood Street","ShipName":"Lueilwitz, Wyman and Jerde","OrderDate":"12/7/2016","TotalPayment":"$938699.20","Status":2,"Type":3},{"OrderID":"0093-6137","ShipCountry":"PH","ShipAddress":"757 Toban Parkway","ShipName":"Kuphal-Weber","OrderDate":"12/6/2017","TotalPayment":"$401118.05","Status":1,"Type":1},{"OrderID":"55714-2259","ShipCountry":"BY","ShipAddress":"5 Everett Lane","ShipName":"Lebsack, Lubowitz and Glover","OrderDate":"11/9/2017","TotalPayment":"$115441.60","Status":2,"Type":1},{"OrderID":"53808-0852","ShipCountry":"JP","ShipAddress":"83305 Glacier Hill Parkway","ShipName":"Witting, Bauch and Balistreri","OrderDate":"1/30/2016","TotalPayment":"$339321.27","Status":5,"Type":1},{"OrderID":"57344-113","ShipCountry":"CN","ShipAddress":"725 Glacier Hill Point","ShipName":"Stiedemann, Bauch and Jast","OrderDate":"1/11/2016","TotalPayment":"$704911.03","Status":3,"Type":2},{"OrderID":"60505-2640","ShipCountry":"FR","ShipAddress":"1066 Canary Pass","ShipName":"Mohr, Hodkiewicz and Koelpin","OrderDate":"7/30/2016","TotalPayment":"$304238.67","Status":4,"Type":1}]},\n{"RecordID":70,"FirstName":"Korella","LastName":"Winterborne","Company":"Yamia","Email":"kwinterborne1x@mapquest.com","Phone":"949-514-4136","Status":5,"Type":1,"Orders":[{"OrderID":"0264-7885","ShipCountry":"ID","ShipAddress":"82750 Brickson Park Plaza","ShipName":"Hermann, Harber and Schneider","OrderDate":"10/5/2017","TotalPayment":"$279462.97","Status":2,"Type":1},{"OrderID":"21695-318","ShipCountry":"CN","ShipAddress":"11 Northview Street","ShipName":"Von LLC","OrderDate":"12/2/2017","TotalPayment":"$222925.54","Status":4,"Type":1},{"OrderID":"55289-612","ShipCountry":"CA","ShipAddress":"0 Novick Street","ShipName":"Erdman-Mosciski","OrderDate":"5/21/2016","TotalPayment":"$900381.48","Status":2,"Type":2},{"OrderID":"0187-2097","ShipCountry":"LK","ShipAddress":"68 Monument Terrace","ShipName":"Prohaska-Mitchell","OrderDate":"9/12/2016","TotalPayment":"$406769.91","Status":3,"Type":3},{"OrderID":"62011-0144","ShipCountry":"BR","ShipAddress":"35223 Vernon Crossing","ShipName":"Heidenreich-Mohr","OrderDate":"2/8/2017","TotalPayment":"$829510.20","Status":5,"Type":1},{"OrderID":"61715-039","ShipCountry":"GR","ShipAddress":"005 Chinook Road","ShipName":"Wehner-Gusikowski","OrderDate":"3/6/2016","TotalPayment":"$957153.57","Status":4,"Type":1},{"OrderID":"50382-003","ShipCountry":"AR","ShipAddress":"9 Carioca Court","ShipName":"Breitenberg, Little and Predovic","OrderDate":"4/8/2017","TotalPayment":"$203981.90","Status":3,"Type":1},{"OrderID":"33261-788","ShipCountry":"HN","ShipAddress":"7214 Menomonie Parkway","ShipName":"Lehner Inc","OrderDate":"7/27/2016","TotalPayment":"$127002.75","Status":4,"Type":1},{"OrderID":"0173-0602","ShipCountry":"CZ","ShipAddress":"4879 Springs Hill","ShipName":"Welch Group","OrderDate":"2/15/2016","TotalPayment":"$394763.67","Status":1,"Type":1},{"OrderID":"10096-0291","ShipCountry":"PL","ShipAddress":"7 Coleman Drive","ShipName":"Leannon-Bartell","OrderDate":"10/22/2016","TotalPayment":"$1049314.52","Status":4,"Type":3}]},\n{"RecordID":71,"FirstName":"Eustacia","LastName":"Gaenor","Company":"Meevee","Email":"egaenor1y@europa.eu","Phone":"240-169-3315","Status":2,"Type":2,"Orders":[{"OrderID":"68151-1294","ShipCountry":"RU","ShipAddress":"4509 Donald Terrace","ShipName":"Little, Abernathy and Jacobs","OrderDate":"11/9/2016","TotalPayment":"$222587.27","Status":6,"Type":1},{"OrderID":"63629-3205","ShipCountry":"CN","ShipAddress":"273 Karstens Lane","ShipName":"Emmerich, Yundt and Kohler","OrderDate":"1/21/2017","TotalPayment":"$637138.35","Status":5,"Type":2},{"OrderID":"14060-006","ShipCountry":"BA","ShipAddress":"12 Ludington Place","ShipName":"Rohan Group","OrderDate":"3/21/2016","TotalPayment":"$1049336.73","Status":6,"Type":2},{"OrderID":"29500-8010","ShipCountry":"PL","ShipAddress":"650 Rigney Pass","ShipName":"Rutherford and Sons","OrderDate":"6/17/2017","TotalPayment":"$353186.21","Status":5,"Type":3},{"OrderID":"68016-137","ShipCountry":"RS","ShipAddress":"71 Leroy Crossing","ShipName":"Von-Dickens","OrderDate":"1/16/2017","TotalPayment":"$1150344.51","Status":2,"Type":3},{"OrderID":"43063-481","ShipCountry":"PH","ShipAddress":"9 Northwestern Pass","ShipName":"Welch-O\'Conner","OrderDate":"12/16/2017","TotalPayment":"$490108.31","Status":1,"Type":1},{"OrderID":"49873-302","ShipCountry":"NE","ShipAddress":"50 Farragut Street","ShipName":"Gorczany Inc","OrderDate":"12/22/2017","TotalPayment":"$904431.71","Status":2,"Type":2},{"OrderID":"0832-1082","ShipCountry":"NZ","ShipAddress":"5 Goodland Road","ShipName":"Murazik LLC","OrderDate":"10/3/2017","TotalPayment":"$268357.60","Status":5,"Type":3},{"OrderID":"50580-679","ShipCountry":"PH","ShipAddress":"58 Knutson Plaza","ShipName":"Nicolas, Streich and Miller","OrderDate":"1/6/2017","TotalPayment":"$741583.70","Status":6,"Type":3},{"OrderID":"30142-839","ShipCountry":"BR","ShipAddress":"853 Twin Pines Circle","ShipName":"Murphy Inc","OrderDate":"12/21/2017","TotalPayment":"$85054.02","Status":6,"Type":2},{"OrderID":"62296-0036","ShipCountry":"GR","ShipAddress":"830 Transport Street","ShipName":"Kassulke and Sons","OrderDate":"2/23/2016","TotalPayment":"$142674.89","Status":6,"Type":3},{"OrderID":"37808-308","ShipCountry":"CN","ShipAddress":"15 Southridge Trail","ShipName":"Little-Vandervort","OrderDate":"3/19/2017","TotalPayment":"$1059783.68","Status":1,"Type":2},{"OrderID":"42982-4441","ShipCountry":"RU","ShipAddress":"247 Summerview Park","ShipName":"Romaguera, Ondricka and Will","OrderDate":"6/14/2016","TotalPayment":"$447605.64","Status":2,"Type":1},{"OrderID":"53157-120","ShipCountry":"EC","ShipAddress":"1 Becker Circle","ShipName":"Keeling Inc","OrderDate":"1/22/2017","TotalPayment":"$48283.93","Status":4,"Type":2}]},\n{"RecordID":72,"FirstName":"Una","LastName":"Husbands","Company":"Realfire","Email":"uhusbands1z@phoca.cz","Phone":"505-785-4296","Status":4,"Type":1,"Orders":[{"OrderID":"0904-6331","ShipCountry":"CN","ShipAddress":"0 Dovetail Center","ShipName":"Bahringer Inc","OrderDate":"1/13/2017","TotalPayment":"$347336.72","Status":6,"Type":2},{"OrderID":"37012-667","ShipCountry":"ID","ShipAddress":"58 Hayes Road","ShipName":"Schimmel, Schimmel and Douglas","OrderDate":"5/11/2016","TotalPayment":"$511564.26","Status":2,"Type":2},{"OrderID":"63940-611","ShipCountry":"RS","ShipAddress":"05 Sullivan Hill","ShipName":"MacGyver-Bernier","OrderDate":"4/11/2017","TotalPayment":"$139802.18","Status":3,"Type":2},{"OrderID":"0268-0802","ShipCountry":"PH","ShipAddress":"052 Blue Bill Park Pass","ShipName":"Schimmel and Sons","OrderDate":"10/9/2016","TotalPayment":"$169528.13","Status":4,"Type":1},{"OrderID":"0006-3941","ShipCountry":"KY","ShipAddress":"9696 Blue Bill Park Drive","ShipName":"Cummerata-Schmitt","OrderDate":"3/21/2016","TotalPayment":"$622927.79","Status":4,"Type":2},{"OrderID":"68151-2946","ShipCountry":"HN","ShipAddress":"9847 Holy Cross Park","ShipName":"Okuneva, Wintheiser and Hayes","OrderDate":"1/13/2016","TotalPayment":"$28781.40","Status":6,"Type":2},{"OrderID":"50458-551","ShipCountry":"SI","ShipAddress":"86 Blaine Park","ShipName":"Langworth-Fisher","OrderDate":"8/28/2016","TotalPayment":"$1188173.44","Status":5,"Type":2},{"OrderID":"48951-8232","ShipCountry":"BR","ShipAddress":"29800 Barby Street","ShipName":"Tillman-Schowalter","OrderDate":"2/7/2017","TotalPayment":"$1104584.72","Status":5,"Type":3},{"OrderID":"13537-166","ShipCountry":"BD","ShipAddress":"363 Bartelt Drive","ShipName":"Rempel LLC","OrderDate":"8/2/2017","TotalPayment":"$838386.65","Status":6,"Type":1},{"OrderID":"65862-134","ShipCountry":"ID","ShipAddress":"59 West Junction","ShipName":"Jenkins, MacGyver and Hane","OrderDate":"12/2/2016","TotalPayment":"$140971.92","Status":1,"Type":3},{"OrderID":"49288-0354","ShipCountry":"ID","ShipAddress":"49 Merrick Place","ShipName":"Dickinson-Hermann","OrderDate":"8/25/2017","TotalPayment":"$580465.12","Status":1,"Type":3},{"OrderID":"47335-004","ShipCountry":"SY","ShipAddress":"83 Meadow Valley Crossing","ShipName":"Brekke-Dicki","OrderDate":"9/13/2016","TotalPayment":"$1019550.38","Status":4,"Type":1},{"OrderID":"0113-0857","ShipCountry":"CN","ShipAddress":"0367 Moose Crossing","ShipName":"Grady Group","OrderDate":"3/29/2016","TotalPayment":"$1062930.64","Status":4,"Type":3}]},\n{"RecordID":73,"FirstName":"Moria","LastName":"Broschke","Company":"Cogidoo","Email":"mbroschke20@i2i.jp","Phone":"804-717-8125","Status":1,"Type":2,"Orders":[{"OrderID":"54868-5821","ShipCountry":"ID","ShipAddress":"6 Reindahl Parkway","ShipName":"Ebert, Hilpert and Stark","OrderDate":"10/12/2016","TotalPayment":"$448304.63","Status":6,"Type":2},{"OrderID":"54569-2095","ShipCountry":"CN","ShipAddress":"79 Packers Terrace","ShipName":"Schoen, Treutel and Schaden","OrderDate":"11/17/2017","TotalPayment":"$852815.93","Status":3,"Type":3},{"OrderID":"37000-756","ShipCountry":"US","ShipAddress":"191 Merrick Crossing","ShipName":"Raynor, Torphy and D\'Amore","OrderDate":"8/11/2017","TotalPayment":"$146132.63","Status":2,"Type":2},{"OrderID":"0135-0195","ShipCountry":"PE","ShipAddress":"8360 Springview Plaza","ShipName":"Langworth-Crist","OrderDate":"11/13/2016","TotalPayment":"$469787.48","Status":1,"Type":1},{"OrderID":"75857-1104","ShipCountry":"CN","ShipAddress":"5 Westridge Avenue","ShipName":"McClure-Rolfson","OrderDate":"4/23/2016","TotalPayment":"$1163537.49","Status":2,"Type":2},{"OrderID":"55648-374","ShipCountry":"VN","ShipAddress":"2 Larry Circle","ShipName":"Kutch, Greenholt and Keeling","OrderDate":"5/16/2016","TotalPayment":"$1115192.06","Status":2,"Type":3},{"OrderID":"68387-531","ShipCountry":"ID","ShipAddress":"787 Vera Trail","ShipName":"Jones-Kozey","OrderDate":"7/25/2016","TotalPayment":"$188989.38","Status":4,"Type":1},{"OrderID":"53808-0665","ShipCountry":"US","ShipAddress":"340 Thackeray Terrace","ShipName":"Tromp, Schmitt and Bradtke","OrderDate":"9/29/2017","TotalPayment":"$473215.90","Status":6,"Type":3}]},\n{"RecordID":74,"FirstName":"Eb","LastName":"Easdon","Company":"Jabbercube","Email":"eeasdon21@walmart.com","Phone":"313-866-7485","Status":2,"Type":3,"Orders":[{"OrderID":"66613-8148","ShipCountry":"TH","ShipAddress":"2 Pepper Wood Junction","ShipName":"Treutel-Ondricka","OrderDate":"7/25/2016","TotalPayment":"$1053146.25","Status":5,"Type":2},{"OrderID":"42254-005","ShipCountry":"CA","ShipAddress":"69 Miller Point","ShipName":"Jones, Fritsch and Konopelski","OrderDate":"9/11/2017","TotalPayment":"$987505.47","Status":2,"Type":2},{"OrderID":"59579-004","ShipCountry":"BR","ShipAddress":"2 Carey Road","ShipName":"Bruen Inc","OrderDate":"5/26/2016","TotalPayment":"$495090.65","Status":4,"Type":3},{"OrderID":"53942-311","ShipCountry":"AS","ShipAddress":"39915 Grayhawk Court","ShipName":"Dicki-Rath","OrderDate":"4/22/2016","TotalPayment":"$491591.60","Status":6,"Type":2},{"OrderID":"55111-126","ShipCountry":"NL","ShipAddress":"642 Susan Circle","ShipName":"Towne-Bailey","OrderDate":"8/11/2017","TotalPayment":"$1137269.20","Status":1,"Type":3},{"OrderID":"35356-477","ShipCountry":"CN","ShipAddress":"26 Blue Bill Park Court","ShipName":"Pagac-Rolfson","OrderDate":"2/13/2017","TotalPayment":"$795657.78","Status":5,"Type":2},{"OrderID":"60505-0003","ShipCountry":"MY","ShipAddress":"53 Jenna Point","ShipName":"Schimmel, Kovacek and Huels","OrderDate":"9/4/2016","TotalPayment":"$1087904.40","Status":5,"Type":2},{"OrderID":"62011-0003","ShipCountry":"ID","ShipAddress":"6149 Dahle Terrace","ShipName":"Corkery-Aufderhar","OrderDate":"3/9/2017","TotalPayment":"$323700.81","Status":2,"Type":3},{"OrderID":"0615-5620","ShipCountry":"TZ","ShipAddress":"4943 Talisman Center","ShipName":"Hills-Lindgren","OrderDate":"5/8/2016","TotalPayment":"$846261.40","Status":6,"Type":2},{"OrderID":"0682-0480","ShipCountry":"AL","ShipAddress":"8 Portage Circle","ShipName":"Ullrich LLC","OrderDate":"11/3/2017","TotalPayment":"$894753.65","Status":6,"Type":3},{"OrderID":"55154-7352","ShipCountry":"PH","ShipAddress":"29 Karstens Junction","ShipName":"Haag, Graham and Murray","OrderDate":"6/17/2017","TotalPayment":"$588964.71","Status":5,"Type":1},{"OrderID":"64679-422","ShipCountry":"JM","ShipAddress":"34 West Street","ShipName":"Dietrich, Miller and Pouros","OrderDate":"11/14/2016","TotalPayment":"$163818.34","Status":2,"Type":3},{"OrderID":"0067-6394","ShipCountry":"ID","ShipAddress":"98 Green Ridge Parkway","ShipName":"Zboncak-Williamson","OrderDate":"12/5/2016","TotalPayment":"$883747.99","Status":6,"Type":3},{"OrderID":"55154-6726","ShipCountry":"CN","ShipAddress":"954 Holmberg Place","ShipName":"Hamill Inc","OrderDate":"9/10/2016","TotalPayment":"$479400.53","Status":5,"Type":1},{"OrderID":"52125-095","ShipCountry":"KZ","ShipAddress":"4 Crest Line Way","ShipName":"McKenzie LLC","OrderDate":"8/30/2017","TotalPayment":"$157693.58","Status":5,"Type":1}]},\n{"RecordID":75,"FirstName":"Hoyt","LastName":"Foucar","Company":"Trilith","Email":"hfoucar22@nydailynews.com","Phone":"768-708-1455","Status":2,"Type":3,"Orders":[{"OrderID":"68788-9548","ShipCountry":"PH","ShipAddress":"6456 Muir Point","ShipName":"Pacocha, Morar and Kihn","OrderDate":"5/8/2017","TotalPayment":"$196609.24","Status":4,"Type":2},{"OrderID":"63629-4148","ShipCountry":"RU","ShipAddress":"15002 Waxwing Drive","ShipName":"Runolfsdottir, Fay and Nader","OrderDate":"6/25/2016","TotalPayment":"$482281.21","Status":4,"Type":1},{"OrderID":"0069-0336","ShipCountry":"GR","ShipAddress":"9091 Sunnyside Place","ShipName":"Parisian, Schimmel and Rempel","OrderDate":"12/12/2017","TotalPayment":"$732402.85","Status":4,"Type":3},{"OrderID":"49349-717","ShipCountry":"CN","ShipAddress":"57 Garrison Avenue","ShipName":"Mohr Group","OrderDate":"8/19/2016","TotalPayment":"$96083.24","Status":2,"Type":2},{"OrderID":"57520-0407","ShipCountry":"US","ShipAddress":"8 Blaine Avenue","ShipName":"Wiza Group","OrderDate":"8/20/2017","TotalPayment":"$676741.06","Status":5,"Type":3},{"OrderID":"30142-306","ShipCountry":"TZ","ShipAddress":"3766 Reinke Parkway","ShipName":"Auer, Barrows and Kuhic","OrderDate":"5/21/2016","TotalPayment":"$556538.40","Status":5,"Type":2},{"OrderID":"51523-011","ShipCountry":"SE","ShipAddress":"79 Melrose Trail","ShipName":"Beier, Gerlach and Davis","OrderDate":"5/12/2016","TotalPayment":"$877529.05","Status":5,"Type":3},{"OrderID":"0121-4788","ShipCountry":"SE","ShipAddress":"11 Lakeland Drive","ShipName":"Kirlin, Ortiz and Prosacco","OrderDate":"7/20/2017","TotalPayment":"$476308.51","Status":2,"Type":1},{"OrderID":"68084-863","ShipCountry":"MX","ShipAddress":"7 Dakota Plaza","ShipName":"Walter LLC","OrderDate":"5/6/2016","TotalPayment":"$701061.21","Status":3,"Type":1},{"OrderID":"22700-098","ShipCountry":"HN","ShipAddress":"2 Autumn Leaf Point","ShipName":"Macejkovic Inc","OrderDate":"10/31/2017","TotalPayment":"$698149.31","Status":5,"Type":3},{"OrderID":"45963-500","ShipCountry":"TH","ShipAddress":"38 Iowa Hill","ShipName":"Muller-Kunde","OrderDate":"5/19/2016","TotalPayment":"$824311.32","Status":3,"Type":3},{"OrderID":"49349-352","ShipCountry":"CN","ShipAddress":"934 Memorial Terrace","ShipName":"Satterfield-Cartwright","OrderDate":"12/12/2017","TotalPayment":"$498189.34","Status":6,"Type":3},{"OrderID":"0378-9121","ShipCountry":"OM","ShipAddress":"30975 Express Point","ShipName":"Cassin, Miller and Heidenreich","OrderDate":"6/28/2017","TotalPayment":"$729547.78","Status":3,"Type":3},{"OrderID":"60905-0405","ShipCountry":"CN","ShipAddress":"70083 Farwell Pass","ShipName":"Kertzmann Group","OrderDate":"11/12/2017","TotalPayment":"$943226.70","Status":1,"Type":2}]},\n{"RecordID":76,"FirstName":"Joseph","LastName":"Bahlmann","Company":"Twitterwire","Email":"jbahlmann23@twitpic.com","Phone":"924-273-4946","Status":5,"Type":3,"Orders":[{"OrderID":"0093-7599","ShipCountry":"MX","ShipAddress":"08 Sutherland Alley","ShipName":"Koepp-Murphy","OrderDate":"4/6/2016","TotalPayment":"$237076.77","Status":6,"Type":1},{"OrderID":"59667-0105","ShipCountry":"JP","ShipAddress":"06599 Sherman Plaza","ShipName":"Hoppe LLC","OrderDate":"7/19/2016","TotalPayment":"$42445.51","Status":1,"Type":3},{"OrderID":"11523-4765","ShipCountry":"AR","ShipAddress":"814 Ruskin Circle","ShipName":"Larkin LLC","OrderDate":"2/22/2017","TotalPayment":"$821767.09","Status":2,"Type":1},{"OrderID":"0273-0358","ShipCountry":"ID","ShipAddress":"57905 Upham Place","ShipName":"Keeling-Howell","OrderDate":"12/26/2016","TotalPayment":"$1068593.69","Status":1,"Type":1},{"OrderID":"68599-0208","ShipCountry":"MX","ShipAddress":"2371 Upham Center","ShipName":"Jacobi Inc","OrderDate":"4/23/2017","TotalPayment":"$247619.83","Status":3,"Type":3},{"OrderID":"49738-866","ShipCountry":"PK","ShipAddress":"536 Buell Parkway","ShipName":"Lemke LLC","OrderDate":"6/3/2017","TotalPayment":"$132385.73","Status":6,"Type":3},{"OrderID":"67938-2019","ShipCountry":"CN","ShipAddress":"5202 Northport Parkway","ShipName":"Beier-Rogahn","OrderDate":"7/19/2017","TotalPayment":"$418381.92","Status":5,"Type":2},{"OrderID":"55390-358","ShipCountry":"BD","ShipAddress":"6982 Nancy Avenue","ShipName":"O\'Reilly, Ratke and Fadel","OrderDate":"11/13/2017","TotalPayment":"$337143.21","Status":4,"Type":1},{"OrderID":"11822-0442","ShipCountry":"PH","ShipAddress":"130 Kipling Hill","ShipName":"Rau, Schamberger and Stehr","OrderDate":"11/17/2016","TotalPayment":"$97335.17","Status":5,"Type":3},{"OrderID":"0363-0601","ShipCountry":"CN","ShipAddress":"3 Beilfuss Way","ShipName":"Osinski, Monahan and Wilkinson","OrderDate":"2/1/2016","TotalPayment":"$1066752.17","Status":1,"Type":1},{"OrderID":"52257-1201","ShipCountry":"EE","ShipAddress":"8380 Kedzie Terrace","ShipName":"Wilkinson-Trantow","OrderDate":"11/28/2017","TotalPayment":"$1150391.40","Status":1,"Type":1},{"OrderID":"27808-001","ShipCountry":"SE","ShipAddress":"577 Tennyson Hill","ShipName":"Welch LLC","OrderDate":"8/11/2016","TotalPayment":"$752935.22","Status":4,"Type":2},{"OrderID":"54569-0199","ShipCountry":"PT","ShipAddress":"976 Ilene Alley","ShipName":"Feeney and Sons","OrderDate":"11/17/2017","TotalPayment":"$600213.04","Status":4,"Type":3},{"OrderID":"67512-224","ShipCountry":"TH","ShipAddress":"0 Becker Circle","ShipName":"Rath and Sons","OrderDate":"6/25/2017","TotalPayment":"$895233.38","Status":3,"Type":2},{"OrderID":"0536-3605","ShipCountry":"CZ","ShipAddress":"1700 Melby Junction","ShipName":"Rohan-Tillman","OrderDate":"3/24/2016","TotalPayment":"$557375.93","Status":3,"Type":2},{"OrderID":"20802-1501","ShipCountry":"PL","ShipAddress":"09 Porter Junction","ShipName":"Zemlak, Fadel and Hintz","OrderDate":"6/20/2016","TotalPayment":"$653709.53","Status":2,"Type":3},{"OrderID":"63736-363","ShipCountry":"BR","ShipAddress":"0 Main Way","ShipName":"Hyatt, Will and Schoen","OrderDate":"6/6/2016","TotalPayment":"$751901.97","Status":5,"Type":2},{"OrderID":"61703-342","ShipCountry":"PL","ShipAddress":"049 Park Meadow Parkway","ShipName":"Torp, Murazik and Jacobi","OrderDate":"10/8/2017","TotalPayment":"$682640.70","Status":2,"Type":3},{"OrderID":"10812-435","ShipCountry":"NL","ShipAddress":"78 Trailsway Plaza","ShipName":"Roob, Kutch and Lakin","OrderDate":"11/2/2017","TotalPayment":"$991195.03","Status":5,"Type":1},{"OrderID":"63323-370","ShipCountry":"TZ","ShipAddress":"0 Farwell Pass","ShipName":"Hoppe, Sanford and Herzog","OrderDate":"3/8/2016","TotalPayment":"$1082637.89","Status":5,"Type":3}]},\n{"RecordID":77,"FirstName":"Francklin","LastName":"Kliemann","Company":"Trudeo","Email":"fkliemann24@squarespace.com","Phone":"931-145-2463","Status":6,"Type":1,"Orders":[{"OrderID":"62742-4036","ShipCountry":"PH","ShipAddress":"3985 Lighthouse Bay Trail","ShipName":"Stracke-Treutel","OrderDate":"1/13/2016","TotalPayment":"$1179891.22","Status":4,"Type":3},{"OrderID":"62032-200","ShipCountry":"FI","ShipAddress":"3425 6th Crossing","ShipName":"Pollich Group","OrderDate":"7/4/2016","TotalPayment":"$215273.29","Status":4,"Type":1},{"OrderID":"10702-013","ShipCountry":"RU","ShipAddress":"8969 Weeping Birch Junction","ShipName":"Gottlieb Inc","OrderDate":"10/6/2017","TotalPayment":"$988731.76","Status":1,"Type":3},{"OrderID":"55154-6964","ShipCountry":"DE","ShipAddress":"76902 Fulton Center","ShipName":"Bogisich-Gorczany","OrderDate":"4/3/2017","TotalPayment":"$195719.92","Status":4,"Type":3},{"OrderID":"75854-202","ShipCountry":"ID","ShipAddress":"8 Tony Crossing","ShipName":"Koch-Hartmann","OrderDate":"9/15/2017","TotalPayment":"$998284.39","Status":3,"Type":3},{"OrderID":"54569-4466","ShipCountry":"PH","ShipAddress":"3 Granby Circle","ShipName":"Roob-Glover","OrderDate":"11/21/2016","TotalPayment":"$13516.76","Status":3,"Type":1},{"OrderID":"76237-206","ShipCountry":"US","ShipAddress":"8691 Roth Lane","ShipName":"Johnson, Doyle and Fadel","OrderDate":"7/19/2016","TotalPayment":"$955144.03","Status":1,"Type":1},{"OrderID":"17478-523","ShipCountry":"XK","ShipAddress":"497 Melrose Park","ShipName":"Goyette LLC","OrderDate":"4/11/2017","TotalPayment":"$1031737.34","Status":2,"Type":3},{"OrderID":"68151-0527","ShipCountry":"IL","ShipAddress":"6 Sugar Hill","ShipName":"Rau LLC","OrderDate":"10/17/2016","TotalPayment":"$1120002.93","Status":3,"Type":3},{"OrderID":"0085-1312","ShipCountry":"PH","ShipAddress":"9 Canary Plaza","ShipName":"Ward-Grady","OrderDate":"10/13/2016","TotalPayment":"$357305.47","Status":3,"Type":2},{"OrderID":"49349-995","ShipCountry":"US","ShipAddress":"7332 Arapahoe Road","ShipName":"Cummerata-Hartmann","OrderDate":"5/8/2016","TotalPayment":"$804133.74","Status":2,"Type":2}]},\n{"RecordID":78,"FirstName":"Emilie","LastName":"Barbera","Company":"Zazio","Email":"ebarbera25@arstechnica.com","Phone":"559-615-8821","Status":5,"Type":1,"Orders":[{"OrderID":"49349-856","ShipCountry":"CN","ShipAddress":"8 Killdeer Circle","ShipName":"Sporer, Schiller and Schroeder","OrderDate":"5/11/2016","TotalPayment":"$297892.06","Status":1,"Type":2},{"OrderID":"49035-479","ShipCountry":"ID","ShipAddress":"852 Vera Street","ShipName":"Huel, Graham and Prohaska","OrderDate":"5/22/2016","TotalPayment":"$668595.89","Status":1,"Type":1},{"OrderID":"68769-002","ShipCountry":"AZ","ShipAddress":"89 Meadow Valley Road","ShipName":"Reichert Group","OrderDate":"12/24/2017","TotalPayment":"$57961.30","Status":3,"Type":1},{"OrderID":"68180-518","ShipCountry":"CN","ShipAddress":"15 Derek Road","ShipName":"Schmeler Inc","OrderDate":"10/17/2017","TotalPayment":"$283811.19","Status":6,"Type":3},{"OrderID":"44363-1815","ShipCountry":"ZM","ShipAddress":"65546 Grover Drive","ShipName":"Walter, Gerlach and Bartell","OrderDate":"2/20/2017","TotalPayment":"$1166480.43","Status":2,"Type":3},{"OrderID":"65954-014","ShipCountry":"CN","ShipAddress":"52653 Red Cloud Court","ShipName":"Beer-Braun","OrderDate":"6/6/2017","TotalPayment":"$983678.39","Status":2,"Type":1},{"OrderID":"41520-193","ShipCountry":"BR","ShipAddress":"58366 Oxford Hill","ShipName":"Jacobson-Kassulke","OrderDate":"6/19/2017","TotalPayment":"$160170.87","Status":4,"Type":3},{"OrderID":"52125-680","ShipCountry":"EC","ShipAddress":"9265 Sundown Junction","ShipName":"Ratke and Sons","OrderDate":"9/17/2017","TotalPayment":"$930206.45","Status":5,"Type":3},{"OrderID":"63347-120","ShipCountry":"PL","ShipAddress":"02830 Kedzie Way","ShipName":"Gulgowski Inc","OrderDate":"6/3/2017","TotalPayment":"$133638.46","Status":2,"Type":2},{"OrderID":"63629-4177","ShipCountry":"CY","ShipAddress":"10987 Macpherson Avenue","ShipName":"Wilkinson and Sons","OrderDate":"7/13/2016","TotalPayment":"$710238.52","Status":2,"Type":1},{"OrderID":"21695-474","ShipCountry":"PH","ShipAddress":"8 Sheridan Crossing","ShipName":"Klocko and Sons","OrderDate":"1/22/2016","TotalPayment":"$58077.54","Status":4,"Type":2},{"OrderID":"67112-401","ShipCountry":"ID","ShipAddress":"0 Old Gate Crossing","ShipName":"Hegmann Inc","OrderDate":"8/25/2016","TotalPayment":"$341006.70","Status":1,"Type":3},{"OrderID":"48951-1218","ShipCountry":"CZ","ShipAddress":"1 Lyons Avenue","ShipName":"McCullough-Windler","OrderDate":"10/15/2017","TotalPayment":"$430365.30","Status":6,"Type":3},{"OrderID":"60512-0009","ShipCountry":"MY","ShipAddress":"65621 Memorial Center","ShipName":"Greenfelder-Goyette","OrderDate":"1/11/2016","TotalPayment":"$423892.53","Status":4,"Type":3},{"OrderID":"36800-971","ShipCountry":"GT","ShipAddress":"42 Village Parkway","ShipName":"Rowe and Sons","OrderDate":"10/19/2016","TotalPayment":"$1138252.75","Status":6,"Type":2},{"OrderID":"64376-821","ShipCountry":"ID","ShipAddress":"7 Badeau Way","ShipName":"Hudson Group","OrderDate":"1/30/2017","TotalPayment":"$674957.53","Status":1,"Type":1},{"OrderID":"0517-0830","ShipCountry":"AF","ShipAddress":"55911 Marquette Park","ShipName":"Swaniawski-Jerde","OrderDate":"2/10/2016","TotalPayment":"$415283.49","Status":6,"Type":2},{"OrderID":"67544-911","ShipCountry":"CN","ShipAddress":"945 Eagle Crest Point","ShipName":"Adams-Weissnat","OrderDate":"8/2/2016","TotalPayment":"$700160.78","Status":3,"Type":3},{"OrderID":"0615-7639","ShipCountry":"MY","ShipAddress":"9 Arrowood Street","ShipName":"Kassulke, Murphy and Mann","OrderDate":"1/29/2017","TotalPayment":"$182117.86","Status":6,"Type":2},{"OrderID":"68012-102","ShipCountry":"CN","ShipAddress":"15 Sugar Lane","ShipName":"Upton-Ryan","OrderDate":"4/23/2016","TotalPayment":"$1068078.93","Status":6,"Type":1}]},\n{"RecordID":79,"FirstName":"Terencio","LastName":"Vido","Company":"Buzzster","Email":"tvido26@europa.eu","Phone":"570-682-9012","Status":1,"Type":2,"Orders":[{"OrderID":"51079-062","ShipCountry":"ZA","ShipAddress":"42644 Anzinger Point","ShipName":"DuBuque Inc","OrderDate":"4/17/2016","TotalPayment":"$773512.98","Status":5,"Type":2},{"OrderID":"0456-4020","ShipCountry":"PT","ShipAddress":"5 Talmadge Circle","ShipName":"Hyatt Inc","OrderDate":"12/5/2017","TotalPayment":"$187738.47","Status":3,"Type":2},{"OrderID":"0006-0019","ShipCountry":"PE","ShipAddress":"990 Magdeline Way","ShipName":"Corwin, Streich and Kiehn","OrderDate":"5/30/2016","TotalPayment":"$374277.36","Status":2,"Type":3},{"OrderID":"24385-677","ShipCountry":"ID","ShipAddress":"6 Paget Plaza","ShipName":"O\'Kon Group","OrderDate":"6/27/2016","TotalPayment":"$918925.58","Status":3,"Type":3},{"OrderID":"0008-4990","ShipCountry":"CZ","ShipAddress":"3560 Forest Park","ShipName":"Beatty, Bins and Ebert","OrderDate":"10/21/2016","TotalPayment":"$1046538.73","Status":5,"Type":1},{"OrderID":"68387-802","ShipCountry":"AL","ShipAddress":"06574 John Wall Way","ShipName":"Berge-Von","OrderDate":"3/16/2016","TotalPayment":"$797136.53","Status":1,"Type":2},{"OrderID":"13107-012","ShipCountry":"BF","ShipAddress":"11386 Arapahoe Alley","ShipName":"Wilkinson, Oberbrunner and O\'Keefe","OrderDate":"3/29/2017","TotalPayment":"$327442.31","Status":2,"Type":3},{"OrderID":"54868-4991","ShipCountry":"BG","ShipAddress":"3182 Dayton Parkway","ShipName":"Gerlach-Lockman","OrderDate":"12/26/2016","TotalPayment":"$97244.05","Status":6,"Type":3},{"OrderID":"49349-043","ShipCountry":"SE","ShipAddress":"86 Meadow Ridge Street","ShipName":"Murphy, Davis and Schmidt","OrderDate":"9/11/2017","TotalPayment":"$511292.20","Status":2,"Type":2},{"OrderID":"53499-7172","ShipCountry":"PA","ShipAddress":"90 Longview Way","ShipName":"Rau, Fritsch and Spinka","OrderDate":"1/31/2016","TotalPayment":"$168332.29","Status":4,"Type":2},{"OrderID":"67510-0505","ShipCountry":"CN","ShipAddress":"18 Aberg Street","ShipName":"Gusikowski-Rath","OrderDate":"5/14/2017","TotalPayment":"$902108.30","Status":3,"Type":3},{"OrderID":"53808-0629","ShipCountry":"BO","ShipAddress":"185 Lakewood Gardens Junction","ShipName":"Dicki, Kerluke and McLaughlin","OrderDate":"9/5/2017","TotalPayment":"$524275.68","Status":4,"Type":2},{"OrderID":"62856-601","ShipCountry":"GR","ShipAddress":"49 American Alley","ShipName":"Steuber and Sons","OrderDate":"7/29/2017","TotalPayment":"$399239.36","Status":2,"Type":2},{"OrderID":"11559-035","ShipCountry":"ET","ShipAddress":"1207 Elka Plaza","ShipName":"Block LLC","OrderDate":"10/6/2016","TotalPayment":"$123416.54","Status":6,"Type":1},{"OrderID":"44946-1021","ShipCountry":"TH","ShipAddress":"703 Sloan Lane","ShipName":"Steuber-Rodriguez","OrderDate":"3/25/2016","TotalPayment":"$665393.75","Status":6,"Type":3},{"OrderID":"35356-542","ShipCountry":"ID","ShipAddress":"52 Tennessee Park","ShipName":"Wuckert LLC","OrderDate":"2/8/2016","TotalPayment":"$719949.18","Status":5,"Type":2}]},\n{"RecordID":80,"FirstName":"Walther","LastName":"Weedenburg","Company":"Layo","Email":"wweedenburg27@surveymonkey.com","Phone":"545-809-0943","Status":5,"Type":1,"Orders":[{"OrderID":"41167-0091","ShipCountry":"PH","ShipAddress":"5 Buell Circle","ShipName":"Konopelski Inc","OrderDate":"7/11/2017","TotalPayment":"$1038301.78","Status":2,"Type":3},{"OrderID":"0004-0802","ShipCountry":"FM","ShipAddress":"12925 Oxford Plaza","ShipName":"Runte Inc","OrderDate":"8/31/2017","TotalPayment":"$356774.59","Status":4,"Type":2},{"OrderID":"65044-5054","ShipCountry":"CN","ShipAddress":"0 Westerfield Park","ShipName":"Anderson-Kiehn","OrderDate":"4/11/2017","TotalPayment":"$179756.40","Status":4,"Type":1},{"OrderID":"41163-166","ShipCountry":"GR","ShipAddress":"9 Claremont Drive","ShipName":"Stamm-Mohr","OrderDate":"10/26/2016","TotalPayment":"$868672.84","Status":1,"Type":2},{"OrderID":"66969-6024","ShipCountry":"CN","ShipAddress":"36 Valley Edge Road","ShipName":"Schumm, Klein and Feest","OrderDate":"7/6/2016","TotalPayment":"$404134.24","Status":4,"Type":3},{"OrderID":"57469-059","ShipCountry":"ID","ShipAddress":"5 Morningstar Parkway","ShipName":"Koch-Harvey","OrderDate":"7/8/2017","TotalPayment":"$986695.34","Status":1,"Type":3},{"OrderID":"0781-7137","ShipCountry":"PK","ShipAddress":"581 Oakridge Street","ShipName":"Reynolds, Purdy and Pfeffer","OrderDate":"11/24/2017","TotalPayment":"$272908.62","Status":3,"Type":1},{"OrderID":"65293-005","ShipCountry":"ID","ShipAddress":"756 Ramsey Avenue","ShipName":"Stanton-Upton","OrderDate":"9/4/2017","TotalPayment":"$613377.87","Status":2,"Type":3},{"OrderID":"49288-0182","ShipCountry":"NA","ShipAddress":"4870 Katie Terrace","ShipName":"Carroll-Rice","OrderDate":"3/12/2016","TotalPayment":"$1000611.22","Status":3,"Type":1},{"OrderID":"68084-350","ShipCountry":"IR","ShipAddress":"9180 Farwell Drive","ShipName":"Skiles-Murphy","OrderDate":"10/29/2017","TotalPayment":"$1176142.38","Status":4,"Type":2},{"OrderID":"0406-9916","ShipCountry":"VN","ShipAddress":"00131 Golf Course Trail","ShipName":"Zemlak, Roob and Abernathy","OrderDate":"7/22/2017","TotalPayment":"$692348.69","Status":1,"Type":3},{"OrderID":"55154-8509","ShipCountry":"RU","ShipAddress":"01544 Stephen Trail","ShipName":"Bartoletti and Sons","OrderDate":"8/7/2017","TotalPayment":"$1157509.56","Status":3,"Type":2},{"OrderID":"0603-6468","ShipCountry":"RU","ShipAddress":"50118 Grover Road","ShipName":"Kiehn-Heathcote","OrderDate":"8/31/2016","TotalPayment":"$1171950.58","Status":1,"Type":1},{"OrderID":"66129-105","ShipCountry":"NG","ShipAddress":"8256 Schurz Point","ShipName":"Cremin Inc","OrderDate":"11/6/2017","TotalPayment":"$203380.99","Status":3,"Type":1},{"OrderID":"48951-5049","ShipCountry":"CN","ShipAddress":"24 Kingsford Park","ShipName":"Waelchi-Glover","OrderDate":"9/1/2017","TotalPayment":"$551628.70","Status":6,"Type":3},{"OrderID":"15828-106","ShipCountry":"KP","ShipAddress":"71988 Chive Way","ShipName":"Adams and Sons","OrderDate":"5/24/2016","TotalPayment":"$133757.06","Status":5,"Type":1},{"OrderID":"50804-686","ShipCountry":"PL","ShipAddress":"651 Heffernan Hill","ShipName":"Jakubowski, Bartell and Lowe","OrderDate":"4/16/2017","TotalPayment":"$124131.17","Status":6,"Type":1},{"OrderID":"29500-2436","ShipCountry":"ID","ShipAddress":"90957 4th Center","ShipName":"Rice LLC","OrderDate":"7/20/2017","TotalPayment":"$481798.92","Status":6,"Type":3}]},\n{"RecordID":81,"FirstName":"Carlota","LastName":"Tudhope","Company":"Quaxo","Email":"ctudhope28@marketwatch.com","Phone":"795-441-1536","Status":4,"Type":2,"Orders":[{"OrderID":"43419-861","ShipCountry":"PH","ShipAddress":"49166 Drewry Crossing","ShipName":"Wuckert-Romaguera","OrderDate":"4/13/2016","TotalPayment":"$1066100.46","Status":4,"Type":3},{"OrderID":"48951-9015","ShipCountry":"PT","ShipAddress":"12 Judy Street","ShipName":"White, Denesik and Braun","OrderDate":"1/7/2016","TotalPayment":"$1029397.30","Status":5,"Type":2},{"OrderID":"43742-0409","ShipCountry":"MX","ShipAddress":"49400 Helena Court","ShipName":"Gibson Inc","OrderDate":"11/13/2016","TotalPayment":"$754679.90","Status":3,"Type":1},{"OrderID":"0085-4610","ShipCountry":"CN","ShipAddress":"07 Glendale Parkway","ShipName":"Medhurst, Jacobson and Mertz","OrderDate":"4/25/2016","TotalPayment":"$346698.00","Status":1,"Type":2},{"OrderID":"21695-947","ShipCountry":"BR","ShipAddress":"2 Mccormick Point","ShipName":"Emard Group","OrderDate":"2/26/2017","TotalPayment":"$109719.72","Status":6,"Type":1},{"OrderID":"52584-610","ShipCountry":"CN","ShipAddress":"25683 Westport Trail","ShipName":"Carter, Runte and Ondricka","OrderDate":"11/24/2017","TotalPayment":"$304419.90","Status":3,"Type":2},{"OrderID":"49999-122","ShipCountry":"PK","ShipAddress":"1528 Larry Lane","ShipName":"Runte Inc","OrderDate":"1/14/2017","TotalPayment":"$110536.85","Status":2,"Type":1},{"OrderID":"37000-904","ShipCountry":"PT","ShipAddress":"1 Golf Crossing","ShipName":"Marvin, Hudson and Bashirian","OrderDate":"7/18/2016","TotalPayment":"$435074.34","Status":2,"Type":3},{"OrderID":"57691-120","ShipCountry":"RU","ShipAddress":"78112 Pond Lane","ShipName":"Gerhold, Lesch and Graham","OrderDate":"11/16/2016","TotalPayment":"$561812.12","Status":6,"Type":1},{"OrderID":"59779-221","ShipCountry":"VN","ShipAddress":"393 Schurz Avenue","ShipName":"Streich-Braun","OrderDate":"10/30/2016","TotalPayment":"$605873.86","Status":6,"Type":2},{"OrderID":"67046-014","ShipCountry":"ZA","ShipAddress":"86 Farwell Circle","ShipName":"Harris, Green and Jaskolski","OrderDate":"11/27/2016","TotalPayment":"$739178.63","Status":3,"Type":1},{"OrderID":"42254-340","ShipCountry":"CN","ShipAddress":"2585 Havey Lane","ShipName":"Shanahan, Jones and Steuber","OrderDate":"1/28/2017","TotalPayment":"$1027159.71","Status":4,"Type":3},{"OrderID":"24658-243","ShipCountry":"CN","ShipAddress":"926 Express Junction","ShipName":"Murray, Hettinger and Kohler","OrderDate":"6/12/2017","TotalPayment":"$767944.25","Status":1,"Type":1},{"OrderID":"57520-0990","ShipCountry":"FR","ShipAddress":"27653 Carpenter Center","ShipName":"Legros-McGlynn","OrderDate":"12/23/2016","TotalPayment":"$38634.30","Status":2,"Type":1},{"OrderID":"43857-0206","ShipCountry":"DK","ShipAddress":"78 Ramsey Court","ShipName":"Klocko, Ritchie and Zemlak","OrderDate":"2/23/2016","TotalPayment":"$833835.22","Status":4,"Type":3},{"OrderID":"59779-369","ShipCountry":"EE","ShipAddress":"8 Rusk Circle","ShipName":"Gerhold-Ebert","OrderDate":"10/20/2017","TotalPayment":"$140874.05","Status":5,"Type":2},{"OrderID":"72036-220","ShipCountry":"BR","ShipAddress":"36684 Pepper Wood Center","ShipName":"O\'Conner, O\'Kon and Zemlak","OrderDate":"7/12/2017","TotalPayment":"$1014462.20","Status":6,"Type":2},{"OrderID":"49349-899","ShipCountry":"PL","ShipAddress":"11 Oneill Court","ShipName":"Gutmann-Stokes","OrderDate":"7/21/2016","TotalPayment":"$500603.29","Status":1,"Type":3}]},\n{"RecordID":82,"FirstName":"Hubert","LastName":"Hasnney","Company":"Vipe","Email":"hhasnney29@usa.gov","Phone":"884-673-3875","Status":2,"Type":2,"Orders":[{"OrderID":"63981-766","ShipCountry":"RU","ShipAddress":"9 Ruskin Crossing","ShipName":"Haley and Sons","OrderDate":"11/7/2017","TotalPayment":"$198971.93","Status":5,"Type":1},{"OrderID":"35418-750","ShipCountry":"ID","ShipAddress":"4 Roxbury Circle","ShipName":"Koch-Legros","OrderDate":"3/10/2017","TotalPayment":"$605811.21","Status":5,"Type":3},{"OrderID":"59762-0925","ShipCountry":"BR","ShipAddress":"46 Commercial Avenue","ShipName":"Lueilwitz, Quitzon and Williamson","OrderDate":"5/21/2016","TotalPayment":"$63158.62","Status":6,"Type":2},{"OrderID":"57520-0271","ShipCountry":"PL","ShipAddress":"00124 Sundown Plaza","ShipName":"Mohr, Reichel and Rogahn","OrderDate":"4/3/2017","TotalPayment":"$495846.49","Status":5,"Type":2},{"OrderID":"50383-889","ShipCountry":"KR","ShipAddress":"99 Texas Pass","ShipName":"Stroman-Little","OrderDate":"3/29/2016","TotalPayment":"$543745.92","Status":1,"Type":1}]},\n{"RecordID":83,"FirstName":"Darya","LastName":"Oulett","Company":"Ntags","Email":"doulett2a@nhs.uk","Phone":"784-663-2169","Status":2,"Type":3,"Orders":[{"OrderID":"60429-138","ShipCountry":"CN","ShipAddress":"3 Bunting Point","ShipName":"Hauck-Jacobi","OrderDate":"9/11/2017","TotalPayment":"$673217.93","Status":5,"Type":3},{"OrderID":"24909-120","ShipCountry":"BA","ShipAddress":"09 Melrose Pass","ShipName":"Douglas-D\'Amore","OrderDate":"5/14/2017","TotalPayment":"$53917.91","Status":4,"Type":1},{"OrderID":"58232-4021","ShipCountry":"CL","ShipAddress":"514 Morningstar Parkway","ShipName":"Hagenes LLC","OrderDate":"4/13/2017","TotalPayment":"$1013246.14","Status":2,"Type":1},{"OrderID":"55910-708","ShipCountry":"BR","ShipAddress":"44872 Mcbride Avenue","ShipName":"Kertzmann, Nitzsche and Bogan","OrderDate":"9/20/2017","TotalPayment":"$755573.11","Status":1,"Type":1},{"OrderID":"0268-0721","ShipCountry":"CN","ShipAddress":"5665 Bartillon Avenue","ShipName":"King, Schamberger and Wintheiser","OrderDate":"12/22/2017","TotalPayment":"$549575.45","Status":3,"Type":3},{"OrderID":"63629-4698","ShipCountry":"FR","ShipAddress":"4660 Sundown Center","ShipName":"Aufderhar-Senger","OrderDate":"9/13/2016","TotalPayment":"$391345.95","Status":6,"Type":2},{"OrderID":"0069-0094","ShipCountry":"CO","ShipAddress":"97034 Vidon Alley","ShipName":"Kuhn, Durgan and Turner","OrderDate":"9/5/2016","TotalPayment":"$786021.22","Status":3,"Type":3},{"OrderID":"50268-051","ShipCountry":"CN","ShipAddress":"15379 Dunning Avenue","ShipName":"Will-Cassin","OrderDate":"6/30/2016","TotalPayment":"$1154186.69","Status":5,"Type":2},{"OrderID":"68047-253","ShipCountry":"RU","ShipAddress":"28 International Circle","ShipName":"Wiza, Roob and Reinger","OrderDate":"3/2/2016","TotalPayment":"$1099448.31","Status":4,"Type":1},{"OrderID":"24794-223","ShipCountry":"CA","ShipAddress":"22 Rockefeller Parkway","ShipName":"Koss Inc","OrderDate":"10/4/2016","TotalPayment":"$1037279.22","Status":5,"Type":3},{"OrderID":"11344-616","ShipCountry":"RU","ShipAddress":"5 Eastwood Place","ShipName":"Koelpin Inc","OrderDate":"9/22/2017","TotalPayment":"$1133327.62","Status":5,"Type":1}]},\n{"RecordID":84,"FirstName":"Steffie","LastName":"Walewicz","Company":"Feednation","Email":"swalewicz2b@timesonline.co.uk","Phone":"444-386-9191","Status":2,"Type":3,"Orders":[{"OrderID":"65044-3141","ShipCountry":"RU","ShipAddress":"7 2nd Park","ShipName":"Cummerata LLC","OrderDate":"2/28/2016","TotalPayment":"$848021.24","Status":1,"Type":2},{"OrderID":"17478-920","ShipCountry":"ID","ShipAddress":"19 Towne Plaza","ShipName":"Cole-Ward","OrderDate":"8/1/2016","TotalPayment":"$272331.87","Status":4,"Type":2},{"OrderID":"65162-734","ShipCountry":"CN","ShipAddress":"37703 Bayside Crossing","ShipName":"Bradtke-Bauch","OrderDate":"8/22/2016","TotalPayment":"$749986.22","Status":3,"Type":2},{"OrderID":"59726-019","ShipCountry":"AR","ShipAddress":"2 Manley Lane","ShipName":"Jacobson and Sons","OrderDate":"6/12/2017","TotalPayment":"$163681.00","Status":4,"Type":1},{"OrderID":"54569-0235","ShipCountry":"CL","ShipAddress":"10887 Raven Pass","ShipName":"Wehner, Auer and Shanahan","OrderDate":"1/12/2016","TotalPayment":"$42204.81","Status":4,"Type":1},{"OrderID":"50845-0085","ShipCountry":"PL","ShipAddress":"727 Kings Way","ShipName":"Nader LLC","OrderDate":"9/18/2016","TotalPayment":"$748950.52","Status":6,"Type":2},{"OrderID":"55910-988","ShipCountry":"CN","ShipAddress":"252 Westerfield Way","ShipName":"Zieme-Sipes","OrderDate":"10/12/2017","TotalPayment":"$31468.38","Status":1,"Type":2},{"OrderID":"65628-052","ShipCountry":"FR","ShipAddress":"371 Bashford Lane","ShipName":"Simonis-Hilpert","OrderDate":"1/3/2017","TotalPayment":"$852849.52","Status":5,"Type":2},{"OrderID":"0378-3065","ShipCountry":"CO","ShipAddress":"2847 Muir Crossing","ShipName":"Schroeder, Fay and Gutkowski","OrderDate":"12/18/2017","TotalPayment":"$702493.55","Status":3,"Type":1},{"OrderID":"59450-231","ShipCountry":"BR","ShipAddress":"5283 Ruskin Road","ShipName":"Considine Inc","OrderDate":"8/10/2017","TotalPayment":"$904695.74","Status":2,"Type":2},{"OrderID":"68220-143","ShipCountry":"CN","ShipAddress":"38 Sloan Crossing","ShipName":"Schultz, Rolfson and Okuneva","OrderDate":"5/12/2017","TotalPayment":"$912840.56","Status":3,"Type":1},{"OrderID":"55319-081","ShipCountry":"PL","ShipAddress":"8 Iowa Crossing","ShipName":"Kautzer, MacGyver and Jerde","OrderDate":"6/8/2017","TotalPayment":"$277759.59","Status":4,"Type":3},{"OrderID":"10678-005","ShipCountry":"CN","ShipAddress":"80543 Crescent Oaks Junction","ShipName":"Waelchi, Rau and Crona","OrderDate":"12/7/2016","TotalPayment":"$1170553.76","Status":3,"Type":1},{"OrderID":"0409-1483","ShipCountry":"CN","ShipAddress":"5 Upham Alley","ShipName":"Emard-Aufderhar","OrderDate":"1/15/2017","TotalPayment":"$736032.84","Status":6,"Type":1},{"OrderID":"0228-3086","ShipCountry":"RU","ShipAddress":"574 Havey Court","ShipName":"Leannon, Berge and Upton","OrderDate":"4/18/2017","TotalPayment":"$377550.94","Status":3,"Type":3},{"OrderID":"36987-2553","ShipCountry":"CA","ShipAddress":"26 Summit Point","ShipName":"Ferry-Ryan","OrderDate":"5/21/2017","TotalPayment":"$883567.47","Status":4,"Type":3},{"OrderID":"67752-0001","ShipCountry":"CM","ShipAddress":"81 Everett Point","ShipName":"Swift Group","OrderDate":"5/30/2017","TotalPayment":"$688616.65","Status":3,"Type":2},{"OrderID":"60429-260","ShipCountry":"KZ","ShipAddress":"8224 Atwood Place","ShipName":"Schaefer, Strosin and Schmidt","OrderDate":"7/7/2016","TotalPayment":"$979466.32","Status":2,"Type":3}]},\n{"RecordID":85,"FirstName":"Dannie","LastName":"Blakeborough","Company":"Flipbug","Email":"dblakeborough2c@tamu.edu","Phone":"668-217-8095","Status":1,"Type":2,"Orders":[{"OrderID":"64376-132","ShipCountry":"PT","ShipAddress":"13618 Acker Plaza","ShipName":"Legros LLC","OrderDate":"11/3/2017","TotalPayment":"$432849.13","Status":5,"Type":1},{"OrderID":"0228-2067","ShipCountry":"CN","ShipAddress":"6 Fordem Road","ShipName":"Labadie Inc","OrderDate":"2/6/2016","TotalPayment":"$165733.88","Status":5,"Type":3},{"OrderID":"53329-138","ShipCountry":"SE","ShipAddress":"9 Moland Court","ShipName":"Herzog-Becker","OrderDate":"4/4/2017","TotalPayment":"$684816.58","Status":4,"Type":3},{"OrderID":"54868-0269","ShipCountry":"ID","ShipAddress":"23187 Lindbergh Hill","ShipName":"Schoen, Kiehn and Berge","OrderDate":"10/13/2017","TotalPayment":"$108362.04","Status":5,"Type":2},{"OrderID":"63629-1619","ShipCountry":"BR","ShipAddress":"638 Melvin Pass","ShipName":"Considine, Waelchi and Satterfield","OrderDate":"6/14/2016","TotalPayment":"$95715.01","Status":5,"Type":2},{"OrderID":"63776-525","ShipCountry":"ID","ShipAddress":"144 Eastlawn Parkway","ShipName":"Wintheiser-Bernhard","OrderDate":"4/14/2017","TotalPayment":"$867926.48","Status":2,"Type":1},{"OrderID":"48951-4035","ShipCountry":"JO","ShipAddress":"0 Johnson Lane","ShipName":"Parker Inc","OrderDate":"2/10/2016","TotalPayment":"$295067.45","Status":5,"Type":1},{"OrderID":"55910-047","ShipCountry":"BR","ShipAddress":"3 Blackbird Hill","ShipName":"Kunze LLC","OrderDate":"10/10/2016","TotalPayment":"$598419.67","Status":5,"Type":1},{"OrderID":"43269-723","ShipCountry":"AR","ShipAddress":"92 Moulton Park","ShipName":"Tromp Inc","OrderDate":"5/6/2016","TotalPayment":"$22322.67","Status":2,"Type":3},{"OrderID":"0703-3343","ShipCountry":"ID","ShipAddress":"892 Mcguire Street","ShipName":"Hagenes-Stokes","OrderDate":"6/13/2017","TotalPayment":"$166872.53","Status":5,"Type":3},{"OrderID":"59260-135","ShipCountry":"ET","ShipAddress":"19 Troy Drive","ShipName":"Hayes Group","OrderDate":"5/10/2017","TotalPayment":"$1025704.62","Status":3,"Type":3},{"OrderID":"52125-441","ShipCountry":"PH","ShipAddress":"392 Dryden Pass","ShipName":"Murphy, Boehm and Bogan","OrderDate":"6/18/2016","TotalPayment":"$117229.26","Status":5,"Type":1}]},\n{"RecordID":86,"FirstName":"Yetty","LastName":"Tabbitt","Company":"Kimia","Email":"ytabbitt2d@tinyurl.com","Phone":"322-145-9318","Status":4,"Type":1,"Orders":[{"OrderID":"0145-0985","ShipCountry":"PH","ShipAddress":"7 Hanson Point","ShipName":"McDermott and Sons","OrderDate":"3/11/2016","TotalPayment":"$1183727.38","Status":5,"Type":3},{"OrderID":"59762-1815","ShipCountry":"RU","ShipAddress":"0205 Little Fleur Terrace","ShipName":"King, MacGyver and Parisian","OrderDate":"2/14/2017","TotalPayment":"$247437.68","Status":6,"Type":2},{"OrderID":"50241-143","ShipCountry":"VE","ShipAddress":"129 Dorton Drive","ShipName":"Stoltenberg and Sons","OrderDate":"5/31/2017","TotalPayment":"$566471.83","Status":2,"Type":2},{"OrderID":"36987-1449","ShipCountry":"RU","ShipAddress":"3 Warner Road","ShipName":"Volkman, Powlowski and Osinski","OrderDate":"10/26/2016","TotalPayment":"$600346.85","Status":5,"Type":1},{"OrderID":"0409-2025","ShipCountry":"LY","ShipAddress":"42113 Corben Lane","ShipName":"Mohr, Hickle and Tromp","OrderDate":"7/6/2017","TotalPayment":"$905878.42","Status":2,"Type":3},{"OrderID":"54868-1103","ShipCountry":"SE","ShipAddress":"0 Crest Line Circle","ShipName":"Marquardt and Sons","OrderDate":"3/17/2017","TotalPayment":"$124261.55","Status":3,"Type":2},{"OrderID":"52125-569","ShipCountry":"SE","ShipAddress":"5 Merrick Trail","ShipName":"Walsh Group","OrderDate":"10/13/2016","TotalPayment":"$567931.67","Status":6,"Type":1},{"OrderID":"11344-484","ShipCountry":"ID","ShipAddress":"65484 Helena Court","ShipName":"Nicolas Group","OrderDate":"4/5/2016","TotalPayment":"$497484.31","Status":3,"Type":1},{"OrderID":"60589-001","ShipCountry":"ID","ShipAddress":"0344 Fair Oaks Drive","ShipName":"Turcotte-Barrows","OrderDate":"9/12/2016","TotalPayment":"$209135.47","Status":6,"Type":1},{"OrderID":"16590-480","ShipCountry":"CN","ShipAddress":"12 Independence Point","ShipName":"Larkin-Ebert","OrderDate":"9/10/2016","TotalPayment":"$566909.70","Status":6,"Type":2},{"OrderID":"48951-2092","ShipCountry":"ID","ShipAddress":"5 Tennyson Hill","ShipName":"Turner-Leannon","OrderDate":"7/4/2017","TotalPayment":"$749256.97","Status":1,"Type":2},{"OrderID":"63402-510","ShipCountry":"NG","ShipAddress":"98541 Mayer Street","ShipName":"Greenholt, Bashirian and Kerluke","OrderDate":"11/3/2016","TotalPayment":"$936277.23","Status":3,"Type":1},{"OrderID":"48951-3028","ShipCountry":"PH","ShipAddress":"910 Mifflin Hill","ShipName":"Sauer, Will and Kilback","OrderDate":"4/6/2017","TotalPayment":"$176756.56","Status":3,"Type":3}]},\n{"RecordID":87,"FirstName":"Davine","LastName":"MacScherie","Company":"Eimbee","Email":"dmacscherie2e@trellian.com","Phone":"662-393-3301","Status":6,"Type":1,"Orders":[{"OrderID":"52125-444","ShipCountry":"PE","ShipAddress":"54 Oak Way","ShipName":"Langosh-Schuppe","OrderDate":"12/15/2016","TotalPayment":"$460341.78","Status":2,"Type":2},{"OrderID":"48951-3056","ShipCountry":"BR","ShipAddress":"51 Prentice Park","ShipName":"Gerhold-Graham","OrderDate":"8/26/2016","TotalPayment":"$979657.38","Status":4,"Type":1},{"OrderID":"49882-0929","ShipCountry":"CN","ShipAddress":"1704 Bluestem Alley","ShipName":"Nienow-Jerde","OrderDate":"12/9/2016","TotalPayment":"$77330.84","Status":6,"Type":3},{"OrderID":"64370-532","ShipCountry":"KZ","ShipAddress":"03445 Ilene Park","ShipName":"Hintz, Ullrich and Stamm","OrderDate":"1/18/2017","TotalPayment":"$788099.51","Status":4,"Type":3},{"OrderID":"36987-1432","ShipCountry":"TZ","ShipAddress":"3 Main Center","ShipName":"Kohler, Stamm and Schiller","OrderDate":"12/2/2016","TotalPayment":"$312673.21","Status":6,"Type":1},{"OrderID":"0378-3286","ShipCountry":"PK","ShipAddress":"608 5th Crossing","ShipName":"Jerde, Vandervort and Swaniawski","OrderDate":"10/31/2016","TotalPayment":"$638792.88","Status":2,"Type":3},{"OrderID":"52125-314","ShipCountry":"CN","ShipAddress":"4 Northridge Avenue","ShipName":"Dibbert-Weimann","OrderDate":"12/15/2017","TotalPayment":"$1120937.55","Status":6,"Type":1},{"OrderID":"57520-0781","ShipCountry":"ID","ShipAddress":"4122 Maywood Trail","ShipName":"Witting, Nienow and Farrell","OrderDate":"8/12/2016","TotalPayment":"$600946.63","Status":3,"Type":2},{"OrderID":"0378-1190","ShipCountry":"CN","ShipAddress":"26 Stoughton Street","ShipName":"Bartoletti-D\'Amore","OrderDate":"4/2/2016","TotalPayment":"$438039.58","Status":3,"Type":3},{"OrderID":"58468-0041","ShipCountry":"JP","ShipAddress":"339 Pawling Avenue","ShipName":"Rempel Inc","OrderDate":"12/24/2016","TotalPayment":"$632012.70","Status":6,"Type":1}]},\n{"RecordID":88,"FirstName":"Jonell","LastName":"O\'Looney","Company":"Twimm","Email":"jolooney2f@flavors.me","Phone":"335-995-7293","Status":5,"Type":3,"Orders":[{"OrderID":"54868-6376","ShipCountry":"RU","ShipAddress":"98 Merchant Plaza","ShipName":"Gleason-Rolfson","OrderDate":"8/28/2016","TotalPayment":"$915507.53","Status":5,"Type":3},{"OrderID":"16714-375","ShipCountry":"ID","ShipAddress":"74786 Waxwing Parkway","ShipName":"Turcotte, Mante and Trantow","OrderDate":"5/23/2017","TotalPayment":"$222725.49","Status":3,"Type":1},{"OrderID":"53329-165","ShipCountry":"RU","ShipAddress":"59358 Ruskin Pass","ShipName":"Schuppe Inc","OrderDate":"11/8/2017","TotalPayment":"$165061.10","Status":4,"Type":2},{"OrderID":"11673-248","ShipCountry":"TF","ShipAddress":"6937 Kenwood Court","ShipName":"Brakus, Fritsch and Lockman","OrderDate":"10/5/2016","TotalPayment":"$932728.51","Status":5,"Type":1},{"OrderID":"10096-0138","ShipCountry":"DO","ShipAddress":"26 Katie Center","ShipName":"Muller and Sons","OrderDate":"11/21/2016","TotalPayment":"$697590.20","Status":4,"Type":1},{"OrderID":"61570-260","ShipCountry":"TD","ShipAddress":"6435 Rigney Pass","ShipName":"Stiedemann-Connelly","OrderDate":"7/9/2016","TotalPayment":"$464236.25","Status":3,"Type":2},{"OrderID":"54868-0053","ShipCountry":"KP","ShipAddress":"991 Norway Maple Circle","ShipName":"Mertz and Sons","OrderDate":"4/7/2017","TotalPayment":"$879309.12","Status":5,"Type":2},{"OrderID":"55111-201","ShipCountry":"JP","ShipAddress":"419 Oak Valley Point","ShipName":"Kirlin Group","OrderDate":"11/14/2017","TotalPayment":"$581314.23","Status":2,"Type":2},{"OrderID":"75936-111","ShipCountry":"ID","ShipAddress":"9 Amoth Park","ShipName":"Murphy Group","OrderDate":"6/17/2017","TotalPayment":"$1023341.49","Status":6,"Type":1},{"OrderID":"0378-4050","ShipCountry":"PK","ShipAddress":"768 La Follette Road","ShipName":"Hackett and Sons","OrderDate":"11/19/2017","TotalPayment":"$1152644.38","Status":6,"Type":2},{"OrderID":"0019-3183","ShipCountry":"CM","ShipAddress":"22 Twin Pines Drive","ShipName":"Hane-Labadie","OrderDate":"7/29/2017","TotalPayment":"$11383.20","Status":6,"Type":1},{"OrderID":"0395-1685","ShipCountry":"CN","ShipAddress":"588 Fair Oaks Street","ShipName":"Bergstrom LLC","OrderDate":"11/30/2017","TotalPayment":"$584539.91","Status":5,"Type":3},{"OrderID":"50222-227","ShipCountry":"CN","ShipAddress":"689 Kipling Avenue","ShipName":"Harris Inc","OrderDate":"10/20/2017","TotalPayment":"$362300.00","Status":6,"Type":1},{"OrderID":"68828-162","ShipCountry":"BR","ShipAddress":"032 Nobel Place","ShipName":"Douglas-DuBuque","OrderDate":"5/6/2016","TotalPayment":"$880361.73","Status":5,"Type":2},{"OrderID":"62756-915","ShipCountry":"ZA","ShipAddress":"36 Montana Court","ShipName":"Morar, Ward and Lubowitz","OrderDate":"6/15/2017","TotalPayment":"$341582.38","Status":5,"Type":2},{"OrderID":"0179-0138","ShipCountry":"UG","ShipAddress":"1742 Grayhawk Road","ShipName":"Schimmel, Marvin and Littel","OrderDate":"1/29/2016","TotalPayment":"$877251.79","Status":2,"Type":3},{"OrderID":"60505-2660","ShipCountry":"ID","ShipAddress":"2 Prairie Rose Plaza","ShipName":"Adams-Hamill","OrderDate":"9/16/2016","TotalPayment":"$501240.91","Status":4,"Type":2},{"OrderID":"0378-0217","ShipCountry":"ID","ShipAddress":"7 Eagan Crossing","ShipName":"Schuppe, Kessler and Gutkowski","OrderDate":"4/21/2016","TotalPayment":"$919986.40","Status":5,"Type":1}]},\n{"RecordID":89,"FirstName":"Suzann","LastName":"Gulk","Company":"Skyvu","Email":"sgulk2g@wikia.com","Phone":"382-814-8377","Status":1,"Type":3,"Orders":[{"OrderID":"35000-674","ShipCountry":"ID","ShipAddress":"1 Namekagon Trail","ShipName":"Spinka and Sons","OrderDate":"2/8/2017","TotalPayment":"$475714.62","Status":1,"Type":2},{"OrderID":"44924-119","ShipCountry":"CN","ShipAddress":"35045 Dovetail Center","ShipName":"Hirthe and Sons","OrderDate":"8/12/2017","TotalPayment":"$241115.26","Status":2,"Type":2},{"OrderID":"0135-0228","ShipCountry":"UA","ShipAddress":"0 Sunbrook Drive","ShipName":"Mante Inc","OrderDate":"9/19/2016","TotalPayment":"$1039143.66","Status":5,"Type":3},{"OrderID":"60760-104","ShipCountry":"PH","ShipAddress":"43 Division Pass","ShipName":"Champlin and Sons","OrderDate":"6/17/2017","TotalPayment":"$598633.84","Status":1,"Type":2},{"OrderID":"11509-0014","ShipCountry":"PL","ShipAddress":"447 Cardinal Crossing","ShipName":"Marquardt-Muller","OrderDate":"8/14/2016","TotalPayment":"$410680.95","Status":5,"Type":1},{"OrderID":"0135-0532","ShipCountry":"AF","ShipAddress":"82953 Roth Crossing","ShipName":"Kunze-Braun","OrderDate":"8/8/2017","TotalPayment":"$619518.55","Status":3,"Type":3},{"OrderID":"50375-2001","ShipCountry":"ID","ShipAddress":"4038 Meadow Vale Terrace","ShipName":"Langosh-Wehner","OrderDate":"2/16/2017","TotalPayment":"$689764.29","Status":1,"Type":2},{"OrderID":"49967-254","ShipCountry":"ID","ShipAddress":"0150 Swallow Alley","ShipName":"VonRueden-Ondricka","OrderDate":"8/2/2016","TotalPayment":"$976004.18","Status":6,"Type":3},{"OrderID":"67544-408","ShipCountry":"PS","ShipAddress":"6 Fairfield Hill","ShipName":"Bergnaum, Hodkiewicz and Schuster","OrderDate":"5/27/2017","TotalPayment":"$221506.44","Status":4,"Type":2},{"OrderID":"16729-150","ShipCountry":"BR","ShipAddress":"8 Sunfield Park","ShipName":"Walker-Quitzon","OrderDate":"8/13/2016","TotalPayment":"$52854.86","Status":1,"Type":1},{"OrderID":"61601-1117","ShipCountry":"CN","ShipAddress":"568 Kennedy Terrace","ShipName":"Kuhlman-Dach","OrderDate":"2/1/2017","TotalPayment":"$821403.38","Status":1,"Type":1},{"OrderID":"0049-2720","ShipCountry":"CN","ShipAddress":"0443 Harper Center","ShipName":"Lockman, Wilkinson and Ondricka","OrderDate":"5/21/2016","TotalPayment":"$747707.21","Status":1,"Type":1}]},\n{"RecordID":90,"FirstName":"Peta","LastName":"Lowerson","Company":"Flashdog","Email":"plowerson2h@google.nl","Phone":"720-284-2160","Status":6,"Type":2,"Orders":[{"OrderID":"76237-115","ShipCountry":"CN","ShipAddress":"80 Glacier Hill Place","ShipName":"West-Gulgowski","OrderDate":"5/14/2017","TotalPayment":"$875204.16","Status":3,"Type":2},{"OrderID":"0603-6135","ShipCountry":"FR","ShipAddress":"5 Becker Park","ShipName":"Ortiz-Hudson","OrderDate":"10/16/2017","TotalPayment":"$866133.74","Status":5,"Type":2},{"OrderID":"43419-016","ShipCountry":"US","ShipAddress":"53 Del Mar Avenue","ShipName":"Boehm, Hermiston and Jast","OrderDate":"12/25/2016","TotalPayment":"$19830.02","Status":4,"Type":2},{"OrderID":"50488-1201","ShipCountry":"FR","ShipAddress":"54 Stang Crossing","ShipName":"Ledner-Ebert","OrderDate":"1/19/2017","TotalPayment":"$16451.23","Status":1,"Type":2},{"OrderID":"49580-2104","ShipCountry":"ID","ShipAddress":"187 Fremont Hill","ShipName":"Brakus-Kunze","OrderDate":"1/21/2017","TotalPayment":"$282407.28","Status":5,"Type":3},{"OrderID":"64679-736","ShipCountry":"ID","ShipAddress":"13 Mandrake Avenue","ShipName":"Bruen and Sons","OrderDate":"5/26/2016","TotalPayment":"$582639.74","Status":6,"Type":3},{"OrderID":"47202-1504","ShipCountry":"CN","ShipAddress":"9705 Browning Parkway","ShipName":"Willms-Jerde","OrderDate":"12/30/2016","TotalPayment":"$286905.37","Status":1,"Type":1},{"OrderID":"52125-933","ShipCountry":"ID","ShipAddress":"39 Eastwood Terrace","ShipName":"Schaefer-Wunsch","OrderDate":"4/9/2017","TotalPayment":"$1058775.01","Status":1,"Type":2},{"OrderID":"51772-314","ShipCountry":"PL","ShipAddress":"437 Barby Center","ShipName":"DuBuque, Thompson and Wilderman","OrderDate":"9/5/2017","TotalPayment":"$488389.95","Status":1,"Type":3}]},\n{"RecordID":91,"FirstName":"Conny","LastName":"Van Velde","Company":"Kamba","Email":"cvanvelde2i@whitehouse.gov","Phone":"757-718-0233","Status":3,"Type":3,"Orders":[{"OrderID":"75862-019","ShipCountry":"PE","ShipAddress":"1306 David Terrace","ShipName":"Stehr, Jacobi and Aufderhar","OrderDate":"3/30/2016","TotalPayment":"$166737.13","Status":3,"Type":3},{"OrderID":"51346-227","ShipCountry":"ID","ShipAddress":"0440 Logan Drive","ShipName":"Luettgen, Leffler and Braun","OrderDate":"12/13/2016","TotalPayment":"$558879.07","Status":5,"Type":2},{"OrderID":"17478-705","ShipCountry":"MN","ShipAddress":"6816 Logan Parkway","ShipName":"Price LLC","OrderDate":"8/9/2017","TotalPayment":"$248873.06","Status":6,"Type":1},{"OrderID":"55154-4793","ShipCountry":"CN","ShipAddress":"875 Milwaukee Plaza","ShipName":"Bayer-McLaughlin","OrderDate":"5/29/2016","TotalPayment":"$314883.79","Status":2,"Type":3},{"OrderID":"65044-2015","ShipCountry":"PT","ShipAddress":"0433 Prairieview Street","ShipName":"Douglas-Armstrong","OrderDate":"4/8/2016","TotalPayment":"$843415.27","Status":5,"Type":1},{"OrderID":"46362-004","ShipCountry":"CN","ShipAddress":"48 Northland Alley","ShipName":"Quitzon, Koss and Padberg","OrderDate":"8/1/2017","TotalPayment":"$533000.08","Status":2,"Type":2},{"OrderID":"52125-840","ShipCountry":"US","ShipAddress":"937 Clarendon Trail","ShipName":"Raynor-Ernser","OrderDate":"6/17/2017","TotalPayment":"$916324.68","Status":2,"Type":2},{"OrderID":"68983-003","ShipCountry":"CA","ShipAddress":"137 Del Sol Place","ShipName":"Lehner Group","OrderDate":"4/27/2016","TotalPayment":"$996661.61","Status":3,"Type":1},{"OrderID":"0006-3845","ShipCountry":"ID","ShipAddress":"6 Fulton Alley","ShipName":"Runte, Bosco and Lubowitz","OrderDate":"5/30/2016","TotalPayment":"$1046943.59","Status":6,"Type":1},{"OrderID":"57520-0287","ShipCountry":"CZ","ShipAddress":"84369 Homewood Drive","ShipName":"Stracke, Howe and Fadel","OrderDate":"5/1/2017","TotalPayment":"$334368.68","Status":6,"Type":1},{"OrderID":"43269-845","ShipCountry":"ID","ShipAddress":"58 Sommers Road","ShipName":"Kozey-Mraz","OrderDate":"8/21/2016","TotalPayment":"$653252.16","Status":3,"Type":2},{"OrderID":"50988-216","ShipCountry":"PH","ShipAddress":"2765 Mcbride Center","ShipName":"Upton, Orn and Altenwerth","OrderDate":"10/15/2016","TotalPayment":"$85009.11","Status":6,"Type":3},{"OrderID":"48951-4089","ShipCountry":"RU","ShipAddress":"7 North Junction","ShipName":"Harris-Hettinger","OrderDate":"1/7/2016","TotalPayment":"$730607.14","Status":4,"Type":3},{"OrderID":"41250-314","ShipCountry":"TH","ShipAddress":"7716 Londonderry Junction","ShipName":"Donnelly and Sons","OrderDate":"1/6/2017","TotalPayment":"$100162.43","Status":6,"Type":1},{"OrderID":"42291-211","ShipCountry":"CN","ShipAddress":"84148 Harper Road","ShipName":"Pfeffer-Wyman","OrderDate":"7/27/2016","TotalPayment":"$814064.01","Status":6,"Type":2},{"OrderID":"64942-1310","ShipCountry":"SY","ShipAddress":"72 Golden Leaf Drive","ShipName":"Bahringer-Rau","OrderDate":"7/12/2017","TotalPayment":"$292241.17","Status":6,"Type":1},{"OrderID":"60637-006","ShipCountry":"ID","ShipAddress":"0565 Scofield Park","ShipName":"McCullough Group","OrderDate":"3/12/2016","TotalPayment":"$253805.96","Status":5,"Type":1},{"OrderID":"55289-119","ShipCountry":"RU","ShipAddress":"56299 Gateway Avenue","ShipName":"Murazik-Stroman","OrderDate":"1/8/2017","TotalPayment":"$950408.30","Status":5,"Type":2},{"OrderID":"24236-168","ShipCountry":"AR","ShipAddress":"5529 Sunbrook Plaza","ShipName":"Trantow Inc","OrderDate":"10/22/2016","TotalPayment":"$725269.64","Status":1,"Type":3}]},\n{"RecordID":92,"FirstName":"Elset","LastName":"Troppmann","Company":"Myworks","Email":"etroppmann2j@nbcnews.com","Phone":"589-896-6572","Status":4,"Type":3,"Orders":[{"OrderID":"68084-053","ShipCountry":"CN","ShipAddress":"150 Butterfield Hill","ShipName":"Huels LLC","OrderDate":"11/8/2017","TotalPayment":"$828367.64","Status":3,"Type":2},{"OrderID":"0268-6711","ShipCountry":"RU","ShipAddress":"3942 Harbort Avenue","ShipName":"Altenwerth and Sons","OrderDate":"11/9/2016","TotalPayment":"$804100.87","Status":3,"Type":3},{"OrderID":"51346-218","ShipCountry":"FR","ShipAddress":"5 Express Street","ShipName":"Metz LLC","OrderDate":"7/8/2016","TotalPayment":"$122247.53","Status":6,"Type":1},{"OrderID":"64778-0218","ShipCountry":"UZ","ShipAddress":"2 Del Sol Avenue","ShipName":"Reichert, Abbott and Stark","OrderDate":"6/11/2016","TotalPayment":"$864395.39","Status":5,"Type":2},{"OrderID":"51060-003","ShipCountry":"ID","ShipAddress":"3 Esch Drive","ShipName":"VonRueden, Haley and Christiansen","OrderDate":"7/3/2016","TotalPayment":"$238996.02","Status":3,"Type":2},{"OrderID":"62584-693","ShipCountry":"CN","ShipAddress":"8377 Sunfield Terrace","ShipName":"Jast Inc","OrderDate":"6/15/2017","TotalPayment":"$1087549.29","Status":4,"Type":2},{"OrderID":"41520-528","ShipCountry":"US","ShipAddress":"3193 Warner Trail","ShipName":"Leffler, Graham and Fritsch","OrderDate":"2/13/2016","TotalPayment":"$551029.70","Status":1,"Type":1},{"OrderID":"27808-001","ShipCountry":"CN","ShipAddress":"78665 Glendale Center","ShipName":"Stark and Sons","OrderDate":"4/18/2016","TotalPayment":"$1028580.53","Status":2,"Type":3},{"OrderID":"64764-304","ShipCountry":"CN","ShipAddress":"6 Manitowish Center","ShipName":"Mitchell-Bergnaum","OrderDate":"3/19/2017","TotalPayment":"$234839.83","Status":6,"Type":3},{"OrderID":"59779-175","ShipCountry":"TN","ShipAddress":"44121 Bay Place","ShipName":"Gerlach-Schaden","OrderDate":"8/28/2016","TotalPayment":"$308722.03","Status":6,"Type":3},{"OrderID":"64950-230","ShipCountry":"ID","ShipAddress":"7048 Tennyson Plaza","ShipName":"Lesch-Schimmel","OrderDate":"11/27/2017","TotalPayment":"$1159082.28","Status":4,"Type":2},{"OrderID":"41163-678","ShipCountry":"AR","ShipAddress":"2056 Cardinal Terrace","ShipName":"Yost Group","OrderDate":"2/18/2017","TotalPayment":"$994037.39","Status":2,"Type":2},{"OrderID":"62011-0194","ShipCountry":"CN","ShipAddress":"49626 Brown Parkway","ShipName":"Russel-Towne","OrderDate":"10/21/2016","TotalPayment":"$990683.04","Status":4,"Type":2},{"OrderID":"55289-187","ShipCountry":"RS","ShipAddress":"2619 Blaine Street","ShipName":"Howe-Flatley","OrderDate":"11/21/2016","TotalPayment":"$1122988.11","Status":4,"Type":2}]},\n{"RecordID":93,"FirstName":"Andras","LastName":"Imos","Company":"Shufflebeat","Email":"aimos2k@creativecommons.org","Phone":"843-961-3303","Status":6,"Type":2,"Orders":[{"OrderID":"60760-128","ShipCountry":"SI","ShipAddress":"2730 6th Junction","ShipName":"Kerluke-Larkin","OrderDate":"11/28/2017","TotalPayment":"$42250.74","Status":6,"Type":2},{"OrderID":"36987-2760","ShipCountry":"PT","ShipAddress":"038 Sutteridge Crossing","ShipName":"Rolfson-Huel","OrderDate":"3/30/2017","TotalPayment":"$1124121.07","Status":6,"Type":1},{"OrderID":"68599-6112","ShipCountry":"CN","ShipAddress":"329 Kim Lane","ShipName":"Leffler, Howell and Heathcote","OrderDate":"5/28/2016","TotalPayment":"$1102967.88","Status":1,"Type":2},{"OrderID":"75981-226","ShipCountry":"RU","ShipAddress":"5 Talisman Place","ShipName":"Wisoky-Trantow","OrderDate":"12/1/2017","TotalPayment":"$534482.80","Status":4,"Type":3},{"OrderID":"68987-014","ShipCountry":"BR","ShipAddress":"22 Rowland Park","ShipName":"Green-Carter","OrderDate":"1/28/2016","TotalPayment":"$968494.39","Status":1,"Type":2},{"OrderID":"65862-503","ShipCountry":"ID","ShipAddress":"78 Eastwood Terrace","ShipName":"Raynor-Doyle","OrderDate":"1/18/2017","TotalPayment":"$409292.08","Status":5,"Type":1},{"OrderID":"37808-352","ShipCountry":"ID","ShipAddress":"1037 Fremont Place","ShipName":"Stehr Group","OrderDate":"12/25/2016","TotalPayment":"$793192.36","Status":6,"Type":3},{"OrderID":"35356-783","ShipCountry":"PH","ShipAddress":"0 Bunting Point","ShipName":"Kerluke-Kris","OrderDate":"10/14/2016","TotalPayment":"$877510.41","Status":2,"Type":2},{"OrderID":"59762-1852","ShipCountry":"CN","ShipAddress":"96797 Mallard Trail","ShipName":"Donnelly-Tremblay","OrderDate":"6/6/2016","TotalPayment":"$830085.86","Status":6,"Type":3},{"OrderID":"62011-0148","ShipCountry":"PK","ShipAddress":"0617 Jenna Place","ShipName":"Wisoky-Feil","OrderDate":"8/28/2017","TotalPayment":"$1130566.55","Status":4,"Type":1},{"OrderID":"24385-039","ShipCountry":"GT","ShipAddress":"067 Ohio Alley","ShipName":"Monahan, Hagenes and Larkin","OrderDate":"12/9/2017","TotalPayment":"$158778.64","Status":5,"Type":3},{"OrderID":"64942-1169","ShipCountry":"BR","ShipAddress":"5836 Darwin Place","ShipName":"Brekke-Kuhn","OrderDate":"6/30/2017","TotalPayment":"$822795.89","Status":6,"Type":1},{"OrderID":"68220-111","ShipCountry":"CO","ShipAddress":"629 Straubel Point","ShipName":"Anderson, Grady and Okuneva","OrderDate":"8/18/2016","TotalPayment":"$83037.97","Status":5,"Type":3}]},\n{"RecordID":94,"FirstName":"Tom","LastName":"Oneill","Company":"Twitterbridge","Email":"toneill2l@twitter.com","Phone":"913-201-6258","Status":4,"Type":3,"Orders":[{"OrderID":"55111-154","ShipCountry":"PH","ShipAddress":"62 Little Fleur Avenue","ShipName":"Kris, Cronin and Ebert","OrderDate":"1/21/2016","TotalPayment":"$683381.79","Status":1,"Type":1},{"OrderID":"11822-0348","ShipCountry":"CN","ShipAddress":"140 Nancy Street","ShipName":"Mraz-Cole","OrderDate":"11/13/2017","TotalPayment":"$847098.44","Status":3,"Type":3},{"OrderID":"35356-473","ShipCountry":"PL","ShipAddress":"44 Mariners Cove Way","ShipName":"Rosenbaum Group","OrderDate":"2/21/2016","TotalPayment":"$788055.20","Status":4,"Type":1},{"OrderID":"60512-9300","ShipCountry":"VN","ShipAddress":"8 Dwight Terrace","ShipName":"Borer, Renner and McClure","OrderDate":"3/11/2017","TotalPayment":"$678113.91","Status":6,"Type":2},{"OrderID":"68084-055","ShipCountry":"BR","ShipAddress":"4 Farragut Crossing","ShipName":"McGlynn Inc","OrderDate":"3/28/2017","TotalPayment":"$1126780.70","Status":1,"Type":3},{"OrderID":"62499-535","ShipCountry":"PH","ShipAddress":"18 Anniversary Parkway","ShipName":"Toy LLC","OrderDate":"9/21/2016","TotalPayment":"$116014.63","Status":1,"Type":2},{"OrderID":"17433-9877","ShipCountry":"ZA","ShipAddress":"2 Hoepker Parkway","ShipName":"Wolff Inc","OrderDate":"8/17/2017","TotalPayment":"$976577.47","Status":3,"Type":2},{"OrderID":"10056-306","ShipCountry":"CN","ShipAddress":"97 Tennessee Plaza","ShipName":"Kautzer LLC","OrderDate":"7/8/2016","TotalPayment":"$1145695.83","Status":5,"Type":2},{"OrderID":"60505-6025","ShipCountry":"RU","ShipAddress":"168 Sycamore Way","ShipName":"Wisoky, Schuppe and Monahan","OrderDate":"10/7/2016","TotalPayment":"$903744.35","Status":6,"Type":3},{"OrderID":"54973-2906","ShipCountry":"CN","ShipAddress":"6 Porter Hill","ShipName":"Crist, Gaylord and Gerlach","OrderDate":"12/25/2017","TotalPayment":"$770673.33","Status":5,"Type":1},{"OrderID":"0603-1584","ShipCountry":"PH","ShipAddress":"697 Moland Trail","ShipName":"Koepp Group","OrderDate":"7/30/2016","TotalPayment":"$860539.83","Status":6,"Type":2},{"OrderID":"36987-1178","ShipCountry":"AM","ShipAddress":"73 Ruskin Lane","ShipName":"Hansen Group","OrderDate":"6/20/2017","TotalPayment":"$834647.39","Status":6,"Type":3},{"OrderID":"21695-228","ShipCountry":"CN","ShipAddress":"0722 Arapahoe Circle","ShipName":"Kuhic Group","OrderDate":"2/10/2016","TotalPayment":"$499027.62","Status":5,"Type":1}]},\n{"RecordID":95,"FirstName":"Laural","LastName":"Jandel","Company":"Aivee","Email":"ljandel2m@house.gov","Phone":"201-172-8173","Status":1,"Type":2,"Orders":[{"OrderID":"65862-200","ShipCountry":"GR","ShipAddress":"051 Fallview Pass","ShipName":"Gutmann, Keebler and Ward","OrderDate":"3/31/2016","TotalPayment":"$907342.41","Status":3,"Type":1},{"OrderID":"61722-084","ShipCountry":"ID","ShipAddress":"3 Springview Terrace","ShipName":"Emard LLC","OrderDate":"1/11/2017","TotalPayment":"$776461.97","Status":3,"Type":2},{"OrderID":"50436-6106","ShipCountry":"ID","ShipAddress":"21 Anniversary Pass","ShipName":"Hamill, Feest and Bashirian","OrderDate":"2/24/2016","TotalPayment":"$61980.05","Status":2,"Type":1},{"OrderID":"60793-435","ShipCountry":"CN","ShipAddress":"76751 Sugar Lane","ShipName":"Carter, Johns and Hahn","OrderDate":"8/26/2016","TotalPayment":"$222122.28","Status":6,"Type":3},{"OrderID":"67751-140","ShipCountry":"ID","ShipAddress":"048 Ronald Regan Park","ShipName":"Mann-Borer","OrderDate":"9/9/2016","TotalPayment":"$974085.28","Status":4,"Type":3},{"OrderID":"48951-5008","ShipCountry":"CN","ShipAddress":"761 Birchwood Circle","ShipName":"Kuvalis, Collins and Treutel","OrderDate":"5/19/2017","TotalPayment":"$1086820.63","Status":3,"Type":2},{"OrderID":"54118-7993","ShipCountry":"BR","ShipAddress":"8757 Bellgrove Point","ShipName":"Barrows and Sons","OrderDate":"11/1/2017","TotalPayment":"$504835.65","Status":3,"Type":1}]},\n{"RecordID":96,"FirstName":"Ainsley","LastName":"Downes","Company":"Skyba","Email":"adownes2n@simplemachines.org","Phone":"878-228-3589","Status":2,"Type":2,"Orders":[{"OrderID":"41250-808","ShipCountry":"CN","ShipAddress":"87601 Fremont Center","ShipName":"McGlynn, Daugherty and Bradtke","OrderDate":"8/28/2017","TotalPayment":"$1120848.09","Status":1,"Type":1},{"OrderID":"0140-0004","ShipCountry":"NO","ShipAddress":"8520 Mayer Plaza","ShipName":"Cruickshank Inc","OrderDate":"1/3/2016","TotalPayment":"$535728.14","Status":5,"Type":3},{"OrderID":"25021-668","ShipCountry":"FR","ShipAddress":"6883 Debra Court","ShipName":"Doyle-Keebler","OrderDate":"9/3/2017","TotalPayment":"$94121.60","Status":5,"Type":2},{"OrderID":"60193-202","ShipCountry":"ID","ShipAddress":"148 Dawn Parkway","ShipName":"Rogahn, Dooley and Rippin","OrderDate":"8/30/2016","TotalPayment":"$609235.39","Status":4,"Type":2},{"OrderID":"55315-238","ShipCountry":"CN","ShipAddress":"4 Hoard Lane","ShipName":"Bogan Inc","OrderDate":"11/14/2017","TotalPayment":"$423241.38","Status":5,"Type":2},{"OrderID":"0168-0336","ShipCountry":"NL","ShipAddress":"0891 Anderson Point","ShipName":"Rutherford-Crona","OrderDate":"2/6/2016","TotalPayment":"$592220.51","Status":5,"Type":2},{"OrderID":"36987-2399","ShipCountry":"US","ShipAddress":"2 Fremont Hill","ShipName":"Upton, Schmidt and Harber","OrderDate":"4/21/2017","TotalPayment":"$273539.88","Status":2,"Type":3},{"OrderID":"36987-1620","ShipCountry":"NZ","ShipAddress":"75 Birchwood Trail","ShipName":"Marquardt Group","OrderDate":"1/19/2016","TotalPayment":"$885687.30","Status":6,"Type":2},{"OrderID":"59667-0014","ShipCountry":"LC","ShipAddress":"5 Butternut Point","ShipName":"Batz-Kautzer","OrderDate":"11/2/2016","TotalPayment":"$167057.92","Status":3,"Type":2},{"OrderID":"0409-5758","ShipCountry":"CN","ShipAddress":"853 Mcguire Point","ShipName":"Hettinger, Dibbert and Carter","OrderDate":"11/17/2017","TotalPayment":"$687912.02","Status":6,"Type":3},{"OrderID":"21695-277","ShipCountry":"PT","ShipAddress":"0191 Oak Valley Terrace","ShipName":"Schuster, Wolf and Ritchie","OrderDate":"5/30/2016","TotalPayment":"$76351.06","Status":5,"Type":2},{"OrderID":"55714-4588","ShipCountry":"MZ","ShipAddress":"95 Commercial Drive","ShipName":"Becker Group","OrderDate":"12/8/2016","TotalPayment":"$790129.86","Status":1,"Type":3},{"OrderID":"49999-192","ShipCountry":"FR","ShipAddress":"54 Rieder Way","ShipName":"Ebert Inc","OrderDate":"5/18/2016","TotalPayment":"$441078.53","Status":6,"Type":1},{"OrderID":"14783-253","ShipCountry":"BG","ShipAddress":"3 Trailsway Terrace","ShipName":"Senger, Bauch and Collier","OrderDate":"1/6/2017","TotalPayment":"$1122929.05","Status":5,"Type":1},{"OrderID":"43063-486","ShipCountry":"GR","ShipAddress":"91324 Hoepker Alley","ShipName":"Koss, Emmerich and Lehner","OrderDate":"3/25/2016","TotalPayment":"$388402.36","Status":1,"Type":1},{"OrderID":"37000-395","ShipCountry":"CN","ShipAddress":"8375 Stephen Pass","ShipName":"Legros, Hand and Emard","OrderDate":"5/12/2017","TotalPayment":"$219180.53","Status":2,"Type":3},{"OrderID":"37808-272","ShipCountry":"UZ","ShipAddress":"7302 Basil Alley","ShipName":"Kassulke-Vandervort","OrderDate":"2/21/2016","TotalPayment":"$1089789.57","Status":4,"Type":1}]},\n{"RecordID":97,"FirstName":"Zeke","LastName":"Woodall","Company":"Wikizz","Email":"zwoodall2o@trellian.com","Phone":"706-661-5835","Status":1,"Type":1,"Orders":[{"OrderID":"55150-117","ShipCountry":"GE","ShipAddress":"3 Jenna Pass","ShipName":"Auer, Towne and Cremin","OrderDate":"6/25/2016","TotalPayment":"$295291.68","Status":4,"Type":3},{"OrderID":"68786-212","ShipCountry":"FR","ShipAddress":"59 Shasta Way","ShipName":"Quigley, Stoltenberg and Hermiston","OrderDate":"10/9/2017","TotalPayment":"$34719.10","Status":5,"Type":1},{"OrderID":"50436-6578","ShipCountry":"MX","ShipAddress":"993 Anzinger Pass","ShipName":"Bruen LLC","OrderDate":"8/16/2017","TotalPayment":"$195900.25","Status":1,"Type":1},{"OrderID":"10578-037","ShipCountry":"MX","ShipAddress":"522 Burning Wood Court","ShipName":"Ondricka, Leffler and Gusikowski","OrderDate":"8/12/2016","TotalPayment":"$1191897.61","Status":4,"Type":1},{"OrderID":"68026-501","ShipCountry":"ID","ShipAddress":"730 Barnett Street","ShipName":"Powlowski and Sons","OrderDate":"9/6/2016","TotalPayment":"$649539.60","Status":1,"Type":1},{"OrderID":"0781-5311","ShipCountry":"PH","ShipAddress":"2476 Scofield Street","ShipName":"Bartoletti Group","OrderDate":"11/23/2017","TotalPayment":"$75470.34","Status":2,"Type":1}]},\n{"RecordID":98,"FirstName":"Justis","LastName":"Nisbith","Company":"Linktype","Email":"jnisbith2p@amazonaws.com","Phone":"839-577-2833","Status":2,"Type":1,"Orders":[{"OrderID":"54868-1362","ShipCountry":"SI","ShipAddress":"51131 Oakridge Hill","ShipName":"Kris-Grant","OrderDate":"7/29/2017","TotalPayment":"$558522.49","Status":3,"Type":3},{"OrderID":"36987-1678","ShipCountry":"RU","ShipAddress":"13196 Fair Oaks Terrace","ShipName":"Towne, Dare and O\'Kon","OrderDate":"6/17/2017","TotalPayment":"$333307.86","Status":4,"Type":1},{"OrderID":"51143-296","ShipCountry":"CN","ShipAddress":"24330 Parkside Crossing","ShipName":"Cummerata Group","OrderDate":"3/24/2016","TotalPayment":"$1089056.77","Status":2,"Type":2},{"OrderID":"11673-230","ShipCountry":"SE","ShipAddress":"1259 Erie Terrace","ShipName":"Mertz, Walker and Mueller","OrderDate":"3/29/2016","TotalPayment":"$1087498.16","Status":2,"Type":2},{"OrderID":"68745-1046","ShipCountry":"MN","ShipAddress":"199 3rd Park","ShipName":"Smith Inc","OrderDate":"3/23/2017","TotalPayment":"$289840.91","Status":4,"Type":1},{"OrderID":"49288-0248","ShipCountry":"ID","ShipAddress":"59350 Sugar Circle","ShipName":"Runte LLC","OrderDate":"12/14/2017","TotalPayment":"$323198.84","Status":4,"Type":1},{"OrderID":"14060-002","ShipCountry":"PH","ShipAddress":"3229 Summit Crossing","ShipName":"Barrows Inc","OrderDate":"8/10/2017","TotalPayment":"$504532.87","Status":6,"Type":3},{"OrderID":"50438-400","ShipCountry":"AF","ShipAddress":"04 Messerschmidt Lane","ShipName":"Gleichner-Lakin","OrderDate":"3/10/2016","TotalPayment":"$437054.77","Status":5,"Type":1},{"OrderID":"0363-0306","ShipCountry":"MA","ShipAddress":"55 Russell Court","ShipName":"Cole, Mraz and Romaguera","OrderDate":"5/2/2016","TotalPayment":"$565789.97","Status":1,"Type":2},{"OrderID":"0224-1866","ShipCountry":"SE","ShipAddress":"23441 Meadow Ridge Crossing","ShipName":"Watsica, Schulist and Boyle","OrderDate":"7/28/2016","TotalPayment":"$589391.99","Status":2,"Type":2},{"OrderID":"63517-160","ShipCountry":"MN","ShipAddress":"64299 Westend Park","ShipName":"Zboncak-Satterfield","OrderDate":"3/29/2016","TotalPayment":"$457636.51","Status":2,"Type":3},{"OrderID":"55154-5434","ShipCountry":"RU","ShipAddress":"939 Paget Street","ShipName":"Becker Inc","OrderDate":"6/25/2016","TotalPayment":"$195024.63","Status":5,"Type":2},{"OrderID":"0006-4943","ShipCountry":"PL","ShipAddress":"20886 Moulton Plaza","ShipName":"Mante, Upton and Anderson","OrderDate":"8/25/2016","TotalPayment":"$918116.45","Status":5,"Type":2},{"OrderID":"56062-602","ShipCountry":"CN","ShipAddress":"9 Moland Trail","ShipName":"Ruecker, Bernier and Lubowitz","OrderDate":"11/1/2017","TotalPayment":"$1004782.88","Status":1,"Type":1},{"OrderID":"54235-204","ShipCountry":"CN","ShipAddress":"73072 Mcbride Point","ShipName":"Kilback-Mann","OrderDate":"4/28/2016","TotalPayment":"$903662.48","Status":2,"Type":3},{"OrderID":"54569-1056","ShipCountry":"PH","ShipAddress":"9 Lakewood Gardens Road","ShipName":"Harris-Hudson","OrderDate":"6/22/2016","TotalPayment":"$825792.33","Status":5,"Type":1},{"OrderID":"17630-2025","ShipCountry":"AM","ShipAddress":"2 Donald Park","ShipName":"Paucek, Blick and Jones","OrderDate":"12/9/2017","TotalPayment":"$1174344.68","Status":1,"Type":2}]},\n{"RecordID":99,"FirstName":"Romola","LastName":"Alman","Company":"Meetz","Email":"ralman2q@thetimes.co.uk","Phone":"411-805-2589","Status":4,"Type":3,"Orders":[{"OrderID":"0641-0929","ShipCountry":"NG","ShipAddress":"4032 Schurz Hill","ShipName":"Heaney-Collins","OrderDate":"2/14/2017","TotalPayment":"$1071862.39","Status":1,"Type":2},{"OrderID":"52862-303","ShipCountry":"AM","ShipAddress":"673 Doe Crossing Hill","ShipName":"Durgan, Barrows and Littel","OrderDate":"11/19/2016","TotalPayment":"$558546.39","Status":2,"Type":3},{"OrderID":"63629-4089","ShipCountry":"PH","ShipAddress":"6308 Reinke Crossing","ShipName":"Parker Group","OrderDate":"10/24/2016","TotalPayment":"$232703.99","Status":1,"Type":1},{"OrderID":"11673-882","ShipCountry":"ID","ShipAddress":"25429 Birchwood Lane","ShipName":"Funk, Bergstrom and Quigley","OrderDate":"8/14/2017","TotalPayment":"$983974.55","Status":4,"Type":1},{"OrderID":"63550-191","ShipCountry":"ID","ShipAddress":"5 Northland Park","ShipName":"Collier-Gottlieb","OrderDate":"7/19/2016","TotalPayment":"$1113597.44","Status":5,"Type":1},{"OrderID":"60429-101","ShipCountry":"ID","ShipAddress":"47 Carpenter Road","ShipName":"Bauch, Hammes and Wehner","OrderDate":"7/10/2016","TotalPayment":"$206192.89","Status":1,"Type":2}]},\n{"RecordID":100,"FirstName":"Starla","LastName":"Marrows","Company":"Dabshots","Email":"smarrows2r@jalbum.net","Phone":"627-415-9760","Status":2,"Type":1,"Orders":[{"OrderID":"0603-4210","ShipCountry":"BR","ShipAddress":"26418 Macpherson Place","ShipName":"Schuppe-Prohaska","OrderDate":"8/11/2017","TotalPayment":"$873735.12","Status":6,"Type":1},{"OrderID":"64117-121","ShipCountry":"BG","ShipAddress":"8 Gateway Crossing","ShipName":"Wisoky-Lynch","OrderDate":"5/24/2016","TotalPayment":"$843360.37","Status":4,"Type":3},{"OrderID":"49035-007","ShipCountry":"FR","ShipAddress":"588 Superior Parkway","ShipName":"Kerluke, Lehner and Miller","OrderDate":"1/30/2017","TotalPayment":"$12987.89","Status":3,"Type":3},{"OrderID":"55253-801","ShipCountry":"XK","ShipAddress":"90 Waubesa Point","ShipName":"Yost-Considine","OrderDate":"4/19/2017","TotalPayment":"$440975.42","Status":5,"Type":1},{"OrderID":"55741-412","ShipCountry":"CN","ShipAddress":"8732 Springview Circle","ShipName":"Trantow, Leffler and Williamson","OrderDate":"3/20/2017","TotalPayment":"$833143.21","Status":2,"Type":2},{"OrderID":"53723-0001","ShipCountry":"FR","ShipAddress":"76 Ludington Pass","ShipName":"Jast Inc","OrderDate":"4/27/2017","TotalPayment":"$991927.23","Status":6,"Type":3},{"OrderID":"11822-2160","ShipCountry":"JP","ShipAddress":"26 Barnett Circle","ShipName":"Stracke LLC","OrderDate":"8/17/2017","TotalPayment":"$823641.75","Status":4,"Type":1},{"OrderID":"0054-0211","ShipCountry":"RU","ShipAddress":"10 Spohn Lane","ShipName":"Parisian LLC","OrderDate":"12/2/2017","TotalPayment":"$884005.07","Status":2,"Type":2},{"OrderID":"64942-1154","ShipCountry":"PH","ShipAddress":"30192 Mifflin Trail","ShipName":"Bergnaum-O\'Conner","OrderDate":"5/8/2017","TotalPayment":"$156595.27","Status":3,"Type":2}]},\n{"RecordID":101,"FirstName":"Mozes","LastName":"Van Salzberger","Company":"Reallinks","Email":"mvansalzberger2s@shop-pro.jp","Phone":"839-240-1855","Status":5,"Type":3,"Orders":[{"OrderID":"66336-608","ShipCountry":"PL","ShipAddress":"1298 3rd Plaza","ShipName":"Wehner, Spinka and O\'Kon","OrderDate":"11/16/2016","TotalPayment":"$364235.64","Status":5,"Type":3},{"OrderID":"65044-1213","ShipCountry":"CN","ShipAddress":"8 Leroy Alley","ShipName":"Cole and Sons","OrderDate":"6/12/2017","TotalPayment":"$903074.73","Status":4,"Type":3},{"OrderID":"67510-0172","ShipCountry":"BR","ShipAddress":"93300 Hansons Point","ShipName":"Jakubowski-Keeling","OrderDate":"3/22/2016","TotalPayment":"$302983.62","Status":6,"Type":2},{"OrderID":"68462-455","ShipCountry":"PF","ShipAddress":"498 Cardinal Drive","ShipName":"Denesik, Ziemann and Schinner","OrderDate":"10/26/2017","TotalPayment":"$967496.44","Status":3,"Type":2},{"OrderID":"52268-400","ShipCountry":"CN","ShipAddress":"77 Thackeray Circle","ShipName":"Pagac and Sons","OrderDate":"11/9/2016","TotalPayment":"$493580.73","Status":4,"Type":2},{"OrderID":"33261-994","ShipCountry":"RU","ShipAddress":"8 Kropf Circle","ShipName":"Anderson LLC","OrderDate":"10/29/2017","TotalPayment":"$875558.87","Status":6,"Type":3},{"OrderID":"58160-830","ShipCountry":"CN","ShipAddress":"738 Eastwood Crossing","ShipName":"Emmerich Group","OrderDate":"2/18/2017","TotalPayment":"$952171.71","Status":2,"Type":1},{"OrderID":"64616-101","ShipCountry":"GR","ShipAddress":"6 Kings Alley","ShipName":"Goyette, Romaguera and Block","OrderDate":"5/25/2016","TotalPayment":"$837784.89","Status":1,"Type":3}]},\n{"RecordID":102,"FirstName":"Darby","LastName":"Edis","Company":"Skimia","Email":"dedis2t@gmpg.org","Phone":"686-750-2419","Status":4,"Type":3,"Orders":[{"OrderID":"13537-262","ShipCountry":"MN","ShipAddress":"51 Thierer Road","ShipName":"Mraz, Bechtelar and Lubowitz","OrderDate":"11/23/2016","TotalPayment":"$338109.13","Status":2,"Type":1},{"OrderID":"46122-201","ShipCountry":"ID","ShipAddress":"36 Darwin Hill","ShipName":"Crist-Zemlak","OrderDate":"8/15/2016","TotalPayment":"$570437.74","Status":4,"Type":2},{"OrderID":"35356-851","ShipCountry":"CZ","ShipAddress":"0 Anzinger Way","ShipName":"Kub, Abshire and Carroll","OrderDate":"1/7/2016","TotalPayment":"$1153461.46","Status":5,"Type":3},{"OrderID":"63824-417","ShipCountry":"GT","ShipAddress":"7161 Buhler Court","ShipName":"Crist-Kub","OrderDate":"5/5/2016","TotalPayment":"$597534.49","Status":4,"Type":1},{"OrderID":"51138-045","ShipCountry":"BR","ShipAddress":"3874 Westend Point","ShipName":"Shanahan-Fadel","OrderDate":"6/22/2016","TotalPayment":"$1181674.61","Status":6,"Type":1},{"OrderID":"43857-0157","ShipCountry":"UA","ShipAddress":"1391 Bartillon Alley","ShipName":"Borer, Kemmer and Frami","OrderDate":"7/21/2017","TotalPayment":"$972546.24","Status":4,"Type":2},{"OrderID":"63323-300","ShipCountry":"ID","ShipAddress":"94 Johnson Lane","ShipName":"Schowalter, Stanton and Frami","OrderDate":"10/12/2016","TotalPayment":"$1095878.84","Status":6,"Type":1},{"OrderID":"49348-634","ShipCountry":"ID","ShipAddress":"8 Brentwood Center","ShipName":"Kuhlman-Hansen","OrderDate":"5/4/2016","TotalPayment":"$219656.17","Status":2,"Type":1},{"OrderID":"54868-4985","ShipCountry":"CN","ShipAddress":"6641 Haas Lane","ShipName":"Upton Inc","OrderDate":"6/22/2017","TotalPayment":"$487066.62","Status":4,"Type":1},{"OrderID":"53808-0618","ShipCountry":"PT","ShipAddress":"2017 Marquette Street","ShipName":"Fritsch, Carter and Hirthe","OrderDate":"2/13/2017","TotalPayment":"$534313.91","Status":5,"Type":2},{"OrderID":"52125-466","ShipCountry":"CA","ShipAddress":"2908 Farragut Park","ShipName":"Bashirian-Leuschke","OrderDate":"9/24/2016","TotalPayment":"$26343.68","Status":1,"Type":1},{"OrderID":"63868-935","ShipCountry":"ID","ShipAddress":"3 Utah Avenue","ShipName":"Mraz-Crooks","OrderDate":"7/20/2016","TotalPayment":"$947268.41","Status":1,"Type":3},{"OrderID":"10742-8669","ShipCountry":"RU","ShipAddress":"6 Fair Oaks Avenue","ShipName":"Wiegand, Boyle and Turcotte","OrderDate":"10/6/2017","TotalPayment":"$290125.66","Status":5,"Type":1},{"OrderID":"68472-129","ShipCountry":"PH","ShipAddress":"42 Stone Corner Circle","ShipName":"Reichert Inc","OrderDate":"10/30/2016","TotalPayment":"$664406.09","Status":4,"Type":2},{"OrderID":"59779-392","ShipCountry":"GM","ShipAddress":"004 Schurz Center","ShipName":"Reynolds-Greenholt","OrderDate":"6/9/2017","TotalPayment":"$921075.04","Status":2,"Type":1},{"OrderID":"69016-001","ShipCountry":"BR","ShipAddress":"9 Paget Road","ShipName":"Rice and Sons","OrderDate":"12/18/2017","TotalPayment":"$674714.67","Status":1,"Type":3}]},\n{"RecordID":103,"FirstName":"Cassius","LastName":"McDonand","Company":"Yoveo","Email":"cmcdonand2u@joomla.org","Phone":"351-852-6887","Status":4,"Type":2,"Orders":[{"OrderID":"36987-2421","ShipCountry":"MG","ShipAddress":"1 Boyd Hill","ShipName":"Lueilwitz-Wehner","OrderDate":"4/15/2017","TotalPayment":"$223293.93","Status":2,"Type":2},{"OrderID":"49035-180","ShipCountry":"CA","ShipAddress":"60 Mallard Point","ShipName":"West Group","OrderDate":"6/14/2017","TotalPayment":"$79526.46","Status":2,"Type":1},{"OrderID":"0185-0714","ShipCountry":"CN","ShipAddress":"89482 Sundown Plaza","ShipName":"Mertz Inc","OrderDate":"6/13/2016","TotalPayment":"$230421.44","Status":6,"Type":1},{"OrderID":"61715-118","ShipCountry":"FR","ShipAddress":"5 Lunder Pass","ShipName":"Turner-Greenholt","OrderDate":"6/10/2017","TotalPayment":"$601398.72","Status":1,"Type":3},{"OrderID":"10237-645","ShipCountry":"CN","ShipAddress":"16995 Rowland Junction","ShipName":"Crona-Price","OrderDate":"3/12/2016","TotalPayment":"$55251.54","Status":6,"Type":2}]},\n{"RecordID":104,"FirstName":"Ola","LastName":"Slight","Company":"Centizu","Email":"oslight2v@artisteer.com","Phone":"949-292-5097","Status":3,"Type":1,"Orders":[{"OrderID":"24478-190","ShipCountry":"UA","ShipAddress":"57365 Hayes Lane","ShipName":"Koss-Waters","OrderDate":"10/7/2016","TotalPayment":"$1109297.13","Status":5,"Type":3},{"OrderID":"57520-0939","ShipCountry":"RU","ShipAddress":"76488 3rd Trail","ShipName":"Quigley, Funk and Quigley","OrderDate":"1/29/2016","TotalPayment":"$579830.83","Status":3,"Type":3},{"OrderID":"50991-399","ShipCountry":"CN","ShipAddress":"879 Vidon Road","ShipName":"Moen, Ryan and Konopelski","OrderDate":"8/20/2017","TotalPayment":"$906023.43","Status":1,"Type":2},{"OrderID":"37808-305","ShipCountry":"RU","ShipAddress":"75087 Pawling Park","ShipName":"Ondricka, Vandervort and Green","OrderDate":"8/9/2016","TotalPayment":"$223305.06","Status":5,"Type":3},{"OrderID":"35356-722","ShipCountry":"CN","ShipAddress":"1740 Commercial Court","ShipName":"Crist and Sons","OrderDate":"7/29/2016","TotalPayment":"$521955.71","Status":6,"Type":1},{"OrderID":"0078-0597","ShipCountry":"PE","ShipAddress":"64 Bluestem Terrace","ShipName":"Marquardt and Sons","OrderDate":"3/25/2017","TotalPayment":"$857031.11","Status":1,"Type":3},{"OrderID":"76457-004","ShipCountry":"KE","ShipAddress":"7022 Loeprich Alley","ShipName":"Ziemann-Boehm","OrderDate":"11/10/2017","TotalPayment":"$726381.92","Status":3,"Type":2},{"OrderID":"0904-5230","ShipCountry":"YE","ShipAddress":"70672 Mayfield Way","ShipName":"Gleason and Sons","OrderDate":"1/6/2016","TotalPayment":"$696901.16","Status":3,"Type":2},{"OrderID":"54868-5658","ShipCountry":"VN","ShipAddress":"8649 Browning Road","ShipName":"Dooley Inc","OrderDate":"11/14/2017","TotalPayment":"$572674.00","Status":6,"Type":1},{"OrderID":"0591-2786","ShipCountry":"SE","ShipAddress":"066 Prentice Terrace","ShipName":"Mosciski Inc","OrderDate":"5/3/2017","TotalPayment":"$406605.89","Status":6,"Type":2},{"OrderID":"59640-155","ShipCountry":"CN","ShipAddress":"18276 Union Avenue","ShipName":"Streich-Dach","OrderDate":"12/6/2017","TotalPayment":"$1119663.71","Status":4,"Type":2},{"OrderID":"16590-874","ShipCountry":"GA","ShipAddress":"042 Bultman Point","ShipName":"Gleason, Pagac and Littel","OrderDate":"4/28/2016","TotalPayment":"$734279.56","Status":2,"Type":1},{"OrderID":"11822-6201","ShipCountry":"PT","ShipAddress":"774 Mockingbird Trail","ShipName":"Kozey and Sons","OrderDate":"1/29/2016","TotalPayment":"$352649.26","Status":5,"Type":2},{"OrderID":"65121-495","ShipCountry":"CN","ShipAddress":"354 Dayton Park","ShipName":"Dietrich-Herzog","OrderDate":"6/29/2017","TotalPayment":"$567011.43","Status":4,"Type":1},{"OrderID":"68828-101","ShipCountry":"LT","ShipAddress":"7 Prentice Pass","ShipName":"Schamberger-Mayer","OrderDate":"5/3/2017","TotalPayment":"$539212.76","Status":6,"Type":1},{"OrderID":"0069-0122","ShipCountry":"GT","ShipAddress":"8325 Division Way","ShipName":"Veum, Marvin and Klocko","OrderDate":"11/26/2016","TotalPayment":"$59099.56","Status":6,"Type":2},{"OrderID":"68387-600","ShipCountry":"SY","ShipAddress":"6 Mallory Point","ShipName":"Schimmel Inc","OrderDate":"10/21/2017","TotalPayment":"$22097.89","Status":1,"Type":2},{"OrderID":"42291-526","ShipCountry":"CN","ShipAddress":"4297 Reinke Junction","ShipName":"DuBuque LLC","OrderDate":"2/2/2017","TotalPayment":"$1199686.91","Status":4,"Type":1},{"OrderID":"55154-4559","ShipCountry":"NO","ShipAddress":"90 Sutherland Center","ShipName":"Purdy, Olson and Vandervort","OrderDate":"8/5/2016","TotalPayment":"$111683.71","Status":5,"Type":3},{"OrderID":"60760-983","ShipCountry":"CN","ShipAddress":"18458 Duke Pass","ShipName":"Hyatt and Sons","OrderDate":"4/5/2016","TotalPayment":"$1001796.85","Status":5,"Type":1}]},\n{"RecordID":105,"FirstName":"Edithe","LastName":"Sherington","Company":"Katz","Email":"esherington2w@ed.gov","Phone":"467-103-9518","Status":4,"Type":1,"Orders":[{"OrderID":"55312-489","ShipCountry":"LT","ShipAddress":"5447 Algoma Hill","ShipName":"Walter and Sons","OrderDate":"10/10/2016","TotalPayment":"$716695.61","Status":6,"Type":1},{"OrderID":"50436-6375","ShipCountry":"CN","ShipAddress":"05 Manley Circle","ShipName":"Bednar, Eichmann and Stokes","OrderDate":"3/29/2017","TotalPayment":"$348349.95","Status":1,"Type":3},{"OrderID":"13811-529","ShipCountry":"PL","ShipAddress":"16 Oak Circle","ShipName":"Turcotte Inc","OrderDate":"9/24/2017","TotalPayment":"$116759.65","Status":5,"Type":3},{"OrderID":"57664-399","ShipCountry":"CO","ShipAddress":"913 1st Court","ShipName":"Renner-Pollich","OrderDate":"5/18/2017","TotalPayment":"$1033668.93","Status":2,"Type":2},{"OrderID":"0904-5785","ShipCountry":"JP","ShipAddress":"0 Crest Line Junction","ShipName":"Kemmer Group","OrderDate":"12/19/2017","TotalPayment":"$216527.02","Status":4,"Type":2},{"OrderID":"65841-069","ShipCountry":"PT","ShipAddress":"415 Kropf Lane","ShipName":"Cronin, Carter and Sawayn","OrderDate":"10/18/2017","TotalPayment":"$205108.47","Status":4,"Type":3}]},\n{"RecordID":106,"FirstName":"Yank","LastName":"Arens","Company":"Livepath","Email":"yarens2x@illinois.edu","Phone":"758-792-8983","Status":4,"Type":2,"Orders":[{"OrderID":"49349-534","ShipCountry":"CN","ShipAddress":"32 Russell Street","ShipName":"Deckow Inc","OrderDate":"11/18/2016","TotalPayment":"$455427.57","Status":5,"Type":3},{"OrderID":"50051-0014","ShipCountry":"BA","ShipAddress":"338 American Alley","ShipName":"Crona and Sons","OrderDate":"1/28/2016","TotalPayment":"$949994.98","Status":2,"Type":2},{"OrderID":"54868-4507","ShipCountry":"GR","ShipAddress":"76 Lukken Point","ShipName":"Daugherty, Lowe and Vandervort","OrderDate":"7/13/2016","TotalPayment":"$866890.38","Status":1,"Type":2},{"OrderID":"51393-7633","ShipCountry":"CN","ShipAddress":"849 Cottonwood Junction","ShipName":"Harber-Veum","OrderDate":"9/25/2017","TotalPayment":"$46235.19","Status":4,"Type":1},{"OrderID":"47335-509","ShipCountry":"CF","ShipAddress":"48011 Kedzie Crossing","ShipName":"Ankunding, Kreiger and Schimmel","OrderDate":"10/16/2017","TotalPayment":"$603200.44","Status":2,"Type":3},{"OrderID":"42002-213","ShipCountry":"CN","ShipAddress":"7 Clarendon Hill","ShipName":"Predovic, Anderson and Green","OrderDate":"11/8/2016","TotalPayment":"$366373.00","Status":5,"Type":2},{"OrderID":"68040-705","ShipCountry":"AS","ShipAddress":"2 Corry Terrace","ShipName":"Stroman and Sons","OrderDate":"8/2/2016","TotalPayment":"$977109.41","Status":5,"Type":3},{"OrderID":"0781-5181","ShipCountry":"ID","ShipAddress":"938 Veith Center","ShipName":"Paucek, Wehner and Schumm","OrderDate":"12/25/2016","TotalPayment":"$1004225.78","Status":3,"Type":3},{"OrderID":"64745-001","ShipCountry":"HN","ShipAddress":"2 Northfield Crossing","ShipName":"Powlowski Inc","OrderDate":"5/1/2016","TotalPayment":"$638398.81","Status":1,"Type":1},{"OrderID":"0078-0240","ShipCountry":"RS","ShipAddress":"4 Park Meadow Hill","ShipName":"Schumm, O\'Kon and Hane","OrderDate":"2/2/2017","TotalPayment":"$448117.64","Status":6,"Type":1}]},\n{"RecordID":107,"FirstName":"Jack","LastName":"Bunney","Company":"Mita","Email":"jbunney2y@csmonitor.com","Phone":"389-306-9112","Status":2,"Type":3,"Orders":[{"OrderID":"43406-0072","ShipCountry":"RU","ShipAddress":"908 Sage Junction","ShipName":"Bode-Weissnat","OrderDate":"3/25/2017","TotalPayment":"$657361.25","Status":4,"Type":1},{"OrderID":"49288-0185","ShipCountry":"AZ","ShipAddress":"05 Badeau Plaza","ShipName":"Wolf-Kub","OrderDate":"9/26/2016","TotalPayment":"$867319.13","Status":5,"Type":3},{"OrderID":"37808-964","ShipCountry":"CA","ShipAddress":"72015 Helena Avenue","ShipName":"Sauer and Sons","OrderDate":"5/12/2017","TotalPayment":"$769244.78","Status":2,"Type":2},{"OrderID":"60760-749","ShipCountry":"CN","ShipAddress":"5145 Kim Center","ShipName":"Littel-Bauch","OrderDate":"5/7/2017","TotalPayment":"$900962.95","Status":2,"Type":1},{"OrderID":"58118-2530","ShipCountry":"SL","ShipAddress":"190 Derek Park","ShipName":"Cruickshank-Wilderman","OrderDate":"4/13/2016","TotalPayment":"$508598.82","Status":6,"Type":2},{"OrderID":"0268-0895","ShipCountry":"CN","ShipAddress":"4 Badeau Way","ShipName":"O\'Hara, Tromp and Aufderhar","OrderDate":"2/25/2017","TotalPayment":"$442518.90","Status":5,"Type":2},{"OrderID":"55648-974","ShipCountry":"CN","ShipAddress":"8717 Prairie Rose Hill","ShipName":"Gusikowski-Buckridge","OrderDate":"6/6/2017","TotalPayment":"$1096132.15","Status":4,"Type":3},{"OrderID":"45802-245","ShipCountry":"CN","ShipAddress":"92 Larry Junction","ShipName":"Schmidt, Muller and Corwin","OrderDate":"2/19/2016","TotalPayment":"$512403.40","Status":4,"Type":2},{"OrderID":"60429-098","ShipCountry":"CN","ShipAddress":"6 Roxbury Circle","ShipName":"Walker LLC","OrderDate":"5/30/2017","TotalPayment":"$468406.64","Status":2,"Type":2}]},\n{"RecordID":108,"FirstName":"Correy","LastName":"Tilt","Company":"Dabshots","Email":"ctilt2z@barnesandnoble.com","Phone":"835-261-5227","Status":5,"Type":3,"Orders":[{"OrderID":"0116-2994","ShipCountry":"RU","ShipAddress":"3981 Doe Crossing Street","ShipName":"Treutel-Wiza","OrderDate":"7/20/2016","TotalPayment":"$777739.91","Status":3,"Type":2},{"OrderID":"50181-0004","ShipCountry":"PH","ShipAddress":"70 5th Avenue","ShipName":"Hermiston and Sons","OrderDate":"5/8/2017","TotalPayment":"$170734.55","Status":1,"Type":3},{"OrderID":"12462-300","ShipCountry":"MY","ShipAddress":"726 Sommers Crossing","ShipName":"McLaughlin-Leannon","OrderDate":"8/3/2016","TotalPayment":"$35090.88","Status":5,"Type":3},{"OrderID":"21695-935","ShipCountry":"CN","ShipAddress":"01877 Moose Terrace","ShipName":"Rosenbaum, Hettinger and Gleason","OrderDate":"6/11/2017","TotalPayment":"$50710.02","Status":4,"Type":2},{"OrderID":"12634-191","ShipCountry":"PE","ShipAddress":"8868 Spaight Alley","ShipName":"Hammes, Fritsch and Beer","OrderDate":"8/2/2017","TotalPayment":"$227303.33","Status":6,"Type":1},{"OrderID":"58118-0106","ShipCountry":"CZ","ShipAddress":"9905 La Follette Street","ShipName":"Reilly and Sons","OrderDate":"6/28/2016","TotalPayment":"$1115256.20","Status":4,"Type":2},{"OrderID":"46708-031","ShipCountry":"CN","ShipAddress":"5 Melby Junction","ShipName":"Rau-Kling","OrderDate":"5/26/2017","TotalPayment":"$85823.20","Status":5,"Type":3},{"OrderID":"49348-818","ShipCountry":"PL","ShipAddress":"333 Longview Crossing","ShipName":"Paucek Group","OrderDate":"1/17/2016","TotalPayment":"$750963.96","Status":3,"Type":1},{"OrderID":"62011-0133","ShipCountry":"CN","ShipAddress":"6 Kenwood Lane","ShipName":"Pouros Group","OrderDate":"3/21/2016","TotalPayment":"$567401.88","Status":5,"Type":2},{"OrderID":"64141-001","ShipCountry":"KZ","ShipAddress":"47 Sullivan Point","ShipName":"Anderson Group","OrderDate":"1/27/2017","TotalPayment":"$1102267.89","Status":3,"Type":2},{"OrderID":"59779-980","ShipCountry":"BS","ShipAddress":"041 Summit Center","ShipName":"Lakin-Ebert","OrderDate":"1/13/2017","TotalPayment":"$1044141.64","Status":5,"Type":3},{"OrderID":"55319-015","ShipCountry":"CZ","ShipAddress":"623 Loftsgordon Court","ShipName":"Metz, Feest and Cummings","OrderDate":"8/22/2017","TotalPayment":"$592896.19","Status":5,"Type":2},{"OrderID":"63941-378","ShipCountry":"CO","ShipAddress":"8616 American Terrace","ShipName":"Emard, Schmeler and Abernathy","OrderDate":"7/21/2016","TotalPayment":"$763965.13","Status":6,"Type":2},{"OrderID":"36800-656","ShipCountry":"IT","ShipAddress":"664 Farragut Trail","ShipName":"Wolff, Lakin and Hansen","OrderDate":"6/21/2017","TotalPayment":"$535430.94","Status":5,"Type":1},{"OrderID":"33261-838","ShipCountry":"PE","ShipAddress":"37922 Grasskamp Parkway","ShipName":"Zulauf Inc","OrderDate":"3/28/2017","TotalPayment":"$541141.06","Status":3,"Type":1},{"OrderID":"0268-0829","ShipCountry":"ID","ShipAddress":"8267 5th Place","ShipName":"Lehner, Feil and Russel","OrderDate":"9/8/2016","TotalPayment":"$1194093.56","Status":6,"Type":1},{"OrderID":"63981-306","ShipCountry":"TH","ShipAddress":"1587 Northport Pass","ShipName":"Leannon, Mills and Nader","OrderDate":"9/30/2016","TotalPayment":"$541685.46","Status":6,"Type":3}]},\n{"RecordID":109,"FirstName":"Rhea","LastName":"Dallaghan","Company":"Demizz","Email":"rdallaghan30@theguardian.com","Phone":"686-756-4673","Status":3,"Type":1,"Orders":[{"OrderID":"53113-550","ShipCountry":"SE","ShipAddress":"5 Ryan Road","ShipName":"Kerluke-Koss","OrderDate":"6/11/2016","TotalPayment":"$639247.12","Status":1,"Type":2},{"OrderID":"43063-222","ShipCountry":"RU","ShipAddress":"892 Red Cloud Plaza","ShipName":"Quigley, Johnson and Wyman","OrderDate":"1/10/2017","TotalPayment":"$692470.85","Status":1,"Type":3},{"OrderID":"68308-219","ShipCountry":"US","ShipAddress":"7156 Nevada Lane","ShipName":"Schiller, Emmerich and Welch","OrderDate":"2/15/2017","TotalPayment":"$962045.15","Status":5,"Type":3},{"OrderID":"41520-092","ShipCountry":"BR","ShipAddress":"80102 Springs Place","ShipName":"Wolff-Morar","OrderDate":"6/26/2017","TotalPayment":"$1026418.82","Status":5,"Type":3},{"OrderID":"0065-0656","ShipCountry":"CO","ShipAddress":"35040 Algoma Court","ShipName":"Torphy Inc","OrderDate":"1/10/2016","TotalPayment":"$840254.68","Status":4,"Type":3},{"OrderID":"52125-744","ShipCountry":"FR","ShipAddress":"65 Hagan Hill","ShipName":"Rutherford, Jones and Vandervort","OrderDate":"6/19/2017","TotalPayment":"$838971.55","Status":1,"Type":2},{"OrderID":"68405-098","ShipCountry":"AR","ShipAddress":"6 Myrtle Point","ShipName":"Smith-Ernser","OrderDate":"9/17/2017","TotalPayment":"$789700.18","Status":1,"Type":3},{"OrderID":"66336-567","ShipCountry":"CN","ShipAddress":"176 Judy Trail","ShipName":"King-Parker","OrderDate":"5/10/2017","TotalPayment":"$975186.02","Status":3,"Type":3},{"OrderID":"47124-295","ShipCountry":"UA","ShipAddress":"91 Clarendon Park","ShipName":"Spencer, Lynch and Kilback","OrderDate":"9/14/2017","TotalPayment":"$712092.66","Status":5,"Type":2},{"OrderID":"0115-9822","ShipCountry":"CN","ShipAddress":"779 Main Center","ShipName":"Simonis, Dach and Krajcik","OrderDate":"10/3/2017","TotalPayment":"$1017868.11","Status":6,"Type":1},{"OrderID":"58517-300","ShipCountry":"CN","ShipAddress":"229 Sullivan Alley","ShipName":"Mante-Gibson","OrderDate":"9/22/2016","TotalPayment":"$700082.78","Status":3,"Type":3}]},\n{"RecordID":110,"FirstName":"Boris","LastName":"Bramah","Company":"Jayo","Email":"bbramah31@bravesites.com","Phone":"717-255-1844","Status":2,"Type":1,"Orders":[{"OrderID":"43406-0112","ShipCountry":"FR","ShipAddress":"62123 Forest Run Avenue","ShipName":"Hartmann-Osinski","OrderDate":"2/8/2016","TotalPayment":"$213201.23","Status":3,"Type":2},{"OrderID":"0268-1214","ShipCountry":"US","ShipAddress":"82449 Westridge Parkway","ShipName":"Konopelski and Sons","OrderDate":"7/10/2016","TotalPayment":"$886952.32","Status":5,"Type":2},{"OrderID":"64540-011","ShipCountry":"IT","ShipAddress":"128 Annamark Lane","ShipName":"Hartmann-Jast","OrderDate":"12/7/2016","TotalPayment":"$1137122.44","Status":4,"Type":1},{"OrderID":"55513-267","ShipCountry":"PL","ShipAddress":"5911 Morningstar Terrace","ShipName":"Koelpin-Wisoky","OrderDate":"7/19/2017","TotalPayment":"$519933.67","Status":3,"Type":1},{"OrderID":"61957-1023","ShipCountry":"CN","ShipAddress":"1096 Blaine Pass","ShipName":"Orn-Douglas","OrderDate":"7/10/2017","TotalPayment":"$1174389.42","Status":4,"Type":1},{"OrderID":"0378-4001","ShipCountry":"ID","ShipAddress":"62978 Melby Crossing","ShipName":"Dietrich, Boehm and Upton","OrderDate":"2/19/2016","TotalPayment":"$360158.76","Status":1,"Type":2},{"OrderID":"61748-111","ShipCountry":"PE","ShipAddress":"3 Graedel Parkway","ShipName":"Gorczany-Streich","OrderDate":"8/12/2016","TotalPayment":"$1068686.29","Status":4,"Type":2},{"OrderID":"67296-0649","ShipCountry":"FR","ShipAddress":"98 Shopko Crossing","ShipName":"Quigley Inc","OrderDate":"2/19/2016","TotalPayment":"$404220.73","Status":1,"Type":1},{"OrderID":"16590-859","ShipCountry":"SE","ShipAddress":"55712 Lawn Hill","ShipName":"Labadie, Roberts and Schoen","OrderDate":"1/1/2017","TotalPayment":"$394666.83","Status":5,"Type":3},{"OrderID":"35356-608","ShipCountry":"ID","ShipAddress":"530 Boyd Plaza","ShipName":"Hoppe-Johnson","OrderDate":"5/17/2016","TotalPayment":"$1044454.62","Status":4,"Type":2},{"OrderID":"64997-150","ShipCountry":"PH","ShipAddress":"71 Old Gate Way","ShipName":"Steuber-Fisher","OrderDate":"1/12/2017","TotalPayment":"$1151182.35","Status":6,"Type":3},{"OrderID":"11701-025","ShipCountry":"CN","ShipAddress":"7 Vermont Hill","ShipName":"Conn, Waters and Howell","OrderDate":"5/18/2016","TotalPayment":"$1120354.79","Status":5,"Type":2},{"OrderID":"37012-059","ShipCountry":"NG","ShipAddress":"94820 Merrick Alley","ShipName":"Mosciski-Brekke","OrderDate":"12/9/2017","TotalPayment":"$985040.45","Status":2,"Type":1},{"OrderID":"55566-5020","ShipCountry":"ID","ShipAddress":"45 Fuller Alley","ShipName":"O\'Hara, Heathcote and Walsh","OrderDate":"12/24/2017","TotalPayment":"$441288.14","Status":5,"Type":1},{"OrderID":"54868-4451","ShipCountry":"SD","ShipAddress":"81383 Alpine Plaza","ShipName":"Toy-Russel","OrderDate":"7/27/2017","TotalPayment":"$280973.51","Status":1,"Type":2},{"OrderID":"54868-4384","ShipCountry":"CU","ShipAddress":"583 Schmedeman Street","ShipName":"Moen Group","OrderDate":"2/27/2016","TotalPayment":"$395364.76","Status":5,"Type":3},{"OrderID":"36987-2434","ShipCountry":"SI","ShipAddress":"78 Grasskamp Plaza","ShipName":"Kihn-Mueller","OrderDate":"7/11/2017","TotalPayment":"$663029.82","Status":5,"Type":1}]},\n{"RecordID":111,"FirstName":"Gordy","LastName":"Lipgens","Company":"Wordpedia","Email":"glipgens32@shareasale.com","Phone":"255-153-2683","Status":6,"Type":2,"Orders":[{"OrderID":"43474-001","ShipCountry":"NO","ShipAddress":"8591 Ryan Avenue","ShipName":"Gleichner, Schaden and Stehr","OrderDate":"12/26/2016","TotalPayment":"$134143.89","Status":2,"Type":2},{"OrderID":"61221-010","ShipCountry":"SE","ShipAddress":"63 Dovetail Crossing","ShipName":"Wilkinson LLC","OrderDate":"12/6/2016","TotalPayment":"$73414.59","Status":4,"Type":3},{"OrderID":"36987-3316","ShipCountry":"HN","ShipAddress":"350 Miller Center","ShipName":"Bernhard, Nienow and O\'Reilly","OrderDate":"6/16/2017","TotalPayment":"$77246.96","Status":6,"Type":1},{"OrderID":"68788-9025","ShipCountry":"CN","ShipAddress":"2442 Miller Lane","ShipName":"Willms-Renner","OrderDate":"10/18/2017","TotalPayment":"$953948.67","Status":6,"Type":3},{"OrderID":"68180-137","ShipCountry":"CZ","ShipAddress":"72502 Northridge Avenue","ShipName":"Smitham-Rempel","OrderDate":"9/29/2017","TotalPayment":"$824538.31","Status":3,"Type":3},{"OrderID":"64764-890","ShipCountry":"IR","ShipAddress":"648 Fair Oaks Court","ShipName":"Hahn, Hansen and Stanton","OrderDate":"8/2/2017","TotalPayment":"$696716.72","Status":6,"Type":3},{"OrderID":"36987-2426","ShipCountry":"VE","ShipAddress":"5288 Logan Lane","ShipName":"Steuber-Quitzon","OrderDate":"1/19/2017","TotalPayment":"$503080.51","Status":5,"Type":2},{"OrderID":"49230-212","ShipCountry":"JP","ShipAddress":"18 Elmside Lane","ShipName":"Kling Group","OrderDate":"6/9/2017","TotalPayment":"$546332.16","Status":6,"Type":3},{"OrderID":"0054-4180","ShipCountry":"ID","ShipAddress":"90914 Dennis Hill","ShipName":"Russel, Greenfelder and VonRueden","OrderDate":"12/1/2017","TotalPayment":"$918750.26","Status":1,"Type":3},{"OrderID":"51655-560","ShipCountry":"RU","ShipAddress":"37 Nelson Road","ShipName":"Spencer, Hickle and Bernier","OrderDate":"3/27/2017","TotalPayment":"$1030443.29","Status":5,"Type":3},{"OrderID":"68084-833","ShipCountry":"CN","ShipAddress":"21904 Shelley Terrace","ShipName":"Altenwerth, Schmidt and Miller","OrderDate":"2/8/2017","TotalPayment":"$1130934.10","Status":1,"Type":2},{"OrderID":"54868-4341","ShipCountry":"MX","ShipAddress":"56781 Glacier Hill Drive","ShipName":"Miller, Tremblay and Gerlach","OrderDate":"2/23/2017","TotalPayment":"$559694.45","Status":1,"Type":1},{"OrderID":"43353-802","ShipCountry":"MX","ShipAddress":"42 Southridge Circle","ShipName":"Nienow and Sons","OrderDate":"4/24/2017","TotalPayment":"$64248.08","Status":2,"Type":3},{"OrderID":"43846-0032","ShipCountry":"ID","ShipAddress":"13 Arrowood Street","ShipName":"Sauer-Hansen","OrderDate":"1/22/2016","TotalPayment":"$851491.04","Status":4,"Type":3},{"OrderID":"10096-0158","ShipCountry":"BA","ShipAddress":"592 Trailsway Hill","ShipName":"Rutherford, Farrell and Connelly","OrderDate":"7/26/2017","TotalPayment":"$330081.49","Status":3,"Type":1},{"OrderID":"67457-425","ShipCountry":"ID","ShipAddress":"43 Grayhawk Crossing","ShipName":"Gottlieb, Hauck and Stokes","OrderDate":"6/10/2017","TotalPayment":"$1122253.75","Status":1,"Type":3},{"OrderID":"45802-061","ShipCountry":"IR","ShipAddress":"58788 Green Ridge Avenue","ShipName":"Morissette and Sons","OrderDate":"9/19/2016","TotalPayment":"$248231.45","Status":4,"Type":1},{"OrderID":"66854-015","ShipCountry":"PL","ShipAddress":"74909 Cody Crossing","ShipName":"Murphy, Schulist and Grant","OrderDate":"12/29/2017","TotalPayment":"$901315.05","Status":4,"Type":1},{"OrderID":"57955-2291","ShipCountry":"MX","ShipAddress":"53 Duke Center","ShipName":"DuBuque Inc","OrderDate":"7/18/2016","TotalPayment":"$834526.52","Status":5,"Type":1},{"OrderID":"37000-233","ShipCountry":"CN","ShipAddress":"32009 Ilene Crossing","ShipName":"Jacobi, Lind and Witting","OrderDate":"5/4/2017","TotalPayment":"$1157098.23","Status":3,"Type":3}]},\n{"RecordID":112,"FirstName":"Estevan","LastName":"Avrahamian","Company":"Oyoyo","Email":"eavrahamian33@chron.com","Phone":"779-135-4701","Status":5,"Type":3,"Orders":[{"OrderID":"0603-5914","ShipCountry":"AM","ShipAddress":"42 Kings Center","ShipName":"Lebsack-Koch","OrderDate":"10/2/2017","TotalPayment":"$91803.53","Status":5,"Type":2},{"OrderID":"36800-176","ShipCountry":"ID","ShipAddress":"64 Glendale Court","ShipName":"Crooks LLC","OrderDate":"1/9/2017","TotalPayment":"$1103135.65","Status":6,"Type":2},{"OrderID":"42507-478","ShipCountry":"AR","ShipAddress":"618 Sycamore Alley","ShipName":"Windler, Collier and Wilderman","OrderDate":"12/22/2016","TotalPayment":"$622328.46","Status":3,"Type":3},{"OrderID":"42719-345","ShipCountry":"RU","ShipAddress":"4 Florence Trail","ShipName":"Borer LLC","OrderDate":"3/28/2016","TotalPayment":"$396986.58","Status":4,"Type":1},{"OrderID":"48951-4075","ShipCountry":"ID","ShipAddress":"740 Scoville Avenue","ShipName":"Effertz-Lowe","OrderDate":"3/23/2017","TotalPayment":"$460219.71","Status":1,"Type":1},{"OrderID":"55648-990","ShipCountry":"LU","ShipAddress":"59 Hanson Point","ShipName":"Sawayn Group","OrderDate":"4/26/2016","TotalPayment":"$441692.40","Status":1,"Type":1},{"OrderID":"0037-4401","ShipCountry":"ES","ShipAddress":"42 Farwell Lane","ShipName":"Nader-Schimmel","OrderDate":"3/19/2017","TotalPayment":"$61295.33","Status":3,"Type":1},{"OrderID":"60429-074","ShipCountry":"ID","ShipAddress":"85565 Bellgrove Crossing","ShipName":"Hackett, Cassin and Farrell","OrderDate":"8/9/2017","TotalPayment":"$101040.22","Status":6,"Type":3},{"OrderID":"68788-9940","ShipCountry":"MN","ShipAddress":"12 Oxford Hill","ShipName":"Auer, Muller and Mraz","OrderDate":"4/21/2016","TotalPayment":"$494391.45","Status":4,"Type":1},{"OrderID":"37000-908","ShipCountry":"DO","ShipAddress":"68 Ridgeway Parkway","ShipName":"Johns, Marquardt and Harris","OrderDate":"9/3/2017","TotalPayment":"$423911.20","Status":5,"Type":2},{"OrderID":"21695-155","ShipCountry":"CA","ShipAddress":"56 Reinke Plaza","ShipName":"Schneider and Sons","OrderDate":"7/30/2017","TotalPayment":"$1126684.32","Status":2,"Type":2},{"OrderID":"75981-153","ShipCountry":"CD","ShipAddress":"7 Dakota Circle","ShipName":"Dach LLC","OrderDate":"11/5/2016","TotalPayment":"$635803.91","Status":6,"Type":2},{"OrderID":"10297-001","ShipCountry":"GT","ShipAddress":"5 Gateway Lane","ShipName":"Beatty LLC","OrderDate":"5/30/2016","TotalPayment":"$359232.90","Status":5,"Type":2},{"OrderID":"11673-722","ShipCountry":"HN","ShipAddress":"59689 Logan Crossing","ShipName":"Cruickshank, Schimmel and Prohaska","OrderDate":"5/28/2016","TotalPayment":"$45306.54","Status":5,"Type":3},{"OrderID":"11673-980","ShipCountry":"CN","ShipAddress":"0962 Center Trail","ShipName":"Altenwerth-Ziemann","OrderDate":"5/28/2017","TotalPayment":"$715013.09","Status":4,"Type":1}]},\n{"RecordID":113,"FirstName":"Farand","LastName":"Trask","Company":"Meedoo","Email":"ftrask34@booking.com","Phone":"282-156-9089","Status":6,"Type":2,"Orders":[{"OrderID":"36987-3393","ShipCountry":"CN","ShipAddress":"8017 Sauthoff Place","ShipName":"Vandervort LLC","OrderDate":"12/9/2017","TotalPayment":"$162594.03","Status":2,"Type":1},{"OrderID":"51545-120","ShipCountry":"PH","ShipAddress":"5001 Nancy Way","ShipName":"Lehner-Feest","OrderDate":"11/25/2016","TotalPayment":"$1024059.96","Status":1,"Type":2},{"OrderID":"0363-0223","ShipCountry":"CN","ShipAddress":"92388 Mccormick Alley","ShipName":"Cummings, Witting and Pfannerstill","OrderDate":"2/26/2016","TotalPayment":"$240500.96","Status":5,"Type":1},{"OrderID":"49404-111","ShipCountry":"BA","ShipAddress":"163 Fremont Parkway","ShipName":"Jerde, Jacobi and Heidenreich","OrderDate":"12/5/2016","TotalPayment":"$1024917.85","Status":4,"Type":1},{"OrderID":"0409-7171","ShipCountry":"PK","ShipAddress":"796 Harbort Way","ShipName":"Schumm Group","OrderDate":"11/22/2016","TotalPayment":"$295962.51","Status":2,"Type":3},{"OrderID":"0023-0506","ShipCountry":"VE","ShipAddress":"673 Cascade Crossing","ShipName":"Huels-Lynch","OrderDate":"4/19/2017","TotalPayment":"$635850.99","Status":6,"Type":3},{"OrderID":"67226-2230","ShipCountry":"FR","ShipAddress":"2 Sutherland Hill","ShipName":"Emmerich and Sons","OrderDate":"11/21/2016","TotalPayment":"$592691.86","Status":3,"Type":1},{"OrderID":"0268-6198","ShipCountry":"WS","ShipAddress":"668 Hanson Place","ShipName":"Dibbert Group","OrderDate":"7/18/2017","TotalPayment":"$542742.36","Status":4,"Type":1},{"OrderID":"10370-210","ShipCountry":"CN","ShipAddress":"54375 Butternut Hill","ShipName":"McKenzie, Cummings and Boyer","OrderDate":"1/31/2017","TotalPayment":"$936961.00","Status":5,"Type":2},{"OrderID":"54575-400","ShipCountry":"CN","ShipAddress":"2 Nelson Circle","ShipName":"Kub-Metz","OrderDate":"12/2/2017","TotalPayment":"$679692.29","Status":3,"Type":1},{"OrderID":"36987-1427","ShipCountry":"TN","ShipAddress":"08720 Lerdahl Circle","ShipName":"Nicolas and Sons","OrderDate":"12/29/2016","TotalPayment":"$1016371.54","Status":1,"Type":1},{"OrderID":"16590-056","ShipCountry":"CR","ShipAddress":"89 Anderson Trail","ShipName":"Corkery-Funk","OrderDate":"1/16/2016","TotalPayment":"$893208.93","Status":2,"Type":2}]},\n{"RecordID":114,"FirstName":"Antonio","LastName":"Easeman","Company":"Bubbletube","Email":"aeaseman35@is.gd","Phone":"759-399-7050","Status":6,"Type":3,"Orders":[{"OrderID":"0168-0293","ShipCountry":"MX","ShipAddress":"085 Clemons Pass","ShipName":"Franecki LLC","OrderDate":"2/9/2017","TotalPayment":"$37671.72","Status":2,"Type":2},{"OrderID":"55154-5412","ShipCountry":"SE","ShipAddress":"7017 Erie Alley","ShipName":"Bergstrom-Gutkowski","OrderDate":"3/22/2017","TotalPayment":"$1027765.76","Status":2,"Type":2},{"OrderID":"60637-018","ShipCountry":"PE","ShipAddress":"544 Ridge Oak Point","ShipName":"Weimann-Spinka","OrderDate":"2/3/2017","TotalPayment":"$940014.96","Status":5,"Type":2},{"OrderID":"49288-0231","ShipCountry":"PH","ShipAddress":"7 Pawling Hill","ShipName":"Schaden, Daugherty and Moore","OrderDate":"2/11/2017","TotalPayment":"$980508.22","Status":1,"Type":1},{"OrderID":"0642-0077","ShipCountry":"RU","ShipAddress":"51 Lunder Street","ShipName":"Lynch, Lowe and Adams","OrderDate":"7/20/2016","TotalPayment":"$505558.40","Status":2,"Type":3},{"OrderID":"0536-1000","ShipCountry":"RU","ShipAddress":"33 Farwell Lane","ShipName":"Ritchie-Pouros","OrderDate":"5/25/2017","TotalPayment":"$725541.95","Status":2,"Type":2},{"OrderID":"51079-881","ShipCountry":"BR","ShipAddress":"0 Basil Road","ShipName":"Krajcik-Kreiger","OrderDate":"2/19/2017","TotalPayment":"$1098729.65","Status":5,"Type":1}]},\n{"RecordID":115,"FirstName":"Torie","LastName":"Loos","Company":"Quinu","Email":"tloos36@dell.com","Phone":"205-754-2684","Status":4,"Type":2,"Orders":[{"OrderID":"0268-0606","ShipCountry":"CN","ShipAddress":"2592 Southridge Street","ShipName":"Conroy-Brekke","OrderDate":"12/15/2017","TotalPayment":"$798762.45","Status":1,"Type":1},{"OrderID":"63824-112","ShipCountry":"UA","ShipAddress":"40 Carpenter Circle","ShipName":"Lockman Inc","OrderDate":"12/16/2017","TotalPayment":"$129554.31","Status":5,"Type":1},{"OrderID":"23360-160","ShipCountry":"US","ShipAddress":"9927 Golf Terrace","ShipName":"Bruen-Hermann","OrderDate":"10/29/2016","TotalPayment":"$941929.65","Status":2,"Type":1},{"OrderID":"51346-145","ShipCountry":"PL","ShipAddress":"12526 Meadow Ridge Place","ShipName":"Rippin, Lemke and Glover","OrderDate":"11/7/2017","TotalPayment":"$823968.18","Status":2,"Type":1},{"OrderID":"68788-9926","ShipCountry":"BG","ShipAddress":"36 Dexter Trail","ShipName":"Towne Group","OrderDate":"1/15/2016","TotalPayment":"$1009245.07","Status":2,"Type":3},{"OrderID":"10096-0229","ShipCountry":"ID","ShipAddress":"82484 Londonderry Terrace","ShipName":"Boehm LLC","OrderDate":"1/9/2017","TotalPayment":"$244033.78","Status":4,"Type":3},{"OrderID":"63323-738","ShipCountry":"CN","ShipAddress":"5 Sage Circle","ShipName":"Hyatt Inc","OrderDate":"10/9/2016","TotalPayment":"$1146194.18","Status":4,"Type":1},{"OrderID":"13668-158","ShipCountry":"CN","ShipAddress":"78 Lotheville Drive","ShipName":"Blick-Bernhard","OrderDate":"3/6/2016","TotalPayment":"$395227.96","Status":1,"Type":2},{"OrderID":"68703-114","ShipCountry":"HR","ShipAddress":"28078 Northridge Drive","ShipName":"Koelpin, Kertzmann and Mueller","OrderDate":"12/9/2016","TotalPayment":"$117759.65","Status":6,"Type":1},{"OrderID":"10888-5003","ShipCountry":"CN","ShipAddress":"2 Dayton Alley","ShipName":"Langworth Group","OrderDate":"12/6/2016","TotalPayment":"$235730.08","Status":1,"Type":3},{"OrderID":"76174-130","ShipCountry":"KZ","ShipAddress":"2 Hayes Way","ShipName":"Ritchie LLC","OrderDate":"8/25/2017","TotalPayment":"$276203.97","Status":2,"Type":3},{"OrderID":"68428-151","ShipCountry":"PT","ShipAddress":"4627 Ludington Hill","ShipName":"Schmidt, Welch and Marvin","OrderDate":"1/6/2017","TotalPayment":"$742467.70","Status":1,"Type":3}]},\n{"RecordID":116,"FirstName":"Alley","LastName":"Bage","Company":"Thoughtsphere","Email":"abage37@cocolog-nifty.com","Phone":"717-668-5493","Status":5,"Type":2,"Orders":[{"OrderID":"30142-321","ShipCountry":"FR","ShipAddress":"1126 Coleman Lane","ShipName":"Gerhold-Braun","OrderDate":"10/2/2017","TotalPayment":"$816724.59","Status":5,"Type":3},{"OrderID":"50458-541","ShipCountry":"CN","ShipAddress":"21266 Fisk Crossing","ShipName":"Bruen and Sons","OrderDate":"6/8/2016","TotalPayment":"$690481.77","Status":5,"Type":3},{"OrderID":"0268-0606","ShipCountry":"RU","ShipAddress":"8848 Bonner Terrace","ShipName":"Ankunding, Stroman and Raynor","OrderDate":"4/27/2016","TotalPayment":"$528012.23","Status":3,"Type":1},{"OrderID":"29300-241","ShipCountry":"CR","ShipAddress":"66 Manley Trail","ShipName":"Corkery, Morar and Waters","OrderDate":"12/25/2016","TotalPayment":"$334532.39","Status":5,"Type":3},{"OrderID":"63187-044","ShipCountry":"CN","ShipAddress":"8 South Junction","ShipName":"Heidenreich LLC","OrderDate":"1/11/2017","TotalPayment":"$487085.33","Status":1,"Type":3},{"OrderID":"57650-159","ShipCountry":"HN","ShipAddress":"0371 Helena Avenue","ShipName":"Douglas-Bernhard","OrderDate":"11/9/2016","TotalPayment":"$478948.11","Status":1,"Type":3},{"OrderID":"59779-279","ShipCountry":"TH","ShipAddress":"0 Evergreen Center","ShipName":"Keebler-Rice","OrderDate":"12/9/2016","TotalPayment":"$868507.41","Status":6,"Type":1},{"OrderID":"33342-092","ShipCountry":"CL","ShipAddress":"221 Brown Alley","ShipName":"Klein Group","OrderDate":"5/29/2017","TotalPayment":"$694583.16","Status":4,"Type":3},{"OrderID":"43063-090","ShipCountry":"ID","ShipAddress":"028 7th Park","ShipName":"Herzog-Spencer","OrderDate":"1/3/2017","TotalPayment":"$453258.26","Status":3,"Type":3},{"OrderID":"66689-403","ShipCountry":"JP","ShipAddress":"47 Eliot Plaza","ShipName":"Considine and Sons","OrderDate":"4/10/2017","TotalPayment":"$251817.62","Status":2,"Type":2},{"OrderID":"0363-0243","ShipCountry":"CN","ShipAddress":"3 Forest Dale Road","ShipName":"Schultz-Kris","OrderDate":"6/4/2017","TotalPayment":"$375189.89","Status":3,"Type":3},{"OrderID":"49884-428","ShipCountry":"MX","ShipAddress":"9 Mariners Cove Drive","ShipName":"Kuhlman-Boyle","OrderDate":"8/2/2016","TotalPayment":"$972935.79","Status":5,"Type":2},{"OrderID":"51621-039","ShipCountry":"PT","ShipAddress":"507 Rusk Parkway","ShipName":"Durgan, Kovacek and Jacobson","OrderDate":"2/23/2016","TotalPayment":"$433218.42","Status":1,"Type":2},{"OrderID":"58593-781","ShipCountry":"CN","ShipAddress":"458 Nancy Place","ShipName":"Dietrich-Dickinson","OrderDate":"9/5/2016","TotalPayment":"$235824.28","Status":4,"Type":1},{"OrderID":"64942-1148","ShipCountry":"ID","ShipAddress":"3327 Manitowish Point","ShipName":"Lesch, Bednar and Abshire","OrderDate":"3/11/2016","TotalPayment":"$585752.92","Status":1,"Type":1},{"OrderID":"0591-2070","ShipCountry":"AR","ShipAddress":"83 Emmet Junction","ShipName":"Kohler, Jacobson and Corwin","OrderDate":"3/2/2016","TotalPayment":"$938636.74","Status":5,"Type":1},{"OrderID":"54569-4816","ShipCountry":"CA","ShipAddress":"4 Pepper Wood Park","ShipName":"Quigley-Mueller","OrderDate":"2/28/2016","TotalPayment":"$1103636.02","Status":5,"Type":2},{"OrderID":"33261-132","ShipCountry":"CA","ShipAddress":"5 Kropf Place","ShipName":"Larson LLC","OrderDate":"2/11/2017","TotalPayment":"$1089298.44","Status":4,"Type":1},{"OrderID":"65862-148","ShipCountry":"ID","ShipAddress":"440 Washington Lane","ShipName":"Kulas, Windler and Dickinson","OrderDate":"9/1/2016","TotalPayment":"$502823.71","Status":4,"Type":3}]},\n{"RecordID":117,"FirstName":"Randell","LastName":"Guidini","Company":"Jazzy","Email":"rguidini38@redcross.org","Phone":"662-493-4263","Status":2,"Type":1,"Orders":[{"OrderID":"0054-0002","ShipCountry":"CN","ShipAddress":"74026 Del Sol Alley","ShipName":"Herzog-Becker","OrderDate":"10/30/2016","TotalPayment":"$398358.84","Status":3,"Type":2},{"OrderID":"0065-0429","ShipCountry":"TH","ShipAddress":"24795 Kings Court","ShipName":"Windler, Reynolds and Luettgen","OrderDate":"10/12/2016","TotalPayment":"$363683.75","Status":6,"Type":2},{"OrderID":"60793-854","ShipCountry":"CO","ShipAddress":"02 Ohio Alley","ShipName":"Turner, Spencer and McCullough","OrderDate":"4/23/2017","TotalPayment":"$777032.92","Status":1,"Type":3},{"OrderID":"11673-160","ShipCountry":"PA","ShipAddress":"43 Huxley Junction","ShipName":"Robel, Tremblay and Orn","OrderDate":"5/31/2016","TotalPayment":"$116569.54","Status":1,"Type":2},{"OrderID":"59535-5001","ShipCountry":"CN","ShipAddress":"049 Nancy Terrace","ShipName":"Brown LLC","OrderDate":"7/24/2016","TotalPayment":"$128038.41","Status":2,"Type":1},{"OrderID":"24488-001","ShipCountry":"RU","ShipAddress":"50384 Beilfuss Terrace","ShipName":"Bogan-Gerlach","OrderDate":"1/2/2016","TotalPayment":"$547262.41","Status":1,"Type":1},{"OrderID":"57955-1804","ShipCountry":"CN","ShipAddress":"3274 Valley Edge Hill","ShipName":"Becker Inc","OrderDate":"2/1/2017","TotalPayment":"$133729.75","Status":4,"Type":3},{"OrderID":"76329-3013","ShipCountry":"PA","ShipAddress":"81103 Scofield Court","ShipName":"Oberbrunner, Ledner and Cartwright","OrderDate":"12/21/2017","TotalPayment":"$208474.17","Status":1,"Type":2},{"OrderID":"11559-020","ShipCountry":"CL","ShipAddress":"6423 Utah Way","ShipName":"Morar, Koss and Bernier","OrderDate":"11/18/2016","TotalPayment":"$1182193.15","Status":6,"Type":2},{"OrderID":"16590-230","ShipCountry":"BD","ShipAddress":"44843 Helena Street","ShipName":"Jacobi-Torphy","OrderDate":"5/14/2016","TotalPayment":"$1196232.36","Status":6,"Type":1},{"OrderID":"62175-570","ShipCountry":"ID","ShipAddress":"76 Bultman Pass","ShipName":"Herzog, Kling and Hoeger","OrderDate":"6/18/2017","TotalPayment":"$665155.70","Status":2,"Type":3},{"OrderID":"65841-631","ShipCountry":"JP","ShipAddress":"854 Surrey Crossing","ShipName":"Rice, MacGyver and Tillman","OrderDate":"11/20/2016","TotalPayment":"$508760.26","Status":6,"Type":3},{"OrderID":"49349-779","ShipCountry":"RU","ShipAddress":"29 Gale Junction","ShipName":"Schamberger Inc","OrderDate":"1/2/2016","TotalPayment":"$147583.12","Status":6,"Type":3},{"OrderID":"41250-959","ShipCountry":"CN","ShipAddress":"4412 Troy Road","ShipName":"Kuvalis-Towne","OrderDate":"5/23/2017","TotalPayment":"$577874.99","Status":6,"Type":2},{"OrderID":"0378-3020","ShipCountry":"MA","ShipAddress":"6187 Dwight Way","ShipName":"Ledner Inc","OrderDate":"7/20/2017","TotalPayment":"$1063539.45","Status":2,"Type":1},{"OrderID":"76138-104","ShipCountry":"CN","ShipAddress":"6826 Barby Avenue","ShipName":"O\'Connell-Adams","OrderDate":"1/31/2017","TotalPayment":"$542363.32","Status":3,"Type":3},{"OrderID":"49349-790","ShipCountry":"RU","ShipAddress":"3 Vahlen Lane","ShipName":"Zulauf, O\'Keefe and Ernser","OrderDate":"10/3/2016","TotalPayment":"$195388.35","Status":6,"Type":1},{"OrderID":"61062-0008","ShipCountry":"UA","ShipAddress":"11048 Summit Center","ShipName":"Ondricka-Kerluke","OrderDate":"1/8/2017","TotalPayment":"$156274.48","Status":3,"Type":3},{"OrderID":"63187-114","ShipCountry":"MX","ShipAddress":"39 Hallows Court","ShipName":"Casper Inc","OrderDate":"11/22/2017","TotalPayment":"$1110387.71","Status":2,"Type":2},{"OrderID":"36987-2247","ShipCountry":"RU","ShipAddress":"2 Sommers Center","ShipName":"Pfeffer Group","OrderDate":"9/16/2017","TotalPayment":"$1157405.88","Status":4,"Type":2}]},\n{"RecordID":118,"FirstName":"Cecily","LastName":"Pinkie","Company":"Fadeo","Email":"cpinkie39@earthlink.net","Phone":"443-263-4334","Status":1,"Type":2,"Orders":[{"OrderID":"69153-020","ShipCountry":"CN","ShipAddress":"45379 Hermina Park","ShipName":"Harris, Mosciski and White","OrderDate":"12/1/2016","TotalPayment":"$683959.81","Status":2,"Type":3},{"OrderID":"13267-123","ShipCountry":"CN","ShipAddress":"5118 Bobwhite Avenue","ShipName":"Thompson and Sons","OrderDate":"6/21/2017","TotalPayment":"$253839.37","Status":6,"Type":3},{"OrderID":"67777-214","ShipCountry":"TZ","ShipAddress":"74187 Sheridan Circle","ShipName":"Runte LLC","OrderDate":"1/13/2016","TotalPayment":"$769638.97","Status":5,"Type":3},{"OrderID":"53808-0707","ShipCountry":"RU","ShipAddress":"8 Erie Place","ShipName":"Hintz-VonRueden","OrderDate":"8/27/2016","TotalPayment":"$659561.87","Status":4,"Type":2},{"OrderID":"59535-1051","ShipCountry":"BA","ShipAddress":"33 Summerview Place","ShipName":"Boyle LLC","OrderDate":"7/4/2016","TotalPayment":"$101769.98","Status":1,"Type":3},{"OrderID":"68788-9219","ShipCountry":"TH","ShipAddress":"6167 Sycamore Court","ShipName":"Herman-Tillman","OrderDate":"9/2/2016","TotalPayment":"$674513.01","Status":6,"Type":3},{"OrderID":"68645-483","ShipCountry":"FR","ShipAddress":"68756 Schurz Point","ShipName":"Mosciski, Stehr and Corkery","OrderDate":"3/19/2017","TotalPayment":"$1020130.89","Status":6,"Type":3},{"OrderID":"50436-3155","ShipCountry":"FR","ShipAddress":"6 Northport Center","ShipName":"Simonis, Emmerich and Wolf","OrderDate":"11/6/2017","TotalPayment":"$640544.47","Status":2,"Type":1},{"OrderID":"66993-464","ShipCountry":"CN","ShipAddress":"9 Manitowish Alley","ShipName":"O\'Reilly, Hodkiewicz and Heaney","OrderDate":"6/23/2017","TotalPayment":"$230347.50","Status":6,"Type":1},{"OrderID":"48951-7051","ShipCountry":"CN","ShipAddress":"21 Utah Center","ShipName":"Kautzer and Sons","OrderDate":"8/12/2017","TotalPayment":"$857645.46","Status":1,"Type":2},{"OrderID":"63539-183","ShipCountry":"PH","ShipAddress":"54 Summerview Road","ShipName":"Gusikowski Inc","OrderDate":"10/17/2017","TotalPayment":"$631111.33","Status":3,"Type":1},{"OrderID":"55390-194","ShipCountry":"UA","ShipAddress":"324 Sherman Road","ShipName":"Wuckert, Kozey and Schimmel","OrderDate":"6/10/2016","TotalPayment":"$484452.04","Status":6,"Type":3}]},\n{"RecordID":119,"FirstName":"Welch","LastName":"Demageard","Company":"Innojam","Email":"wdemageard3a@twitter.com","Phone":"537-759-3449","Status":1,"Type":1,"Orders":[{"OrderID":"60778-010","ShipCountry":"AL","ShipAddress":"6841 Sachtjen Alley","ShipName":"Corwin Group","OrderDate":"5/13/2017","TotalPayment":"$441561.46","Status":6,"Type":2},{"OrderID":"37000-845","ShipCountry":"FR","ShipAddress":"00 David Plaza","ShipName":"Zieme-Considine","OrderDate":"10/2/2016","TotalPayment":"$79006.68","Status":4,"Type":3},{"OrderID":"48951-9015","ShipCountry":"PY","ShipAddress":"3800 Lakewood Gardens Drive","ShipName":"Hills, Lesch and Lockman","OrderDate":"12/28/2017","TotalPayment":"$654299.71","Status":4,"Type":1},{"OrderID":"49035-447","ShipCountry":"CN","ShipAddress":"26376 Montana Pass","ShipName":"Pfeffer, Kemmer and Leannon","OrderDate":"3/21/2017","TotalPayment":"$237588.01","Status":1,"Type":2},{"OrderID":"37012-227","ShipCountry":"RU","ShipAddress":"07164 South Park","ShipName":"Bahringer Inc","OrderDate":"8/28/2017","TotalPayment":"$1130012.52","Status":1,"Type":2},{"OrderID":"49348-276","ShipCountry":"CN","ShipAddress":"51 Coleman Place","ShipName":"Turner-Stroman","OrderDate":"11/25/2016","TotalPayment":"$142365.07","Status":6,"Type":3},{"OrderID":"0703-5046","ShipCountry":"PL","ShipAddress":"1766 Rutledge Drive","ShipName":"Stamm, Schaden and Flatley","OrderDate":"10/5/2017","TotalPayment":"$913548.88","Status":4,"Type":3},{"OrderID":"65044-2631","ShipCountry":"CO","ShipAddress":"72778 Anhalt Road","ShipName":"Shields, Treutel and Bins","OrderDate":"6/10/2016","TotalPayment":"$222135.91","Status":4,"Type":3},{"OrderID":"37205-719","ShipCountry":"IE","ShipAddress":"67 Village Point","ShipName":"McKenzie-Walter","OrderDate":"4/4/2017","TotalPayment":"$1052775.85","Status":4,"Type":2},{"OrderID":"0363-8480","ShipCountry":"CL","ShipAddress":"957 Monument Hill","ShipName":"Okuneva-Senger","OrderDate":"7/4/2016","TotalPayment":"$575992.01","Status":2,"Type":2},{"OrderID":"11527-161","ShipCountry":"CN","ShipAddress":"9038 Tennyson Circle","ShipName":"Volkman-Gleichner","OrderDate":"10/30/2017","TotalPayment":"$1113166.69","Status":6,"Type":3},{"OrderID":"41190-477","ShipCountry":"CZ","ShipAddress":"69409 5th Avenue","ShipName":"Hansen, Monahan and Nitzsche","OrderDate":"4/4/2017","TotalPayment":"$1073139.30","Status":2,"Type":2},{"OrderID":"43742-0136","ShipCountry":"RU","ShipAddress":"050 Melody Lane","ShipName":"Kassulke-Beatty","OrderDate":"5/19/2016","TotalPayment":"$854570.14","Status":1,"Type":1},{"OrderID":"59735-314","ShipCountry":"PL","ShipAddress":"7 Spohn Point","ShipName":"Walker-Carter","OrderDate":"12/11/2016","TotalPayment":"$788551.03","Status":2,"Type":2},{"OrderID":"54868-3230","ShipCountry":"BH","ShipAddress":"91 Longview Lane","ShipName":"Haley Group","OrderDate":"9/11/2017","TotalPayment":"$305037.84","Status":2,"Type":1},{"OrderID":"64942-1122","ShipCountry":"US","ShipAddress":"9562 Di Loreto Circle","ShipName":"Crona-Nikolaus","OrderDate":"4/13/2016","TotalPayment":"$1192061.30","Status":4,"Type":1},{"OrderID":"68828-142","ShipCountry":"SE","ShipAddress":"73 Oakridge Street","ShipName":"Volkman, Barrows and Schuster","OrderDate":"7/15/2017","TotalPayment":"$987848.70","Status":1,"Type":3}]},\n{"RecordID":120,"FirstName":"Tybi","LastName":"Izacenko","Company":"Buzzster","Email":"tizacenko3b@pen.io","Phone":"540-411-1230","Status":3,"Type":2,"Orders":[{"OrderID":"11822-0397","ShipCountry":"PT","ShipAddress":"0081 Mallard Trail","ShipName":"Maggio-Wunsch","OrderDate":"3/23/2016","TotalPayment":"$913132.87","Status":2,"Type":1},{"OrderID":"17518-056","ShipCountry":"SE","ShipAddress":"6 Little Fleur Way","ShipName":"Cassin, Koelpin and Corkery","OrderDate":"10/21/2016","TotalPayment":"$869918.88","Status":5,"Type":2},{"OrderID":"0268-6732","ShipCountry":"RU","ShipAddress":"3925 Eliot Drive","ShipName":"Murphy-Kuhlman","OrderDate":"12/2/2017","TotalPayment":"$64182.96","Status":5,"Type":1},{"OrderID":"0363-0452","ShipCountry":"BR","ShipAddress":"466 Homewood Trail","ShipName":"Schmidt, Wintheiser and Casper","OrderDate":"10/3/2016","TotalPayment":"$437818.67","Status":3,"Type":1},{"OrderID":"0115-9611","ShipCountry":"PH","ShipAddress":"1954 Katie Way","ShipName":"Wilkinson, Hegmann and Beatty","OrderDate":"12/28/2017","TotalPayment":"$1179874.84","Status":1,"Type":2},{"OrderID":"0363-0698","ShipCountry":"AU","ShipAddress":"0 Northridge Avenue","ShipName":"Ankunding, Crist and Hessel","OrderDate":"6/12/2016","TotalPayment":"$1118420.91","Status":4,"Type":1},{"OrderID":"48878-4020","ShipCountry":"JP","ShipAddress":"66 Amoth Avenue","ShipName":"Renner Inc","OrderDate":"1/17/2016","TotalPayment":"$1127342.65","Status":6,"Type":3},{"OrderID":"64117-213","ShipCountry":"PL","ShipAddress":"96 Monica Pass","ShipName":"Cruickshank-Dooley","OrderDate":"4/19/2017","TotalPayment":"$202143.17","Status":2,"Type":3},{"OrderID":"55154-4728","ShipCountry":"PH","ShipAddress":"055 Morrow Crossing","ShipName":"Fritsch LLC","OrderDate":"11/26/2017","TotalPayment":"$168356.17","Status":4,"Type":3},{"OrderID":"0078-0325","ShipCountry":"GR","ShipAddress":"02 Superior Park","ShipName":"Bernier Inc","OrderDate":"10/24/2016","TotalPayment":"$901834.89","Status":4,"Type":3},{"OrderID":"68151-0526","ShipCountry":"BR","ShipAddress":"815 Sage Junction","ShipName":"Wehner, Nikolaus and Fisher","OrderDate":"1/12/2017","TotalPayment":"$726327.73","Status":3,"Type":1},{"OrderID":"43419-034","ShipCountry":"TH","ShipAddress":"89642 Talmadge Street","ShipName":"Keeling, D\'Amore and Senger","OrderDate":"8/14/2017","TotalPayment":"$857283.01","Status":2,"Type":1},{"OrderID":"65044-2126","ShipCountry":"BR","ShipAddress":"2 Marcy Parkway","ShipName":"Cruickshank LLC","OrderDate":"1/23/2017","TotalPayment":"$1058633.63","Status":2,"Type":2},{"OrderID":"76058-101","ShipCountry":"CN","ShipAddress":"9 Hudson Court","ShipName":"Treutel and Sons","OrderDate":"8/27/2017","TotalPayment":"$1031333.28","Status":1,"Type":1},{"OrderID":"54868-6157","ShipCountry":"CN","ShipAddress":"31847 Scoville Parkway","ShipName":"Schuster-Ledner","OrderDate":"8/13/2016","TotalPayment":"$482608.75","Status":1,"Type":2},{"OrderID":"37808-085","ShipCountry":"MX","ShipAddress":"82 Oakridge Lane","ShipName":"Ruecker, Buckridge and Kub","OrderDate":"2/8/2017","TotalPayment":"$604069.62","Status":3,"Type":2},{"OrderID":"52125-957","ShipCountry":"CN","ShipAddress":"6681 Arapahoe Junction","ShipName":"Zieme-Kemmer","OrderDate":"2/22/2017","TotalPayment":"$475675.59","Status":5,"Type":3}]},\n{"RecordID":121,"FirstName":"Mercy","LastName":"Blakeden","Company":"Edgeblab","Email":"mblakeden3c@apple.com","Phone":"582-443-0925","Status":2,"Type":3,"Orders":[{"OrderID":"0591-0397","ShipCountry":"PL","ShipAddress":"9271 Cherokee Trail","ShipName":"Goodwin-Monahan","OrderDate":"12/30/2017","TotalPayment":"$94214.30","Status":1,"Type":2},{"OrderID":"0378-9080","ShipCountry":"CZ","ShipAddress":"0493 Caliangt Court","ShipName":"Bergstrom, Wolff and Braun","OrderDate":"5/20/2017","TotalPayment":"$399495.51","Status":4,"Type":1},{"OrderID":"55154-4787","ShipCountry":"US","ShipAddress":"5 Hoffman Circle","ShipName":"Runolfsdottir-Robel","OrderDate":"7/17/2017","TotalPayment":"$989598.47","Status":1,"Type":1},{"OrderID":"52125-335","ShipCountry":"FI","ShipAddress":"1 Dexter Terrace","ShipName":"Breitenberg-Skiles","OrderDate":"2/17/2016","TotalPayment":"$760962.50","Status":2,"Type":2},{"OrderID":"13668-149","ShipCountry":"RU","ShipAddress":"850 Redwing Place","ShipName":"Kautzer, VonRueden and Hessel","OrderDate":"4/18/2016","TotalPayment":"$168570.70","Status":2,"Type":2},{"OrderID":"65862-186","ShipCountry":"UA","ShipAddress":"37 Menomonie Center","ShipName":"Farrell LLC","OrderDate":"12/8/2016","TotalPayment":"$743720.11","Status":6,"Type":3},{"OrderID":"0591-0860","ShipCountry":"IS","ShipAddress":"8542 Florence Point","ShipName":"Frami-Jacobi","OrderDate":"2/2/2016","TotalPayment":"$165660.23","Status":3,"Type":3},{"OrderID":"54569-0330","ShipCountry":"CZ","ShipAddress":"7 Atwood Plaza","ShipName":"Barrows Group","OrderDate":"9/25/2016","TotalPayment":"$889252.39","Status":5,"Type":2},{"OrderID":"23155-196","ShipCountry":"HN","ShipAddress":"4 Fulton Junction","ShipName":"Moen Inc","OrderDate":"7/27/2017","TotalPayment":"$367813.40","Status":5,"Type":2},{"OrderID":"49349-607","ShipCountry":"ID","ShipAddress":"5490 Mccormick Trail","ShipName":"Crooks-Cummings","OrderDate":"6/26/2017","TotalPayment":"$1104780.46","Status":2,"Type":2}]},\n{"RecordID":122,"FirstName":"Dusty","LastName":"Stailey","Company":"Kazu","Email":"dstailey3d@bigcartel.com","Phone":"188-497-1628","Status":4,"Type":1,"Orders":[{"OrderID":"43386-712","ShipCountry":"CN","ShipAddress":"82 Tennyson Alley","ShipName":"Boehm Inc","OrderDate":"12/15/2016","TotalPayment":"$960379.91","Status":2,"Type":2},{"OrderID":"60760-429","ShipCountry":"CN","ShipAddress":"090 Cordelia Place","ShipName":"Keeling, Carter and Haag","OrderDate":"4/14/2017","TotalPayment":"$1026759.17","Status":6,"Type":3},{"OrderID":"59779-087","ShipCountry":"AZ","ShipAddress":"05 Tennyson Avenue","ShipName":"Rippin-Bruen","OrderDate":"7/5/2017","TotalPayment":"$478596.47","Status":5,"Type":1},{"OrderID":"33261-756","ShipCountry":"CN","ShipAddress":"257 Anniversary Road","ShipName":"Schaden-Runolfsson","OrderDate":"2/12/2016","TotalPayment":"$968094.77","Status":1,"Type":1},{"OrderID":"0074-3079","ShipCountry":"NG","ShipAddress":"86042 Fulton Park","ShipName":"Kub, Thiel and Thiel","OrderDate":"3/3/2016","TotalPayment":"$310592.46","Status":1,"Type":2},{"OrderID":"63783-400","ShipCountry":"JM","ShipAddress":"8333 Thackeray Place","ShipName":"Hintz-Rowe","OrderDate":"11/14/2017","TotalPayment":"$449804.81","Status":4,"Type":3},{"OrderID":"65923-012","ShipCountry":"BR","ShipAddress":"34 Dryden Drive","ShipName":"Herzog Group","OrderDate":"10/16/2017","TotalPayment":"$716772.27","Status":1,"Type":2},{"OrderID":"0093-5851","ShipCountry":"CN","ShipAddress":"6315 Derek Plaza","ShipName":"Rolfson Inc","OrderDate":"5/13/2017","TotalPayment":"$780421.26","Status":6,"Type":3},{"OrderID":"43478-241","ShipCountry":"PT","ShipAddress":"5 Brown Place","ShipName":"Buckridge-Denesik","OrderDate":"12/1/2017","TotalPayment":"$1096223.13","Status":2,"Type":2},{"OrderID":"30142-702","ShipCountry":"BR","ShipAddress":"5 Mcbride Road","ShipName":"Ruecker, Lakin and Boyer","OrderDate":"3/22/2016","TotalPayment":"$310927.49","Status":1,"Type":2},{"OrderID":"0615-7584","ShipCountry":"CN","ShipAddress":"90611 Sutherland Avenue","ShipName":"Runolfsson-Gusikowski","OrderDate":"12/27/2016","TotalPayment":"$782488.33","Status":6,"Type":3},{"OrderID":"68828-091","ShipCountry":"IL","ShipAddress":"5642 Memorial Hill","ShipName":"Boyle, Hintz and Streich","OrderDate":"2/25/2016","TotalPayment":"$431930.00","Status":1,"Type":1},{"OrderID":"11673-458","ShipCountry":"VE","ShipAddress":"79713 Judy Street","ShipName":"Dickinson-Armstrong","OrderDate":"6/2/2016","TotalPayment":"$384070.94","Status":3,"Type":3},{"OrderID":"76214-009","ShipCountry":"DK","ShipAddress":"9 Bartillon Plaza","ShipName":"Frami, Kunze and Greenfelder","OrderDate":"7/31/2017","TotalPayment":"$766397.21","Status":6,"Type":3},{"OrderID":"63739-964","ShipCountry":"PH","ShipAddress":"1 American Ash Way","ShipName":"Lubowitz-Rosenbaum","OrderDate":"9/19/2017","TotalPayment":"$863453.32","Status":5,"Type":1},{"OrderID":"16714-314","ShipCountry":"ID","ShipAddress":"12399 Bellgrove Court","ShipName":"Bode and Sons","OrderDate":"5/19/2016","TotalPayment":"$399420.85","Status":4,"Type":1}]},\n{"RecordID":123,"FirstName":"Ileane","LastName":"Culkin","Company":"Rhyzio","Email":"iculkin3e@utexas.edu","Phone":"361-836-2234","Status":3,"Type":1,"Orders":[{"OrderID":"45861-100","ShipCountry":"US","ShipAddress":"0231 Manitowish Junction","ShipName":"Hintz-Smith","OrderDate":"9/23/2017","TotalPayment":"$221401.39","Status":5,"Type":2},{"OrderID":"0186-1092","ShipCountry":"PT","ShipAddress":"19 Hooker Lane","ShipName":"Collins and Sons","OrderDate":"8/17/2017","TotalPayment":"$673320.78","Status":6,"Type":3},{"OrderID":"55714-8006","ShipCountry":"FR","ShipAddress":"42 Vernon Lane","ShipName":"Maggio-Torp","OrderDate":"7/16/2017","TotalPayment":"$589053.06","Status":6,"Type":1},{"OrderID":"0268-1435","ShipCountry":"RU","ShipAddress":"72 Vernon Hill","ShipName":"Schumm and Sons","OrderDate":"11/5/2017","TotalPayment":"$989835.47","Status":5,"Type":2},{"OrderID":"43742-0015","ShipCountry":"AM","ShipAddress":"32 Fairfield Court","ShipName":"Schultz, Cummings and Torphy","OrderDate":"7/17/2017","TotalPayment":"$740110.06","Status":1,"Type":3},{"OrderID":"68084-703","ShipCountry":"SE","ShipAddress":"8 Ludington Avenue","ShipName":"Heaney-Brekke","OrderDate":"6/14/2016","TotalPayment":"$243159.57","Status":4,"Type":1},{"OrderID":"49349-777","ShipCountry":"CN","ShipAddress":"55097 Melrose Pass","ShipName":"Little, Cormier and Fay","OrderDate":"6/23/2016","TotalPayment":"$1171651.75","Status":5,"Type":1},{"OrderID":"0338-1005","ShipCountry":"VE","ShipAddress":"17 Oneill Trail","ShipName":"Feest Inc","OrderDate":"10/4/2016","TotalPayment":"$1062960.61","Status":6,"Type":2},{"OrderID":"0338-0695","ShipCountry":"HU","ShipAddress":"504 Thierer Parkway","ShipName":"Wyman, Huels and Trantow","OrderDate":"1/17/2017","TotalPayment":"$109992.81","Status":4,"Type":3},{"OrderID":"58668-4101","ShipCountry":"MG","ShipAddress":"336 Luster Street","ShipName":"Collier Inc","OrderDate":"5/12/2016","TotalPayment":"$988503.27","Status":2,"Type":3},{"OrderID":"43853-0005","ShipCountry":"RU","ShipAddress":"77 Tennessee Street","ShipName":"Feil Group","OrderDate":"4/6/2017","TotalPayment":"$64272.93","Status":5,"Type":3},{"OrderID":"48951-1202","ShipCountry":"BO","ShipAddress":"803 Moose Place","ShipName":"Torp-Jacobson","OrderDate":"12/10/2017","TotalPayment":"$1125500.27","Status":1,"Type":1},{"OrderID":"51009-111","ShipCountry":"GR","ShipAddress":"829 Sloan Pass","ShipName":"VonRueden, Hudson and Williamson","OrderDate":"4/24/2017","TotalPayment":"$1095412.16","Status":5,"Type":3},{"OrderID":"52125-567","ShipCountry":"KR","ShipAddress":"249 Spohn Lane","ShipName":"Volkman and Sons","OrderDate":"11/1/2016","TotalPayment":"$588788.40","Status":5,"Type":3},{"OrderID":"66129-840","ShipCountry":"PH","ShipAddress":"0 Golf Course Way","ShipName":"Dare-Sipes","OrderDate":"4/11/2017","TotalPayment":"$367334.36","Status":1,"Type":3},{"OrderID":"52686-310","ShipCountry":"ZA","ShipAddress":"456 Lindbergh Center","ShipName":"Klein Group","OrderDate":"12/21/2016","TotalPayment":"$194501.65","Status":6,"Type":3},{"OrderID":"57344-133","ShipCountry":"PH","ShipAddress":"991 Raven Center","ShipName":"Williamson LLC","OrderDate":"5/31/2017","TotalPayment":"$901552.12","Status":6,"Type":1},{"OrderID":"68151-4488","ShipCountry":"CN","ShipAddress":"77373 Northfield Park","ShipName":"Muller LLC","OrderDate":"8/27/2017","TotalPayment":"$720130.06","Status":2,"Type":2},{"OrderID":"15127-595","ShipCountry":"SE","ShipAddress":"4 Old Gate Avenue","ShipName":"DuBuque, Greenfelder and Balistreri","OrderDate":"6/2/2017","TotalPayment":"$89390.86","Status":6,"Type":3}]},\n{"RecordID":124,"FirstName":"Avie","LastName":"Beric","Company":"Viva","Email":"aberic3f@google.com","Phone":"202-543-2464","Status":4,"Type":3,"Orders":[{"OrderID":"54973-3174","ShipCountry":"PL","ShipAddress":"1 Elka Way","ShipName":"Zboncak-Torp","OrderDate":"10/4/2017","TotalPayment":"$75383.16","Status":5,"Type":3},{"OrderID":"65862-228","ShipCountry":"TG","ShipAddress":"7 Jay Point","ShipName":"Marks Group","OrderDate":"1/13/2016","TotalPayment":"$405448.69","Status":2,"Type":3},{"OrderID":"43269-902","ShipCountry":"RU","ShipAddress":"74 Talisman Way","ShipName":"Mills Inc","OrderDate":"11/21/2017","TotalPayment":"$239545.89","Status":4,"Type":1},{"OrderID":"0264-4001","ShipCountry":"FI","ShipAddress":"9892 Susan Court","ShipName":"Howell-Mante","OrderDate":"6/5/2016","TotalPayment":"$497726.68","Status":4,"Type":1},{"OrderID":"16590-174","ShipCountry":"LT","ShipAddress":"33 Oak Drive","ShipName":"Witting LLC","OrderDate":"10/4/2016","TotalPayment":"$715587.89","Status":3,"Type":2},{"OrderID":"64942-1233","ShipCountry":"RU","ShipAddress":"2321 Tennyson Parkway","ShipName":"Quigley, Kutch and Mann","OrderDate":"3/27/2017","TotalPayment":"$690292.75","Status":5,"Type":3},{"OrderID":"98132-706","ShipCountry":"FI","ShipAddress":"01 Golf View Way","ShipName":"Kertzmann LLC","OrderDate":"9/12/2017","TotalPayment":"$438411.22","Status":1,"Type":3},{"OrderID":"43857-0166","ShipCountry":"RU","ShipAddress":"99 Sunbrook Junction","ShipName":"McLaughlin-Trantow","OrderDate":"6/23/2017","TotalPayment":"$307569.40","Status":1,"Type":3},{"OrderID":"55289-298","ShipCountry":"CN","ShipAddress":"610 Parkside Crossing","ShipName":"Langosh Inc","OrderDate":"9/6/2017","TotalPayment":"$692586.02","Status":3,"Type":2},{"OrderID":"49349-612","ShipCountry":"UG","ShipAddress":"1012 Rieder Place","ShipName":"Abernathy Group","OrderDate":"5/5/2016","TotalPayment":"$205787.49","Status":6,"Type":1}]},\n{"RecordID":125,"FirstName":"Gardiner","LastName":"Gorrie","Company":"Yodo","Email":"ggorrie3g@psu.edu","Phone":"703-624-6153","Status":2,"Type":2,"Orders":[{"OrderID":"54575-963","ShipCountry":"CR","ShipAddress":"40152 Muir Drive","ShipName":"Marks, Emard and Fay","OrderDate":"3/21/2017","TotalPayment":"$990299.45","Status":5,"Type":1},{"OrderID":"37205-308","ShipCountry":"PH","ShipAddress":"331 Harbort Crossing","ShipName":"Hoeger-Bode","OrderDate":"10/9/2017","TotalPayment":"$848108.31","Status":5,"Type":2},{"OrderID":"10578-032","ShipCountry":"CN","ShipAddress":"9345 Grasskamp Hill","ShipName":"Haley-Harris","OrderDate":"3/26/2017","TotalPayment":"$335821.14","Status":5,"Type":1},{"OrderID":"43386-530","ShipCountry":"ID","ShipAddress":"363 Westport Pass","ShipName":"Williamson, Sawayn and Prosacco","OrderDate":"7/5/2016","TotalPayment":"$808962.70","Status":3,"Type":2},{"OrderID":"76378-017","ShipCountry":"ID","ShipAddress":"797 Sachs Point","ShipName":"Schmitt Inc","OrderDate":"9/7/2017","TotalPayment":"$986373.86","Status":5,"Type":3},{"OrderID":"64159-6970","ShipCountry":"PH","ShipAddress":"967 Hermina Road","ShipName":"Goodwin Group","OrderDate":"2/8/2016","TotalPayment":"$733486.10","Status":2,"Type":2},{"OrderID":"10096-0253","ShipCountry":"CN","ShipAddress":"9942 Schurz Center","ShipName":"Schmidt-Bins","OrderDate":"3/13/2017","TotalPayment":"$251234.25","Status":3,"Type":1},{"OrderID":"37000-123","ShipCountry":"PH","ShipAddress":"29948 Forest Court","ShipName":"Pollich, Lesch and Lemke","OrderDate":"8/27/2017","TotalPayment":"$1013778.00","Status":3,"Type":1},{"OrderID":"49999-035","ShipCountry":"NL","ShipAddress":"1167 Kropf Trail","ShipName":"Murazik-Murray","OrderDate":"3/18/2017","TotalPayment":"$975004.31","Status":6,"Type":1},{"OrderID":"50111-326","ShipCountry":"PE","ShipAddress":"9 Scoville Junction","ShipName":"Smitham LLC","OrderDate":"5/22/2016","TotalPayment":"$1022474.85","Status":3,"Type":1},{"OrderID":"21695-477","ShipCountry":"PL","ShipAddress":"0 Steensland Way","ShipName":"Christiansen Inc","OrderDate":"7/8/2017","TotalPayment":"$979013.11","Status":4,"Type":2},{"OrderID":"60429-012","ShipCountry":"AM","ShipAddress":"64 Eggendart Crossing","ShipName":"Armstrong, Leannon and Stanton","OrderDate":"1/23/2016","TotalPayment":"$708305.00","Status":6,"Type":2},{"OrderID":"76439-269","ShipCountry":"RU","ShipAddress":"80 Green Avenue","ShipName":"Kihn, Lebsack and Gulgowski","OrderDate":"4/21/2017","TotalPayment":"$1010158.79","Status":4,"Type":2},{"OrderID":"60429-247","ShipCountry":"CA","ShipAddress":"69422 Eastwood Hill","ShipName":"Grimes-Yost","OrderDate":"7/11/2017","TotalPayment":"$533159.43","Status":4,"Type":2},{"OrderID":"68084-603","ShipCountry":"CN","ShipAddress":"6601 Mcguire Plaza","ShipName":"Lang LLC","OrderDate":"11/14/2017","TotalPayment":"$1020230.69","Status":5,"Type":3}]},\n{"RecordID":126,"FirstName":"Suzi","LastName":"Noseworthy","Company":"Aivee","Email":"snoseworthy3h@lycos.com","Phone":"670-352-0018","Status":4,"Type":2,"Orders":[{"OrderID":"41250-352","ShipCountry":"FR","ShipAddress":"09188 Pawling Crossing","ShipName":"Russel, Shields and Fisher","OrderDate":"1/24/2017","TotalPayment":"$800703.87","Status":6,"Type":3},{"OrderID":"52731-7050","ShipCountry":"RU","ShipAddress":"6 Gerald Terrace","ShipName":"Kub, Gutkowski and Greenholt","OrderDate":"9/9/2016","TotalPayment":"$369642.16","Status":2,"Type":3},{"OrderID":"59779-811","ShipCountry":"PE","ShipAddress":"72 Larry Terrace","ShipName":"Quigley, Predovic and Jaskolski","OrderDate":"11/3/2017","TotalPayment":"$839557.95","Status":6,"Type":1},{"OrderID":"54868-6222","ShipCountry":"FR","ShipAddress":"9 Carpenter Plaza","ShipName":"Walter, Hane and Waelchi","OrderDate":"6/25/2017","TotalPayment":"$164969.57","Status":5,"Type":2},{"OrderID":"49738-206","ShipCountry":"US","ShipAddress":"189 Westridge Street","ShipName":"Walker-Maggio","OrderDate":"4/16/2017","TotalPayment":"$182865.46","Status":2,"Type":2},{"OrderID":"0051-8425","ShipCountry":"CN","ShipAddress":"6 Porter Drive","ShipName":"Bernhard, Bernhard and Zemlak","OrderDate":"3/9/2016","TotalPayment":"$996835.51","Status":5,"Type":2},{"OrderID":"11084-533","ShipCountry":"CN","ShipAddress":"714 Elka Circle","ShipName":"Kohler-Gulgowski","OrderDate":"11/14/2017","TotalPayment":"$420169.01","Status":3,"Type":3},{"OrderID":"55319-510","ShipCountry":"HU","ShipAddress":"00062 Graceland Lane","ShipName":"Streich, Bernhard and Hyatt","OrderDate":"12/12/2017","TotalPayment":"$784793.73","Status":3,"Type":3}]},\n{"RecordID":127,"FirstName":"Leola","LastName":"Audenis","Company":"Gabspot","Email":"laudenis3i@irs.gov","Phone":"709-249-8178","Status":3,"Type":1,"Orders":[{"OrderID":"55312-358","ShipCountry":"CR","ShipAddress":"3558 Loomis Road","ShipName":"Will, Kutch and Kassulke","OrderDate":"3/26/2017","TotalPayment":"$557390.42","Status":5,"Type":1},{"OrderID":"37000-606","ShipCountry":"PH","ShipAddress":"9284 Mosinee Trail","ShipName":"Friesen-Denesik","OrderDate":"11/28/2016","TotalPayment":"$846856.24","Status":4,"Type":1},{"OrderID":"59078-028","ShipCountry":"US","ShipAddress":"32 Michigan Parkway","ShipName":"D\'Amore-Johnson","OrderDate":"1/12/2016","TotalPayment":"$1130994.35","Status":5,"Type":1},{"OrderID":"0268-1062","ShipCountry":"RU","ShipAddress":"3184 Hanson Terrace","ShipName":"Kilback, Sauer and Dare","OrderDate":"1/15/2016","TotalPayment":"$618206.91","Status":4,"Type":2},{"OrderID":"51334-0001","ShipCountry":"CN","ShipAddress":"9067 Lakewood Lane","ShipName":"Rowe Group","OrderDate":"12/30/2017","TotalPayment":"$326162.55","Status":6,"Type":3},{"OrderID":"41163-173","ShipCountry":"JP","ShipAddress":"7985 Mallard Hill","ShipName":"Macejkovic, Rutherford and Ward","OrderDate":"3/25/2016","TotalPayment":"$1014820.07","Status":2,"Type":2},{"OrderID":"0143-1765","ShipCountry":"CN","ShipAddress":"0160 Anniversary Avenue","ShipName":"Carroll, Carroll and Bednar","OrderDate":"5/16/2017","TotalPayment":"$864452.99","Status":5,"Type":3},{"OrderID":"54868-6745","ShipCountry":"BR","ShipAddress":"049 Katie Junction","ShipName":"Gleason, Kerluke and Gutkowski","OrderDate":"4/11/2016","TotalPayment":"$1136115.08","Status":1,"Type":2},{"OrderID":"55154-0910","ShipCountry":"PK","ShipAddress":"0 Waxwing Alley","ShipName":"Gleason, Okuneva and Willms","OrderDate":"4/17/2017","TotalPayment":"$471296.57","Status":5,"Type":3},{"OrderID":"52544-930","ShipCountry":"CL","ShipAddress":"7 Transport Place","ShipName":"Kutch and Sons","OrderDate":"7/29/2016","TotalPayment":"$108988.26","Status":5,"Type":2},{"OrderID":"55312-843","ShipCountry":"SY","ShipAddress":"91745 Lakeland Center","ShipName":"Moore-Huel","OrderDate":"12/29/2017","TotalPayment":"$345058.30","Status":2,"Type":2},{"OrderID":"51808-206","ShipCountry":"CN","ShipAddress":"998 Mandrake Crossing","ShipName":"Feest, Boehm and Torphy","OrderDate":"3/4/2016","TotalPayment":"$1174200.13","Status":1,"Type":3},{"OrderID":"0591-3494","ShipCountry":"CN","ShipAddress":"5 Parkside Lane","ShipName":"Trantow, Haag and Williamson","OrderDate":"9/11/2017","TotalPayment":"$39212.01","Status":3,"Type":2},{"OrderID":"36987-3278","ShipCountry":"BR","ShipAddress":"6356 North Avenue","ShipName":"Feest-Abshire","OrderDate":"8/2/2016","TotalPayment":"$238230.92","Status":2,"Type":3},{"OrderID":"68428-156","ShipCountry":"CN","ShipAddress":"586 Sheridan Lane","ShipName":"Rolfson-Schiller","OrderDate":"12/24/2017","TotalPayment":"$936629.83","Status":4,"Type":2},{"OrderID":"42254-190","ShipCountry":"CZ","ShipAddress":"279 Pepper Wood Alley","ShipName":"Herzog, Denesik and Fadel","OrderDate":"2/15/2017","TotalPayment":"$227065.49","Status":1,"Type":1}]},\n{"RecordID":128,"FirstName":"Catie","LastName":"Mapstone","Company":"Latz","Email":"cmapstone3j@uiuc.edu","Phone":"595-921-8691","Status":4,"Type":3,"Orders":[{"OrderID":"24338-300","ShipCountry":"KP","ShipAddress":"7949 Ludington Pass","ShipName":"Romaguera-Wuckert","OrderDate":"6/11/2017","TotalPayment":"$1112687.03","Status":5,"Type":1},{"OrderID":"61442-171","ShipCountry":"ID","ShipAddress":"4 Bayside Center","ShipName":"Beahan LLC","OrderDate":"1/7/2016","TotalPayment":"$656246.45","Status":6,"Type":1},{"OrderID":"46123-006","ShipCountry":"BR","ShipAddress":"2131 Browning Circle","ShipName":"Schuppe, Konopelski and Johnson","OrderDate":"7/8/2017","TotalPayment":"$1064465.35","Status":6,"Type":2},{"OrderID":"64942-1186","ShipCountry":"PH","ShipAddress":"5 Union Court","ShipName":"Gerlach, Batz and Nicolas","OrderDate":"10/13/2016","TotalPayment":"$678329.02","Status":1,"Type":1},{"OrderID":"0781-2865","ShipCountry":"UA","ShipAddress":"43305 Pearson Way","ShipName":"Weimann, Marks and Thiel","OrderDate":"3/19/2017","TotalPayment":"$679657.38","Status":2,"Type":1},{"OrderID":"21695-801","ShipCountry":"SI","ShipAddress":"812 Hintze Crossing","ShipName":"Hodkiewicz, Littel and Hartmann","OrderDate":"7/26/2016","TotalPayment":"$1110397.93","Status":5,"Type":1},{"OrderID":"43353-757","ShipCountry":"ID","ShipAddress":"9669 Ludington Court","ShipName":"Sawayn and Sons","OrderDate":"1/2/2017","TotalPayment":"$763290.33","Status":1,"Type":2},{"OrderID":"0093-4030","ShipCountry":"SV","ShipAddress":"0707 Huxley Plaza","ShipName":"Keebler-Padberg","OrderDate":"8/24/2016","TotalPayment":"$1084459.73","Status":4,"Type":2},{"OrderID":"65310-002","ShipCountry":"ID","ShipAddress":"3776 Dorton Junction","ShipName":"Bahringer, Gottlieb and Johnston","OrderDate":"8/5/2017","TotalPayment":"$381154.24","Status":2,"Type":2},{"OrderID":"0703-4686","ShipCountry":"SY","ShipAddress":"70296 Sheridan Street","ShipName":"Mills-Ward","OrderDate":"6/16/2017","TotalPayment":"$331409.44","Status":4,"Type":2},{"OrderID":"49035-014","ShipCountry":"ID","ShipAddress":"54072 Pleasure Place","ShipName":"Goyette-Will","OrderDate":"9/13/2016","TotalPayment":"$1104359.76","Status":4,"Type":1},{"OrderID":"14783-272","ShipCountry":"VE","ShipAddress":"65 Boyd Plaza","ShipName":"Swift-Gutmann","OrderDate":"12/6/2016","TotalPayment":"$11031.31","Status":1,"Type":2},{"OrderID":"10096-0221","ShipCountry":"PH","ShipAddress":"4972 Red Cloud Street","ShipName":"Langworth, Borer and Corkery","OrderDate":"12/9/2016","TotalPayment":"$785314.17","Status":4,"Type":1},{"OrderID":"44911-0042","ShipCountry":"JP","ShipAddress":"217 Sage Crossing","ShipName":"Bruen Inc","OrderDate":"12/15/2017","TotalPayment":"$983034.00","Status":1,"Type":2},{"OrderID":"68472-108","ShipCountry":"CN","ShipAddress":"834 Dexter Point","ShipName":"Christiansen and Sons","OrderDate":"3/26/2016","TotalPayment":"$511734.18","Status":5,"Type":1},{"OrderID":"0085-0314","ShipCountry":"CZ","ShipAddress":"2 Packers Center","ShipName":"Upton-Jacobs","OrderDate":"12/1/2016","TotalPayment":"$959233.76","Status":1,"Type":2},{"OrderID":"64117-138","ShipCountry":"TH","ShipAddress":"889 Stephen Hill","ShipName":"Bode-Little","OrderDate":"6/18/2017","TotalPayment":"$626006.72","Status":2,"Type":2}]},\n{"RecordID":129,"FirstName":"Barny","LastName":"Trevan","Company":"Fatz","Email":"btrevan3k@scribd.com","Phone":"313-456-4274","Status":2,"Type":3,"Orders":[{"OrderID":"68788-9871","ShipCountry":"PE","ShipAddress":"55 Nobel Center","ShipName":"Schuster, Kunze and Lebsack","OrderDate":"7/16/2017","TotalPayment":"$1006476.19","Status":3,"Type":2},{"OrderID":"65044-2101","ShipCountry":"AM","ShipAddress":"75 Mallory Alley","ShipName":"Robel Group","OrderDate":"2/12/2017","TotalPayment":"$256811.31","Status":4,"Type":3},{"OrderID":"42291-801","ShipCountry":"CN","ShipAddress":"96738 Lotheville Place","ShipName":"Beatty, Luettgen and Koch","OrderDate":"7/5/2016","TotalPayment":"$824205.11","Status":2,"Type":3},{"OrderID":"50988-170","ShipCountry":"ME","ShipAddress":"4 Eliot Way","ShipName":"Bashirian and Sons","OrderDate":"4/7/2017","TotalPayment":"$1088212.02","Status":4,"Type":1},{"OrderID":"24286-1521","ShipCountry":"CZ","ShipAddress":"9 Sundown Trail","ShipName":"Kohler, Cassin and Hilll","OrderDate":"11/15/2017","TotalPayment":"$711456.21","Status":6,"Type":3},{"OrderID":"63481-907","ShipCountry":"JP","ShipAddress":"1542 East Circle","ShipName":"Moen, Bergstrom and Franecki","OrderDate":"12/26/2017","TotalPayment":"$330710.18","Status":4,"Type":3},{"OrderID":"58668-1971","ShipCountry":"GR","ShipAddress":"617 Merry Way","ShipName":"Haag, Osinski and Quigley","OrderDate":"5/22/2017","TotalPayment":"$881469.73","Status":2,"Type":3}]},\n{"RecordID":130,"FirstName":"Patience","LastName":"Haken","Company":"Mynte","Email":"phaken3l@state.tx.us","Phone":"796-932-3331","Status":3,"Type":1,"Orders":[{"OrderID":"0268-6319","ShipCountry":"US","ShipAddress":"5280 Chinook Terrace","ShipName":"Barton-Langosh","OrderDate":"6/13/2016","TotalPayment":"$1112416.97","Status":6,"Type":1},{"OrderID":"0378-2071","ShipCountry":"ID","ShipAddress":"6 Ronald Regan Terrace","ShipName":"Cartwright, Daniel and Wisoky","OrderDate":"3/19/2017","TotalPayment":"$905027.60","Status":5,"Type":3},{"OrderID":"53489-387","ShipCountry":"ID","ShipAddress":"5823 Crowley Circle","ShipName":"Bins Group","OrderDate":"5/15/2016","TotalPayment":"$437682.93","Status":1,"Type":2},{"OrderID":"51079-128","ShipCountry":"RU","ShipAddress":"72 Stoughton Junction","ShipName":"Hand LLC","OrderDate":"3/10/2017","TotalPayment":"$829066.11","Status":6,"Type":2},{"OrderID":"0603-0851","ShipCountry":"IS","ShipAddress":"520 Hauk Crossing","ShipName":"Jakubowski, Hayes and Prosacco","OrderDate":"2/17/2017","TotalPayment":"$768559.57","Status":1,"Type":2},{"OrderID":"0603-4381","ShipCountry":"ID","ShipAddress":"9108 Northridge Trail","ShipName":"Paucek, Bashirian and Thiel","OrderDate":"7/16/2016","TotalPayment":"$437647.39","Status":6,"Type":2},{"OrderID":"54868-4867","ShipCountry":"PL","ShipAddress":"8 Esch Pass","ShipName":"Hilll-Bailey","OrderDate":"3/10/2017","TotalPayment":"$683266.11","Status":2,"Type":3},{"OrderID":"57955-0758","ShipCountry":"ID","ShipAddress":"5257 Cody Circle","ShipName":"Crist, Gislason and Sipes","OrderDate":"1/3/2016","TotalPayment":"$1155453.28","Status":3,"Type":2},{"OrderID":"41250-917","ShipCountry":"JP","ShipAddress":"84 Summerview Terrace","ShipName":"Wilkinson Inc","OrderDate":"3/6/2017","TotalPayment":"$557086.82","Status":4,"Type":2},{"OrderID":"57520-1021","ShipCountry":"RU","ShipAddress":"3545 Clove Court","ShipName":"Osinski-Skiles","OrderDate":"1/3/2017","TotalPayment":"$651791.70","Status":3,"Type":1},{"OrderID":"0268-0805","ShipCountry":"ID","ShipAddress":"6 Spenser Plaza","ShipName":"Durgan and Sons","OrderDate":"3/15/2017","TotalPayment":"$799331.56","Status":2,"Type":1},{"OrderID":"48951-9048","ShipCountry":"DO","ShipAddress":"0 Golf View Lane","ShipName":"Balistreri Group","OrderDate":"11/24/2016","TotalPayment":"$616619.75","Status":2,"Type":3},{"OrderID":"0143-9756","ShipCountry":"CN","ShipAddress":"92473 Boyd Lane","ShipName":"Windler-Will","OrderDate":"4/8/2017","TotalPayment":"$583357.49","Status":6,"Type":1},{"OrderID":"57520-1029","ShipCountry":"PH","ShipAddress":"3357 Morrow Place","ShipName":"Nolan and Sons","OrderDate":"5/6/2016","TotalPayment":"$119880.83","Status":3,"Type":1},{"OrderID":"49288-0377","ShipCountry":"MG","ShipAddress":"98515 Sheridan Crossing","ShipName":"Marquardt-Kling","OrderDate":"9/23/2016","TotalPayment":"$1060570.06","Status":1,"Type":2},{"OrderID":"68788-9802","ShipCountry":"SE","ShipAddress":"8562 Pankratz Park","ShipName":"Botsford, Padberg and Torp","OrderDate":"10/5/2017","TotalPayment":"$600666.98","Status":1,"Type":2},{"OrderID":"17452-390","ShipCountry":"PT","ShipAddress":"65617 Old Shore Lane","ShipName":"Price-Huel","OrderDate":"1/31/2017","TotalPayment":"$605519.84","Status":3,"Type":1},{"OrderID":"55154-5976","ShipCountry":"NG","ShipAddress":"7 Spaight Drive","ShipName":"Konopelski-Wyman","OrderDate":"11/2/2017","TotalPayment":"$165604.21","Status":1,"Type":1},{"OrderID":"59779-488","ShipCountry":"CN","ShipAddress":"2 Randy Avenue","ShipName":"Simonis-Stehr","OrderDate":"7/15/2016","TotalPayment":"$58261.81","Status":5,"Type":2}]},\n{"RecordID":131,"FirstName":"Ward","LastName":"Darrach","Company":"Skippad","Email":"wdarrach3m@mlb.com","Phone":"898-211-1223","Status":2,"Type":2,"Orders":[{"OrderID":"49483-330","ShipCountry":"ID","ShipAddress":"43 Fallview Drive","ShipName":"Skiles LLC","OrderDate":"5/17/2017","TotalPayment":"$1112158.80","Status":5,"Type":1},{"OrderID":"65162-998","ShipCountry":"CN","ShipAddress":"67378 Drewry Pass","ShipName":"Beier, Ortiz and Rodriguez","OrderDate":"9/11/2016","TotalPayment":"$910409.74","Status":6,"Type":2},{"OrderID":"10337-395","ShipCountry":"CU","ShipAddress":"889 Pearson Court","ShipName":"Carroll, Huels and Bosco","OrderDate":"3/19/2016","TotalPayment":"$531678.63","Status":3,"Type":2},{"OrderID":"52125-047","ShipCountry":"ID","ShipAddress":"9 Sullivan Crossing","ShipName":"Hand-Dickinson","OrderDate":"6/8/2017","TotalPayment":"$642593.10","Status":2,"Type":1},{"OrderID":"63323-285","ShipCountry":"CN","ShipAddress":"00722 Randy Junction","ShipName":"Ferry and Sons","OrderDate":"1/28/2017","TotalPayment":"$274006.82","Status":6,"Type":1},{"OrderID":"10019-953","ShipCountry":"ID","ShipAddress":"9 Browning Street","ShipName":"Hudson Group","OrderDate":"3/2/2017","TotalPayment":"$554177.24","Status":3,"Type":1},{"OrderID":"48951-6045","ShipCountry":"CN","ShipAddress":"8851 Mallory Way","ShipName":"Zulauf LLC","OrderDate":"7/13/2016","TotalPayment":"$382962.13","Status":5,"Type":2},{"OrderID":"55714-4630","ShipCountry":"KR","ShipAddress":"2089 Dennis Parkway","ShipName":"Yundt Inc","OrderDate":"5/13/2016","TotalPayment":"$543496.58","Status":2,"Type":2},{"OrderID":"37205-750","ShipCountry":"CN","ShipAddress":"82378 Rieder Junction","ShipName":"Kihn, Legros and Ratke","OrderDate":"4/19/2017","TotalPayment":"$904593.54","Status":1,"Type":3},{"OrderID":"0115-1471","ShipCountry":"LY","ShipAddress":"7485 Fremont Hill","ShipName":"Yundt, Pagac and Zulauf","OrderDate":"2/26/2017","TotalPayment":"$837934.36","Status":3,"Type":2},{"OrderID":"34666-040","ShipCountry":"CN","ShipAddress":"7520 South Pass","ShipName":"Feeney-Hane","OrderDate":"4/19/2017","TotalPayment":"$324505.82","Status":1,"Type":3},{"OrderID":"55315-127","ShipCountry":"UA","ShipAddress":"48067 Chive Trail","ShipName":"Sporer, Heller and Ratke","OrderDate":"10/23/2016","TotalPayment":"$984428.53","Status":3,"Type":2}]},\n{"RecordID":132,"FirstName":"Jillane","LastName":"Fitzroy","Company":"JumpXS","Email":"jfitzroy3n@walmart.com","Phone":"342-347-5469","Status":3,"Type":2,"Orders":[{"OrderID":"0268-6229","ShipCountry":"CO","ShipAddress":"8 Doe Crossing Drive","ShipName":"Rath Inc","OrderDate":"2/6/2016","TotalPayment":"$181671.12","Status":3,"Type":3},{"OrderID":"37012-845","ShipCountry":"CN","ShipAddress":"1071 Monterey Circle","ShipName":"Jaskolski-Herzog","OrderDate":"5/26/2016","TotalPayment":"$1064428.92","Status":2,"Type":1},{"OrderID":"65193-939","ShipCountry":"ID","ShipAddress":"9047 Lyons Circle","ShipName":"Jacobs-Kuvalis","OrderDate":"9/13/2016","TotalPayment":"$504739.93","Status":6,"Type":2},{"OrderID":"50563-163","ShipCountry":"VN","ShipAddress":"719 Sheridan Drive","ShipName":"Feeney-Collins","OrderDate":"2/2/2017","TotalPayment":"$208595.57","Status":4,"Type":2},{"OrderID":"0781-2811","ShipCountry":"RU","ShipAddress":"61606 Moland Parkway","ShipName":"Armstrong, Considine and Schmidt","OrderDate":"10/12/2016","TotalPayment":"$1094995.84","Status":1,"Type":2},{"OrderID":"10738-101","ShipCountry":"BJ","ShipAddress":"97 Dottie Alley","ShipName":"Kihn, Gutmann and Wilderman","OrderDate":"1/13/2017","TotalPayment":"$811764.72","Status":2,"Type":1},{"OrderID":"36987-3043","ShipCountry":"CU","ShipAddress":"3 Judy Junction","ShipName":"Konopelski Group","OrderDate":"10/9/2017","TotalPayment":"$67675.60","Status":5,"Type":2},{"OrderID":"67046-714","ShipCountry":"HN","ShipAddress":"47 Cherokee Alley","ShipName":"Fay, Waters and Heaney","OrderDate":"11/15/2017","TotalPayment":"$644986.52","Status":6,"Type":1},{"OrderID":"52204-103","ShipCountry":"RU","ShipAddress":"50300 Mendota Lane","ShipName":"Mante-Ward","OrderDate":"8/8/2016","TotalPayment":"$709194.37","Status":1,"Type":2},{"OrderID":"63304-460","ShipCountry":"ID","ShipAddress":"4 Almo Junction","ShipName":"Runolfsson and Sons","OrderDate":"11/16/2016","TotalPayment":"$109055.82","Status":3,"Type":2},{"OrderID":"47682-810","ShipCountry":"UA","ShipAddress":"06531 Fulton Lane","ShipName":"Lebsack Group","OrderDate":"7/30/2016","TotalPayment":"$430441.76","Status":6,"Type":2},{"OrderID":"60742-473","ShipCountry":"CO","ShipAddress":"299 Green Ridge Parkway","ShipName":"Satterfield Inc","OrderDate":"4/27/2016","TotalPayment":"$420939.16","Status":1,"Type":2}]},\n{"RecordID":133,"FirstName":"Merilee","LastName":"Tuffley","Company":"Yodel","Email":"mtuffley3o@google.es","Phone":"273-436-0567","Status":1,"Type":3,"Orders":[{"OrderID":"0904-6269","ShipCountry":"ID","ShipAddress":"3 Becker Circle","ShipName":"Feil Group","OrderDate":"9/21/2017","TotalPayment":"$811102.68","Status":4,"Type":3},{"OrderID":"41163-531","ShipCountry":"UG","ShipAddress":"19 Hanson Pass","ShipName":"Ebert, DuBuque and Abbott","OrderDate":"1/4/2017","TotalPayment":"$519125.02","Status":5,"Type":2},{"OrderID":"59779-282","ShipCountry":"AR","ShipAddress":"063 Michigan Place","ShipName":"Kohler Inc","OrderDate":"9/8/2017","TotalPayment":"$645471.38","Status":6,"Type":1},{"OrderID":"46122-279","ShipCountry":"SE","ShipAddress":"890 8th Circle","ShipName":"Becker LLC","OrderDate":"2/29/2016","TotalPayment":"$277431.81","Status":1,"Type":3},{"OrderID":"0781-5181","ShipCountry":"PH","ShipAddress":"40358 Bunting Drive","ShipName":"Berge LLC","OrderDate":"1/23/2017","TotalPayment":"$285326.36","Status":4,"Type":3},{"OrderID":"62011-0021","ShipCountry":"BR","ShipAddress":"15550 Washington Terrace","ShipName":"Becker, Will and Upton","OrderDate":"7/29/2016","TotalPayment":"$1010184.32","Status":3,"Type":1},{"OrderID":"0904-6169","ShipCountry":"LB","ShipAddress":"05 Clemons Point","ShipName":"Dickens, Hansen and Will","OrderDate":"7/13/2016","TotalPayment":"$193194.68","Status":6,"Type":2},{"OrderID":"49288-0636","ShipCountry":"RU","ShipAddress":"21 Cottonwood Crossing","ShipName":"Ankunding-Orn","OrderDate":"8/2/2016","TotalPayment":"$923981.04","Status":3,"Type":3},{"OrderID":"63739-167","ShipCountry":"AM","ShipAddress":"06815 Walton Avenue","ShipName":"Zulauf Inc","OrderDate":"8/27/2017","TotalPayment":"$22336.00","Status":2,"Type":3},{"OrderID":"52544-732","ShipCountry":"CN","ShipAddress":"3079 Bunting Way","ShipName":"Kirlin, Corwin and Abernathy","OrderDate":"10/12/2016","TotalPayment":"$550560.55","Status":1,"Type":3},{"OrderID":"0409-1161","ShipCountry":"AR","ShipAddress":"62591 Union Point","ShipName":"Gutmann-Cummings","OrderDate":"4/9/2016","TotalPayment":"$469235.26","Status":1,"Type":3},{"OrderID":"76126-075","ShipCountry":"CN","ShipAddress":"6509 High Crossing Way","ShipName":"McClure, Kunde and Lockman","OrderDate":"7/7/2017","TotalPayment":"$948674.19","Status":2,"Type":1},{"OrderID":"63629-4028","ShipCountry":"CN","ShipAddress":"00285 Vera Point","ShipName":"Ruecker-Smith","OrderDate":"3/8/2016","TotalPayment":"$1102560.18","Status":3,"Type":2},{"OrderID":"44224-0006","ShipCountry":"PT","ShipAddress":"1 Fordem Lane","ShipName":"Reichel, Mraz and Stehr","OrderDate":"8/2/2016","TotalPayment":"$76152.12","Status":2,"Type":3},{"OrderID":"17156-524","ShipCountry":"RU","ShipAddress":"7888 Sutteridge Point","ShipName":"Conn, Erdman and Bergnaum","OrderDate":"2/27/2016","TotalPayment":"$228548.10","Status":5,"Type":3}]},\n{"RecordID":134,"FirstName":"Christian","LastName":"Marusik","Company":"Yodoo","Email":"cmarusik3p@eepurl.com","Phone":"490-516-3249","Status":4,"Type":3,"Orders":[{"OrderID":"49349-649","ShipCountry":"ID","ShipAddress":"8065 Del Sol Trail","ShipName":"Paucek, Lakin and Corkery","OrderDate":"1/10/2017","TotalPayment":"$448532.31","Status":5,"Type":1},{"OrderID":"41163-075","ShipCountry":"PE","ShipAddress":"40 Riverside Junction","ShipName":"Reynolds-Klocko","OrderDate":"5/25/2017","TotalPayment":"$126444.16","Status":4,"Type":1},{"OrderID":"0603-1393","ShipCountry":"BR","ShipAddress":"50 Raven Place","ShipName":"Corkery, Hansen and Corwin","OrderDate":"8/15/2017","TotalPayment":"$317256.51","Status":1,"Type":2},{"OrderID":"51655-414","ShipCountry":"IE","ShipAddress":"0590 Mandrake Way","ShipName":"Keeling, Fadel and Toy","OrderDate":"4/20/2016","TotalPayment":"$232978.06","Status":3,"Type":1},{"OrderID":"62032-118","ShipCountry":"BR","ShipAddress":"47 Butterfield Alley","ShipName":"Stokes, Ryan and Heathcote","OrderDate":"4/13/2017","TotalPayment":"$317603.39","Status":6,"Type":3},{"OrderID":"36987-3331","ShipCountry":"AL","ShipAddress":"8076 Mccormick Lane","ShipName":"Considine LLC","OrderDate":"4/25/2017","TotalPayment":"$16526.60","Status":1,"Type":2},{"OrderID":"76282-323","ShipCountry":"RU","ShipAddress":"4231 Graedel Junction","ShipName":"Schiller, Volkman and Heller","OrderDate":"10/31/2016","TotalPayment":"$721368.52","Status":4,"Type":3},{"OrderID":"0093-7387","ShipCountry":"NG","ShipAddress":"67 Beilfuss Crossing","ShipName":"Ortiz-Brakus","OrderDate":"8/8/2017","TotalPayment":"$536264.90","Status":5,"Type":3},{"OrderID":"0603-4415","ShipCountry":"PL","ShipAddress":"3 Waywood Street","ShipName":"Durgan-Reinger","OrderDate":"2/12/2016","TotalPayment":"$109927.20","Status":5,"Type":1},{"OrderID":"10967-583","ShipCountry":"PT","ShipAddress":"1 Messerschmidt Trail","ShipName":"Bergnaum, Steuber and Windler","OrderDate":"2/16/2016","TotalPayment":"$624045.83","Status":4,"Type":2},{"OrderID":"21695-068","ShipCountry":"RU","ShipAddress":"9 Fair Oaks Pass","ShipName":"Farrell-Bahringer","OrderDate":"8/7/2017","TotalPayment":"$210940.68","Status":3,"Type":3},{"OrderID":"0615-6593","ShipCountry":"CN","ShipAddress":"35408 Almo Pass","ShipName":"Effertz-Green","OrderDate":"9/17/2017","TotalPayment":"$466778.99","Status":4,"Type":1},{"OrderID":"41167-0262","ShipCountry":"CN","ShipAddress":"32 Magdeline Place","ShipName":"Harvey-Okuneva","OrderDate":"8/1/2017","TotalPayment":"$363289.55","Status":5,"Type":2}]},\n{"RecordID":135,"FirstName":"Ingamar","LastName":"Wasielewicz","Company":"Avavee","Email":"iwasielewicz3q@tumblr.com","Phone":"772-516-4409","Status":2,"Type":1,"Orders":[{"OrderID":"57237-014","ShipCountry":"BY","ShipAddress":"58 Sutteridge Park","ShipName":"Marvin-Denesik","OrderDate":"12/9/2017","TotalPayment":"$641539.92","Status":5,"Type":2},{"OrderID":"57520-0444","ShipCountry":"PT","ShipAddress":"00622 Northport Avenue","ShipName":"Stamm, Hegmann and Wisozk","OrderDate":"4/28/2016","TotalPayment":"$627212.14","Status":4,"Type":1},{"OrderID":"10216-3110","ShipCountry":"PY","ShipAddress":"26 Alpine Avenue","ShipName":"Shanahan Group","OrderDate":"1/10/2016","TotalPayment":"$324622.08","Status":4,"Type":2},{"OrderID":"63629-5436","ShipCountry":"CN","ShipAddress":"899 Carey Center","ShipName":"Cartwright-Krajcik","OrderDate":"6/17/2017","TotalPayment":"$796994.35","Status":1,"Type":2},{"OrderID":"24338-300","ShipCountry":"CN","ShipAddress":"12 Nobel Court","ShipName":"Stehr Inc","OrderDate":"6/13/2016","TotalPayment":"$888659.58","Status":5,"Type":2},{"OrderID":"55346-2904","ShipCountry":"PH","ShipAddress":"0613 North Trail","ShipName":"Hayes-Buckridge","OrderDate":"5/6/2016","TotalPayment":"$326212.83","Status":3,"Type":2},{"OrderID":"24236-720","ShipCountry":"RU","ShipAddress":"4090 Grayhawk Point","ShipName":"Reinger, Ryan and Ward","OrderDate":"5/27/2016","TotalPayment":"$1187606.57","Status":5,"Type":1},{"OrderID":"64764-250","ShipCountry":"AD","ShipAddress":"0 Gale Circle","ShipName":"Heller and Sons","OrderDate":"9/9/2016","TotalPayment":"$1007067.09","Status":6,"Type":3},{"OrderID":"59999-001","ShipCountry":"ID","ShipAddress":"47 Little Fleur Point","ShipName":"Hoeger and Sons","OrderDate":"6/14/2016","TotalPayment":"$868586.30","Status":4,"Type":3},{"OrderID":"24236-624","ShipCountry":"CN","ShipAddress":"88 Monument Trail","ShipName":"Hand Group","OrderDate":"6/19/2017","TotalPayment":"$1051410.65","Status":6,"Type":1},{"OrderID":"0603-1588","ShipCountry":"CN","ShipAddress":"51356 Tennessee Crossing","ShipName":"Stamm, Hoeger and Windler","OrderDate":"2/22/2016","TotalPayment":"$747676.96","Status":3,"Type":1},{"OrderID":"49288-0354","ShipCountry":"GN","ShipAddress":"7 Colorado Point","ShipName":"Kovacek, Haley and Upton","OrderDate":"3/21/2016","TotalPayment":"$71506.07","Status":5,"Type":2},{"OrderID":"66689-695","ShipCountry":"US","ShipAddress":"813 Harbort Center","ShipName":"Greenholt and Sons","OrderDate":"6/8/2017","TotalPayment":"$329422.98","Status":6,"Type":1},{"OrderID":"0591-3562","ShipCountry":"MY","ShipAddress":"74408 Jackson Place","ShipName":"Morissette-Jacobson","OrderDate":"10/6/2016","TotalPayment":"$210451.46","Status":6,"Type":1},{"OrderID":"36987-3172","ShipCountry":"CA","ShipAddress":"1698 Prairie Rose Crossing","ShipName":"Collins-Simonis","OrderDate":"11/4/2017","TotalPayment":"$940831.47","Status":3,"Type":1},{"OrderID":"54868-6026","ShipCountry":"CN","ShipAddress":"67695 Basil Park","ShipName":"Schaden-Tremblay","OrderDate":"9/13/2016","TotalPayment":"$87230.58","Status":5,"Type":2},{"OrderID":"58118-9839","ShipCountry":"CN","ShipAddress":"427 Holmberg Road","ShipName":"Pollich-Bayer","OrderDate":"12/11/2017","TotalPayment":"$781613.93","Status":1,"Type":2},{"OrderID":"0078-0327","ShipCountry":"RU","ShipAddress":"35044 Annamark Circle","ShipName":"Parisian-Reynolds","OrderDate":"8/20/2017","TotalPayment":"$919974.45","Status":3,"Type":3},{"OrderID":"50114-0110","ShipCountry":"CN","ShipAddress":"6354 Victoria Avenue","ShipName":"Mayert-Prosacco","OrderDate":"2/28/2017","TotalPayment":"$164166.22","Status":6,"Type":1}]},\n{"RecordID":136,"FirstName":"Christal","LastName":"Rickards","Company":"Zoombeat","Email":"crickards3r@4shared.com","Phone":"847-718-6074","Status":1,"Type":2,"Orders":[{"OrderID":"10685-978","ShipCountry":"IE","ShipAddress":"15712 Sherman Drive","ShipName":"Marvin, Cummings and Johns","OrderDate":"3/7/2017","TotalPayment":"$46093.90","Status":4,"Type":2},{"OrderID":"49967-382","ShipCountry":"CA","ShipAddress":"44478 Sutteridge Street","ShipName":"Borer-Pfannerstill","OrderDate":"11/17/2016","TotalPayment":"$769112.18","Status":3,"Type":3},{"OrderID":"11822-0294","ShipCountry":"MN","ShipAddress":"47372 Sugar Alley","ShipName":"Wiza, Harvey and Mayer","OrderDate":"11/2/2017","TotalPayment":"$342294.16","Status":1,"Type":2},{"OrderID":"51393-7333","ShipCountry":"US","ShipAddress":"1520 Badeau Terrace","ShipName":"Jacobs-Pacocha","OrderDate":"11/28/2016","TotalPayment":"$51745.64","Status":2,"Type":3},{"OrderID":"36800-285","ShipCountry":"ET","ShipAddress":"9 Gale Street","ShipName":"Klocko-Jones","OrderDate":"2/24/2016","TotalPayment":"$201669.47","Status":4,"Type":3},{"OrderID":"10742-1442","ShipCountry":"PL","ShipAddress":"7 Gulseth Lane","ShipName":"Hamill, Waelchi and Collins","OrderDate":"11/14/2017","TotalPayment":"$553010.85","Status":3,"Type":1}]},\n{"RecordID":137,"FirstName":"Kelsy","LastName":"Canizares","Company":"Gabtune","Email":"kcanizares3s@imageshack.us","Phone":"450-531-8258","Status":3,"Type":3,"Orders":[{"OrderID":"16590-266","ShipCountry":"PS","ShipAddress":"86904 Onsgard Park","ShipName":"Waters Group","OrderDate":"11/15/2016","TotalPayment":"$1008824.91","Status":3,"Type":2},{"OrderID":"61098-020","ShipCountry":"PH","ShipAddress":"6 Utah Way","ShipName":"Yundt-Wolff","OrderDate":"6/6/2016","TotalPayment":"$994412.19","Status":4,"Type":2},{"OrderID":"36987-1123","ShipCountry":"SE","ShipAddress":"694 Arapahoe Court","ShipName":"Zieme Group","OrderDate":"11/7/2016","TotalPayment":"$496282.92","Status":1,"Type":1},{"OrderID":"60681-2402","ShipCountry":"UA","ShipAddress":"30 Southridge Lane","ShipName":"Hand LLC","OrderDate":"10/31/2016","TotalPayment":"$405135.54","Status":4,"Type":3},{"OrderID":"23155-488","ShipCountry":"CU","ShipAddress":"29459 Boyd Court","ShipName":"Jacobs, Cormier and Ferry","OrderDate":"7/13/2016","TotalPayment":"$530294.16","Status":1,"Type":1},{"OrderID":"49999-799","ShipCountry":"SY","ShipAddress":"389 Maple Parkway","ShipName":"Lakin-Grady","OrderDate":"2/26/2016","TotalPayment":"$59257.60","Status":6,"Type":1},{"OrderID":"0093-3107","ShipCountry":"UA","ShipAddress":"447 Cottonwood Terrace","ShipName":"Veum LLC","OrderDate":"10/4/2017","TotalPayment":"$439619.39","Status":4,"Type":1},{"OrderID":"52438-011","ShipCountry":"VE","ShipAddress":"8239 Esch Avenue","ShipName":"Wyman, Dickinson and Cole","OrderDate":"8/9/2017","TotalPayment":"$143122.28","Status":5,"Type":3},{"OrderID":"11673-117","ShipCountry":"CN","ShipAddress":"80 Leroy Trail","ShipName":"Purdy and Sons","OrderDate":"5/26/2017","TotalPayment":"$1012372.68","Status":4,"Type":3},{"OrderID":"11523-7272","ShipCountry":"NL","ShipAddress":"97 Bultman Court","ShipName":"Kirlin, Towne and Feeney","OrderDate":"6/18/2016","TotalPayment":"$1187484.78","Status":6,"Type":1},{"OrderID":"49349-424","ShipCountry":"BO","ShipAddress":"1889 Towne Plaza","ShipName":"Skiles, Hoeger and Gleason","OrderDate":"2/20/2017","TotalPayment":"$611817.79","Status":5,"Type":2},{"OrderID":"54868-5994","ShipCountry":"CN","ShipAddress":"72203 Lakewood Place","ShipName":"Hegmann-Cormier","OrderDate":"10/12/2017","TotalPayment":"$922965.28","Status":2,"Type":2},{"OrderID":"13537-107","ShipCountry":"BR","ShipAddress":"0 Paget Center","ShipName":"Rowe and Sons","OrderDate":"5/5/2017","TotalPayment":"$482562.15","Status":2,"Type":1},{"OrderID":"51389-250","ShipCountry":"PH","ShipAddress":"70 Packers Alley","ShipName":"Becker-Robel","OrderDate":"7/13/2017","TotalPayment":"$568392.75","Status":6,"Type":2},{"OrderID":"0115-2122","ShipCountry":"ID","ShipAddress":"51489 Stephen Way","ShipName":"Yundt Inc","OrderDate":"1/17/2017","TotalPayment":"$511300.91","Status":2,"Type":1},{"OrderID":"11822-0669","ShipCountry":"ID","ShipAddress":"20601 Mallory Parkway","ShipName":"Gislason-Bahringer","OrderDate":"11/1/2016","TotalPayment":"$357147.69","Status":6,"Type":2},{"OrderID":"0268-1364","ShipCountry":"CN","ShipAddress":"3 Canary Alley","ShipName":"Jones Inc","OrderDate":"4/18/2017","TotalPayment":"$1116751.57","Status":4,"Type":2},{"OrderID":"54569-4953","ShipCountry":"ID","ShipAddress":"3063 High Crossing Court","ShipName":"Corwin LLC","OrderDate":"4/3/2016","TotalPayment":"$55057.95","Status":4,"Type":1},{"OrderID":"47335-902","ShipCountry":"CN","ShipAddress":"2530 Sutherland Road","ShipName":"Lakin Group","OrderDate":"1/20/2017","TotalPayment":"$1030245.77","Status":5,"Type":2}]},\n{"RecordID":138,"FirstName":"Laryssa","LastName":"Halton","Company":"Meembee","Email":"lhalton3t@cargocollective.com","Phone":"665-659-2350","Status":1,"Type":2,"Orders":[{"OrderID":"67046-590","ShipCountry":"US","ShipAddress":"8753 Maple Wood Center","ShipName":"Ratke, Wilkinson and Jones","OrderDate":"9/21/2016","TotalPayment":"$296936.55","Status":3,"Type":1},{"OrderID":"0074-3072","ShipCountry":"CZ","ShipAddress":"20 Forest Run Alley","ShipName":"Kub-Bode","OrderDate":"2/4/2016","TotalPayment":"$254676.02","Status":5,"Type":1},{"OrderID":"50845-0109","ShipCountry":"CN","ShipAddress":"4232 Mendota Parkway","ShipName":"Rohan Inc","OrderDate":"1/10/2017","TotalPayment":"$906459.39","Status":3,"Type":3},{"OrderID":"49738-617","ShipCountry":"JP","ShipAddress":"5747 Banding Avenue","ShipName":"Keeling Inc","OrderDate":"1/7/2017","TotalPayment":"$1030599.21","Status":5,"Type":3},{"OrderID":"49035-892","ShipCountry":"DO","ShipAddress":"9147 Luster Alley","ShipName":"Schowalter and Sons","OrderDate":"8/12/2017","TotalPayment":"$837067.86","Status":2,"Type":2},{"OrderID":"66831-123","ShipCountry":"PT","ShipAddress":"7780 Debra Pass","ShipName":"MacGyver, Von and Lesch","OrderDate":"7/16/2017","TotalPayment":"$316955.95","Status":2,"Type":3},{"OrderID":"0228-3660","ShipCountry":"ID","ShipAddress":"71 Bonner Court","ShipName":"Bartell LLC","OrderDate":"7/21/2017","TotalPayment":"$823976.57","Status":5,"Type":1},{"OrderID":"0187-3013","ShipCountry":"PL","ShipAddress":"19397 Pine View Drive","ShipName":"Greenholt LLC","OrderDate":"10/5/2017","TotalPayment":"$130780.38","Status":4,"Type":2},{"OrderID":"51004-1051","ShipCountry":"BR","ShipAddress":"4 Manley Avenue","ShipName":"Thompson Group","OrderDate":"1/8/2016","TotalPayment":"$549291.30","Status":1,"Type":1},{"OrderID":"54868-2131","ShipCountry":"IR","ShipAddress":"4 Waywood Avenue","ShipName":"Homenick, Kirlin and Hammes","OrderDate":"8/27/2016","TotalPayment":"$547537.49","Status":4,"Type":2},{"OrderID":"0009-0352","ShipCountry":"FR","ShipAddress":"893 Vahlen Junction","ShipName":"Von Group","OrderDate":"12/26/2017","TotalPayment":"$856418.25","Status":6,"Type":2},{"OrderID":"55301-519","ShipCountry":"MX","ShipAddress":"37 Colorado Terrace","ShipName":"Cole, Veum and Jast","OrderDate":"9/18/2017","TotalPayment":"$298258.82","Status":5,"Type":3},{"OrderID":"58668-2031","ShipCountry":"CN","ShipAddress":"20469 Warrior Circle","ShipName":"Kirlin and Sons","OrderDate":"5/9/2016","TotalPayment":"$35575.54","Status":6,"Type":2},{"OrderID":"42884-456","ShipCountry":"ER","ShipAddress":"048 Cardinal Pass","ShipName":"Lueilwitz, Bednar and Hansen","OrderDate":"9/9/2016","TotalPayment":"$357423.48","Status":2,"Type":2},{"OrderID":"0093-1172","ShipCountry":"ID","ShipAddress":"9072 Crest Line Way","ShipName":"O\'Conner, Medhurst and Dooley","OrderDate":"5/24/2017","TotalPayment":"$517201.77","Status":4,"Type":1}]},\n{"RecordID":139,"FirstName":"Colin","LastName":"Baskeyfied","Company":"Cogibox","Email":"cbaskeyfied3u@networksolutions.com","Phone":"101-733-9331","Status":4,"Type":3,"Orders":[{"OrderID":"55289-039","ShipCountry":"US","ShipAddress":"0306 Goodland Terrace","ShipName":"Kreiger, Kub and Leffler","OrderDate":"9/18/2016","TotalPayment":"$948384.76","Status":2,"Type":2},{"OrderID":"68001-201","ShipCountry":"BR","ShipAddress":"771 Eastlawn Circle","ShipName":"Botsford Inc","OrderDate":"3/5/2017","TotalPayment":"$248230.37","Status":4,"Type":2},{"OrderID":"67475-212","ShipCountry":"ID","ShipAddress":"5926 Thackeray Drive","ShipName":"Brekke, Johnson and Fahey","OrderDate":"8/27/2017","TotalPayment":"$556444.55","Status":4,"Type":2},{"OrderID":"60429-712","ShipCountry":"AR","ShipAddress":"0963 Haas Street","ShipName":"Turner, Zulauf and Stark","OrderDate":"2/12/2016","TotalPayment":"$1134604.38","Status":6,"Type":3},{"OrderID":"55154-3430","ShipCountry":"PT","ShipAddress":"9 Anniversary Road","ShipName":"Zboncak Inc","OrderDate":"3/9/2016","TotalPayment":"$627592.77","Status":5,"Type":1},{"OrderID":"0268-6600","ShipCountry":"BY","ShipAddress":"3358 Calypso Way","ShipName":"Kub Inc","OrderDate":"2/2/2017","TotalPayment":"$603607.60","Status":3,"Type":2},{"OrderID":"58411-218","ShipCountry":"BG","ShipAddress":"204 4th Lane","ShipName":"Lowe, Green and Luettgen","OrderDate":"6/6/2016","TotalPayment":"$1009082.65","Status":4,"Type":2},{"OrderID":"47593-263","ShipCountry":"AR","ShipAddress":"69125 Hooker Court","ShipName":"Turcotte Inc","OrderDate":"1/5/2016","TotalPayment":"$569830.11","Status":4,"Type":1},{"OrderID":"68788-9813","ShipCountry":"PS","ShipAddress":"9303 Hayes Trail","ShipName":"Hane Inc","OrderDate":"8/22/2017","TotalPayment":"$309763.18","Status":6,"Type":2},{"OrderID":"43063-371","ShipCountry":"CN","ShipAddress":"3193 Farmco Center","ShipName":"Legros, Boyer and Bernier","OrderDate":"9/1/2017","TotalPayment":"$655882.80","Status":6,"Type":2},{"OrderID":"11822-0637","ShipCountry":"WS","ShipAddress":"67 Londonderry Park","ShipName":"Hodkiewicz, Rohan and Dare","OrderDate":"1/3/2016","TotalPayment":"$857467.09","Status":2,"Type":3},{"OrderID":"54569-2285","ShipCountry":"HR","ShipAddress":"7 La Follette Hill","ShipName":"McDermott Group","OrderDate":"4/22/2016","TotalPayment":"$192691.70","Status":5,"Type":1},{"OrderID":"66215-201","ShipCountry":"SE","ShipAddress":"3 Bartelt Center","ShipName":"Gerlach, Connelly and Ziemann","OrderDate":"9/2/2017","TotalPayment":"$216100.59","Status":6,"Type":1},{"OrderID":"17478-503","ShipCountry":"BR","ShipAddress":"8 North Park","ShipName":"Fahey Inc","OrderDate":"8/13/2017","TotalPayment":"$789226.92","Status":5,"Type":2},{"OrderID":"59726-190","ShipCountry":"PS","ShipAddress":"0 Crownhardt Hill","ShipName":"Koepp, Pagac and Feest","OrderDate":"5/11/2017","TotalPayment":"$1109540.46","Status":2,"Type":3},{"OrderID":"55714-1714","ShipCountry":"CN","ShipAddress":"1937 Memorial Crossing","ShipName":"Dooley-Rogahn","OrderDate":"3/9/2017","TotalPayment":"$100525.03","Status":6,"Type":3},{"OrderID":"64679-736","ShipCountry":"ID","ShipAddress":"95853 Morrow Terrace","ShipName":"Kulas and Sons","OrderDate":"2/20/2016","TotalPayment":"$739704.42","Status":5,"Type":1}]},\n{"RecordID":140,"FirstName":"Fleurette","LastName":"Grace","Company":"Aivee","Email":"fgrace3v@cocolog-nifty.com","Phone":"144-467-8577","Status":4,"Type":1,"Orders":[{"OrderID":"17478-065","ShipCountry":"NG","ShipAddress":"232 Dayton Plaza","ShipName":"Lakin LLC","OrderDate":"2/12/2017","TotalPayment":"$864352.29","Status":4,"Type":2},{"OrderID":"11410-413","ShipCountry":"EE","ShipAddress":"27277 Straubel Alley","ShipName":"Mante, Wuckert and Christiansen","OrderDate":"12/23/2017","TotalPayment":"$714690.46","Status":1,"Type":2},{"OrderID":"52125-639","ShipCountry":"AU","ShipAddress":"56521 Bowman Junction","ShipName":"Treutel-Gerlach","OrderDate":"2/29/2016","TotalPayment":"$722608.39","Status":4,"Type":3},{"OrderID":"52686-318","ShipCountry":"ME","ShipAddress":"328 Butterfield Crossing","ShipName":"Stroman Group","OrderDate":"12/14/2016","TotalPayment":"$1133164.25","Status":2,"Type":1},{"OrderID":"65649-511","ShipCountry":"ID","ShipAddress":"69120 Melody Point","ShipName":"Block LLC","OrderDate":"9/2/2017","TotalPayment":"$1026687.82","Status":2,"Type":2},{"OrderID":"55312-118","ShipCountry":"KW","ShipAddress":"38 Marquette Plaza","ShipName":"Grady, Cole and Mante","OrderDate":"10/31/2017","TotalPayment":"$58433.51","Status":1,"Type":3},{"OrderID":"53499-5273","ShipCountry":"CN","ShipAddress":"4 Oriole Center","ShipName":"Willms LLC","OrderDate":"6/3/2016","TotalPayment":"$735688.46","Status":6,"Type":2},{"OrderID":"37808-535","ShipCountry":"ID","ShipAddress":"75400 Village Court","ShipName":"Tremblay-Lynch","OrderDate":"4/18/2017","TotalPayment":"$349145.31","Status":5,"Type":3},{"OrderID":"30142-218","ShipCountry":"PY","ShipAddress":"4592 Birchwood Circle","ShipName":"Kling and Sons","OrderDate":"3/30/2017","TotalPayment":"$709648.61","Status":2,"Type":3},{"OrderID":"17312-027","ShipCountry":"BG","ShipAddress":"4 Merchant Hill","ShipName":"Rice-Bogan","OrderDate":"11/11/2016","TotalPayment":"$309365.13","Status":6,"Type":1},{"OrderID":"50438-401","ShipCountry":"ID","ShipAddress":"8238 Holmberg Pass","ShipName":"Hermiston-Koch","OrderDate":"8/5/2017","TotalPayment":"$1157604.27","Status":6,"Type":1},{"OrderID":"66467-9730","ShipCountry":"MX","ShipAddress":"7 Summer Ridge Center","ShipName":"Yundt, Feest and Beahan","OrderDate":"9/22/2017","TotalPayment":"$43470.47","Status":1,"Type":2},{"OrderID":"50580-679","ShipCountry":"CO","ShipAddress":"310 Del Mar Crossing","ShipName":"Ratke-Simonis","OrderDate":"9/29/2017","TotalPayment":"$568090.05","Status":6,"Type":2},{"OrderID":"0904-5892","ShipCountry":"ID","ShipAddress":"6 Cherokee Hill","ShipName":"Weimann-Johnston","OrderDate":"11/6/2017","TotalPayment":"$918100.41","Status":2,"Type":3},{"OrderID":"36800-759","ShipCountry":"AR","ShipAddress":"770 Elmside Terrace","ShipName":"Hansen and Sons","OrderDate":"1/4/2017","TotalPayment":"$252676.33","Status":6,"Type":3},{"OrderID":"49643-422","ShipCountry":"CN","ShipAddress":"12 Memorial Lane","ShipName":"Quitzon LLC","OrderDate":"1/2/2016","TotalPayment":"$502075.62","Status":5,"Type":3},{"OrderID":"0363-0522","ShipCountry":"RU","ShipAddress":"926 Knutson Avenue","ShipName":"Lang Group","OrderDate":"6/14/2017","TotalPayment":"$1006706.35","Status":2,"Type":3},{"OrderID":"60429-317","ShipCountry":"RU","ShipAddress":"7 Alpine Plaza","ShipName":"Beer, Sawayn and Stokes","OrderDate":"9/29/2017","TotalPayment":"$1128380.05","Status":3,"Type":2}]},\n{"RecordID":141,"FirstName":"Penny","LastName":"Lavall","Company":"Zooveo","Email":"plavall3w@mashable.com","Phone":"600-365-1174","Status":4,"Type":3,"Orders":[{"OrderID":"54312-270","ShipCountry":"CA","ShipAddress":"5 Hollow Ridge Court","ShipName":"Hartmann, Windler and Robel","OrderDate":"10/6/2017","TotalPayment":"$896041.86","Status":4,"Type":3},{"OrderID":"62756-755","ShipCountry":"ID","ShipAddress":"077 Old Shore Trail","ShipName":"Wilkinson Group","OrderDate":"11/22/2016","TotalPayment":"$596272.72","Status":5,"Type":2},{"OrderID":"57896-778","ShipCountry":"PS","ShipAddress":"2 Iowa Lane","ShipName":"Effertz-Mayert","OrderDate":"2/27/2017","TotalPayment":"$768611.97","Status":6,"Type":2},{"OrderID":"52125-039","ShipCountry":"CN","ShipAddress":"152 Fallview Road","ShipName":"Brakus-Hegmann","OrderDate":"12/21/2017","TotalPayment":"$315038.77","Status":2,"Type":2},{"OrderID":"52959-053","ShipCountry":"AF","ShipAddress":"1 Havey Court","ShipName":"Gusikowski, Lockman and Yundt","OrderDate":"7/20/2016","TotalPayment":"$437230.43","Status":3,"Type":2},{"OrderID":"30142-809","ShipCountry":"PH","ShipAddress":"58112 Birchwood Crossing","ShipName":"Cartwright, Borer and Rosenbaum","OrderDate":"10/11/2016","TotalPayment":"$11837.93","Status":2,"Type":2},{"OrderID":"53808-0752","ShipCountry":"CN","ShipAddress":"1696 La Follette Crossing","ShipName":"Deckow and Sons","OrderDate":"6/12/2017","TotalPayment":"$809096.90","Status":6,"Type":1},{"OrderID":"43596-0003","ShipCountry":"ID","ShipAddress":"9794 Michigan Parkway","ShipName":"Wilderman, Goodwin and McDermott","OrderDate":"7/6/2016","TotalPayment":"$1194094.50","Status":2,"Type":1},{"OrderID":"50845-0205","ShipCountry":"RU","ShipAddress":"6520 Darwin Crossing","ShipName":"Wuckert Inc","OrderDate":"4/16/2016","TotalPayment":"$582057.62","Status":4,"Type":1},{"OrderID":"57955-5113","ShipCountry":"MG","ShipAddress":"017 Clyde Gallagher Lane","ShipName":"Johnson-Toy","OrderDate":"11/10/2016","TotalPayment":"$973659.90","Status":1,"Type":1},{"OrderID":"43742-0179","ShipCountry":"BR","ShipAddress":"4339 Kim Lane","ShipName":"Gleason-DuBuque","OrderDate":"5/30/2017","TotalPayment":"$731161.46","Status":6,"Type":1},{"OrderID":"24385-541","ShipCountry":"GR","ShipAddress":"907 Fair Oaks Pass","ShipName":"Lebsack-Lang","OrderDate":"12/12/2016","TotalPayment":"$223133.96","Status":2,"Type":2},{"OrderID":"52380-1614","ShipCountry":"AR","ShipAddress":"79 Hauk Road","ShipName":"Schultz Inc","OrderDate":"11/14/2017","TotalPayment":"$624932.69","Status":4,"Type":3},{"OrderID":"61727-052","ShipCountry":"AL","ShipAddress":"56270 Daystar Park","ShipName":"Tillman, O\'Reilly and Fadel","OrderDate":"7/14/2017","TotalPayment":"$476990.01","Status":6,"Type":1},{"OrderID":"64380-742","ShipCountry":"CN","ShipAddress":"02487 Commercial Trail","ShipName":"Hagenes and Sons","OrderDate":"2/27/2016","TotalPayment":"$257578.17","Status":3,"Type":3}]},\n{"RecordID":142,"FirstName":"Courtnay","LastName":"Hessentaler","Company":"Quamba","Email":"chessentaler3x@mapquest.com","Phone":"624-491-5114","Status":2,"Type":2,"Orders":[{"OrderID":"0268-6619","ShipCountry":"GR","ShipAddress":"06 Independence Crossing","ShipName":"Steuber Inc","OrderDate":"11/12/2017","TotalPayment":"$1060720.22","Status":2,"Type":1},{"OrderID":"63739-167","ShipCountry":"US","ShipAddress":"3 Leroy Alley","ShipName":"Zemlak-Bailey","OrderDate":"8/11/2016","TotalPayment":"$707378.37","Status":3,"Type":1},{"OrderID":"49999-153","ShipCountry":"IR","ShipAddress":"01695 Magdeline Plaza","ShipName":"Brekke-Effertz","OrderDate":"12/19/2016","TotalPayment":"$49966.14","Status":5,"Type":2},{"OrderID":"66382-223","ShipCountry":"PG","ShipAddress":"95 Cardinal Trail","ShipName":"Cruickshank-Turcotte","OrderDate":"10/10/2016","TotalPayment":"$1031029.55","Status":5,"Type":2},{"OrderID":"63783-501","ShipCountry":"GR","ShipAddress":"764 Buhler Plaza","ShipName":"Wiza-Paucek","OrderDate":"4/8/2017","TotalPayment":"$167282.52","Status":6,"Type":3},{"OrderID":"68169-4059","ShipCountry":"RS","ShipAddress":"808 Hooker Circle","ShipName":"Larkin, Tromp and Roob","OrderDate":"5/31/2016","TotalPayment":"$190729.63","Status":1,"Type":3},{"OrderID":"64159-6348","ShipCountry":"SE","ShipAddress":"337 Mcbride Plaza","ShipName":"Mraz-Lind","OrderDate":"1/5/2016","TotalPayment":"$973742.20","Status":6,"Type":2},{"OrderID":"49349-950","ShipCountry":"TJ","ShipAddress":"66547 Mcbride Point","ShipName":"Ledner-Rau","OrderDate":"4/18/2017","TotalPayment":"$866600.57","Status":3,"Type":2},{"OrderID":"53499-6371","ShipCountry":"ID","ShipAddress":"633 Burrows Avenue","ShipName":"Rohan, Sporer and Effertz","OrderDate":"10/13/2016","TotalPayment":"$1158579.58","Status":4,"Type":2}]},\n{"RecordID":143,"FirstName":"Joli","LastName":"Parmiter","Company":"Jazzy","Email":"jparmiter3y@lulu.com","Phone":"460-647-3671","Status":1,"Type":3,"Orders":[{"OrderID":"35000-800","ShipCountry":"JP","ShipAddress":"04 Hauk Place","ShipName":"Hane, Stanton and Ebert","OrderDate":"12/1/2017","TotalPayment":"$175221.31","Status":4,"Type":1},{"OrderID":"0944-4351","ShipCountry":"PL","ShipAddress":"67 Golf View Street","ShipName":"Stiedemann, Stanton and Turcotte","OrderDate":"5/2/2017","TotalPayment":"$353955.35","Status":6,"Type":3},{"OrderID":"33342-015","ShipCountry":"ID","ShipAddress":"10 Vermont Terrace","ShipName":"Hyatt, Franecki and Funk","OrderDate":"5/9/2016","TotalPayment":"$588748.09","Status":5,"Type":2},{"OrderID":"0363-1007","ShipCountry":"KP","ShipAddress":"378 Ryan Parkway","ShipName":"Schmidt-Gleichner","OrderDate":"10/19/2017","TotalPayment":"$987273.57","Status":3,"Type":1},{"OrderID":"63941-242","ShipCountry":"RU","ShipAddress":"4 Pond Way","ShipName":"McGlynn-Grady","OrderDate":"3/4/2017","TotalPayment":"$998099.96","Status":1,"Type":1},{"OrderID":"37000-771","ShipCountry":"BR","ShipAddress":"77 Packers Plaza","ShipName":"Ward, Casper and Schultz","OrderDate":"11/22/2016","TotalPayment":"$293558.79","Status":2,"Type":2},{"OrderID":"58411-161","ShipCountry":"MX","ShipAddress":"249 Schurz Center","ShipName":"Johns, Bode and Daniel","OrderDate":"5/22/2016","TotalPayment":"$366170.52","Status":3,"Type":1},{"OrderID":"54575-375","ShipCountry":"UG","ShipAddress":"12 Stone Corner Parkway","ShipName":"Tromp, Kshlerin and Block","OrderDate":"9/21/2017","TotalPayment":"$479315.69","Status":3,"Type":3},{"OrderID":"58737-104","ShipCountry":"NI","ShipAddress":"268 Redwing Circle","ShipName":"Keeling-O\'Kon","OrderDate":"3/18/2016","TotalPayment":"$72789.87","Status":3,"Type":3},{"OrderID":"0185-0932","ShipCountry":"CN","ShipAddress":"6660 Briar Crest Alley","ShipName":"Hagenes, Robel and Lockman","OrderDate":"10/1/2016","TotalPayment":"$902970.82","Status":4,"Type":3},{"OrderID":"49967-129","ShipCountry":"ID","ShipAddress":"80 Hayes Junction","ShipName":"Gaylord, Hegmann and Williamson","OrderDate":"4/6/2017","TotalPayment":"$302943.45","Status":1,"Type":3},{"OrderID":"25021-157","ShipCountry":"TJ","ShipAddress":"4518 American Ash Hill","ShipName":"Smitham and Sons","OrderDate":"8/27/2016","TotalPayment":"$541972.32","Status":4,"Type":3},{"OrderID":"30142-802","ShipCountry":"ID","ShipAddress":"204 Sachs Avenue","ShipName":"Buckridge Group","OrderDate":"11/1/2016","TotalPayment":"$99766.59","Status":5,"Type":2},{"OrderID":"43772-0017","ShipCountry":"PT","ShipAddress":"1087 Sachs Plaza","ShipName":"Greenfelder, Goyette and Bahringer","OrderDate":"9/7/2016","TotalPayment":"$131232.69","Status":4,"Type":3},{"OrderID":"52007-240","ShipCountry":"CN","ShipAddress":"33535 Fieldstone Park","ShipName":"Feil, McKenzie and Brown","OrderDate":"5/27/2017","TotalPayment":"$754601.38","Status":5,"Type":1}]},\n{"RecordID":144,"FirstName":"Welch","LastName":"Yanshonok","Company":"Yodo","Email":"wyanshonok3z@statcounter.com","Phone":"881-662-7128","Status":6,"Type":3,"Orders":[{"OrderID":"60681-3601","ShipCountry":"ID","ShipAddress":"96 Springview Park","ShipName":"Dach, Auer and O\'Reilly","OrderDate":"7/28/2017","TotalPayment":"$1161032.64","Status":3,"Type":1},{"OrderID":"10742-8214","ShipCountry":"CN","ShipAddress":"2415 Buhler Plaza","ShipName":"Balistreri-Heller","OrderDate":"10/24/2017","TotalPayment":"$681518.48","Status":6,"Type":3},{"OrderID":"65923-132","ShipCountry":"PE","ShipAddress":"58609 Mcguire Terrace","ShipName":"Farrell-Nitzsche","OrderDate":"4/22/2016","TotalPayment":"$329777.49","Status":4,"Type":3},{"OrderID":"54235-204","ShipCountry":"CN","ShipAddress":"94 Darwin Road","ShipName":"Streich-Satterfield","OrderDate":"3/17/2017","TotalPayment":"$514140.05","Status":5,"Type":2},{"OrderID":"52125-384","ShipCountry":"CO","ShipAddress":"01 Jackson Road","ShipName":"Ratke-Baumbach","OrderDate":"11/25/2016","TotalPayment":"$1182063.39","Status":2,"Type":1},{"OrderID":"67475-112","ShipCountry":"CN","ShipAddress":"81 Swallow Court","ShipName":"Graham, Sanford and Parisian","OrderDate":"6/19/2016","TotalPayment":"$180518.39","Status":1,"Type":2},{"OrderID":"59039-002","ShipCountry":"NG","ShipAddress":"5 Toban Alley","ShipName":"Beahan, Pagac and Howell","OrderDate":"12/3/2017","TotalPayment":"$534602.89","Status":6,"Type":2},{"OrderID":"55316-407","ShipCountry":"FR","ShipAddress":"55752 Logan Way","ShipName":"Mohr and Sons","OrderDate":"8/15/2016","TotalPayment":"$480925.78","Status":2,"Type":2},{"OrderID":"55379-407","ShipCountry":"MU","ShipAddress":"98 Grayhawk Road","ShipName":"Koch Group","OrderDate":"11/12/2017","TotalPayment":"$474472.31","Status":5,"Type":2},{"OrderID":"41163-496","ShipCountry":"CN","ShipAddress":"04 Service Trail","ShipName":"Hammes, Bosco and Friesen","OrderDate":"5/16/2017","TotalPayment":"$344836.63","Status":5,"Type":2},{"OrderID":"59735-306","ShipCountry":"TH","ShipAddress":"6 Carpenter Crossing","ShipName":"Glover Inc","OrderDate":"1/30/2016","TotalPayment":"$885762.58","Status":5,"Type":3},{"OrderID":"68258-6031","ShipCountry":"BR","ShipAddress":"521 Lotheville Street","ShipName":"Marvin, Denesik and Boyer","OrderDate":"8/22/2017","TotalPayment":"$796089.54","Status":4,"Type":3},{"OrderID":"55154-8270","ShipCountry":"LU","ShipAddress":"92 Ridgeview Circle","ShipName":"Berge Group","OrderDate":"4/15/2016","TotalPayment":"$553779.79","Status":1,"Type":1},{"OrderID":"43526-113","ShipCountry":"HN","ShipAddress":"929 Monterey Drive","ShipName":"Stehr and Sons","OrderDate":"7/27/2017","TotalPayment":"$583186.25","Status":4,"Type":1},{"OrderID":"53808-0931","ShipCountry":"PT","ShipAddress":"53 Graceland Drive","ShipName":"Mann, Bailey and Treutel","OrderDate":"4/6/2017","TotalPayment":"$69574.66","Status":2,"Type":2},{"OrderID":"55154-6276","ShipCountry":"CR","ShipAddress":"420 Fremont Crossing","ShipName":"Zulauf, Schmitt and Hilll","OrderDate":"10/19/2016","TotalPayment":"$44679.76","Status":5,"Type":1}]},\n{"RecordID":145,"FirstName":"Hyacintha","LastName":"Heinish","Company":"Skipstorm","Email":"hheinish40@t-online.de","Phone":"488-328-2353","Status":5,"Type":1,"Orders":[{"OrderID":"24208-399","ShipCountry":"PT","ShipAddress":"79 Banding Point","ShipName":"Powlowski and Sons","OrderDate":"9/4/2017","TotalPayment":"$508603.36","Status":4,"Type":2},{"OrderID":"16714-601","ShipCountry":"GB","ShipAddress":"40 Chive Circle","ShipName":"Deckow, Hoppe and Stark","OrderDate":"11/27/2016","TotalPayment":"$857218.89","Status":3,"Type":1},{"OrderID":"69153-060","ShipCountry":"CN","ShipAddress":"5 Mandrake Junction","ShipName":"Mayert Inc","OrderDate":"3/9/2016","TotalPayment":"$136144.77","Status":5,"Type":2},{"OrderID":"0904-6391","ShipCountry":"EC","ShipAddress":"90 Glacier Hill Place","ShipName":"Stiedemann and Sons","OrderDate":"1/14/2016","TotalPayment":"$811280.15","Status":1,"Type":3},{"OrderID":"68084-470","ShipCountry":"CN","ShipAddress":"10570 3rd Pass","ShipName":"Schaden-Kihn","OrderDate":"10/5/2016","TotalPayment":"$372467.51","Status":1,"Type":2},{"OrderID":"49349-518","ShipCountry":"KM","ShipAddress":"5033 Nelson Street","ShipName":"Hermann, Mraz and Little","OrderDate":"10/21/2017","TotalPayment":"$267064.17","Status":2,"Type":2},{"OrderID":"0998-0225","ShipCountry":"CN","ShipAddress":"3 Dwight Point","ShipName":"Kertzmann, Mayer and Block","OrderDate":"7/5/2016","TotalPayment":"$475080.74","Status":2,"Type":2},{"OrderID":"0024-0393","ShipCountry":"SE","ShipAddress":"36483 Maywood Drive","ShipName":"Wilkinson-Powlowski","OrderDate":"10/9/2017","TotalPayment":"$1139569.04","Status":3,"Type":1},{"OrderID":"57955-0162","ShipCountry":"PL","ShipAddress":"3988 Bunting Place","ShipName":"Schumm, Lindgren and Hilll","OrderDate":"10/24/2016","TotalPayment":"$673808.11","Status":3,"Type":3},{"OrderID":"55111-467","ShipCountry":"PH","ShipAddress":"7 Homewood Terrace","ShipName":"Ledner and Sons","OrderDate":"1/29/2016","TotalPayment":"$580770.60","Status":1,"Type":1},{"OrderID":"52125-499","ShipCountry":"RU","ShipAddress":"39 Darwin Way","ShipName":"Mueller-Hagenes","OrderDate":"11/9/2016","TotalPayment":"$1172519.78","Status":1,"Type":3},{"OrderID":"51655-362","ShipCountry":"ID","ShipAddress":"3693 Debs Street","ShipName":"Hansen-Goldner","OrderDate":"10/4/2017","TotalPayment":"$992339.95","Status":6,"Type":2},{"OrderID":"24236-204","ShipCountry":"ID","ShipAddress":"786 Declaration Alley","ShipName":"Deckow Group","OrderDate":"7/20/2016","TotalPayment":"$703397.06","Status":2,"Type":3},{"OrderID":"65643-329","ShipCountry":"ID","ShipAddress":"98 Westend Avenue","ShipName":"Kling-Leannon","OrderDate":"11/11/2016","TotalPayment":"$523260.31","Status":3,"Type":1},{"OrderID":"54868-4562","ShipCountry":"PL","ShipAddress":"399 Russell Drive","ShipName":"Skiles, Quitzon and VonRueden","OrderDate":"4/23/2016","TotalPayment":"$1136978.08","Status":6,"Type":3},{"OrderID":"58503-045","ShipCountry":"JP","ShipAddress":"3 Northridge Way","ShipName":"Ward, Sporer and Emard","OrderDate":"4/30/2016","TotalPayment":"$119546.70","Status":2,"Type":3},{"OrderID":"52810-201","ShipCountry":"ID","ShipAddress":"52 Vernon Parkway","ShipName":"Rodriguez-Reilly","OrderDate":"2/5/2017","TotalPayment":"$635123.24","Status":6,"Type":3},{"OrderID":"42291-709","ShipCountry":"PH","ShipAddress":"1395 Hanover Center","ShipName":"Baumbach, Feil and Larkin","OrderDate":"5/19/2016","TotalPayment":"$273875.59","Status":2,"Type":3}]},\n{"RecordID":146,"FirstName":"Gardie","LastName":"Snewin","Company":"Dynabox","Email":"gsnewin41@oakley.com","Phone":"382-922-9253","Status":3,"Type":3,"Orders":[{"OrderID":"68809-544","ShipCountry":"CN","ShipAddress":"48 Mayfield Crossing","ShipName":"Dach-O\'Hara","OrderDate":"12/14/2016","TotalPayment":"$308508.44","Status":6,"Type":2},{"OrderID":"11673-367","ShipCountry":"MX","ShipAddress":"3 Fordem Avenue","ShipName":"Dibbert, Gislason and Schultz","OrderDate":"8/24/2017","TotalPayment":"$723458.89","Status":5,"Type":2},{"OrderID":"68828-137","ShipCountry":"AF","ShipAddress":"27 Monument Crossing","ShipName":"Koepp, Farrell and Stanton","OrderDate":"2/1/2016","TotalPayment":"$1184297.92","Status":4,"Type":2},{"OrderID":"60505-3222","ShipCountry":"CZ","ShipAddress":"8 8th Pass","ShipName":"Greenfelder, Runte and Ledner","OrderDate":"7/26/2017","TotalPayment":"$1005918.94","Status":6,"Type":1},{"OrderID":"60793-801","ShipCountry":"ID","ShipAddress":"206 Summerview Crossing","ShipName":"Christiansen, Rempel and Kutch","OrderDate":"11/4/2016","TotalPayment":"$621774.35","Status":2,"Type":3},{"OrderID":"0145-0061","ShipCountry":"ID","ShipAddress":"0003 Cherokee Center","ShipName":"Gutmann-Purdy","OrderDate":"5/27/2017","TotalPayment":"$854811.00","Status":3,"Type":3},{"OrderID":"10337-153","ShipCountry":"JP","ShipAddress":"2362 Prentice Alley","ShipName":"Medhurst, Cormier and Bartell","OrderDate":"10/11/2017","TotalPayment":"$813160.59","Status":5,"Type":1},{"OrderID":"49288-0933","ShipCountry":"CN","ShipAddress":"30 Bartelt Point","ShipName":"Altenwerth LLC","OrderDate":"12/13/2016","TotalPayment":"$531547.97","Status":5,"Type":2},{"OrderID":"33261-222","ShipCountry":"ID","ShipAddress":"53 Toban Point","ShipName":"Borer, Maggio and Gerhold","OrderDate":"5/12/2016","TotalPayment":"$1093667.87","Status":2,"Type":1},{"OrderID":"0641-6143","ShipCountry":"ID","ShipAddress":"7 Hoard Parkway","ShipName":"Kirlin and Sons","OrderDate":"4/23/2017","TotalPayment":"$190645.97","Status":1,"Type":1},{"OrderID":"49035-352","ShipCountry":"ID","ShipAddress":"135 Brown Lane","ShipName":"Ankunding-DuBuque","OrderDate":"5/20/2017","TotalPayment":"$826070.35","Status":1,"Type":2},{"OrderID":"0904-6184","ShipCountry":"RU","ShipAddress":"40 Golf Course Circle","ShipName":"Brekke-Heaney","OrderDate":"5/5/2016","TotalPayment":"$874044.14","Status":3,"Type":1}]},\n{"RecordID":147,"FirstName":"Mandi","LastName":"Brounsell","Company":"Aibox","Email":"mbrounsell42@constantcontact.com","Phone":"160-127-3864","Status":1,"Type":3,"Orders":[{"OrderID":"55316-647","ShipCountry":"US","ShipAddress":"9 Forster Plaza","ShipName":"Mueller-Boyle","OrderDate":"10/27/2017","TotalPayment":"$787779.16","Status":1,"Type":3},{"OrderID":"0487-2784","ShipCountry":"PL","ShipAddress":"256 Fremont Lane","ShipName":"Wolff-Collier","OrderDate":"1/25/2017","TotalPayment":"$78437.53","Status":4,"Type":3},{"OrderID":"24208-342","ShipCountry":"AR","ShipAddress":"44 Hoepker Hill","ShipName":"Herzog-Rohan","OrderDate":"8/18/2016","TotalPayment":"$805086.34","Status":1,"Type":2},{"OrderID":"21695-867","ShipCountry":"PH","ShipAddress":"8 Dawn Parkway","ShipName":"Cummings Group","OrderDate":"5/27/2016","TotalPayment":"$337502.12","Status":5,"Type":2},{"OrderID":"63402-711","ShipCountry":"PH","ShipAddress":"53 Almo Center","ShipName":"Leannon, Flatley and Rowe","OrderDate":"5/11/2017","TotalPayment":"$148746.02","Status":3,"Type":2},{"OrderID":"13925-104","ShipCountry":"CN","ShipAddress":"6 Hagan Place","ShipName":"Kozey-Dach","OrderDate":"11/9/2016","TotalPayment":"$1129044.93","Status":6,"Type":3},{"OrderID":"43063-442","ShipCountry":"PY","ShipAddress":"884 Mallard Hill","ShipName":"Bartell-Kutch","OrderDate":"6/10/2016","TotalPayment":"$245645.08","Status":2,"Type":2},{"OrderID":"51655-626","ShipCountry":"UG","ShipAddress":"2117 Beilfuss Point","ShipName":"Lindgren-Bashirian","OrderDate":"4/12/2017","TotalPayment":"$802753.26","Status":3,"Type":3},{"OrderID":"67253-200","ShipCountry":"ID","ShipAddress":"900 Portage Crossing","ShipName":"Toy, Hoeger and Batz","OrderDate":"10/11/2017","TotalPayment":"$110681.80","Status":6,"Type":1},{"OrderID":"68180-181","ShipCountry":"VN","ShipAddress":"49 Hudson Junction","ShipName":"Toy Group","OrderDate":"8/18/2016","TotalPayment":"$581245.64","Status":1,"Type":1},{"OrderID":"55154-6263","ShipCountry":"PH","ShipAddress":"62046 Bartillon Parkway","ShipName":"Ryan, Bosco and Kunde","OrderDate":"3/31/2016","TotalPayment":"$115637.28","Status":4,"Type":3},{"OrderID":"63629-4442","ShipCountry":"PK","ShipAddress":"8433 Atwood Hill","ShipName":"Grimes-Langworth","OrderDate":"9/11/2017","TotalPayment":"$615258.44","Status":6,"Type":3},{"OrderID":"61734-415","ShipCountry":"RU","ShipAddress":"00 Morningstar Pass","ShipName":"Walter Inc","OrderDate":"9/3/2016","TotalPayment":"$24094.71","Status":5,"Type":1},{"OrderID":"75981-210","ShipCountry":"PY","ShipAddress":"75 Hudson Crossing","ShipName":"Christiansen Group","OrderDate":"9/15/2016","TotalPayment":"$72963.58","Status":6,"Type":3},{"OrderID":"49348-026","ShipCountry":"FR","ShipAddress":"8293 Jenifer Lane","ShipName":"Goodwin, Fay and Gulgowski","OrderDate":"10/20/2017","TotalPayment":"$1077094.87","Status":1,"Type":2},{"OrderID":"24090-491","ShipCountry":"CO","ShipAddress":"368 Grayhawk Park","ShipName":"Satterfield, Kuvalis and Stanton","OrderDate":"12/30/2016","TotalPayment":"$194354.67","Status":4,"Type":3}]},\n{"RecordID":148,"FirstName":"Moshe","LastName":"Gerram","Company":"Thoughtstorm","Email":"mgerram43@zimbio.com","Phone":"549-209-2093","Status":5,"Type":3,"Orders":[{"OrderID":"43419-864","ShipCountry":"RU","ShipAddress":"48407 Heath Drive","ShipName":"Gaylord Group","OrderDate":"8/21/2017","TotalPayment":"$666580.02","Status":5,"Type":2},{"OrderID":"11673-884","ShipCountry":"CN","ShipAddress":"56700 Sunnyside Trail","ShipName":"Brekke, Wunsch and Smith","OrderDate":"4/14/2016","TotalPayment":"$1021500.05","Status":2,"Type":2},{"OrderID":"57520-0069","ShipCountry":"AF","ShipAddress":"79800 Spaight Circle","ShipName":"Cole, Hoeger and Murphy","OrderDate":"2/18/2017","TotalPayment":"$150530.36","Status":1,"Type":2},{"OrderID":"55648-903","ShipCountry":"BR","ShipAddress":"0 Cordelia Circle","ShipName":"Prosacco-McCullough","OrderDate":"6/10/2016","TotalPayment":"$269788.07","Status":5,"Type":3},{"OrderID":"0009-3449","ShipCountry":"PT","ShipAddress":"12258 Dottie Road","ShipName":"McClure-Kuphal","OrderDate":"5/11/2017","TotalPayment":"$525646.62","Status":5,"Type":3},{"OrderID":"53157-100","ShipCountry":"PT","ShipAddress":"7 Upham Plaza","ShipName":"Lang Inc","OrderDate":"12/2/2016","TotalPayment":"$28412.28","Status":1,"Type":3},{"OrderID":"63739-416","ShipCountry":"CN","ShipAddress":"428 Grayhawk Trail","ShipName":"Gulgowski LLC","OrderDate":"9/23/2016","TotalPayment":"$317514.05","Status":5,"Type":2},{"OrderID":"48951-1026","ShipCountry":"CN","ShipAddress":"93 Mockingbird Crossing","ShipName":"O\'Keefe-Pfeffer","OrderDate":"2/18/2017","TotalPayment":"$806052.43","Status":3,"Type":2},{"OrderID":"50268-696","ShipCountry":"SE","ShipAddress":"0 Rieder Place","ShipName":"Bahringer, Auer and Will","OrderDate":"9/8/2016","TotalPayment":"$849801.29","Status":5,"Type":2}]},\n{"RecordID":149,"FirstName":"Kimble","LastName":"Haley","Company":"Tazz","Email":"khaley44@bizjournals.com","Phone":"351-819-2694","Status":4,"Type":3,"Orders":[{"OrderID":"0078-0423","ShipCountry":"TH","ShipAddress":"5117 Anthes Circle","ShipName":"Miller-Frami","OrderDate":"10/30/2016","TotalPayment":"$656477.30","Status":1,"Type":2},{"OrderID":"0093-3129","ShipCountry":"PT","ShipAddress":"25295 Colorado Plaza","ShipName":"Heaney-Kuhlman","OrderDate":"5/13/2017","TotalPayment":"$1063453.07","Status":1,"Type":3},{"OrderID":"63783-011","ShipCountry":"HR","ShipAddress":"40 Bellgrove Crossing","ShipName":"Farrell, Hudson and Bode","OrderDate":"5/15/2017","TotalPayment":"$527732.06","Status":6,"Type":1},{"OrderID":"50436-5015","ShipCountry":"CN","ShipAddress":"447 Pierstorff Drive","ShipName":"Pfannerstill-Boyle","OrderDate":"6/29/2016","TotalPayment":"$41131.37","Status":5,"Type":3},{"OrderID":"59779-367","ShipCountry":"IR","ShipAddress":"24810 Hansons Road","ShipName":"Corkery and Sons","OrderDate":"12/24/2017","TotalPayment":"$829313.82","Status":4,"Type":2},{"OrderID":"63459-205","ShipCountry":"CN","ShipAddress":"6653 Calypso Terrace","ShipName":"Herman-Cartwright","OrderDate":"9/24/2017","TotalPayment":"$422122.37","Status":3,"Type":3},{"OrderID":"67858-001","ShipCountry":"ID","ShipAddress":"73 Crest Line Point","ShipName":"Prosacco, Wintheiser and Prohaska","OrderDate":"2/3/2016","TotalPayment":"$761377.05","Status":2,"Type":3},{"OrderID":"49288-0715","ShipCountry":"DE","ShipAddress":"69035 Rieder Crossing","ShipName":"Gislason-Daugherty","OrderDate":"9/7/2017","TotalPayment":"$320897.14","Status":4,"Type":2},{"OrderID":"55714-2286","ShipCountry":"BR","ShipAddress":"05329 Badeau Point","ShipName":"Kerluke and Sons","OrderDate":"10/1/2017","TotalPayment":"$1096813.56","Status":6,"Type":1},{"OrderID":"63776-415","ShipCountry":"AR","ShipAddress":"0307 Oak Valley Junction","ShipName":"Morar Inc","OrderDate":"4/18/2017","TotalPayment":"$1166882.39","Status":4,"Type":2},{"OrderID":"61958-1701","ShipCountry":"SE","ShipAddress":"62 Leroy Court","ShipName":"Rath LLC","OrderDate":"1/21/2017","TotalPayment":"$963347.68","Status":1,"Type":3},{"OrderID":"52343-021","ShipCountry":"CO","ShipAddress":"8044 Everett Hill","ShipName":"Becker, Howe and Hamill","OrderDate":"8/1/2017","TotalPayment":"$960737.45","Status":5,"Type":2}]},\n{"RecordID":150,"FirstName":"Maud","LastName":"Seabrocke","Company":"Gabtune","Email":"mseabrocke45@mlb.com","Phone":"863-325-2784","Status":5,"Type":3,"Orders":[{"OrderID":"33261-972","ShipCountry":"ID","ShipAddress":"5648 Katie Avenue","ShipName":"Larkin-Kemmer","OrderDate":"8/29/2016","TotalPayment":"$232681.08","Status":4,"Type":1},{"OrderID":"36987-3283","ShipCountry":"ID","ShipAddress":"85175 Mayer Street","ShipName":"Little, Gerhold and Little","OrderDate":"12/9/2016","TotalPayment":"$1172380.07","Status":4,"Type":2},{"OrderID":"60691-116","ShipCountry":"CU","ShipAddress":"441 Daystar Drive","ShipName":"Zboncak, Ryan and Schmeler","OrderDate":"9/1/2017","TotalPayment":"$954202.04","Status":2,"Type":3},{"OrderID":"63941-180","ShipCountry":"PE","ShipAddress":"8155 Sycamore Court","ShipName":"Runolfsson and Sons","OrderDate":"10/3/2016","TotalPayment":"$932709.77","Status":3,"Type":2},{"OrderID":"41167-0625","ShipCountry":"US","ShipAddress":"39457 Anderson Terrace","ShipName":"Borer Inc","OrderDate":"8/16/2017","TotalPayment":"$414424.08","Status":3,"Type":3},{"OrderID":"50268-180","ShipCountry":"CM","ShipAddress":"7009 Sachs Center","ShipName":"Marvin, Renner and Sauer","OrderDate":"3/21/2016","TotalPayment":"$963666.77","Status":1,"Type":3}]},\n{"RecordID":151,"FirstName":"Marissa","LastName":"Maren","Company":"Quimba","Email":"mmaren46@webs.com","Phone":"171-128-0030","Status":5,"Type":2,"Orders":[{"OrderID":"64735-011","ShipCountry":"PH","ShipAddress":"68698 Shopko Center","ShipName":"Bode and Sons","OrderDate":"3/21/2017","TotalPayment":"$95196.23","Status":2,"Type":1},{"OrderID":"58411-197","ShipCountry":"RU","ShipAddress":"5 Hoepker Junction","ShipName":"Walker, Sauer and Dicki","OrderDate":"10/12/2017","TotalPayment":"$1044102.74","Status":5,"Type":3},{"OrderID":"64679-775","ShipCountry":"RE","ShipAddress":"74 Gulseth Plaza","ShipName":"Abbott-Lowe","OrderDate":"9/16/2016","TotalPayment":"$804732.76","Status":2,"Type":3},{"OrderID":"0498-0010","ShipCountry":"UG","ShipAddress":"75874 Gateway Street","ShipName":"Mann-Volkman","OrderDate":"5/9/2017","TotalPayment":"$692910.31","Status":1,"Type":2},{"OrderID":"49738-536","ShipCountry":"IT","ShipAddress":"7 Steensland Park","ShipName":"Schroeder LLC","OrderDate":"10/27/2016","TotalPayment":"$993560.12","Status":6,"Type":1}]},\n{"RecordID":152,"FirstName":"Dorothee","LastName":"Athowe","Company":"Yoveo","Email":"dathowe47@google.com.br","Phone":"849-640-3501","Status":4,"Type":1,"Orders":[{"OrderID":"50580-536","ShipCountry":"RU","ShipAddress":"8 Westridge Way","ShipName":"Mante-Bahringer","OrderDate":"5/13/2017","TotalPayment":"$397238.79","Status":4,"Type":3},{"OrderID":"0363-0348","ShipCountry":"CN","ShipAddress":"1 Havey Way","ShipName":"Medhurst, O\'Conner and Halvorson","OrderDate":"11/14/2017","TotalPayment":"$577412.05","Status":5,"Type":2},{"OrderID":"10812-359","ShipCountry":"ZA","ShipAddress":"39 Oneill Junction","ShipName":"Padberg and Sons","OrderDate":"8/17/2016","TotalPayment":"$1183197.56","Status":1,"Type":3},{"OrderID":"60505-2512","ShipCountry":"HN","ShipAddress":"15 Nancy Terrace","ShipName":"Legros-Breitenberg","OrderDate":"3/7/2017","TotalPayment":"$943791.44","Status":4,"Type":2},{"OrderID":"65862-374","ShipCountry":"AR","ShipAddress":"6761 Daystar Junction","ShipName":"Balistreri, Dooley and Herman","OrderDate":"6/4/2017","TotalPayment":"$1099102.34","Status":3,"Type":3},{"OrderID":"68084-086","ShipCountry":"MG","ShipAddress":"5 Reindahl Terrace","ShipName":"Pouros and Sons","OrderDate":"3/31/2016","TotalPayment":"$195981.11","Status":3,"Type":3},{"OrderID":"59779-711","ShipCountry":"UG","ShipAddress":"67 Gateway Hill","ShipName":"Nader Group","OrderDate":"11/5/2017","TotalPayment":"$187444.00","Status":5,"Type":2},{"OrderID":"52862-014","ShipCountry":"ID","ShipAddress":"772 Stuart Way","ShipName":"Wunsch, Ledner and Kautzer","OrderDate":"8/1/2017","TotalPayment":"$411778.81","Status":4,"Type":2},{"OrderID":"62011-0094","ShipCountry":"CN","ShipAddress":"5990 Westport Street","ShipName":"Erdman, Ernser and Powlowski","OrderDate":"6/3/2017","TotalPayment":"$376639.96","Status":3,"Type":2},{"OrderID":"55700-003","ShipCountry":"RU","ShipAddress":"20282 Brentwood Plaza","ShipName":"McKenzie-Conn","OrderDate":"7/7/2016","TotalPayment":"$540152.96","Status":3,"Type":2},{"OrderID":"31722-339","ShipCountry":"US","ShipAddress":"534 Doe Crossing Park","ShipName":"Cummerata Group","OrderDate":"6/25/2017","TotalPayment":"$231450.19","Status":1,"Type":2},{"OrderID":"0363-6170","ShipCountry":"PH","ShipAddress":"33 Milwaukee Street","ShipName":"Bayer LLC","OrderDate":"4/2/2016","TotalPayment":"$347383.65","Status":5,"Type":1},{"OrderID":"42546-180","ShipCountry":"PH","ShipAddress":"51 Swallow Circle","ShipName":"Monahan-Veum","OrderDate":"1/26/2016","TotalPayment":"$621599.57","Status":4,"Type":3},{"OrderID":"50813-0004","ShipCountry":"TM","ShipAddress":"80 Brentwood Court","ShipName":"Murphy, Hills and Farrell","OrderDate":"8/13/2017","TotalPayment":"$821571.72","Status":3,"Type":1},{"OrderID":"55154-1492","ShipCountry":"PH","ShipAddress":"87862 Scofield Circle","ShipName":"Botsford, Cormier and Muller","OrderDate":"10/1/2016","TotalPayment":"$730189.83","Status":3,"Type":3},{"OrderID":"60681-2810","ShipCountry":"PT","ShipAddress":"38964 Rusk Lane","ShipName":"Price, Will and Lind","OrderDate":"7/14/2016","TotalPayment":"$904608.65","Status":6,"Type":2},{"OrderID":"60760-278","ShipCountry":"FR","ShipAddress":"525 Thackeray Crossing","ShipName":"Heidenreich, MacGyver and Pfannerstill","OrderDate":"5/1/2017","TotalPayment":"$1128594.71","Status":5,"Type":2},{"OrderID":"57344-156","ShipCountry":"ID","ShipAddress":"23532 Florence Plaza","ShipName":"Barrows, Heaney and Gibson","OrderDate":"1/13/2017","TotalPayment":"$482075.42","Status":1,"Type":3},{"OrderID":"52125-616","ShipCountry":"CZ","ShipAddress":"6 Springs Lane","ShipName":"Hintz LLC","OrderDate":"1/14/2017","TotalPayment":"$1196624.12","Status":3,"Type":1}]},\n{"RecordID":153,"FirstName":"Merle","LastName":"Demaine","Company":"Shufflebeat","Email":"mdemaine48@is.gd","Phone":"813-581-2207","Status":1,"Type":2,"Orders":[{"OrderID":"68151-1494","ShipCountry":"ID","ShipAddress":"4483 Buell Court","ShipName":"Jaskolski-Lebsack","OrderDate":"1/9/2016","TotalPayment":"$1181167.37","Status":6,"Type":2},{"OrderID":"53346-1337","ShipCountry":"MX","ShipAddress":"04872 Green Road","ShipName":"Tremblay-Runte","OrderDate":"10/9/2017","TotalPayment":"$994173.52","Status":5,"Type":3},{"OrderID":"57627-164","ShipCountry":"PT","ShipAddress":"80343 Burning Wood Place","ShipName":"Moen, Heaney and Goldner","OrderDate":"8/25/2016","TotalPayment":"$1103550.06","Status":4,"Type":3},{"OrderID":"65585-577","ShipCountry":"NP","ShipAddress":"4 Mockingbird Drive","ShipName":"Ruecker, Lehner and Feest","OrderDate":"1/6/2016","TotalPayment":"$297342.59","Status":2,"Type":1},{"OrderID":"65954-534","ShipCountry":"ID","ShipAddress":"7 Meadow Valley Road","ShipName":"Abbott, Bernier and Walker","OrderDate":"9/19/2017","TotalPayment":"$642363.99","Status":5,"Type":3},{"OrderID":"0363-0610","ShipCountry":"ID","ShipAddress":"72 Loeprich Road","ShipName":"Witting-Ziemann","OrderDate":"5/31/2016","TotalPayment":"$447632.05","Status":5,"Type":2},{"OrderID":"55154-4056","ShipCountry":"SA","ShipAddress":"27375 Sherman Pass","ShipName":"Murray Group","OrderDate":"12/30/2016","TotalPayment":"$112987.29","Status":4,"Type":2}]},\n{"RecordID":154,"FirstName":"Teresa","LastName":"Kirimaa","Company":"Geba","Email":"tkirimaa49@ustream.tv","Phone":"531-728-2996","Status":2,"Type":2,"Orders":[{"OrderID":"57337-017","ShipCountry":"CN","ShipAddress":"99 Westport Lane","ShipName":"Block and Sons","OrderDate":"3/9/2016","TotalPayment":"$683113.18","Status":6,"Type":2},{"OrderID":"52125-327","ShipCountry":"CO","ShipAddress":"28359 Sherman Pass","ShipName":"Kautzer and Sons","OrderDate":"11/6/2017","TotalPayment":"$559034.21","Status":3,"Type":2},{"OrderID":"43419-381","ShipCountry":"CN","ShipAddress":"45250 Arizona Place","ShipName":"Dibbert-Pacocha","OrderDate":"7/11/2017","TotalPayment":"$499470.83","Status":5,"Type":2},{"OrderID":"24090-496","ShipCountry":"ID","ShipAddress":"86 Rigney Street","ShipName":"Dooley, Boyer and Deckow","OrderDate":"9/21/2016","TotalPayment":"$452524.93","Status":5,"Type":1},{"OrderID":"0228-2981","ShipCountry":"CN","ShipAddress":"64345 Helena Crossing","ShipName":"Hahn-Schroeder","OrderDate":"1/15/2017","TotalPayment":"$1190088.58","Status":3,"Type":3},{"OrderID":"66685-1002","ShipCountry":"HK","ShipAddress":"8 Graedel Circle","ShipName":"Blanda Group","OrderDate":"4/19/2017","TotalPayment":"$721477.19","Status":5,"Type":1},{"OrderID":"54569-2095","ShipCountry":"TJ","ShipAddress":"50228 Onsgard Place","ShipName":"Krajcik and Sons","OrderDate":"1/4/2016","TotalPayment":"$1040556.38","Status":5,"Type":1},{"OrderID":"36987-2517","ShipCountry":"DK","ShipAddress":"988 Morning Place","ShipName":"Dickinson, Smitham and McGlynn","OrderDate":"6/15/2017","TotalPayment":"$1071084.94","Status":2,"Type":2},{"OrderID":"24286-1561","ShipCountry":"RU","ShipAddress":"199 Hallows Street","ShipName":"Zboncak and Sons","OrderDate":"10/15/2017","TotalPayment":"$608311.91","Status":4,"Type":1},{"OrderID":"68084-230","ShipCountry":"RU","ShipAddress":"57457 Toban Hill","ShipName":"Marvin-Kemmer","OrderDate":"2/16/2016","TotalPayment":"$348071.15","Status":6,"Type":3},{"OrderID":"64117-744","ShipCountry":"MY","ShipAddress":"9228 Fairview Plaza","ShipName":"Miller, Bartell and Ankunding","OrderDate":"11/19/2017","TotalPayment":"$894992.39","Status":4,"Type":1},{"OrderID":"55910-449","ShipCountry":"PA","ShipAddress":"05127 Mayfield Street","ShipName":"Romaguera LLC","OrderDate":"9/13/2017","TotalPayment":"$1075958.79","Status":2,"Type":2}]},\n{"RecordID":155,"FirstName":"Krispin","LastName":"Mabbe","Company":"Browsetype","Email":"kmabbe4a@abc.net.au","Phone":"129-198-3421","Status":3,"Type":1,"Orders":[{"OrderID":"37000-849","ShipCountry":"ID","ShipAddress":"04302 Parkside Junction","ShipName":"Kilback-Schoen","OrderDate":"5/24/2016","TotalPayment":"$36773.27","Status":5,"Type":1},{"OrderID":"41520-490","ShipCountry":"SE","ShipAddress":"76394 West Avenue","ShipName":"Dibbert Group","OrderDate":"11/5/2017","TotalPayment":"$658181.10","Status":2,"Type":2},{"OrderID":"65044-2679","ShipCountry":"CN","ShipAddress":"87546 Mcguire Trail","ShipName":"Metz LLC","OrderDate":"5/29/2017","TotalPayment":"$1173954.63","Status":4,"Type":2},{"OrderID":"0591-3228","ShipCountry":"MY","ShipAddress":"400 Vidon Avenue","ShipName":"Romaguera Inc","OrderDate":"8/30/2016","TotalPayment":"$241156.09","Status":4,"Type":3},{"OrderID":"0268-1456","ShipCountry":"CN","ShipAddress":"384 Arkansas Lane","ShipName":"Boyer-Barrows","OrderDate":"2/3/2017","TotalPayment":"$1022072.94","Status":1,"Type":1},{"OrderID":"52533-107","ShipCountry":"RU","ShipAddress":"7174 Lyons Trail","ShipName":"Kling, Cronin and Beer","OrderDate":"6/30/2017","TotalPayment":"$77236.48","Status":3,"Type":1},{"OrderID":"76029-002","ShipCountry":"TH","ShipAddress":"5 Lindbergh Street","ShipName":"Rath-Schmitt","OrderDate":"9/8/2016","TotalPayment":"$1073095.17","Status":6,"Type":3},{"OrderID":"63739-080","ShipCountry":"PH","ShipAddress":"201 Meadow Valley Court","ShipName":"Gusikowski-Morar","OrderDate":"8/29/2016","TotalPayment":"$708372.82","Status":3,"Type":3}]},\n{"RecordID":156,"FirstName":"Constantia","LastName":"Langstone","Company":"Thoughtstorm","Email":"clangstone4b@mac.com","Phone":"935-903-0056","Status":1,"Type":2,"Orders":[{"OrderID":"0268-6401","ShipCountry":"PY","ShipAddress":"13645 Marquette Court","ShipName":"Ebert, Torphy and Lang","OrderDate":"10/29/2016","TotalPayment":"$376556.46","Status":3,"Type":2},{"OrderID":"63629-4694","ShipCountry":"GR","ShipAddress":"419 Dorton Drive","ShipName":"Walsh, Torphy and Lubowitz","OrderDate":"2/2/2016","TotalPayment":"$612126.72","Status":2,"Type":1},{"OrderID":"64117-305","ShipCountry":"CA","ShipAddress":"9 Monument Trail","ShipName":"Crona Inc","OrderDate":"3/20/2016","TotalPayment":"$17183.61","Status":3,"Type":2},{"OrderID":"61047-825","ShipCountry":"JP","ShipAddress":"7246 Westerfield Park","ShipName":"Ankunding LLC","OrderDate":"2/25/2017","TotalPayment":"$564426.15","Status":4,"Type":2},{"OrderID":"42254-125","ShipCountry":"IS","ShipAddress":"19 Cherokee Plaza","ShipName":"Connelly LLC","OrderDate":"12/24/2017","TotalPayment":"$415349.56","Status":5,"Type":1},{"OrderID":"10578-055","ShipCountry":"IS","ShipAddress":"2143 7th Parkway","ShipName":"Raynor Group","OrderDate":"11/27/2016","TotalPayment":"$729290.79","Status":3,"Type":3},{"OrderID":"58118-0409","ShipCountry":"CA","ShipAddress":"761 Oriole Center","ShipName":"Reichert-DuBuque","OrderDate":"4/13/2016","TotalPayment":"$954344.27","Status":5,"Type":2},{"OrderID":"0363-0664","ShipCountry":"VN","ShipAddress":"29906 Iowa Circle","ShipName":"Bogisich-Stanton","OrderDate":"9/29/2016","TotalPayment":"$183669.44","Status":3,"Type":1},{"OrderID":"59779-648","ShipCountry":"LT","ShipAddress":"49 Hintze Trail","ShipName":"Beier, Ferry and Eichmann","OrderDate":"10/10/2017","TotalPayment":"$1046095.77","Status":5,"Type":2},{"OrderID":"62011-0084","ShipCountry":"RU","ShipAddress":"1 Vidon Place","ShipName":"Parisian-Pfannerstill","OrderDate":"1/30/2016","TotalPayment":"$460247.59","Status":6,"Type":3},{"OrderID":"0311-0585","ShipCountry":"TN","ShipAddress":"28320 Sutherland Trail","ShipName":"Mayert-Hyatt","OrderDate":"12/9/2016","TotalPayment":"$442430.65","Status":4,"Type":2},{"OrderID":"0131-3265","ShipCountry":"DJ","ShipAddress":"0 Petterle Parkway","ShipName":"Kling, Gerlach and Robel","OrderDate":"11/30/2016","TotalPayment":"$25185.33","Status":6,"Type":2},{"OrderID":"50845-0092","ShipCountry":"CN","ShipAddress":"10042 Del Sol Alley","ShipName":"Blanda and Sons","OrderDate":"4/17/2016","TotalPayment":"$411918.88","Status":6,"Type":1},{"OrderID":"67046-268","ShipCountry":"CN","ShipAddress":"6586 Elmside Court","ShipName":"Dicki and Sons","OrderDate":"1/2/2017","TotalPayment":"$739744.26","Status":6,"Type":3},{"OrderID":"47593-383","ShipCountry":"ID","ShipAddress":"20 Prentice Drive","ShipName":"Koepp LLC","OrderDate":"1/5/2016","TotalPayment":"$515040.94","Status":3,"Type":2},{"OrderID":"0185-0134","ShipCountry":"SY","ShipAddress":"0851 Tomscot Center","ShipName":"Leuschke, Okuneva and Bergnaum","OrderDate":"5/17/2016","TotalPayment":"$987132.14","Status":1,"Type":2},{"OrderID":"53240-151","ShipCountry":"CN","ShipAddress":"9102 Shelley Hill","ShipName":"Eichmann LLC","OrderDate":"8/13/2017","TotalPayment":"$812244.63","Status":1,"Type":3}]},\n{"RecordID":157,"FirstName":"Heloise","LastName":"Blewett","Company":"Dabshots","Email":"hblewett4c@ezinearticles.com","Phone":"276-901-8947","Status":2,"Type":1,"Orders":[{"OrderID":"59158-723","ShipCountry":"ID","ShipAddress":"3171 Fulton Avenue","ShipName":"Effertz-Sipes","OrderDate":"1/12/2017","TotalPayment":"$636103.96","Status":1,"Type":1},{"OrderID":"37205-535","ShipCountry":"UA","ShipAddress":"92 Southridge Terrace","ShipName":"Green Inc","OrderDate":"4/11/2017","TotalPayment":"$978748.73","Status":5,"Type":1},{"OrderID":"50436-9101","ShipCountry":"PE","ShipAddress":"5 Meadow Vale Street","ShipName":"Torp Inc","OrderDate":"4/30/2016","TotalPayment":"$541999.87","Status":4,"Type":3},{"OrderID":"10544-608","ShipCountry":"HT","ShipAddress":"24980 Grasskamp Center","ShipName":"Casper-Medhurst","OrderDate":"12/30/2017","TotalPayment":"$85216.39","Status":2,"Type":1},{"OrderID":"10144-604","ShipCountry":"PL","ShipAddress":"6481 Wayridge Trail","ShipName":"Morar, Wyman and Emard","OrderDate":"2/8/2017","TotalPayment":"$998173.51","Status":1,"Type":1},{"OrderID":"36987-1747","ShipCountry":"CN","ShipAddress":"044 Moose Circle","ShipName":"Wintheiser LLC","OrderDate":"3/26/2016","TotalPayment":"$153773.91","Status":6,"Type":3},{"OrderID":"58668-2211","ShipCountry":"ET","ShipAddress":"706 Reindahl Circle","ShipName":"Hettinger, Buckridge and Heller","OrderDate":"4/12/2016","TotalPayment":"$285170.46","Status":1,"Type":1},{"OrderID":"60505-0209","ShipCountry":"UA","ShipAddress":"921 Hudson Road","ShipName":"Steuber, Bednar and Koelpin","OrderDate":"2/15/2016","TotalPayment":"$189476.29","Status":1,"Type":3},{"OrderID":"63629-3639","ShipCountry":"JP","ShipAddress":"262 Scofield Lane","ShipName":"Nitzsche LLC","OrderDate":"5/26/2016","TotalPayment":"$701166.79","Status":2,"Type":2},{"OrderID":"13925-101","ShipCountry":"BR","ShipAddress":"97286 Arrowood Parkway","ShipName":"Heidenreich, Kuhlman and Satterfield","OrderDate":"6/17/2017","TotalPayment":"$191107.09","Status":4,"Type":3},{"OrderID":"55714-2355","ShipCountry":"CN","ShipAddress":"3 Sunnyside Center","ShipName":"Barton-Leannon","OrderDate":"4/10/2017","TotalPayment":"$544148.76","Status":2,"Type":1},{"OrderID":"68788-9816","ShipCountry":"PL","ShipAddress":"572 Moulton Trail","ShipName":"Davis Group","OrderDate":"3/15/2016","TotalPayment":"$566600.97","Status":3,"Type":2}]},\n{"RecordID":158,"FirstName":"Lucy","LastName":"Osgorby","Company":"Talane","Email":"losgorby4d@comsenz.com","Phone":"962-841-3463","Status":1,"Type":2,"Orders":[{"OrderID":"52343-002","ShipCountry":"PL","ShipAddress":"76 Buell Court","ShipName":"Schulist-Miller","OrderDate":"4/28/2017","TotalPayment":"$546593.75","Status":1,"Type":1},{"OrderID":"58118-1344","ShipCountry":"FR","ShipAddress":"29564 Twin Pines Plaza","ShipName":"Pagac LLC","OrderDate":"10/4/2016","TotalPayment":"$1193295.50","Status":5,"Type":3},{"OrderID":"50021-243","ShipCountry":"IR","ShipAddress":"4814 Mitchell Crossing","ShipName":"Cartwright Inc","OrderDate":"5/25/2016","TotalPayment":"$548040.50","Status":6,"Type":2},{"OrderID":"49349-849","ShipCountry":"JP","ShipAddress":"8345 Buhler Alley","ShipName":"Hand-Cole","OrderDate":"10/24/2016","TotalPayment":"$422993.93","Status":3,"Type":2},{"OrderID":"0085-1291","ShipCountry":"CN","ShipAddress":"9 Sauthoff Alley","ShipName":"Schultz Inc","OrderDate":"6/23/2017","TotalPayment":"$29651.35","Status":5,"Type":3},{"OrderID":"0074-3457","ShipCountry":"CA","ShipAddress":"2840 Summer Ridge Road","ShipName":"Wyman, Weimann and Klocko","OrderDate":"7/4/2016","TotalPayment":"$614774.13","Status":6,"Type":3},{"OrderID":"57525-016","ShipCountry":"FR","ShipAddress":"1907 Nova Hill","ShipName":"Muller, Ryan and Ledner","OrderDate":"8/20/2016","TotalPayment":"$19886.89","Status":2,"Type":1},{"OrderID":"68645-261","ShipCountry":"AZ","ShipAddress":"75472 Cordelia Trail","ShipName":"Schulist, Bartell and O\'Kon","OrderDate":"5/13/2017","TotalPayment":"$737725.80","Status":4,"Type":3},{"OrderID":"55312-546","ShipCountry":"RU","ShipAddress":"2 Northridge Plaza","ShipName":"Koelpin, Barrows and Predovic","OrderDate":"9/30/2016","TotalPayment":"$269138.14","Status":6,"Type":2},{"OrderID":"21695-143","ShipCountry":"ID","ShipAddress":"28 Jay Parkway","ShipName":"Ebert, Lynch and Friesen","OrderDate":"2/2/2017","TotalPayment":"$1116938.56","Status":5,"Type":1},{"OrderID":"50845-0197","ShipCountry":"RS","ShipAddress":"49 Golf Course Crossing","ShipName":"Spinka-Reinger","OrderDate":"12/11/2017","TotalPayment":"$300011.38","Status":4,"Type":3},{"OrderID":"65841-740","ShipCountry":"CN","ShipAddress":"20 Stephen Pass","ShipName":"D\'Amore Group","OrderDate":"4/25/2017","TotalPayment":"$742267.45","Status":1,"Type":3},{"OrderID":"55154-2828","ShipCountry":"CN","ShipAddress":"66 Shoshone Circle","ShipName":"Mayer LLC","OrderDate":"5/21/2017","TotalPayment":"$510673.85","Status":1,"Type":3}]},\n{"RecordID":159,"FirstName":"Grazia","LastName":"Frascone","Company":"Yodel","Email":"gfrascone4e@sbwire.com","Phone":"703-883-7151","Status":4,"Type":1,"Orders":[{"OrderID":"43353-856","ShipCountry":"PE","ShipAddress":"2587 Crescent Oaks Trail","ShipName":"Sipes-Bruen","OrderDate":"1/26/2016","TotalPayment":"$956071.07","Status":2,"Type":1},{"OrderID":"16590-998","ShipCountry":"RU","ShipAddress":"24 Tennessee Lane","ShipName":"Murray, Anderson and Blick","OrderDate":"4/11/2016","TotalPayment":"$86687.22","Status":5,"Type":1},{"OrderID":"50114-6085","ShipCountry":"CA","ShipAddress":"3917 Washington Trail","ShipName":"Ortiz LLC","OrderDate":"9/18/2017","TotalPayment":"$311136.21","Status":6,"Type":1},{"OrderID":"24385-213","ShipCountry":"KG","ShipAddress":"75 Anthes Lane","ShipName":"Gutmann Inc","OrderDate":"7/25/2016","TotalPayment":"$360502.94","Status":3,"Type":3},{"OrderID":"36987-2551","ShipCountry":"FI","ShipAddress":"8726 Dennis Plaza","ShipName":"Satterfield-Towne","OrderDate":"11/20/2017","TotalPayment":"$1003125.07","Status":6,"Type":2},{"OrderID":"0264-7865","ShipCountry":"CN","ShipAddress":"9488 Sullivan Hill","ShipName":"Christiansen, Heathcote and Waters","OrderDate":"7/6/2017","TotalPayment":"$423794.88","Status":3,"Type":3},{"OrderID":"57955-6012","ShipCountry":"ZA","ShipAddress":"0244 Shasta Drive","ShipName":"Abbott, Lockman and Conn","OrderDate":"4/28/2017","TotalPayment":"$117457.26","Status":1,"Type":3},{"OrderID":"22840-0039","ShipCountry":"CN","ShipAddress":"70 Golf View Terrace","ShipName":"Predovic, Schimmel and Veum","OrderDate":"9/5/2017","TotalPayment":"$901260.15","Status":6,"Type":2},{"OrderID":"49349-902","ShipCountry":"CN","ShipAddress":"42 Arapahoe Place","ShipName":"Gerhold-Koss","OrderDate":"6/23/2017","TotalPayment":"$332874.28","Status":5,"Type":3},{"OrderID":"0187-5172","ShipCountry":"NZ","ShipAddress":"4407 Glendale Street","ShipName":"Hilpert, Keebler and Lemke","OrderDate":"4/18/2017","TotalPayment":"$39828.66","Status":3,"Type":2},{"OrderID":"76472-1152","ShipCountry":"RU","ShipAddress":"0 Del Sol Place","ShipName":"Bartoletti, Lang and Durgan","OrderDate":"10/3/2017","TotalPayment":"$42971.15","Status":2,"Type":1},{"OrderID":"34022-101","ShipCountry":"PL","ShipAddress":"63577 Johnson Hill","ShipName":"Stiedemann, Marvin and Dicki","OrderDate":"9/10/2016","TotalPayment":"$516273.51","Status":5,"Type":3},{"OrderID":"60505-0833","ShipCountry":"BG","ShipAddress":"113 Manufacturers Drive","ShipName":"Schaefer-Boyle","OrderDate":"6/5/2017","TotalPayment":"$888904.38","Status":1,"Type":2}]},\n{"RecordID":160,"FirstName":"Dani","LastName":"Manicomb","Company":"Browseblab","Email":"dmanicomb4f@google.de","Phone":"252-183-7241","Status":4,"Type":2,"Orders":[{"OrderID":"0025-2752","ShipCountry":"RU","ShipAddress":"7988 Steensland Pass","ShipName":"Weimann, Jakubowski and Von","OrderDate":"4/13/2016","TotalPayment":"$1106269.87","Status":5,"Type":3},{"OrderID":"10812-198","ShipCountry":"ID","ShipAddress":"7 Lukken Center","ShipName":"Hickle-Romaguera","OrderDate":"10/20/2017","TotalPayment":"$274401.23","Status":1,"Type":2},{"OrderID":"30014-104","ShipCountry":"PT","ShipAddress":"60425 Lawn Alley","ShipName":"Weber-Tremblay","OrderDate":"1/6/2016","TotalPayment":"$834581.29","Status":6,"Type":2},{"OrderID":"42254-149","ShipCountry":"TL","ShipAddress":"45 Mesta Terrace","ShipName":"Littel Group","OrderDate":"6/5/2016","TotalPayment":"$96884.74","Status":3,"Type":1},{"OrderID":"49781-011","ShipCountry":"PL","ShipAddress":"3374 Aberg Drive","ShipName":"Fisher-Gulgowski","OrderDate":"4/15/2016","TotalPayment":"$845177.14","Status":1,"Type":1},{"OrderID":"0363-0650","ShipCountry":"ZM","ShipAddress":"4916 Center Lane","ShipName":"Schumm-Corkery","OrderDate":"10/19/2016","TotalPayment":"$712651.64","Status":5,"Type":2},{"OrderID":"61601-1217","ShipCountry":"PE","ShipAddress":"4851 Namekagon Trail","ShipName":"Cremin-Waters","OrderDate":"9/21/2016","TotalPayment":"$78523.80","Status":5,"Type":2},{"OrderID":"64616-105","ShipCountry":"MX","ShipAddress":"9469 Butterfield Pass","ShipName":"Pouros-Simonis","OrderDate":"10/9/2017","TotalPayment":"$173307.83","Status":3,"Type":1},{"OrderID":"37808-110","ShipCountry":"ID","ShipAddress":"5894 Judy Parkway","ShipName":"Parker, Kuvalis and McCullough","OrderDate":"9/2/2017","TotalPayment":"$269668.73","Status":4,"Type":2},{"OrderID":"67618-300","ShipCountry":"JP","ShipAddress":"749 Ohio Terrace","ShipName":"Denesik-Schimmel","OrderDate":"7/29/2016","TotalPayment":"$994283.14","Status":4,"Type":1},{"OrderID":"66083-741","ShipCountry":"PT","ShipAddress":"7406 Briar Crest Junction","ShipName":"Nienow, Armstrong and Bauch","OrderDate":"7/23/2017","TotalPayment":"$240411.02","Status":6,"Type":1},{"OrderID":"0185-5050","ShipCountry":"RU","ShipAddress":"7 Randy Point","ShipName":"Hansen, Larkin and Pagac","OrderDate":"7/29/2017","TotalPayment":"$139859.74","Status":3,"Type":1},{"OrderID":"51346-184","ShipCountry":"AM","ShipAddress":"8 Bartelt Parkway","ShipName":"Jacobs Inc","OrderDate":"10/10/2016","TotalPayment":"$586074.20","Status":5,"Type":2},{"OrderID":"24658-304","ShipCountry":"TZ","ShipAddress":"85635 Hayes Place","ShipName":"Effertz, Bode and Larson","OrderDate":"11/30/2017","TotalPayment":"$409400.23","Status":2,"Type":2},{"OrderID":"0615-3596","ShipCountry":"JP","ShipAddress":"37815 2nd Lane","ShipName":"Yundt and Sons","OrderDate":"8/31/2017","TotalPayment":"$1177664.10","Status":3,"Type":1},{"OrderID":"67938-1085","ShipCountry":"JP","ShipAddress":"0009 Forest Dale Junction","ShipName":"Schroeder LLC","OrderDate":"3/27/2017","TotalPayment":"$1120850.95","Status":5,"Type":1},{"OrderID":"43074-207","ShipCountry":"PH","ShipAddress":"39736 Anderson Junction","ShipName":"Fahey-Corkery","OrderDate":"11/10/2017","TotalPayment":"$1038615.45","Status":5,"Type":2},{"OrderID":"76173-1005","ShipCountry":"GR","ShipAddress":"1812 Melrose Avenue","ShipName":"Padberg, Mertz and Heaney","OrderDate":"9/17/2016","TotalPayment":"$1180134.89","Status":3,"Type":2}]},\n{"RecordID":161,"FirstName":"Karine","LastName":"Lindegard","Company":"Chatterpoint","Email":"klindegard4g@chronoengine.com","Phone":"626-296-7353","Status":5,"Type":1,"Orders":[{"OrderID":"68276-004","ShipCountry":"CO","ShipAddress":"5 Debs Street","ShipName":"Jacobson Group","OrderDate":"1/8/2017","TotalPayment":"$327436.90","Status":4,"Type":2},{"OrderID":"55111-133","ShipCountry":"PT","ShipAddress":"9 Novick Plaza","ShipName":"O\'Hara, King and Hahn","OrderDate":"2/28/2017","TotalPayment":"$349539.84","Status":1,"Type":1},{"OrderID":"36987-1899","ShipCountry":"US","ShipAddress":"172 Glendale Trail","ShipName":"Ritchie, Maggio and Lowe","OrderDate":"12/7/2017","TotalPayment":"$1167184.76","Status":4,"Type":1},{"OrderID":"53603-2003","ShipCountry":"BR","ShipAddress":"3 Scoville Hill","ShipName":"Goyette-Koss","OrderDate":"8/23/2016","TotalPayment":"$1197264.67","Status":2,"Type":3},{"OrderID":"62362-159","ShipCountry":"CN","ShipAddress":"439 Ryan Junction","ShipName":"Towne Inc","OrderDate":"9/21/2016","TotalPayment":"$47089.49","Status":3,"Type":3},{"OrderID":"68745-1153","ShipCountry":"FR","ShipAddress":"0 Huxley Park","ShipName":"Hintz, Lakin and Breitenberg","OrderDate":"7/11/2016","TotalPayment":"$868302.82","Status":5,"Type":1},{"OrderID":"55315-600","ShipCountry":"PL","ShipAddress":"6 Grayhawk Junction","ShipName":"Will, Corwin and Kunde","OrderDate":"7/1/2016","TotalPayment":"$1197695.65","Status":4,"Type":2},{"OrderID":"64616-098","ShipCountry":"BR","ShipAddress":"250 Dunning Point","ShipName":"Becker, Morissette and Graham","OrderDate":"6/22/2017","TotalPayment":"$837012.51","Status":6,"Type":2},{"OrderID":"11523-7302","ShipCountry":"PT","ShipAddress":"15755 Forest Pass","ShipName":"Schinner, Ritchie and Schumm","OrderDate":"9/25/2016","TotalPayment":"$95430.27","Status":4,"Type":3},{"OrderID":"0603-2110","ShipCountry":"RS","ShipAddress":"185 Roth Trail","ShipName":"Mueller Group","OrderDate":"6/17/2017","TotalPayment":"$815097.00","Status":1,"Type":2}]},\n{"RecordID":162,"FirstName":"Lennard","LastName":"Duffan","Company":"Tagpad","Email":"lduffan4h@diigo.com","Phone":"573-297-1345","Status":3,"Type":1,"Orders":[{"OrderID":"55111-282","ShipCountry":"UA","ShipAddress":"61446 Derek Court","ShipName":"Hudson-Gaylord","OrderDate":"7/22/2017","TotalPayment":"$503731.00","Status":1,"Type":2},{"OrderID":"68788-9085","ShipCountry":"CN","ShipAddress":"85929 Thackeray Drive","ShipName":"Block Group","OrderDate":"2/5/2017","TotalPayment":"$1181023.68","Status":3,"Type":2},{"OrderID":"54868-2271","ShipCountry":"SY","ShipAddress":"52 Packers Trail","ShipName":"Orn-Mueller","OrderDate":"1/2/2017","TotalPayment":"$117031.08","Status":5,"Type":1},{"OrderID":"53746-219","ShipCountry":"PT","ShipAddress":"10 Lakewood Street","ShipName":"Rutherford Group","OrderDate":"5/2/2016","TotalPayment":"$1114104.86","Status":2,"Type":3},{"OrderID":"37000-522","ShipCountry":"ID","ShipAddress":"484 Tennessee Court","ShipName":"Ruecker Group","OrderDate":"6/1/2016","TotalPayment":"$226798.07","Status":1,"Type":2},{"OrderID":"68084-020","ShipCountry":"FR","ShipAddress":"8933 Troy Circle","ShipName":"Spencer-Okuneva","OrderDate":"7/11/2017","TotalPayment":"$170235.61","Status":2,"Type":1},{"OrderID":"66969-6022","ShipCountry":"ID","ShipAddress":"667 Bellgrove Circle","ShipName":"DuBuque Inc","OrderDate":"5/27/2017","TotalPayment":"$641933.93","Status":1,"Type":3},{"OrderID":"51079-651","ShipCountry":"HR","ShipAddress":"2854 Anderson Court","ShipName":"McLaughlin-Kovacek","OrderDate":"3/13/2017","TotalPayment":"$1083945.75","Status":4,"Type":1},{"OrderID":"57520-0054","ShipCountry":"DE","ShipAddress":"08 Morningstar Alley","ShipName":"Romaguera, McKenzie and Sauer","OrderDate":"2/14/2016","TotalPayment":"$866786.34","Status":1,"Type":1},{"OrderID":"0615-7549","ShipCountry":"PH","ShipAddress":"2754 Carberry Pass","ShipName":"Rogahn-Cole","OrderDate":"8/8/2017","TotalPayment":"$136727.95","Status":4,"Type":1},{"OrderID":"49999-049","ShipCountry":"US","ShipAddress":"1408 Chinook Crossing","ShipName":"Kunze, Sauer and Koepp","OrderDate":"1/5/2016","TotalPayment":"$253533.22","Status":1,"Type":2},{"OrderID":"11673-311","ShipCountry":"ID","ShipAddress":"8 Ronald Regan Plaza","ShipName":"Kunze and Sons","OrderDate":"6/12/2016","TotalPayment":"$364517.44","Status":2,"Type":2},{"OrderID":"0703-9105","ShipCountry":"CN","ShipAddress":"97 Sachtjen Avenue","ShipName":"Gottlieb and Sons","OrderDate":"12/19/2017","TotalPayment":"$1189295.37","Status":1,"Type":1},{"OrderID":"68745-1044","ShipCountry":"PK","ShipAddress":"241 Elka Center","ShipName":"Goldner Inc","OrderDate":"6/3/2016","TotalPayment":"$1038504.95","Status":3,"Type":2},{"OrderID":"36987-2825","ShipCountry":"PL","ShipAddress":"4845 Surrey Park","ShipName":"Carter-Stanton","OrderDate":"4/25/2016","TotalPayment":"$311707.99","Status":4,"Type":2},{"OrderID":"59746-348","ShipCountry":"BR","ShipAddress":"058 Westend Lane","ShipName":"West-D\'Amore","OrderDate":"3/20/2016","TotalPayment":"$370995.08","Status":1,"Type":2},{"OrderID":"54569-5418","ShipCountry":"CN","ShipAddress":"39 Golden Leaf Avenue","ShipName":"Cormier, Sanford and Thiel","OrderDate":"8/29/2016","TotalPayment":"$426167.14","Status":5,"Type":2}]},\n{"RecordID":163,"FirstName":"Luci","LastName":"Baily","Company":"Gevee","Email":"lbaily4i@facebook.com","Phone":"555-486-6648","Status":6,"Type":2,"Orders":[{"OrderID":"0113-0516","ShipCountry":"HN","ShipAddress":"5 Anhalt Court","ShipName":"Ledner, Nitzsche and Sanford","OrderDate":"7/2/2016","TotalPayment":"$317206.62","Status":4,"Type":2},{"OrderID":"44523-415","ShipCountry":"CR","ShipAddress":"7 Harbort Alley","ShipName":"Block, Powlowski and Moore","OrderDate":"5/19/2017","TotalPayment":"$215212.50","Status":2,"Type":2},{"OrderID":"46122-182","ShipCountry":"CM","ShipAddress":"371 Farragut Pass","ShipName":"Orn, Jakubowski and Smitham","OrderDate":"3/31/2017","TotalPayment":"$755893.16","Status":1,"Type":3},{"OrderID":"65044-0843","ShipCountry":"MX","ShipAddress":"66 High Crossing Street","ShipName":"Walker, Huels and Smitham","OrderDate":"3/18/2016","TotalPayment":"$614528.33","Status":6,"Type":2},{"OrderID":"11822-0471","ShipCountry":"VE","ShipAddress":"6 Bultman Circle","ShipName":"Connelly-Schuster","OrderDate":"5/1/2016","TotalPayment":"$51542.85","Status":4,"Type":2},{"OrderID":"36987-3319","ShipCountry":"HT","ShipAddress":"10 Eggendart Drive","ShipName":"Flatley-Howe","OrderDate":"2/28/2017","TotalPayment":"$1150160.58","Status":2,"Type":1},{"OrderID":"54868-2817","ShipCountry":"ID","ShipAddress":"1 Bultman Court","ShipName":"Heaney-Hermiston","OrderDate":"12/19/2017","TotalPayment":"$465175.00","Status":4,"Type":1}]},\n{"RecordID":164,"FirstName":"Nevile","LastName":"Goodbanne","Company":"Twitterbeat","Email":"ngoodbanne4j@yolasite.com","Phone":"352-110-5536","Status":4,"Type":2,"Orders":[{"OrderID":"0904-5806","ShipCountry":"PL","ShipAddress":"962 Meadow Vale Court","ShipName":"Lakin Inc","OrderDate":"2/20/2016","TotalPayment":"$462719.36","Status":4,"Type":2},{"OrderID":"53329-822","ShipCountry":"ID","ShipAddress":"53 Steensland Road","ShipName":"Hermiston, Cassin and Adams","OrderDate":"1/16/2017","TotalPayment":"$314828.42","Status":5,"Type":1},{"OrderID":"48951-3054","ShipCountry":"CN","ShipAddress":"6098 Sycamore Parkway","ShipName":"Koepp-Parker","OrderDate":"10/23/2016","TotalPayment":"$864468.79","Status":2,"Type":1},{"OrderID":"52584-039","ShipCountry":"US","ShipAddress":"629 Boyd Drive","ShipName":"Miller and Sons","OrderDate":"5/30/2017","TotalPayment":"$988478.15","Status":3,"Type":3},{"OrderID":"0440-7465","ShipCountry":"AL","ShipAddress":"967 John Wall Trail","ShipName":"Mosciski and Sons","OrderDate":"3/7/2016","TotalPayment":"$918699.01","Status":6,"Type":2},{"OrderID":"24385-623","ShipCountry":"FR","ShipAddress":"6178 Forest Parkway","ShipName":"Fisher LLC","OrderDate":"1/5/2016","TotalPayment":"$794768.49","Status":1,"Type":2},{"OrderID":"54575-121","ShipCountry":"CN","ShipAddress":"49 Daystar Lane","ShipName":"Bogan, Purdy and Stanton","OrderDate":"10/7/2017","TotalPayment":"$702999.42","Status":3,"Type":3},{"OrderID":"53808-0345","ShipCountry":"DO","ShipAddress":"76997 Marquette Place","ShipName":"Turcotte and Sons","OrderDate":"3/13/2016","TotalPayment":"$84059.25","Status":2,"Type":3},{"OrderID":"52731-7004","ShipCountry":"NI","ShipAddress":"8 Straubel Drive","ShipName":"Thompson, Murazik and Stroman","OrderDate":"4/28/2017","TotalPayment":"$503330.45","Status":5,"Type":3}]},\n{"RecordID":165,"FirstName":"Allyson","LastName":"Hansley","Company":"Realfire","Email":"ahansley4k@i2i.jp","Phone":"149-570-3990","Status":5,"Type":2,"Orders":[{"OrderID":"49035-516","ShipCountry":"KH","ShipAddress":"69 Pankratz Hill","ShipName":"Spinka-Denesik","OrderDate":"10/13/2017","TotalPayment":"$842807.00","Status":3,"Type":1},{"OrderID":"54868-3230","ShipCountry":"CN","ShipAddress":"5 Kenwood Pass","ShipName":"Lang, Schmidt and Jast","OrderDate":"12/30/2017","TotalPayment":"$367788.28","Status":2,"Type":1},{"OrderID":"0527-1383","ShipCountry":"CN","ShipAddress":"1 Westridge Avenue","ShipName":"Senger and Sons","OrderDate":"4/1/2016","TotalPayment":"$588778.81","Status":1,"Type":2},{"OrderID":"57297-201","ShipCountry":"CN","ShipAddress":"1175 Hazelcrest Crossing","ShipName":"Cummerata Group","OrderDate":"10/9/2016","TotalPayment":"$921101.32","Status":2,"Type":3},{"OrderID":"64525-0560","ShipCountry":"ID","ShipAddress":"397 West Parkway","ShipName":"Howell, Kertzmann and Goyette","OrderDate":"4/2/2016","TotalPayment":"$287502.46","Status":6,"Type":3},{"OrderID":"0179-0015","ShipCountry":"CN","ShipAddress":"86244 Talmadge Road","ShipName":"Conroy LLC","OrderDate":"4/7/2016","TotalPayment":"$915611.80","Status":1,"Type":2},{"OrderID":"76354-001","ShipCountry":"AR","ShipAddress":"72684 Packers Way","ShipName":"Gaylord-Bartell","OrderDate":"7/24/2016","TotalPayment":"$785020.16","Status":2,"Type":3},{"OrderID":"0555-0808","ShipCountry":"RU","ShipAddress":"80141 Mariners Cove Avenue","ShipName":"Frami-Boehm","OrderDate":"3/31/2017","TotalPayment":"$1158102.08","Status":6,"Type":3}]},\n{"RecordID":166,"FirstName":"Nari","LastName":"Kehri","Company":"Youbridge","Email":"nkehri4l@ehow.com","Phone":"262-783-8457","Status":3,"Type":3,"Orders":[{"OrderID":"50666-009","ShipCountry":"MA","ShipAddress":"316 Tennessee Road","ShipName":"Konopelski Group","OrderDate":"7/3/2017","TotalPayment":"$359573.69","Status":2,"Type":1},{"OrderID":"10078-001","ShipCountry":"PT","ShipAddress":"9484 Muir Trail","ShipName":"Gleason, Erdman and McKenzie","OrderDate":"11/5/2017","TotalPayment":"$1027913.81","Status":4,"Type":1},{"OrderID":"49738-210","ShipCountry":"CN","ShipAddress":"1 Bluestem Plaza","ShipName":"Balistreri, Wyman and Kautzer","OrderDate":"9/7/2017","TotalPayment":"$621839.76","Status":1,"Type":3},{"OrderID":"0069-0468","ShipCountry":"SE","ShipAddress":"96205 American Ash Junction","ShipName":"Frami Group","OrderDate":"5/5/2017","TotalPayment":"$662462.49","Status":3,"Type":2},{"OrderID":"36987-2758","ShipCountry":"PH","ShipAddress":"1 Swallow Road","ShipName":"Feest-Bailey","OrderDate":"3/8/2017","TotalPayment":"$558521.38","Status":3,"Type":1},{"OrderID":"0078-0385","ShipCountry":"SE","ShipAddress":"92 Tennessee Pass","ShipName":"Rogahn, Cummings and Bernier","OrderDate":"12/15/2016","TotalPayment":"$608382.40","Status":6,"Type":1},{"OrderID":"56062-160","ShipCountry":"ID","ShipAddress":"09224 Loftsgordon Court","ShipName":"Lebsack-Donnelly","OrderDate":"9/2/2017","TotalPayment":"$1140093.15","Status":4,"Type":3},{"OrderID":"44911-0075","ShipCountry":"MY","ShipAddress":"602 Southridge Point","ShipName":"Thiel, Raynor and Bode","OrderDate":"9/30/2016","TotalPayment":"$628333.36","Status":2,"Type":1},{"OrderID":"55651-028","ShipCountry":"RU","ShipAddress":"1 Novick Place","ShipName":"Monahan, O\'Conner and O\'Reilly","OrderDate":"12/6/2016","TotalPayment":"$15847.09","Status":5,"Type":3},{"OrderID":"0068-0011","ShipCountry":"CN","ShipAddress":"1603 Esker Point","ShipName":"Goldner, Rippin and Cartwright","OrderDate":"1/24/2017","TotalPayment":"$279123.50","Status":5,"Type":3},{"OrderID":"43857-0149","ShipCountry":"ID","ShipAddress":"33 Hoard Circle","ShipName":"Koepp, Dicki and Kreiger","OrderDate":"4/16/2016","TotalPayment":"$156152.69","Status":5,"Type":3},{"OrderID":"49738-372","ShipCountry":"NO","ShipAddress":"251 Maywood Street","ShipName":"VonRueden, Mraz and Conn","OrderDate":"7/23/2016","TotalPayment":"$1109575.85","Status":3,"Type":3},{"OrderID":"0032-1708","ShipCountry":"ID","ShipAddress":"30 Jenna Way","ShipName":"Gottlieb, Little and Johns","OrderDate":"12/8/2017","TotalPayment":"$729797.50","Status":5,"Type":3},{"OrderID":"46122-181","ShipCountry":"RS","ShipAddress":"86 Dahle Place","ShipName":"Wehner and Sons","OrderDate":"10/16/2016","TotalPayment":"$283193.93","Status":2,"Type":3},{"OrderID":"24987-435","ShipCountry":"CA","ShipAddress":"57 Village Road","ShipName":"Johnston, Denesik and O\'Connell","OrderDate":"1/14/2017","TotalPayment":"$573257.82","Status":5,"Type":2},{"OrderID":"65113-2373","ShipCountry":"ID","ShipAddress":"7 Corscot Hill","ShipName":"Hettinger, Hodkiewicz and Purdy","OrderDate":"7/2/2017","TotalPayment":"$766973.49","Status":3,"Type":3},{"OrderID":"55319-341","ShipCountry":"CZ","ShipAddress":"2570 Donald Place","ShipName":"Powlowski and Sons","OrderDate":"10/20/2017","TotalPayment":"$1059986.78","Status":1,"Type":2},{"OrderID":"0378-0215","ShipCountry":"MX","ShipAddress":"36 Russell Junction","ShipName":"Glover Group","OrderDate":"12/16/2016","TotalPayment":"$686632.91","Status":2,"Type":1}]},\n{"RecordID":167,"FirstName":"Chickie","LastName":"Waulker","Company":"Trudeo","Email":"cwaulker4m@harvard.edu","Phone":"604-747-5710","Status":1,"Type":1,"Orders":[{"OrderID":"50580-198","ShipCountry":"CN","ShipAddress":"72 Texas Hill","ShipName":"Parker, Farrell and Hilpert","OrderDate":"9/18/2016","TotalPayment":"$170627.02","Status":6,"Type":3},{"OrderID":"54973-3114","ShipCountry":"CA","ShipAddress":"88 Pierstorff Center","ShipName":"Bahringer, King and Casper","OrderDate":"9/7/2017","TotalPayment":"$752875.53","Status":2,"Type":1},{"OrderID":"49897-160","ShipCountry":"PT","ShipAddress":"7 Coolidge Street","ShipName":"Gottlieb, Daugherty and Von","OrderDate":"4/23/2017","TotalPayment":"$981942.07","Status":5,"Type":2},{"OrderID":"50436-6579","ShipCountry":"AZ","ShipAddress":"48413 Mallory Park","ShipName":"Funk-Wisozk","OrderDate":"3/16/2017","TotalPayment":"$1137530.44","Status":1,"Type":3},{"OrderID":"17630-2002","ShipCountry":"BA","ShipAddress":"8 Moose Place","ShipName":"Satterfield Inc","OrderDate":"8/27/2017","TotalPayment":"$1114487.32","Status":6,"Type":2},{"OrderID":"0517-0132","ShipCountry":"ID","ShipAddress":"060 Reinke Trail","ShipName":"Daniel Inc","OrderDate":"5/20/2016","TotalPayment":"$222095.28","Status":3,"Type":1},{"OrderID":"62584-747","ShipCountry":"AR","ShipAddress":"6350 Longview Plaza","ShipName":"Ebert-Runolfsson","OrderDate":"3/11/2016","TotalPayment":"$498777.40","Status":5,"Type":2},{"OrderID":"55910-105","ShipCountry":"PL","ShipAddress":"11872 Orin Alley","ShipName":"Davis LLC","OrderDate":"7/14/2017","TotalPayment":"$351937.58","Status":3,"Type":1},{"OrderID":"61543-2285","ShipCountry":"US","ShipAddress":"02070 Aberg Park","ShipName":"Zboncak Inc","OrderDate":"6/10/2017","TotalPayment":"$1013232.84","Status":4,"Type":2},{"OrderID":"59762-0047","ShipCountry":"PH","ShipAddress":"88498 Division Plaza","ShipName":"Bernier, Hettinger and Bogan","OrderDate":"12/20/2017","TotalPayment":"$522271.08","Status":2,"Type":2},{"OrderID":"68703-116","ShipCountry":"VE","ShipAddress":"0 Acker Avenue","ShipName":"Watsica, Marquardt and Roob","OrderDate":"8/14/2016","TotalPayment":"$1037635.67","Status":3,"Type":1},{"OrderID":"35356-050","ShipCountry":"BR","ShipAddress":"8 Brickson Park Trail","ShipName":"Streich-Balistreri","OrderDate":"11/16/2016","TotalPayment":"$155850.02","Status":1,"Type":2},{"OrderID":"68968-6625","ShipCountry":"ID","ShipAddress":"94766 Mayfield Circle","ShipName":"Oberbrunner Group","OrderDate":"5/6/2017","TotalPayment":"$212860.39","Status":2,"Type":2},{"OrderID":"0006-0711","ShipCountry":"GT","ShipAddress":"4557 Gulseth Trail","ShipName":"Gleichner, Ratke and Crist","OrderDate":"9/16/2016","TotalPayment":"$1052041.03","Status":1,"Type":2},{"OrderID":"55154-2058","ShipCountry":"RU","ShipAddress":"009 Mayfield Drive","ShipName":"Jenkins-Murray","OrderDate":"4/11/2016","TotalPayment":"$618296.50","Status":1,"Type":2},{"OrderID":"43857-0246","ShipCountry":"ID","ShipAddress":"896 Independence Center","ShipName":"Collins Inc","OrderDate":"12/6/2017","TotalPayment":"$478480.50","Status":2,"Type":3},{"OrderID":"55714-4485","ShipCountry":"BD","ShipAddress":"572 Lunder Hill","ShipName":"Schmidt-Kozey","OrderDate":"10/7/2017","TotalPayment":"$835269.81","Status":3,"Type":3}]},\n{"RecordID":168,"FirstName":"Emilie","LastName":"Cornall","Company":"Kwinu","Email":"ecornall4n@bloomberg.com","Phone":"880-221-7943","Status":6,"Type":2,"Orders":[{"OrderID":"0224-1801","ShipCountry":"CN","ShipAddress":"5840 Coolidge Hill","ShipName":"Larson, O\'Connell and Swaniawski","OrderDate":"2/25/2016","TotalPayment":"$94068.20","Status":1,"Type":1},{"OrderID":"68682-370","ShipCountry":"RU","ShipAddress":"9 Graceland Center","ShipName":"Runolfsson LLC","OrderDate":"9/23/2016","TotalPayment":"$286740.72","Status":5,"Type":2},{"OrderID":"36987-1337","ShipCountry":"BO","ShipAddress":"7 Myrtle Hill","ShipName":"Kassulke-Kessler","OrderDate":"5/11/2016","TotalPayment":"$731389.69","Status":2,"Type":3},{"OrderID":"16590-659","ShipCountry":"CN","ShipAddress":"0401 Iowa Junction","ShipName":"Ernser-Dare","OrderDate":"6/28/2017","TotalPayment":"$1198633.68","Status":4,"Type":1},{"OrderID":"58406-455","ShipCountry":"RU","ShipAddress":"39098 Carberry Circle","ShipName":"O\'Conner-Walsh","OrderDate":"2/1/2016","TotalPayment":"$899693.10","Status":4,"Type":1},{"OrderID":"51346-227","ShipCountry":"PH","ShipAddress":"65450 Meadow Vale Trail","ShipName":"Eichmann-Hagenes","OrderDate":"6/13/2017","TotalPayment":"$621045.95","Status":1,"Type":2},{"OrderID":"0378-3131","ShipCountry":"IQ","ShipAddress":"07655 Talmadge Point","ShipName":"Mayer, Gutmann and Conroy","OrderDate":"2/2/2017","TotalPayment":"$1040441.87","Status":6,"Type":2},{"OrderID":"11559-021","ShipCountry":"CN","ShipAddress":"28 Morning Hill","ShipName":"Halvorson-Mueller","OrderDate":"9/22/2016","TotalPayment":"$802737.68","Status":1,"Type":3}]},\n{"RecordID":169,"FirstName":"Ines","LastName":"Perrin","Company":"Eazzy","Email":"iperrin4o@census.gov","Phone":"657-453-0202","Status":6,"Type":1,"Orders":[{"OrderID":"41167-4131","ShipCountry":"PL","ShipAddress":"73 Westport Hill","ShipName":"Blick, Gislason and Hoeger","OrderDate":"8/25/2017","TotalPayment":"$446772.45","Status":1,"Type":1},{"OrderID":"49349-096","ShipCountry":"FR","ShipAddress":"2914 Graceland Circle","ShipName":"Ortiz Inc","OrderDate":"1/7/2016","TotalPayment":"$767245.71","Status":2,"Type":1},{"OrderID":"52533-005","ShipCountry":"SY","ShipAddress":"1 Tomscot Court","ShipName":"Hoeger-Zemlak","OrderDate":"10/13/2016","TotalPayment":"$1030940.40","Status":5,"Type":1},{"OrderID":"50730-8204","ShipCountry":"GB","ShipAddress":"6546 Roth Parkway","ShipName":"Kling-Koss","OrderDate":"8/23/2016","TotalPayment":"$282596.70","Status":5,"Type":3},{"OrderID":"0051-0023","ShipCountry":"ID","ShipAddress":"77 Armistice Lane","ShipName":"Lueilwitz-Towne","OrderDate":"7/5/2016","TotalPayment":"$347616.00","Status":4,"Type":1},{"OrderID":"44009-801","ShipCountry":"FR","ShipAddress":"5250 Spohn Place","ShipName":"Russel, Wuckert and White","OrderDate":"3/19/2016","TotalPayment":"$192741.96","Status":5,"Type":3},{"OrderID":"68180-722","ShipCountry":"SI","ShipAddress":"02022 Oxford Place","ShipName":"Yost-Metz","OrderDate":"2/10/2016","TotalPayment":"$879278.77","Status":2,"Type":3},{"OrderID":"13537-423","ShipCountry":"GH","ShipAddress":"48440 Maple Wood Parkway","ShipName":"Oberbrunner-Halvorson","OrderDate":"3/20/2016","TotalPayment":"$534092.54","Status":6,"Type":1},{"OrderID":"36987-1444","ShipCountry":"CN","ShipAddress":"68 Old Gate Crossing","ShipName":"Zboncak and Sons","OrderDate":"1/3/2017","TotalPayment":"$1179692.75","Status":2,"Type":2},{"OrderID":"55154-1347","ShipCountry":"CN","ShipAddress":"79 Magdeline Avenue","ShipName":"Macejkovic and Sons","OrderDate":"6/30/2016","TotalPayment":"$389251.26","Status":3,"Type":2},{"OrderID":"57691-110","ShipCountry":"ID","ShipAddress":"31 Gulseth Pass","ShipName":"Keeling-Veum","OrderDate":"7/9/2017","TotalPayment":"$89418.52","Status":4,"Type":1},{"OrderID":"62211-338","ShipCountry":"PL","ShipAddress":"1 Donald Park","ShipName":"Ortiz-Bruen","OrderDate":"12/13/2017","TotalPayment":"$756326.18","Status":4,"Type":3},{"OrderID":"42291-655","ShipCountry":"CN","ShipAddress":"94927 Bashford Hill","ShipName":"Aufderhar and Sons","OrderDate":"8/3/2017","TotalPayment":"$872891.74","Status":6,"Type":3},{"OrderID":"21130-556","ShipCountry":"GR","ShipAddress":"5712 Swallow Junction","ShipName":"Lueilwitz Group","OrderDate":"4/12/2016","TotalPayment":"$42766.15","Status":2,"Type":2},{"OrderID":"63830-221","ShipCountry":"CN","ShipAddress":"42366 Division Place","ShipName":"Brakus, McCullough and Brakus","OrderDate":"6/14/2017","TotalPayment":"$385273.00","Status":6,"Type":3},{"OrderID":"57520-0528","ShipCountry":"ZA","ShipAddress":"088 Carberry Place","ShipName":"Torp Group","OrderDate":"1/11/2017","TotalPayment":"$356929.21","Status":5,"Type":1}]},\n{"RecordID":170,"FirstName":"Andras","LastName":"Bunn","Company":"Topdrive","Email":"abunn4p@exblog.jp","Phone":"109-143-1017","Status":2,"Type":3,"Orders":[{"OrderID":"11559-769","ShipCountry":"CN","ShipAddress":"2 Mallory Crossing","ShipName":"Hand-Hills","OrderDate":"8/18/2016","TotalPayment":"$50424.46","Status":3,"Type":2},{"OrderID":"0173-0478","ShipCountry":"RU","ShipAddress":"126 Lakeland Way","ShipName":"Walsh, Boyer and Eichmann","OrderDate":"2/8/2016","TotalPayment":"$338335.60","Status":6,"Type":1},{"OrderID":"0113-0578","ShipCountry":"PL","ShipAddress":"046 Browning Pass","ShipName":"Leannon-Haley","OrderDate":"7/26/2016","TotalPayment":"$158095.36","Status":6,"Type":2},{"OrderID":"36987-2396","ShipCountry":"CN","ShipAddress":"18 Mcbride Park","ShipName":"Hoeger, Spencer and Ryan","OrderDate":"7/25/2017","TotalPayment":"$1024111.07","Status":1,"Type":1},{"OrderID":"54868-4126","ShipCountry":"BR","ShipAddress":"8 Eastwood Court","ShipName":"Langworth, Gerhold and Kessler","OrderDate":"2/20/2017","TotalPayment":"$415616.18","Status":5,"Type":1},{"OrderID":"50730-8744","ShipCountry":"SI","ShipAddress":"25 Bunting Hill","ShipName":"Tremblay, Feil and Krajcik","OrderDate":"8/7/2016","TotalPayment":"$384724.70","Status":4,"Type":2},{"OrderID":"59115-044","ShipCountry":"ID","ShipAddress":"59 Straubel Point","ShipName":"Sawayn-Jaskolski","OrderDate":"4/15/2016","TotalPayment":"$36235.31","Status":4,"Type":2},{"OrderID":"0781-1496","ShipCountry":"ID","ShipAddress":"5 Pleasure Drive","ShipName":"Jakubowski, Deckow and Carroll","OrderDate":"4/24/2017","TotalPayment":"$1040711.02","Status":3,"Type":1},{"OrderID":"52125-099","ShipCountry":"RU","ShipAddress":"96327 Milwaukee Park","ShipName":"Koch-Durgan","OrderDate":"9/6/2017","TotalPayment":"$649409.15","Status":2,"Type":1},{"OrderID":"98132-176","ShipCountry":"ID","ShipAddress":"715 Burning Wood Pass","ShipName":"Schultz and Sons","OrderDate":"12/31/2016","TotalPayment":"$369723.81","Status":1,"Type":1},{"OrderID":"21695-662","ShipCountry":"AL","ShipAddress":"3136 Algoma Point","ShipName":"Ratke Group","OrderDate":"7/14/2016","TotalPayment":"$682917.61","Status":5,"Type":3},{"OrderID":"60760-141","ShipCountry":"IR","ShipAddress":"1 Mcbride Parkway","ShipName":"Lueilwitz-Homenick","OrderDate":"7/19/2016","TotalPayment":"$984551.60","Status":1,"Type":2},{"OrderID":"10454-712","ShipCountry":"CN","ShipAddress":"46981 Moland Point","ShipName":"Jacobson, O\'Connell and Farrell","OrderDate":"1/22/2016","TotalPayment":"$210831.37","Status":3,"Type":3},{"OrderID":"68788-9500","ShipCountry":"US","ShipAddress":"22 Luster Parkway","ShipName":"Keeling Group","OrderDate":"10/14/2017","TotalPayment":"$360797.72","Status":3,"Type":1},{"OrderID":"65044-2622","ShipCountry":"NG","ShipAddress":"3294 Dayton Terrace","ShipName":"Spencer Inc","OrderDate":"4/25/2016","TotalPayment":"$427552.81","Status":1,"Type":2},{"OrderID":"64942-1114","ShipCountry":"CN","ShipAddress":"293 Clarendon Drive","ShipName":"Hammes, Kirlin and Hyatt","OrderDate":"5/7/2016","TotalPayment":"$1195316.37","Status":3,"Type":1},{"OrderID":"76439-260","ShipCountry":"CZ","ShipAddress":"427 Nancy Hill","ShipName":"Koch LLC","OrderDate":"1/13/2016","TotalPayment":"$271708.15","Status":2,"Type":3},{"OrderID":"59779-216","ShipCountry":"CA","ShipAddress":"95 Lakewood Gardens Avenue","ShipName":"Upton-Cummings","OrderDate":"4/25/2016","TotalPayment":"$450732.04","Status":6,"Type":3},{"OrderID":"49349-276","ShipCountry":"JP","ShipAddress":"8062 Dahle Avenue","ShipName":"Stark LLC","OrderDate":"5/12/2017","TotalPayment":"$497994.65","Status":3,"Type":3},{"OrderID":"63629-1263","ShipCountry":"TH","ShipAddress":"73140 Fordem Road","ShipName":"Haley Inc","OrderDate":"2/9/2017","TotalPayment":"$307355.83","Status":6,"Type":2}]},\n{"RecordID":171,"FirstName":"Morse","LastName":"Chappelle","Company":"Browsebug","Email":"mchappelle4q@amazonaws.com","Phone":"349-963-7857","Status":2,"Type":3,"Orders":[{"OrderID":"51389-252","ShipCountry":"ID","ShipAddress":"7492 David Junction","ShipName":"Heaney, Mitchell and Muller","OrderDate":"5/19/2016","TotalPayment":"$293902.08","Status":2,"Type":3},{"OrderID":"13734-132","ShipCountry":"CN","ShipAddress":"43 Sutherland Circle","ShipName":"Thompson-Beahan","OrderDate":"1/12/2016","TotalPayment":"$1027999.97","Status":4,"Type":1},{"OrderID":"0378-5425","ShipCountry":"VE","ShipAddress":"1697 Hermina Park","ShipName":"Langworth LLC","OrderDate":"9/17/2016","TotalPayment":"$724689.47","Status":5,"Type":1},{"OrderID":"16590-659","ShipCountry":"FM","ShipAddress":"0 Karstens Street","ShipName":"Ledner LLC","OrderDate":"11/5/2017","TotalPayment":"$1100721.16","Status":2,"Type":3},{"OrderID":"0615-7709","ShipCountry":"ID","ShipAddress":"43 Buell Point","ShipName":"Bayer, Upton and Schulist","OrderDate":"1/9/2017","TotalPayment":"$167476.49","Status":1,"Type":1},{"OrderID":"55714-4551","ShipCountry":"CN","ShipAddress":"8171 Fremont Center","ShipName":"Abbott-Upton","OrderDate":"1/3/2016","TotalPayment":"$426569.72","Status":3,"Type":3},{"OrderID":"37012-470","ShipCountry":"CN","ShipAddress":"171 Carey Junction","ShipName":"Kshlerin-Gislason","OrderDate":"2/18/2016","TotalPayment":"$581328.46","Status":4,"Type":2},{"OrderID":"11673-245","ShipCountry":"PE","ShipAddress":"3 Eggendart Place","ShipName":"Kihn LLC","OrderDate":"9/15/2017","TotalPayment":"$895300.98","Status":1,"Type":1},{"OrderID":"36000-064","ShipCountry":"ID","ShipAddress":"542 Park Meadow Trail","ShipName":"Watsica, O\'Conner and Wolf","OrderDate":"3/23/2016","TotalPayment":"$149028.00","Status":5,"Type":2},{"OrderID":"0409-1782","ShipCountry":"HR","ShipAddress":"90 Victoria Avenue","ShipName":"Muller and Sons","OrderDate":"6/22/2017","TotalPayment":"$1147703.99","Status":5,"Type":2},{"OrderID":"60505-3723","ShipCountry":"ID","ShipAddress":"2622 Ridgeview Alley","ShipName":"Leuschke, Renner and King","OrderDate":"6/11/2016","TotalPayment":"$827938.64","Status":2,"Type":2}]},\n{"RecordID":172,"FirstName":"Son","LastName":"Leopold","Company":"Mybuzz","Email":"sleopold4r@istockphoto.com","Phone":"861-380-7717","Status":4,"Type":1,"Orders":[{"OrderID":"55111-688","ShipCountry":"MD","ShipAddress":"0027 Macpherson Way","ShipName":"Conn-Trantow","OrderDate":"5/16/2016","TotalPayment":"$718633.19","Status":3,"Type":2},{"OrderID":"41250-090","ShipCountry":"BR","ShipAddress":"8 Bluejay Court","ShipName":"Herzog, Russel and Wuckert","OrderDate":"5/5/2017","TotalPayment":"$461605.92","Status":2,"Type":3},{"OrderID":"68330-001","ShipCountry":"AR","ShipAddress":"8045 Buell Way","ShipName":"Wiza Group","OrderDate":"6/4/2017","TotalPayment":"$51632.61","Status":5,"Type":1},{"OrderID":"11822-0416","ShipCountry":"ID","ShipAddress":"17306 Nevada Pass","ShipName":"Wiegand LLC","OrderDate":"12/18/2016","TotalPayment":"$1119947.34","Status":4,"Type":2},{"OrderID":"50332-0127","ShipCountry":"CN","ShipAddress":"918 Mendota Hill","ShipName":"Hane Group","OrderDate":"6/8/2017","TotalPayment":"$1030059.78","Status":1,"Type":2},{"OrderID":"43269-759","ShipCountry":"RU","ShipAddress":"06 Mifflin Alley","ShipName":"Johnson-Reichert","OrderDate":"4/24/2017","TotalPayment":"$626588.91","Status":2,"Type":1},{"OrderID":"0378-3422","ShipCountry":"PS","ShipAddress":"019 Gulseth Park","ShipName":"Kling LLC","OrderDate":"6/4/2016","TotalPayment":"$414907.81","Status":2,"Type":1},{"OrderID":"54868-3049","ShipCountry":"SL","ShipAddress":"50 La Follette Point","ShipName":"Schuster, Stamm and Kiehn","OrderDate":"6/28/2016","TotalPayment":"$1074568.16","Status":6,"Type":3},{"OrderID":"60681-1407","ShipCountry":"CN","ShipAddress":"1 Maywood Court","ShipName":"Haley Group","OrderDate":"6/23/2017","TotalPayment":"$389817.15","Status":5,"Type":1},{"OrderID":"49349-892","ShipCountry":"RU","ShipAddress":"081 Birchwood Court","ShipName":"Torphy and Sons","OrderDate":"10/18/2016","TotalPayment":"$863341.50","Status":3,"Type":2},{"OrderID":"10544-219","ShipCountry":"CI","ShipAddress":"816 Everett Park","ShipName":"Streich Inc","OrderDate":"10/28/2017","TotalPayment":"$850148.42","Status":2,"Type":1},{"OrderID":"55154-4622","ShipCountry":"CN","ShipAddress":"87 Green Point","ShipName":"Kautzer-Reynolds","OrderDate":"1/23/2016","TotalPayment":"$34839.56","Status":3,"Type":2},{"OrderID":"64169-001","ShipCountry":"CF","ShipAddress":"924 Paget Drive","ShipName":"Sporer-Boehm","OrderDate":"6/17/2017","TotalPayment":"$323272.13","Status":2,"Type":1},{"OrderID":"55289-007","ShipCountry":"CN","ShipAddress":"840 1st Park","ShipName":"Hyatt-Funk","OrderDate":"10/1/2016","TotalPayment":"$397260.29","Status":1,"Type":3},{"OrderID":"37808-455","ShipCountry":"MY","ShipAddress":"9 Northridge Road","ShipName":"Bergstrom, Gutmann and Gorczany","OrderDate":"1/23/2017","TotalPayment":"$33863.33","Status":3,"Type":3},{"OrderID":"58411-105","ShipCountry":"CV","ShipAddress":"16208 Derek Alley","ShipName":"Renner and Sons","OrderDate":"12/21/2016","TotalPayment":"$905307.17","Status":3,"Type":2},{"OrderID":"59779-190","ShipCountry":"AM","ShipAddress":"94 Buena Vista Center","ShipName":"Huel, Toy and O\'Conner","OrderDate":"11/26/2017","TotalPayment":"$582004.47","Status":5,"Type":1},{"OrderID":"65044-3596","ShipCountry":"CN","ShipAddress":"65 Troy Alley","ShipName":"Keeling LLC","OrderDate":"5/28/2016","TotalPayment":"$33410.70","Status":5,"Type":2}]},\n{"RecordID":173,"FirstName":"Jimmie","LastName":"O\' Mahony","Company":"Tambee","Email":"jomahony4s@pbs.org","Phone":"359-797-4879","Status":5,"Type":3,"Orders":[{"OrderID":"49685-928","ShipCountry":"TT","ShipAddress":"66 International Park","ShipName":"Hoeger-Cremin","OrderDate":"11/6/2017","TotalPayment":"$1014109.67","Status":3,"Type":3},{"OrderID":"0904-6068","ShipCountry":"PH","ShipAddress":"83 Utah Plaza","ShipName":"Sporer Inc","OrderDate":"12/28/2017","TotalPayment":"$69215.93","Status":4,"Type":2},{"OrderID":"13734-125","ShipCountry":"ID","ShipAddress":"4 Larry Way","ShipName":"Sauer and Sons","OrderDate":"2/25/2016","TotalPayment":"$653446.03","Status":3,"Type":3},{"OrderID":"11673-145","ShipCountry":"GR","ShipAddress":"3 Express Junction","ShipName":"Buckridge-Zulauf","OrderDate":"2/2/2016","TotalPayment":"$554033.58","Status":1,"Type":3},{"OrderID":"0641-6142","ShipCountry":"ID","ShipAddress":"31 3rd Parkway","ShipName":"Jerde, Morissette and Fay","OrderDate":"11/26/2017","TotalPayment":"$543016.78","Status":5,"Type":1},{"OrderID":"0025-2752","ShipCountry":"PH","ShipAddress":"424 Golf Course Place","ShipName":"Schinner and Sons","OrderDate":"7/26/2016","TotalPayment":"$501435.49","Status":3,"Type":3},{"OrderID":"76049-877","ShipCountry":"CN","ShipAddress":"2054 Artisan Crossing","ShipName":"McCullough, Witting and Ortiz","OrderDate":"6/25/2017","TotalPayment":"$801187.22","Status":5,"Type":1},{"OrderID":"12634-943","ShipCountry":"RU","ShipAddress":"42 Eastlawn Place","ShipName":"Wilkinson, Padberg and Herzog","OrderDate":"12/31/2016","TotalPayment":"$97694.24","Status":5,"Type":1},{"OrderID":"36987-2182","ShipCountry":"BR","ShipAddress":"420 Dennis Parkway","ShipName":"Boyer-Kiehn","OrderDate":"7/27/2017","TotalPayment":"$85939.32","Status":1,"Type":3},{"OrderID":"63286-0134","ShipCountry":"CN","ShipAddress":"008 Summer Ridge Trail","ShipName":"Morissette, Marks and Mills","OrderDate":"8/15/2017","TotalPayment":"$345252.34","Status":3,"Type":3},{"OrderID":"0904-5354","ShipCountry":"TJ","ShipAddress":"83 Tennessee Park","ShipName":"Mayert, Casper and Thiel","OrderDate":"4/30/2017","TotalPayment":"$669209.27","Status":4,"Type":1},{"OrderID":"0009-0090","ShipCountry":"US","ShipAddress":"5 Montana Way","ShipName":"Grant-Hackett","OrderDate":"5/28/2017","TotalPayment":"$531761.29","Status":5,"Type":2},{"OrderID":"65974-163","ShipCountry":"IL","ShipAddress":"56628 Havey Hill","ShipName":"Zboncak Group","OrderDate":"7/22/2017","TotalPayment":"$1180652.03","Status":4,"Type":3},{"OrderID":"23155-201","ShipCountry":"ID","ShipAddress":"7 Huxley Place","ShipName":"Christiansen Group","OrderDate":"8/29/2016","TotalPayment":"$452179.59","Status":5,"Type":1},{"OrderID":"21695-740","ShipCountry":"RU","ShipAddress":"23184 Elgar Court","ShipName":"Bosco LLC","OrderDate":"11/2/2017","TotalPayment":"$708204.17","Status":1,"Type":1},{"OrderID":"63629-4719","ShipCountry":"FR","ShipAddress":"7602 Kingsford Place","ShipName":"Rippin-Zboncak","OrderDate":"3/15/2016","TotalPayment":"$54783.14","Status":5,"Type":2}]},\n{"RecordID":174,"FirstName":"Paquito","LastName":"Culshew","Company":"Dabshots","Email":"pculshew4t@studiopress.com","Phone":"650-664-5023","Status":3,"Type":2,"Orders":[{"OrderID":"66336-238","ShipCountry":"CN","ShipAddress":"87 Bellgrove Place","ShipName":"Jacobs Inc","OrderDate":"12/9/2016","TotalPayment":"$971266.16","Status":4,"Type":2},{"OrderID":"56136-007","ShipCountry":"US","ShipAddress":"332 Basil Court","ShipName":"Ritchie and Sons","OrderDate":"1/23/2016","TotalPayment":"$246100.97","Status":1,"Type":3},{"OrderID":"10889-111","ShipCountry":"PT","ShipAddress":"967 Troy Parkway","ShipName":"Blanda-Schmeler","OrderDate":"9/23/2016","TotalPayment":"$750249.44","Status":4,"Type":3},{"OrderID":"0187-3758","ShipCountry":"ID","ShipAddress":"80859 Petterle Trail","ShipName":"Pouros, Kassulke and Muller","OrderDate":"7/19/2017","TotalPayment":"$471326.66","Status":2,"Type":1},{"OrderID":"46581-730","ShipCountry":"SE","ShipAddress":"2231 Mosinee Road","ShipName":"Hamill-Gutmann","OrderDate":"5/17/2017","TotalPayment":"$1010490.32","Status":5,"Type":3},{"OrderID":"0591-3770","ShipCountry":"PT","ShipAddress":"3 Pleasure Circle","ShipName":"Kertzmann and Sons","OrderDate":"8/2/2017","TotalPayment":"$351166.96","Status":4,"Type":2},{"OrderID":"49738-176","ShipCountry":"ID","ShipAddress":"8 Redwing Trail","ShipName":"Boyer-Prohaska","OrderDate":"7/7/2016","TotalPayment":"$618830.48","Status":2,"Type":1},{"OrderID":"54569-0289","ShipCountry":"CN","ShipAddress":"5 Sachs Avenue","ShipName":"Prohaska Inc","OrderDate":"9/11/2016","TotalPayment":"$22270.22","Status":5,"Type":3},{"OrderID":"0462-0277","ShipCountry":"GR","ShipAddress":"833 Dovetail Avenue","ShipName":"Yundt-Feest","OrderDate":"7/29/2016","TotalPayment":"$1073296.27","Status":5,"Type":3},{"OrderID":"24794-107","ShipCountry":"CN","ShipAddress":"77 Vahlen Hill","ShipName":"Bruen-Bergnaum","OrderDate":"7/13/2017","TotalPayment":"$186156.15","Status":5,"Type":3},{"OrderID":"30142-532","ShipCountry":"MX","ShipAddress":"3165 Northwestern Circle","ShipName":"Pacocha, Gislason and McLaughlin","OrderDate":"11/3/2016","TotalPayment":"$1031872.61","Status":3,"Type":3},{"OrderID":"66685-1012","ShipCountry":"RU","ShipAddress":"12791 Paget Terrace","ShipName":"Nicolas, Harber and Gislason","OrderDate":"6/8/2017","TotalPayment":"$181793.28","Status":4,"Type":2},{"OrderID":"32909-186","ShipCountry":"PL","ShipAddress":"17388 Anthes Center","ShipName":"Shields Inc","OrderDate":"11/27/2016","TotalPayment":"$931269.98","Status":5,"Type":2},{"OrderID":"0338-0125","ShipCountry":"AL","ShipAddress":"65840 Portage Lane","ShipName":"Koepp LLC","OrderDate":"1/14/2016","TotalPayment":"$110811.30","Status":6,"Type":1},{"OrderID":"44911-0065","ShipCountry":"JP","ShipAddress":"477 Stoughton Crossing","ShipName":"Rempel-Nader","OrderDate":"1/10/2016","TotalPayment":"$45942.92","Status":4,"Type":2},{"OrderID":"36987-1055","ShipCountry":"IR","ShipAddress":"371 Rieder Avenue","ShipName":"Dibbert Inc","OrderDate":"7/18/2017","TotalPayment":"$815541.11","Status":3,"Type":3},{"OrderID":"67510-0665","ShipCountry":"CN","ShipAddress":"4 Tennyson Road","ShipName":"Schaden LLC","OrderDate":"9/7/2017","TotalPayment":"$799690.89","Status":4,"Type":2},{"OrderID":"43063-012","ShipCountry":"LB","ShipAddress":"978 Northview Park","ShipName":"Marquardt, Considine and Toy","OrderDate":"3/28/2016","TotalPayment":"$1098157.59","Status":5,"Type":1},{"OrderID":"0591-3760","ShipCountry":"RU","ShipAddress":"7404 Arrowood Terrace","ShipName":"Brekke Inc","OrderDate":"12/22/2017","TotalPayment":"$727182.56","Status":4,"Type":2},{"OrderID":"43105-1000","ShipCountry":"CN","ShipAddress":"2571 Logan Park","ShipName":"Reinger Group","OrderDate":"4/10/2016","TotalPayment":"$261815.99","Status":3,"Type":3}]},\n{"RecordID":175,"FirstName":"Susie","LastName":"Hammonds","Company":"Meezzy","Email":"shammonds4u@bandcamp.com","Phone":"870-264-6213","Status":6,"Type":2,"Orders":[{"OrderID":"11822-0499","ShipCountry":"RU","ShipAddress":"8314 Waubesa Lane","ShipName":"Little Group","OrderDate":"9/2/2017","TotalPayment":"$1141960.50","Status":5,"Type":1},{"OrderID":"68382-537","ShipCountry":"RU","ShipAddress":"54824 Redwing Avenue","ShipName":"Schroeder, Douglas and Rempel","OrderDate":"2/4/2017","TotalPayment":"$242880.12","Status":6,"Type":1},{"OrderID":"49288-0878","ShipCountry":"HU","ShipAddress":"153 Birchwood Trail","ShipName":"Cronin LLC","OrderDate":"5/14/2017","TotalPayment":"$1006286.96","Status":1,"Type":3},{"OrderID":"56062-422","ShipCountry":"PL","ShipAddress":"710 Tennyson Center","ShipName":"Kohler, Lakin and Kassulke","OrderDate":"8/26/2017","TotalPayment":"$38701.98","Status":2,"Type":1},{"OrderID":"50268-330","ShipCountry":"CN","ShipAddress":"53625 Twin Pines Street","ShipName":"Thompson-Lueilwitz","OrderDate":"1/1/2016","TotalPayment":"$298152.32","Status":3,"Type":1},{"OrderID":"68016-135","ShipCountry":"MT","ShipAddress":"59 Drewry Avenue","ShipName":"Pouros-Volkman","OrderDate":"4/8/2016","TotalPayment":"$207620.88","Status":4,"Type":1},{"OrderID":"0781-5311","ShipCountry":"ID","ShipAddress":"54 High Crossing Crossing","ShipName":"Marvin, Gottlieb and Daugherty","OrderDate":"7/29/2017","TotalPayment":"$1008707.62","Status":4,"Type":1},{"OrderID":"60505-0686","ShipCountry":"PH","ShipAddress":"181 Vera Pass","ShipName":"Koelpin-Schuppe","OrderDate":"8/30/2016","TotalPayment":"$615135.93","Status":6,"Type":3},{"OrderID":"17312-027","ShipCountry":"CD","ShipAddress":"3248 Montana Parkway","ShipName":"Grady-Ratke","OrderDate":"11/11/2017","TotalPayment":"$506793.39","Status":5,"Type":2},{"OrderID":"0641-6143","ShipCountry":"ID","ShipAddress":"86 Rigney Circle","ShipName":"Nolan, Cruickshank and Senger","OrderDate":"3/30/2016","TotalPayment":"$842592.10","Status":4,"Type":1},{"OrderID":"55301-370","ShipCountry":"AZ","ShipAddress":"3087 Myrtle Drive","ShipName":"Walsh, O\'Connell and Weber","OrderDate":"11/23/2017","TotalPayment":"$128976.50","Status":4,"Type":3},{"OrderID":"49288-0650","ShipCountry":"RU","ShipAddress":"660 Merrick Alley","ShipName":"Heidenreich-Wilkinson","OrderDate":"12/19/2017","TotalPayment":"$808851.09","Status":1,"Type":1},{"OrderID":"43857-0300","ShipCountry":"SE","ShipAddress":"262 Grasskamp Plaza","ShipName":"Jacobi-Boehm","OrderDate":"9/19/2016","TotalPayment":"$928229.29","Status":6,"Type":3},{"OrderID":"33261-817","ShipCountry":"ID","ShipAddress":"2562 Stoughton Parkway","ShipName":"Lakin-Hane","OrderDate":"5/31/2017","TotalPayment":"$892650.16","Status":6,"Type":1},{"OrderID":"52000-013","ShipCountry":"BR","ShipAddress":"85 Macpherson Street","ShipName":"Altenwerth Group","OrderDate":"8/25/2016","TotalPayment":"$619419.57","Status":5,"Type":2},{"OrderID":"17856-0067","ShipCountry":"US","ShipAddress":"83319 Almo Circle","ShipName":"Kuhn LLC","OrderDate":"11/17/2017","TotalPayment":"$39455.62","Status":6,"Type":1},{"OrderID":"14783-327","ShipCountry":"BF","ShipAddress":"62396 Nobel Circle","ShipName":"Ullrich-Lakin","OrderDate":"10/2/2017","TotalPayment":"$1092159.14","Status":2,"Type":2}]},\n{"RecordID":176,"FirstName":"Allina","LastName":"Hoggin","Company":"Zoomcast","Email":"ahoggin4v@cbc.ca","Phone":"263-941-2673","Status":4,"Type":1,"Orders":[{"OrderID":"59779-991","ShipCountry":"BR","ShipAddress":"4511 Bunting Parkway","ShipName":"Hodkiewicz, Dicki and Ullrich","OrderDate":"7/15/2016","TotalPayment":"$844313.61","Status":3,"Type":1},{"OrderID":"49349-722","ShipCountry":"FR","ShipAddress":"1 Center Plaza","ShipName":"Barrows-Ryan","OrderDate":"11/15/2016","TotalPayment":"$634811.61","Status":4,"Type":1},{"OrderID":"68258-3998","ShipCountry":"TH","ShipAddress":"520 Schurz Terrace","ShipName":"Turcotte and Sons","OrderDate":"7/14/2017","TotalPayment":"$174215.94","Status":2,"Type":1},{"OrderID":"59779-932","ShipCountry":"AF","ShipAddress":"2 Schlimgen Park","ShipName":"Bashirian, Kuhn and Willms","OrderDate":"2/13/2017","TotalPayment":"$260788.46","Status":6,"Type":2},{"OrderID":"0069-0104","ShipCountry":"CO","ShipAddress":"0560 Coleman Road","ShipName":"Will and Sons","OrderDate":"5/1/2016","TotalPayment":"$177986.52","Status":6,"Type":2}]},\n{"RecordID":177,"FirstName":"Arlie","LastName":"Lutman","Company":"Cogidoo","Email":"alutman4w@arizona.edu","Phone":"132-288-0971","Status":4,"Type":3,"Orders":[{"OrderID":"61314-646","ShipCountry":"ID","ShipAddress":"573 Center Road","ShipName":"Barrows-Monahan","OrderDate":"2/12/2016","TotalPayment":"$746065.12","Status":2,"Type":3},{"OrderID":"76436-202","ShipCountry":"IR","ShipAddress":"4 Holmberg Parkway","ShipName":"Veum, Berge and Mraz","OrderDate":"8/28/2016","TotalPayment":"$947968.60","Status":1,"Type":3},{"OrderID":"59316-104","ShipCountry":"AR","ShipAddress":"164 Lakewood Gardens Alley","ShipName":"Bernhard Group","OrderDate":"3/16/2016","TotalPayment":"$92454.05","Status":2,"Type":3},{"OrderID":"0113-0133","ShipCountry":"US","ShipAddress":"047 Portage Junction","ShipName":"Herman-Stark","OrderDate":"1/2/2016","TotalPayment":"$39757.89","Status":6,"Type":2},{"OrderID":"43742-0207","ShipCountry":"CN","ShipAddress":"45665 Blackbird Place","ShipName":"Schuster-Hessel","OrderDate":"8/20/2016","TotalPayment":"$987460.21","Status":4,"Type":1},{"OrderID":"36987-2158","ShipCountry":"PH","ShipAddress":"8 Carberry Crossing","ShipName":"Fritsch Group","OrderDate":"9/10/2017","TotalPayment":"$1170223.68","Status":3,"Type":1},{"OrderID":"68776-1003","ShipCountry":"BR","ShipAddress":"738 Carioca Crossing","ShipName":"Bartoletti and Sons","OrderDate":"1/8/2017","TotalPayment":"$70841.40","Status":4,"Type":2},{"OrderID":"64942-1350","ShipCountry":"PT","ShipAddress":"6 Dixon Avenue","ShipName":"Satterfield Inc","OrderDate":"12/25/2016","TotalPayment":"$1089213.28","Status":6,"Type":3},{"OrderID":"59779-936","ShipCountry":"PT","ShipAddress":"2 Dunning Place","ShipName":"Brekke, Wilkinson and Steuber","OrderDate":"2/12/2016","TotalPayment":"$945072.87","Status":2,"Type":3},{"OrderID":"61919-478","ShipCountry":"PH","ShipAddress":"3567 Parkside Terrace","ShipName":"Breitenberg-Beier","OrderDate":"4/18/2016","TotalPayment":"$331148.16","Status":2,"Type":3},{"OrderID":"64616-106","ShipCountry":"PH","ShipAddress":"98935 South Way","ShipName":"Pollich LLC","OrderDate":"3/8/2017","TotalPayment":"$617009.38","Status":4,"Type":3},{"OrderID":"68085-8012","ShipCountry":"IE","ShipAddress":"26 Pankratz Terrace","ShipName":"Bosco Inc","OrderDate":"6/29/2016","TotalPayment":"$234329.79","Status":5,"Type":2},{"OrderID":"36987-1982","ShipCountry":"IE","ShipAddress":"9384 Vahlen Avenue","ShipName":"Leannon Group","OrderDate":"4/30/2016","TotalPayment":"$572993.85","Status":3,"Type":2},{"OrderID":"60905-0021","ShipCountry":"CN","ShipAddress":"56620 Bashford Circle","ShipName":"Cummings-Dickinson","OrderDate":"12/17/2016","TotalPayment":"$64867.28","Status":1,"Type":3},{"OrderID":"30142-400","ShipCountry":"UG","ShipAddress":"25411 Fordem Park","ShipName":"Feest-Considine","OrderDate":"2/2/2017","TotalPayment":"$198988.68","Status":2,"Type":1},{"OrderID":"43353-032","ShipCountry":"UA","ShipAddress":"8745 Little Fleur Lane","ShipName":"Roob Group","OrderDate":"4/19/2017","TotalPayment":"$47531.36","Status":2,"Type":2},{"OrderID":"49288-0383","ShipCountry":"ID","ShipAddress":"824 Cambridge Point","ShipName":"Beier-Jakubowski","OrderDate":"6/19/2016","TotalPayment":"$1013812.00","Status":4,"Type":2}]},\n{"RecordID":178,"FirstName":"Audie","LastName":"Anderbrugge","Company":"Yodo","Email":"aanderbrugge4x@ustream.tv","Phone":"729-903-0156","Status":6,"Type":3,"Orders":[{"OrderID":"42043-191","ShipCountry":"ET","ShipAddress":"56880 Vidon Place","ShipName":"Bashirian, Tromp and Emmerich","OrderDate":"9/30/2017","TotalPayment":"$785270.12","Status":1,"Type":2},{"OrderID":"50436-4165","ShipCountry":"RU","ShipAddress":"88 Oak Point","ShipName":"Bogan LLC","OrderDate":"2/7/2016","TotalPayment":"$564460.95","Status":5,"Type":2},{"OrderID":"57955-8325","ShipCountry":"AU","ShipAddress":"5 Fisk Crossing","ShipName":"Jast, Orn and McClure","OrderDate":"5/19/2017","TotalPayment":"$791278.10","Status":6,"Type":2},{"OrderID":"36987-2740","ShipCountry":"IR","ShipAddress":"07159 Pearson Center","ShipName":"Lemke, Goyette and Johns","OrderDate":"7/23/2017","TotalPayment":"$1025691.50","Status":1,"Type":3},{"OrderID":"42549-534","ShipCountry":"BA","ShipAddress":"8 Reinke Avenue","ShipName":"Parisian Group","OrderDate":"8/5/2016","TotalPayment":"$504209.84","Status":6,"Type":1},{"OrderID":"41163-182","ShipCountry":"DE","ShipAddress":"46 Corscot Hill","ShipName":"Maggio, Farrell and Conn","OrderDate":"11/29/2017","TotalPayment":"$574860.70","Status":1,"Type":2},{"OrderID":"16781-389","ShipCountry":"ET","ShipAddress":"806 Springview Center","ShipName":"Jakubowski-Hansen","OrderDate":"5/9/2016","TotalPayment":"$1021824.57","Status":1,"Type":2},{"OrderID":"63629-1609","ShipCountry":"MA","ShipAddress":"2 Merrick Lane","ShipName":"Weber, Nader and Abernathy","OrderDate":"3/11/2016","TotalPayment":"$1008036.37","Status":3,"Type":2},{"OrderID":"63941-159","ShipCountry":"FR","ShipAddress":"05 Spenser Park","ShipName":"Torp Group","OrderDate":"9/10/2017","TotalPayment":"$20737.54","Status":5,"Type":3}]},\n{"RecordID":179,"FirstName":"Christopher","LastName":"Caddens","Company":"Blognation","Email":"ccaddens4y@addtoany.com","Phone":"792-722-7018","Status":6,"Type":1,"Orders":[{"OrderID":"55038-002","ShipCountry":"CD","ShipAddress":"21 Cottonwood Plaza","ShipName":"Boyle-Schmidt","OrderDate":"7/30/2017","TotalPayment":"$116771.62","Status":5,"Type":1},{"OrderID":"33261-829","ShipCountry":"CN","ShipAddress":"01 Marcy Place","ShipName":"Ratke and Sons","OrderDate":"11/6/2017","TotalPayment":"$381516.38","Status":2,"Type":3},{"OrderID":"55045-3848","ShipCountry":"TZ","ShipAddress":"4 Columbus Avenue","ShipName":"Kertzmann Group","OrderDate":"6/3/2016","TotalPayment":"$1060012.65","Status":6,"Type":1},{"OrderID":"42507-611","ShipCountry":"FR","ShipAddress":"06222 Jenna Court","ShipName":"Welch-Jacobs","OrderDate":"1/18/2017","TotalPayment":"$725141.40","Status":1,"Type":2},{"OrderID":"41163-411","ShipCountry":"AU","ShipAddress":"07 Village Way","ShipName":"Murazik and Sons","OrderDate":"10/23/2016","TotalPayment":"$1122169.68","Status":6,"Type":3},{"OrderID":"52125-765","ShipCountry":"CN","ShipAddress":"7698 Packers Park","ShipName":"Anderson Group","OrderDate":"9/30/2017","TotalPayment":"$625803.70","Status":5,"Type":1},{"OrderID":"0220-9313","ShipCountry":"RS","ShipAddress":"1 8th Road","ShipName":"Turner, Williamson and Schultz","OrderDate":"2/3/2017","TotalPayment":"$119429.94","Status":1,"Type":1},{"OrderID":"67510-0156","ShipCountry":"PH","ShipAddress":"309 Hoepker Trail","ShipName":"Hansen, Schultz and Lubowitz","OrderDate":"1/4/2017","TotalPayment":"$886719.32","Status":3,"Type":3},{"OrderID":"55138-011","ShipCountry":"PT","ShipAddress":"100 Talmadge Trail","ShipName":"Reilly Group","OrderDate":"10/7/2017","TotalPayment":"$58389.62","Status":5,"Type":2},{"OrderID":"62037-833","ShipCountry":"RU","ShipAddress":"4643 Independence Lane","ShipName":"Nolan LLC","OrderDate":"11/3/2017","TotalPayment":"$1094900.10","Status":5,"Type":3},{"OrderID":"42254-220","ShipCountry":"AR","ShipAddress":"754 Utah Avenue","ShipName":"Weber, Harris and Russel","OrderDate":"10/2/2016","TotalPayment":"$428627.56","Status":6,"Type":3},{"OrderID":"61722-041","ShipCountry":"GR","ShipAddress":"898 Straubel Terrace","ShipName":"Stark LLC","OrderDate":"2/19/2016","TotalPayment":"$866711.57","Status":1,"Type":1},{"OrderID":"50114-0114","ShipCountry":"CZ","ShipAddress":"29 Luster Point","ShipName":"Cummerata Inc","OrderDate":"4/27/2016","TotalPayment":"$609914.54","Status":4,"Type":3},{"OrderID":"63029-075","ShipCountry":"CN","ShipAddress":"88097 Butternut Circle","ShipName":"Bernhard Group","OrderDate":"3/14/2016","TotalPayment":"$740252.91","Status":3,"Type":1}]},\n{"RecordID":180,"FirstName":"Lorie","LastName":"Glanton","Company":"Geba","Email":"lglanton4z@barnesandnoble.com","Phone":"468-393-7544","Status":6,"Type":3,"Orders":[{"OrderID":"13734-032","ShipCountry":"VN","ShipAddress":"05 6th Crossing","ShipName":"Vandervort-Terry","OrderDate":"1/14/2017","TotalPayment":"$592651.99","Status":4,"Type":1},{"OrderID":"61442-112","ShipCountry":"CN","ShipAddress":"600 Warner Plaza","ShipName":"Lynch Group","OrderDate":"10/16/2017","TotalPayment":"$549027.43","Status":4,"Type":1},{"OrderID":"0527-1354","ShipCountry":"PE","ShipAddress":"7 Sage Point","ShipName":"King, Leannon and Gerhold","OrderDate":"7/11/2017","TotalPayment":"$926169.45","Status":1,"Type":1},{"OrderID":"54973-3109","ShipCountry":"RU","ShipAddress":"36193 Duke Street","ShipName":"Nitzsche LLC","OrderDate":"11/14/2017","TotalPayment":"$787771.82","Status":2,"Type":1},{"OrderID":"24385-337","ShipCountry":"ID","ShipAddress":"378 Reinke Plaza","ShipName":"Robel-D\'Amore","OrderDate":"8/23/2017","TotalPayment":"$411639.39","Status":5,"Type":3},{"OrderID":"63868-939","ShipCountry":"CN","ShipAddress":"692 Crest Line Terrace","ShipName":"Sawayn LLC","OrderDate":"10/4/2016","TotalPayment":"$994330.30","Status":3,"Type":3}]},\n{"RecordID":181,"FirstName":"Gweneth","LastName":"Francescozzi","Company":"Dynazzy","Email":"gfrancescozzi50@blogspot.com","Phone":"876-651-8422","Status":6,"Type":2,"Orders":[{"OrderID":"64942-1179","ShipCountry":"BG","ShipAddress":"49379 Badeau Terrace","ShipName":"Rodriguez-Ward","OrderDate":"6/22/2016","TotalPayment":"$958387.53","Status":6,"Type":1},{"OrderID":"0270-1111","ShipCountry":"HR","ShipAddress":"5515 Banding Parkway","ShipName":"Mraz, O\'Kon and Ortiz","OrderDate":"10/4/2017","TotalPayment":"$1085803.28","Status":2,"Type":1},{"OrderID":"49349-743","ShipCountry":"RS","ShipAddress":"4 Wayridge Avenue","ShipName":"Hayes-Kihn","OrderDate":"2/14/2017","TotalPayment":"$854739.55","Status":6,"Type":1},{"OrderID":"43857-0171","ShipCountry":"ZA","ShipAddress":"4 Lyons Trail","ShipName":"Orn, Wolff and Zemlak","OrderDate":"1/9/2016","TotalPayment":"$804463.91","Status":6,"Type":1},{"OrderID":"59779-220","ShipCountry":"GH","ShipAddress":"127 Merry Center","ShipName":"Huels, Blick and Heaney","OrderDate":"12/1/2017","TotalPayment":"$288704.98","Status":3,"Type":1},{"OrderID":"37000-502","ShipCountry":"FR","ShipAddress":"62896 Northview Way","ShipName":"Bartell Group","OrderDate":"1/24/2017","TotalPayment":"$64612.99","Status":1,"Type":3},{"OrderID":"57955-4022","ShipCountry":"BR","ShipAddress":"9598 Oak Crossing","ShipName":"Stroman-Cruickshank","OrderDate":"3/12/2017","TotalPayment":"$450748.31","Status":2,"Type":2},{"OrderID":"63940-202","ShipCountry":"BD","ShipAddress":"3 Darwin Terrace","ShipName":"Jakubowski-Christiansen","OrderDate":"3/18/2016","TotalPayment":"$264943.82","Status":2,"Type":2},{"OrderID":"67046-714","ShipCountry":"RU","ShipAddress":"2891 Novick Way","ShipName":"Corkery LLC","OrderDate":"6/14/2016","TotalPayment":"$241239.73","Status":4,"Type":1},{"OrderID":"62382-0308","ShipCountry":"PT","ShipAddress":"41540 Westerfield Road","ShipName":"Cronin-Renner","OrderDate":"7/12/2016","TotalPayment":"$1107059.74","Status":3,"Type":1},{"OrderID":"70253-112","ShipCountry":"BR","ShipAddress":"4269 Hallows Circle","ShipName":"Ullrich LLC","OrderDate":"8/1/2017","TotalPayment":"$945010.94","Status":4,"Type":3},{"OrderID":"0363-0434","ShipCountry":"TH","ShipAddress":"0083 Merrick Lane","ShipName":"Hessel, Ruecker and Kris","OrderDate":"9/20/2017","TotalPayment":"$608853.80","Status":3,"Type":2},{"OrderID":"0363-0169","ShipCountry":"RU","ShipAddress":"2063 Independence Lane","ShipName":"Sawayn, Cremin and Berge","OrderDate":"10/20/2016","TotalPayment":"$319149.43","Status":1,"Type":2},{"OrderID":"0078-0458","ShipCountry":"VE","ShipAddress":"876 Monterey Circle","ShipName":"Ondricka Group","OrderDate":"5/15/2017","TotalPayment":"$72040.63","Status":6,"Type":3},{"OrderID":"0536-1008","ShipCountry":"CN","ShipAddress":"2 Cottonwood Terrace","ShipName":"Walker-Kris","OrderDate":"12/14/2017","TotalPayment":"$1081643.09","Status":2,"Type":2},{"OrderID":"49999-048","ShipCountry":"NG","ShipAddress":"91 Ridge Oak Point","ShipName":"Sanford and Sons","OrderDate":"7/12/2017","TotalPayment":"$1063349.88","Status":5,"Type":3},{"OrderID":"36987-1708","ShipCountry":"MX","ShipAddress":"5 Twin Pines Court","ShipName":"Lakin, Gaylord and Ryan","OrderDate":"4/18/2017","TotalPayment":"$1134589.52","Status":2,"Type":2},{"OrderID":"60986-1013","ShipCountry":"MN","ShipAddress":"933 Dawn Avenue","ShipName":"Quitzon-Ondricka","OrderDate":"4/2/2016","TotalPayment":"$1066089.06","Status":4,"Type":3},{"OrderID":"29485-2828","ShipCountry":"BR","ShipAddress":"7 Butternut Junction","ShipName":"Kilback LLC","OrderDate":"3/2/2016","TotalPayment":"$717783.98","Status":6,"Type":1},{"OrderID":"55154-5878","ShipCountry":"CN","ShipAddress":"46 Warbler Road","ShipName":"Lang, Hartmann and Hudson","OrderDate":"12/2/2017","TotalPayment":"$55533.73","Status":3,"Type":1}]},\n{"RecordID":182,"FirstName":"Laina","LastName":"Hainey`","Company":"Flipopia","Email":"lhainey51@newsvine.com","Phone":"424-205-0737","Status":5,"Type":3,"Orders":[{"OrderID":"10893-240","ShipCountry":"PL","ShipAddress":"9 Toban Pass","ShipName":"Hirthe Group","OrderDate":"8/18/2017","TotalPayment":"$124558.20","Status":3,"Type":2},{"OrderID":"0378-3266","ShipCountry":"FR","ShipAddress":"80079 Sullivan Place","ShipName":"Muller LLC","OrderDate":"5/26/2016","TotalPayment":"$74559.20","Status":1,"Type":3},{"OrderID":"0944-4212","ShipCountry":"PH","ShipAddress":"51 Ruskin Avenue","ShipName":"Crist LLC","OrderDate":"11/1/2016","TotalPayment":"$993519.04","Status":4,"Type":1},{"OrderID":"33758-001","ShipCountry":"PS","ShipAddress":"6 New Castle Alley","ShipName":"Baumbach, Schmidt and Senger","OrderDate":"3/31/2017","TotalPayment":"$393304.45","Status":3,"Type":3},{"OrderID":"0113-0498","ShipCountry":"ID","ShipAddress":"274 Goodland Plaza","ShipName":"Cartwright Inc","OrderDate":"12/20/2016","TotalPayment":"$755262.80","Status":6,"Type":3}]},\n{"RecordID":183,"FirstName":"Caldwell","LastName":"Naseby","Company":"Realfire","Email":"cnaseby52@thetimes.co.uk","Phone":"324-908-1039","Status":6,"Type":2,"Orders":[{"OrderID":"11673-808","ShipCountry":"RU","ShipAddress":"1083 John Wall Park","ShipName":"Leffler and Sons","OrderDate":"4/28/2016","TotalPayment":"$183608.19","Status":3,"Type":3},{"OrderID":"49349-566","ShipCountry":"AM","ShipAddress":"19 Coolidge Court","ShipName":"Schoen-Effertz","OrderDate":"6/5/2016","TotalPayment":"$476926.87","Status":3,"Type":2},{"OrderID":"64092-204","ShipCountry":"CU","ShipAddress":"720 Boyd Drive","ShipName":"Prosacco, Sipes and Hilpert","OrderDate":"12/22/2017","TotalPayment":"$859711.28","Status":5,"Type":2},{"OrderID":"20276-044","ShipCountry":"PH","ShipAddress":"430 La Follette Way","ShipName":"Huel-Koch","OrderDate":"2/19/2016","TotalPayment":"$1044147.12","Status":4,"Type":3},{"OrderID":"36800-423","ShipCountry":"BR","ShipAddress":"49 Northview Road","ShipName":"Howell-Dibbert","OrderDate":"10/16/2017","TotalPayment":"$598010.28","Status":4,"Type":1},{"OrderID":"54868-5343","ShipCountry":"MG","ShipAddress":"08806 Hoffman Court","ShipName":"Kerluke, Hermiston and Durgan","OrderDate":"12/30/2016","TotalPayment":"$1133973.74","Status":4,"Type":1},{"OrderID":"51393-7333","ShipCountry":"ID","ShipAddress":"5 Cardinal Terrace","ShipName":"Johnston and Sons","OrderDate":"4/11/2016","TotalPayment":"$836434.82","Status":2,"Type":3},{"OrderID":"52584-463","ShipCountry":"PL","ShipAddress":"110 Erie Terrace","ShipName":"Goyette, Lindgren and Wisoky","OrderDate":"12/4/2016","TotalPayment":"$564515.59","Status":5,"Type":3}]},\n{"RecordID":184,"FirstName":"Krystalle","LastName":"Riseam","Company":"Voonyx","Email":"kriseam53@etsy.com","Phone":"309-925-1298","Status":3,"Type":2,"Orders":[{"OrderID":"41250-072","ShipCountry":"ID","ShipAddress":"8713 Michigan Street","ShipName":"Jaskolski-Ratke","OrderDate":"3/6/2016","TotalPayment":"$593169.59","Status":6,"Type":2},{"OrderID":"10812-612","ShipCountry":"GR","ShipAddress":"95 Pawling Parkway","ShipName":"Watsica-Hoeger","OrderDate":"2/13/2017","TotalPayment":"$500547.19","Status":1,"Type":2},{"OrderID":"63629-3768","ShipCountry":"CN","ShipAddress":"56 Sunbrook Way","ShipName":"Emmerich LLC","OrderDate":"1/27/2017","TotalPayment":"$336274.50","Status":2,"Type":3},{"OrderID":"36987-1031","ShipCountry":"CN","ShipAddress":"3 Boyd Plaza","ShipName":"Cormier Group","OrderDate":"8/8/2016","TotalPayment":"$487861.74","Status":2,"Type":3},{"OrderID":"41163-201","ShipCountry":"CZ","ShipAddress":"882 Knutson Plaza","ShipName":"Kemmer, Wuckert and Schumm","OrderDate":"9/6/2017","TotalPayment":"$456493.20","Status":1,"Type":1},{"OrderID":"60505-0027","ShipCountry":"PL","ShipAddress":"8930 Arkansas Center","ShipName":"Marvin and Sons","OrderDate":"5/12/2017","TotalPayment":"$239993.65","Status":1,"Type":1},{"OrderID":"53208-471","ShipCountry":"ID","ShipAddress":"350 Barnett Lane","ShipName":"VonRueden-Moore","OrderDate":"10/15/2017","TotalPayment":"$249088.47","Status":6,"Type":2},{"OrderID":"64578-0102","ShipCountry":"CN","ShipAddress":"597 Donald Plaza","ShipName":"Kemmer Inc","OrderDate":"8/11/2016","TotalPayment":"$76278.75","Status":4,"Type":1},{"OrderID":"76335-004","ShipCountry":"ID","ShipAddress":"78699 Magdeline Way","ShipName":"Collins-Pollich","OrderDate":"4/30/2017","TotalPayment":"$1044105.67","Status":3,"Type":1},{"OrderID":"52904-470","ShipCountry":"CA","ShipAddress":"58875 Dapin Circle","ShipName":"Streich and Sons","OrderDate":"10/31/2016","TotalPayment":"$466011.94","Status":6,"Type":1},{"OrderID":"59746-040","ShipCountry":"UZ","ShipAddress":"6 Nancy Center","ShipName":"Feil-Stark","OrderDate":"11/22/2016","TotalPayment":"$526199.85","Status":5,"Type":2},{"OrderID":"67253-383","ShipCountry":"HN","ShipAddress":"33064 Eagle Crest Avenue","ShipName":"Hintz, Hayes and Mraz","OrderDate":"2/19/2017","TotalPayment":"$914053.93","Status":4,"Type":1},{"OrderID":"64942-1129","ShipCountry":"UG","ShipAddress":"34 Evergreen Road","ShipName":"Haag LLC","OrderDate":"12/24/2016","TotalPayment":"$680174.62","Status":5,"Type":1}]},\n{"RecordID":185,"FirstName":"Lazare","LastName":"Simms","Company":"Dynabox","Email":"lsimms54@github.com","Phone":"114-497-5567","Status":1,"Type":2,"Orders":[{"OrderID":"10370-102","ShipCountry":"ID","ShipAddress":"398 Pearson Place","ShipName":"Schmitt-Ebert","OrderDate":"9/28/2017","TotalPayment":"$521000.97","Status":1,"Type":3},{"OrderID":"0363-0784","ShipCountry":"CZ","ShipAddress":"16997 Donald Road","ShipName":"Osinski and Sons","OrderDate":"7/7/2016","TotalPayment":"$996936.46","Status":2,"Type":3},{"OrderID":"52959-008","ShipCountry":"CN","ShipAddress":"41622 Steensland Trail","ShipName":"Gerlach Group","OrderDate":"7/29/2016","TotalPayment":"$294542.01","Status":5,"Type":3},{"OrderID":"30142-219","ShipCountry":"ID","ShipAddress":"5942 Maple Wood Terrace","ShipName":"Considine-Grady","OrderDate":"12/25/2016","TotalPayment":"$283122.37","Status":6,"Type":3},{"OrderID":"10237-819","ShipCountry":"PH","ShipAddress":"8935 Briar Crest Drive","ShipName":"Dooley Inc","OrderDate":"5/1/2017","TotalPayment":"$569138.54","Status":2,"Type":1},{"OrderID":"63940-897","ShipCountry":"RU","ShipAddress":"037 Hazelcrest Road","ShipName":"Stiedemann, Lind and Kuhic","OrderDate":"7/4/2017","TotalPayment":"$627785.73","Status":5,"Type":2}]},\n{"RecordID":186,"FirstName":"Panchito","LastName":"Stenners","Company":"Leexo","Email":"pstenners55@ebay.com","Phone":"366-560-3338","Status":1,"Type":3,"Orders":[{"OrderID":"50436-6924","ShipCountry":"CZ","ShipAddress":"383 Prentice Road","ShipName":"Mann, Schmidt and Satterfield","OrderDate":"5/24/2017","TotalPayment":"$679838.05","Status":1,"Type":2},{"OrderID":"36987-2195","ShipCountry":"CN","ShipAddress":"05 Cottonwood Junction","ShipName":"Nienow Inc","OrderDate":"3/8/2017","TotalPayment":"$364615.10","Status":2,"Type":1},{"OrderID":"49781-111","ShipCountry":"FR","ShipAddress":"3250 Bartelt Terrace","ShipName":"Sanford, Hodkiewicz and Waelchi","OrderDate":"1/18/2017","TotalPayment":"$723401.06","Status":3,"Type":2},{"OrderID":"10096-0233","ShipCountry":"PT","ShipAddress":"66625 Florence Trail","ShipName":"Williamson Group","OrderDate":"6/23/2016","TotalPayment":"$359355.11","Status":5,"Type":1},{"OrderID":"52125-250","ShipCountry":"ID","ShipAddress":"95267 Nancy Pass","ShipName":"Rolfson LLC","OrderDate":"8/23/2016","TotalPayment":"$106909.08","Status":6,"Type":2},{"OrderID":"49781-075","ShipCountry":"BR","ShipAddress":"034 Pankratz Park","ShipName":"Ferry, Kilback and Mohr","OrderDate":"12/28/2017","TotalPayment":"$126435.54","Status":6,"Type":3},{"OrderID":"36987-3268","ShipCountry":"CN","ShipAddress":"7251 Shasta Circle","ShipName":"Greenholt LLC","OrderDate":"2/11/2017","TotalPayment":"$1144236.51","Status":3,"Type":2}]},\n{"RecordID":187,"FirstName":"Clemmie","LastName":"Pizey","Company":"Feednation","Email":"cpizey56@meetup.com","Phone":"919-832-8274","Status":3,"Type":2,"Orders":[{"OrderID":"0049-0116","ShipCountry":"LT","ShipAddress":"611 Killdeer Junction","ShipName":"Dickens and Sons","OrderDate":"5/2/2017","TotalPayment":"$362355.23","Status":4,"Type":3},{"OrderID":"68788-9056","ShipCountry":"ID","ShipAddress":"27604 Russell Circle","ShipName":"Spencer-Hane","OrderDate":"7/27/2016","TotalPayment":"$459255.78","Status":2,"Type":1},{"OrderID":"0378-3750","ShipCountry":"CN","ShipAddress":"84813 Amoth Avenue","ShipName":"Auer LLC","OrderDate":"1/18/2016","TotalPayment":"$132826.92","Status":6,"Type":2},{"OrderID":"54868-4703","ShipCountry":"CN","ShipAddress":"84767 Fallview Crossing","ShipName":"Towne Group","OrderDate":"6/14/2017","TotalPayment":"$913371.95","Status":6,"Type":1},{"OrderID":"0002-4454","ShipCountry":"VN","ShipAddress":"4595 Myrtle Alley","ShipName":"Witting, Schroeder and Stamm","OrderDate":"2/26/2016","TotalPayment":"$111135.46","Status":3,"Type":1},{"OrderID":"0065-0643","ShipCountry":"PE","ShipAddress":"11 1st Parkway","ShipName":"Wunsch Inc","OrderDate":"7/3/2016","TotalPayment":"$672915.92","Status":1,"Type":3},{"OrderID":"41250-648","ShipCountry":"RU","ShipAddress":"2 Westridge Park","ShipName":"Daugherty-McGlynn","OrderDate":"10/12/2017","TotalPayment":"$356199.38","Status":1,"Type":2},{"OrderID":"0409-1179","ShipCountry":"CN","ShipAddress":"6675 Bay Court","ShipName":"Bechtelar, Aufderhar and Kuhic","OrderDate":"12/3/2016","TotalPayment":"$387524.58","Status":6,"Type":2},{"OrderID":"36987-1784","ShipCountry":"GT","ShipAddress":"9 Oriole Street","ShipName":"Orn-Crist","OrderDate":"10/17/2017","TotalPayment":"$150038.96","Status":5,"Type":3},{"OrderID":"65044-1544","ShipCountry":"CN","ShipAddress":"39 Shoshone Trail","ShipName":"Osinski Group","OrderDate":"4/17/2016","TotalPayment":"$901493.13","Status":2,"Type":1},{"OrderID":"0591-2224","ShipCountry":"PT","ShipAddress":"14 Magdeline Center","ShipName":"Kshlerin LLC","OrderDate":"7/10/2016","TotalPayment":"$270503.43","Status":2,"Type":2},{"OrderID":"0904-5495","ShipCountry":"PK","ShipAddress":"4 Packers Drive","ShipName":"Kirlin, Schmidt and Nienow","OrderDate":"2/21/2017","TotalPayment":"$495217.00","Status":5,"Type":3},{"OrderID":"0093-8036","ShipCountry":"PE","ShipAddress":"54 Waywood Pass","ShipName":"Schaden-Steuber","OrderDate":"11/14/2017","TotalPayment":"$812127.38","Status":5,"Type":3},{"OrderID":"16714-032","ShipCountry":"NL","ShipAddress":"9232 Manufacturers Trail","ShipName":"Gislason-Wiegand","OrderDate":"9/18/2017","TotalPayment":"$1140362.33","Status":4,"Type":3},{"OrderID":"41163-120","ShipCountry":"PT","ShipAddress":"8856 Truax Plaza","ShipName":"Ward-Bartell","OrderDate":"4/22/2016","TotalPayment":"$390475.48","Status":6,"Type":2},{"OrderID":"37808-182","ShipCountry":"CN","ShipAddress":"438 Sutteridge Alley","ShipName":"Cartwright-Kerluke","OrderDate":"10/28/2016","TotalPayment":"$873799.61","Status":6,"Type":2}]},\n{"RecordID":188,"FirstName":"Ambrosius","LastName":"Brabender","Company":"Buzzdog","Email":"abrabender57@networkadvertising.org","Phone":"732-142-8611","Status":6,"Type":2,"Orders":[{"OrderID":"10544-503","ShipCountry":"TH","ShipAddress":"354 Myrtle Hill","ShipName":"Brakus and Sons","OrderDate":"9/24/2017","TotalPayment":"$638948.05","Status":1,"Type":3},{"OrderID":"55154-3425","ShipCountry":"CA","ShipAddress":"7573 Bultman Drive","ShipName":"Zboncak, Paucek and Murazik","OrderDate":"5/19/2016","TotalPayment":"$890107.66","Status":6,"Type":2},{"OrderID":"59450-315","ShipCountry":"PT","ShipAddress":"21954 Westerfield Park","ShipName":"Conroy, Jerde and Kihn","OrderDate":"4/25/2017","TotalPayment":"$690346.78","Status":6,"Type":1},{"OrderID":"42507-177","ShipCountry":"MX","ShipAddress":"83 Londonderry Junction","ShipName":"Legros-Schuster","OrderDate":"3/30/2017","TotalPayment":"$108424.09","Status":4,"Type":1},{"OrderID":"58593-826","ShipCountry":"PH","ShipAddress":"74961 Messerschmidt Trail","ShipName":"Berge-Wunsch","OrderDate":"6/23/2017","TotalPayment":"$562052.41","Status":6,"Type":3},{"OrderID":"0615-1359","ShipCountry":"CN","ShipAddress":"244 Del Sol Parkway","ShipName":"Cartwright LLC","OrderDate":"3/2/2016","TotalPayment":"$697281.12","Status":1,"Type":3},{"OrderID":"0268-0808","ShipCountry":"RU","ShipAddress":"39651 Heath Point","ShipName":"Rippin-Hermiston","OrderDate":"3/20/2017","TotalPayment":"$281375.74","Status":6,"Type":3},{"OrderID":"55714-4618","ShipCountry":"BR","ShipAddress":"0 Messerschmidt Avenue","ShipName":"Hessel, Emard and Bradtke","OrderDate":"3/4/2016","TotalPayment":"$158942.45","Status":4,"Type":1},{"OrderID":"41167-0662","ShipCountry":"MY","ShipAddress":"3112 Vernon Point","ShipName":"Doyle Group","OrderDate":"11/10/2016","TotalPayment":"$180670.19","Status":1,"Type":2},{"OrderID":"57691-161","ShipCountry":"AR","ShipAddress":"80 Doe Crossing Way","ShipName":"King-Ernser","OrderDate":"4/30/2016","TotalPayment":"$101407.25","Status":6,"Type":1}]},\n{"RecordID":189,"FirstName":"Weider","LastName":"Borrill","Company":"Kanoodle","Email":"wborrill58@alexa.com","Phone":"210-554-1921","Status":5,"Type":1,"Orders":[{"OrderID":"0259-2202","ShipCountry":"CN","ShipAddress":"98956 Meadow Valley Lane","ShipName":"Langosh, Frami and Kohler","OrderDate":"5/7/2017","TotalPayment":"$40611.93","Status":6,"Type":1},{"OrderID":"63323-145","ShipCountry":"KM","ShipAddress":"51384 Gina Hill","ShipName":"Dooley Group","OrderDate":"12/6/2017","TotalPayment":"$327035.06","Status":3,"Type":1},{"OrderID":"29336-910","ShipCountry":"MK","ShipAddress":"489 Straubel Center","ShipName":"Frami-Cummings","OrderDate":"8/24/2017","TotalPayment":"$95534.37","Status":4,"Type":3},{"OrderID":"11822-9013","ShipCountry":"CN","ShipAddress":"076 Namekagon Plaza","ShipName":"Stamm, Schuster and Marvin","OrderDate":"3/9/2016","TotalPayment":"$579985.35","Status":5,"Type":1},{"OrderID":"59762-5009","ShipCountry":"ID","ShipAddress":"72 Meadow Valley Alley","ShipName":"Koepp and Sons","OrderDate":"7/16/2016","TotalPayment":"$770921.32","Status":2,"Type":1},{"OrderID":"54868-6291","ShipCountry":"US","ShipAddress":"914 Portage Place","ShipName":"Sauer Inc","OrderDate":"2/11/2016","TotalPayment":"$275234.42","Status":1,"Type":1},{"OrderID":"54868-1328","ShipCountry":"RU","ShipAddress":"41413 Nobel Center","ShipName":"Wintheiser-Jakubowski","OrderDate":"4/23/2017","TotalPayment":"$636713.57","Status":6,"Type":1},{"OrderID":"50419-523","ShipCountry":"FR","ShipAddress":"9552 Grasskamp Circle","ShipName":"Hintz and Sons","OrderDate":"2/14/2016","TotalPayment":"$354696.79","Status":1,"Type":3},{"OrderID":"53942-055","ShipCountry":"DO","ShipAddress":"08761 Westport Plaza","ShipName":"Fadel-Jacobi","OrderDate":"5/2/2017","TotalPayment":"$465714.53","Status":1,"Type":1},{"OrderID":"68788-9936","ShipCountry":"CN","ShipAddress":"5803 Raven Trail","ShipName":"Bauch Inc","OrderDate":"3/30/2016","TotalPayment":"$190519.60","Status":1,"Type":2},{"OrderID":"49288-0462","ShipCountry":"CO","ShipAddress":"42 Myrtle Point","ShipName":"Wolff, Harris and Bergnaum","OrderDate":"7/10/2016","TotalPayment":"$322366.46","Status":5,"Type":1},{"OrderID":"0573-1929","ShipCountry":"CN","ShipAddress":"98 Clyde Gallagher Crossing","ShipName":"McDermott and Sons","OrderDate":"7/31/2016","TotalPayment":"$345210.08","Status":5,"Type":2},{"OrderID":"11673-299","ShipCountry":"ID","ShipAddress":"3 Kedzie Street","ShipName":"Wolff, Rutherford and Bins","OrderDate":"1/4/2017","TotalPayment":"$500304.61","Status":6,"Type":3},{"OrderID":"37012-962","ShipCountry":"PL","ShipAddress":"23903 Clove Junction","ShipName":"Turcotte-Koch","OrderDate":"10/9/2016","TotalPayment":"$1060632.48","Status":1,"Type":2}]},\n{"RecordID":190,"FirstName":"Audrie","LastName":"Bosche","Company":"Shuffletag","Email":"abosche59@lulu.com","Phone":"529-576-3143","Status":4,"Type":3,"Orders":[{"OrderID":"36987-1461","ShipCountry":"PH","ShipAddress":"42104 Scoville Crossing","ShipName":"Vandervort and Sons","OrderDate":"11/26/2016","TotalPayment":"$34955.20","Status":2,"Type":2},{"OrderID":"23155-058","ShipCountry":"CA","ShipAddress":"8713 Barby Park","ShipName":"Wolf, Heller and Goodwin","OrderDate":"5/15/2017","TotalPayment":"$118568.29","Status":2,"Type":3},{"OrderID":"0268-1102","ShipCountry":"GR","ShipAddress":"5 Miller Terrace","ShipName":"Lemke-Prohaska","OrderDate":"6/19/2017","TotalPayment":"$561904.11","Status":5,"Type":3},{"OrderID":"55154-9430","ShipCountry":"BW","ShipAddress":"9279 Karstens Court","ShipName":"Hahn-Swaniawski","OrderDate":"9/11/2016","TotalPayment":"$791445.27","Status":1,"Type":3},{"OrderID":"65862-107","ShipCountry":"PH","ShipAddress":"99366 Corscot Crossing","ShipName":"D\'Amore Inc","OrderDate":"3/10/2017","TotalPayment":"$569014.73","Status":2,"Type":3}]},\n{"RecordID":191,"FirstName":"Mateo","LastName":"Lattie","Company":"Youfeed","Email":"mlattie5a@ft.com","Phone":"256-894-6754","Status":4,"Type":3,"Orders":[{"OrderID":"0220-9078","ShipCountry":"BY","ShipAddress":"39120 1st Circle","ShipName":"Muller LLC","OrderDate":"11/5/2017","TotalPayment":"$526109.02","Status":2,"Type":3},{"OrderID":"45802-736","ShipCountry":"CU","ShipAddress":"3 Westport Avenue","ShipName":"Huel LLC","OrderDate":"5/30/2017","TotalPayment":"$953977.70","Status":5,"Type":3},{"OrderID":"0781-6202","ShipCountry":"HN","ShipAddress":"4071 Melody Lane","ShipName":"Harvey-Breitenberg","OrderDate":"12/27/2016","TotalPayment":"$1117520.59","Status":6,"Type":1},{"OrderID":"53746-218","ShipCountry":"IE","ShipAddress":"866 Loomis Pass","ShipName":"Rutherford-Veum","OrderDate":"2/28/2017","TotalPayment":"$841659.06","Status":2,"Type":2},{"OrderID":"57520-0389","ShipCountry":"CN","ShipAddress":"8 Pepper Wood Terrace","ShipName":"Zboncak-Wisoky","OrderDate":"5/29/2017","TotalPayment":"$541992.20","Status":5,"Type":3},{"OrderID":"44087-1117","ShipCountry":"CN","ShipAddress":"016 Pine View Trail","ShipName":"Larkin Inc","OrderDate":"8/8/2017","TotalPayment":"$318868.58","Status":3,"Type":1},{"OrderID":"63187-065","ShipCountry":"CN","ShipAddress":"90735 Bunting Hill","ShipName":"Sanford and Sons","OrderDate":"12/29/2017","TotalPayment":"$760186.74","Status":3,"Type":3},{"OrderID":"33261-131","ShipCountry":"BR","ShipAddress":"4267 Browning Court","ShipName":"Botsford, Block and Emard","OrderDate":"9/17/2016","TotalPayment":"$912181.42","Status":2,"Type":2},{"OrderID":"0781-5818","ShipCountry":"RU","ShipAddress":"1161 Packers Way","ShipName":"Nikolaus LLC","OrderDate":"12/23/2017","TotalPayment":"$273824.25","Status":2,"Type":1},{"OrderID":"68387-545","ShipCountry":"CN","ShipAddress":"0145 Ridge Oak Way","ShipName":"Haag and Sons","OrderDate":"12/15/2017","TotalPayment":"$110548.71","Status":2,"Type":3}]},\n{"RecordID":192,"FirstName":"Tiffie","LastName":"Riddler","Company":"Shufflester","Email":"triddler5b@networksolutions.com","Phone":"564-748-4235","Status":4,"Type":3,"Orders":[{"OrderID":"0071-0513","ShipCountry":"ES","ShipAddress":"0 Oak Valley Junction","ShipName":"Hettinger-Thiel","OrderDate":"5/6/2017","TotalPayment":"$857482.41","Status":6,"Type":3},{"OrderID":"0832-1071","ShipCountry":"KH","ShipAddress":"84 Independence Parkway","ShipName":"Hirthe, Mayer and Hudson","OrderDate":"7/13/2017","TotalPayment":"$608998.13","Status":6,"Type":1},{"OrderID":"64009-334","ShipCountry":"KR","ShipAddress":"92 7th Terrace","ShipName":"Donnelly, Volkman and Wisozk","OrderDate":"11/14/2016","TotalPayment":"$452116.04","Status":2,"Type":3},{"OrderID":"49349-842","ShipCountry":"BG","ShipAddress":"4123 Anhalt Pass","ShipName":"Trantow Inc","OrderDate":"9/22/2016","TotalPayment":"$74518.27","Status":6,"Type":1},{"OrderID":"0363-0470","ShipCountry":"GT","ShipAddress":"71758 Lunder Park","ShipName":"Runolfsson, Dibbert and Hartmann","OrderDate":"12/27/2017","TotalPayment":"$203095.71","Status":2,"Type":1},{"OrderID":"0025-2752","ShipCountry":"CN","ShipAddress":"59576 Hooker Circle","ShipName":"Hudson-Marvin","OrderDate":"9/2/2016","TotalPayment":"$541852.00","Status":4,"Type":3},{"OrderID":"49672-100","ShipCountry":"UA","ShipAddress":"4013 Fair Oaks Way","ShipName":"Kunde-Smitham","OrderDate":"6/24/2017","TotalPayment":"$1130139.16","Status":5,"Type":3},{"OrderID":"68428-013","ShipCountry":"SE","ShipAddress":"75 Rusk Center","ShipName":"Ortiz-Ullrich","OrderDate":"11/7/2017","TotalPayment":"$599438.32","Status":1,"Type":2},{"OrderID":"61481-0450","ShipCountry":"NL","ShipAddress":"629 Meadow Ridge Way","ShipName":"Ryan-Walter","OrderDate":"9/25/2017","TotalPayment":"$60352.32","Status":1,"Type":1},{"OrderID":"67172-595","ShipCountry":"ID","ShipAddress":"2 Knutson Parkway","ShipName":"Barrows-Powlowski","OrderDate":"11/20/2017","TotalPayment":"$507495.47","Status":4,"Type":1}]},\n{"RecordID":193,"FirstName":"Monah","LastName":"Symcox","Company":"Youfeed","Email":"msymcox5c@si.edu","Phone":"645-608-6375","Status":6,"Type":3,"Orders":[{"OrderID":"0067-2021","ShipCountry":"MW","ShipAddress":"7 Hoepker Road","ShipName":"Dooley and Sons","OrderDate":"6/16/2017","TotalPayment":"$492191.79","Status":1,"Type":1},{"OrderID":"54575-381","ShipCountry":"CN","ShipAddress":"7698 Moose Place","ShipName":"Reinger, Kessler and Gerlach","OrderDate":"12/26/2016","TotalPayment":"$459962.40","Status":5,"Type":2},{"OrderID":"11673-498","ShipCountry":"HU","ShipAddress":"9 Northland Pass","ShipName":"Robel, Auer and Kuvalis","OrderDate":"6/21/2016","TotalPayment":"$151246.67","Status":3,"Type":1},{"OrderID":"43857-0102","ShipCountry":"PH","ShipAddress":"30 Troy Center","ShipName":"Hyatt-Jenkins","OrderDate":"1/11/2017","TotalPayment":"$553999.96","Status":5,"Type":3},{"OrderID":"49349-910","ShipCountry":"CN","ShipAddress":"0303 Oxford Drive","ShipName":"Kreiger LLC","OrderDate":"2/28/2017","TotalPayment":"$731528.51","Status":3,"Type":3},{"OrderID":"51346-091","ShipCountry":"PT","ShipAddress":"2041 Rigney Circle","ShipName":"Batz-Orn","OrderDate":"1/13/2016","TotalPayment":"$1166959.60","Status":6,"Type":3},{"OrderID":"66129-149","ShipCountry":"KP","ShipAddress":"683 Arkansas Alley","ShipName":"Schoen and Sons","OrderDate":"3/9/2017","TotalPayment":"$456038.10","Status":5,"Type":1},{"OrderID":"51105-001","ShipCountry":"SE","ShipAddress":"0 Granby Center","ShipName":"Monahan Inc","OrderDate":"10/11/2017","TotalPayment":"$869400.50","Status":3,"Type":2},{"OrderID":"65044-2485","ShipCountry":"UY","ShipAddress":"2282 Lakeland Trail","ShipName":"Rau, DuBuque and Gutmann","OrderDate":"4/16/2016","TotalPayment":"$97822.02","Status":6,"Type":3},{"OrderID":"55714-2334","ShipCountry":"PH","ShipAddress":"2228 Sage Lane","ShipName":"Rodriguez, Goyette and Dibbert","OrderDate":"11/22/2017","TotalPayment":"$255444.98","Status":6,"Type":1},{"OrderID":"55289-629","ShipCountry":"CN","ShipAddress":"8 Little Fleur Terrace","ShipName":"Stoltenberg-Swift","OrderDate":"7/20/2016","TotalPayment":"$70203.40","Status":2,"Type":3},{"OrderID":"0179-0102","ShipCountry":"DE","ShipAddress":"5 Pearson Alley","ShipName":"Stroman, Jenkins and Rempel","OrderDate":"11/14/2016","TotalPayment":"$14500.97","Status":3,"Type":1},{"OrderID":"36987-2492","ShipCountry":"FR","ShipAddress":"735 Orin Way","ShipName":"Will LLC","OrderDate":"10/5/2016","TotalPayment":"$161747.88","Status":5,"Type":1},{"OrderID":"0126-0288","ShipCountry":"GR","ShipAddress":"5931 Ridgeview Park","ShipName":"Leuschke-Simonis","OrderDate":"3/1/2017","TotalPayment":"$517334.13","Status":1,"Type":1},{"OrderID":"51672-4036","ShipCountry":"UA","ShipAddress":"6 American Park","ShipName":"Lowe, Padberg and Armstrong","OrderDate":"5/14/2017","TotalPayment":"$255382.44","Status":5,"Type":2},{"OrderID":"49999-505","ShipCountry":"IR","ShipAddress":"83368 Sutteridge Parkway","ShipName":"Klein, Smith and Dibbert","OrderDate":"10/2/2017","TotalPayment":"$35792.91","Status":3,"Type":3},{"OrderID":"68828-071","ShipCountry":"YE","ShipAddress":"467 Loftsgordon Circle","ShipName":"Kub-Block","OrderDate":"7/28/2017","TotalPayment":"$613021.29","Status":3,"Type":1},{"OrderID":"59535-9701","ShipCountry":"ID","ShipAddress":"06 Mosinee Drive","ShipName":"Macejkovic-Leannon","OrderDate":"12/11/2017","TotalPayment":"$214514.94","Status":3,"Type":1},{"OrderID":"49348-924","ShipCountry":"MY","ShipAddress":"7 Prairieview Lane","ShipName":"Feil-Hegmann","OrderDate":"1/16/2016","TotalPayment":"$133314.75","Status":4,"Type":2},{"OrderID":"55154-1026","ShipCountry":"ZM","ShipAddress":"66450 Schlimgen Point","ShipName":"Barton, Okuneva and Grimes","OrderDate":"6/9/2016","TotalPayment":"$776912.30","Status":1,"Type":2}]},\n{"RecordID":194,"FirstName":"Cozmo","LastName":"Rawe","Company":"Gabvine","Email":"crawe5d@sbwire.com","Phone":"752-594-0697","Status":1,"Type":1,"Orders":[{"OrderID":"0591-0582","ShipCountry":"HR","ShipAddress":"88803 Algoma Lane","ShipName":"Wisozk Group","OrderDate":"10/16/2017","TotalPayment":"$25297.04","Status":1,"Type":3},{"OrderID":"51009-145","ShipCountry":"CN","ShipAddress":"93675 Loomis Terrace","ShipName":"Runte, Graham and Heller","OrderDate":"8/3/2016","TotalPayment":"$533845.72","Status":4,"Type":1},{"OrderID":"59667-0100","ShipCountry":"CL","ShipAddress":"13662 Jay Point","ShipName":"Jones-Torphy","OrderDate":"11/6/2017","TotalPayment":"$1156095.30","Status":3,"Type":2},{"OrderID":"55316-130","ShipCountry":"CZ","ShipAddress":"059 Kenwood Alley","ShipName":"Jaskolski Inc","OrderDate":"8/5/2016","TotalPayment":"$1085048.70","Status":4,"Type":3},{"OrderID":"49288-0903","ShipCountry":"SE","ShipAddress":"736 Logan Junction","ShipName":"Rath, Ritchie and Terry","OrderDate":"9/6/2017","TotalPayment":"$200922.95","Status":2,"Type":2},{"OrderID":"55714-2329","ShipCountry":"PH","ShipAddress":"70 Declaration Crossing","ShipName":"Fahey, Harris and Crona","OrderDate":"2/17/2016","TotalPayment":"$46652.97","Status":5,"Type":2},{"OrderID":"37808-851","ShipCountry":"RU","ShipAddress":"81937 Carberry Lane","ShipName":"Leuschke-Waters","OrderDate":"11/26/2016","TotalPayment":"$246034.68","Status":5,"Type":3},{"OrderID":"60429-028","ShipCountry":"CN","ShipAddress":"3 Montana Place","ShipName":"Spinka and Sons","OrderDate":"4/28/2016","TotalPayment":"$286405.07","Status":3,"Type":3},{"OrderID":"49348-170","ShipCountry":"GR","ShipAddress":"349 Mandrake Crossing","ShipName":"Sipes, Hodkiewicz and Murray","OrderDate":"3/30/2017","TotalPayment":"$372868.38","Status":4,"Type":1},{"OrderID":"46122-027","ShipCountry":"RU","ShipAddress":"290 Mayer Road","ShipName":"Kertzmann Inc","OrderDate":"5/24/2016","TotalPayment":"$554984.33","Status":5,"Type":3},{"OrderID":"0093-7368","ShipCountry":"ID","ShipAddress":"289 Jenna Place","ShipName":"Schoen, Nicolas and Terry","OrderDate":"12/31/2016","TotalPayment":"$787732.60","Status":6,"Type":1},{"OrderID":"36987-2010","ShipCountry":"GR","ShipAddress":"71210 Spaight Center","ShipName":"Spinka-Parisian","OrderDate":"11/19/2016","TotalPayment":"$1180486.55","Status":2,"Type":2},{"OrderID":"0406-0552","ShipCountry":"CN","ShipAddress":"35 Randy Center","ShipName":"Kirlin-Rohan","OrderDate":"3/23/2016","TotalPayment":"$1040381.45","Status":6,"Type":2},{"OrderID":"60760-542","ShipCountry":"PL","ShipAddress":"67346 Dryden Park","ShipName":"Wiegand, Thiel and Crooks","OrderDate":"7/16/2016","TotalPayment":"$1128104.09","Status":2,"Type":1},{"OrderID":"21130-320","ShipCountry":"CN","ShipAddress":"60 Elmside Alley","ShipName":"Cassin, Cremin and Kirlin","OrderDate":"1/12/2017","TotalPayment":"$1044597.33","Status":4,"Type":3},{"OrderID":"49288-0777","ShipCountry":"DO","ShipAddress":"956 Chive Junction","ShipName":"Medhurst, Erdman and Renner","OrderDate":"3/30/2016","TotalPayment":"$133682.80","Status":3,"Type":3}]},\n{"RecordID":195,"FirstName":"Ceciley","LastName":"Lomasney","Company":"Layo","Email":"clomasney5e@yale.edu","Phone":"700-515-0734","Status":5,"Type":1,"Orders":[{"OrderID":"49035-851","ShipCountry":"PT","ShipAddress":"8 Evergreen Park","ShipName":"Quitzon-Conn","OrderDate":"4/5/2016","TotalPayment":"$542951.63","Status":3,"Type":2},{"OrderID":"49035-595","ShipCountry":"SO","ShipAddress":"5 Bartelt Parkway","ShipName":"Ruecker-Kutch","OrderDate":"10/12/2016","TotalPayment":"$1107508.41","Status":5,"Type":2},{"OrderID":"52125-123","ShipCountry":"ID","ShipAddress":"53 Reinke Avenue","ShipName":"Gutkowski, Padberg and Leffler","OrderDate":"7/29/2017","TotalPayment":"$377907.49","Status":4,"Type":2},{"OrderID":"49288-0698","ShipCountry":"RU","ShipAddress":"4 Canary Place","ShipName":"Schuster-Rogahn","OrderDate":"5/28/2017","TotalPayment":"$16175.43","Status":4,"Type":1},{"OrderID":"43063-358","ShipCountry":"ID","ShipAddress":"3981 Commercial Road","ShipName":"Padberg LLC","OrderDate":"11/25/2016","TotalPayment":"$577840.94","Status":4,"Type":1},{"OrderID":"59262-357","ShipCountry":"PK","ShipAddress":"0 Lillian Pass","ShipName":"Jast-Mitchell","OrderDate":"4/11/2017","TotalPayment":"$218149.87","Status":4,"Type":3},{"OrderID":"0781-7054","ShipCountry":"RU","ShipAddress":"3 Golf Street","ShipName":"Roob, Orn and Carroll","OrderDate":"11/8/2017","TotalPayment":"$96510.35","Status":3,"Type":1},{"OrderID":"35356-589","ShipCountry":"CA","ShipAddress":"05 Fulton Lane","ShipName":"Simonis Inc","OrderDate":"11/23/2017","TotalPayment":"$1003789.99","Status":1,"Type":2},{"OrderID":"50419-344","ShipCountry":"PK","ShipAddress":"20206 Blaine Plaza","ShipName":"Ward-Brown","OrderDate":"1/25/2017","TotalPayment":"$1030852.03","Status":2,"Type":2}]},\n{"RecordID":196,"FirstName":"Quint","LastName":"Scuse","Company":"Twitterbeat","Email":"qscuse5f@oakley.com","Phone":"790-981-6932","Status":4,"Type":2,"Orders":[{"OrderID":"36987-2358","ShipCountry":"RU","ShipAddress":"2287 Anthes Way","ShipName":"Rath Inc","OrderDate":"9/12/2017","TotalPayment":"$46774.24","Status":3,"Type":3},{"OrderID":"0603-3508","ShipCountry":"FR","ShipAddress":"0 Colorado Junction","ShipName":"Ernser-Schmeler","OrderDate":"2/12/2017","TotalPayment":"$952066.20","Status":5,"Type":2},{"OrderID":"31645-147","ShipCountry":"JP","ShipAddress":"2 Lotheville Hill","ShipName":"Goyette-Murphy","OrderDate":"11/16/2016","TotalPayment":"$616988.83","Status":6,"Type":2},{"OrderID":"36987-2384","ShipCountry":"ID","ShipAddress":"48 Jenna Terrace","ShipName":"Batz, Leuschke and Monahan","OrderDate":"5/7/2017","TotalPayment":"$692699.01","Status":3,"Type":3},{"OrderID":"43074-101","ShipCountry":"CN","ShipAddress":"53 Scott Street","ShipName":"O\'Kon, Simonis and Lindgren","OrderDate":"12/9/2016","TotalPayment":"$1085642.24","Status":1,"Type":3},{"OrderID":"48951-9158","ShipCountry":"PH","ShipAddress":"55 Quincy Avenue","ShipName":"Rice-Goyette","OrderDate":"10/21/2017","TotalPayment":"$530674.63","Status":3,"Type":1},{"OrderID":"60432-465","ShipCountry":"GT","ShipAddress":"5 Fordem Alley","ShipName":"Zemlak-Collier","OrderDate":"12/12/2017","TotalPayment":"$176294.65","Status":2,"Type":2},{"OrderID":"68405-013","ShipCountry":"AR","ShipAddress":"54 Manufacturers Trail","ShipName":"Tillman, Stokes and Schmeler","OrderDate":"3/4/2017","TotalPayment":"$990042.50","Status":6,"Type":2},{"OrderID":"59779-023","ShipCountry":"RS","ShipAddress":"22160 Columbus Lane","ShipName":"Nader, Mraz and Rath","OrderDate":"11/7/2017","TotalPayment":"$109008.70","Status":5,"Type":3},{"OrderID":"60505-0847","ShipCountry":"BI","ShipAddress":"1529 Oakridge Drive","ShipName":"Greenholt-Schaefer","OrderDate":"6/30/2017","TotalPayment":"$787321.95","Status":4,"Type":2},{"OrderID":"10736-010","ShipCountry":"FR","ShipAddress":"4 Barby Place","ShipName":"Considine, Collier and Kovacek","OrderDate":"1/1/2016","TotalPayment":"$987712.37","Status":1,"Type":3},{"OrderID":"60977-319","ShipCountry":"CN","ShipAddress":"6 Northridge Lane","ShipName":"Reinger, Brekke and Hilll","OrderDate":"6/6/2017","TotalPayment":"$691553.06","Status":6,"Type":2},{"OrderID":"54569-3887","ShipCountry":"SE","ShipAddress":"90149 Mifflin Park","ShipName":"Ratke-Hermiston","OrderDate":"6/17/2016","TotalPayment":"$984144.64","Status":5,"Type":3},{"OrderID":"41190-335","ShipCountry":"ID","ShipAddress":"70591 Victoria Center","ShipName":"Hettinger, Wintheiser and Haag","OrderDate":"11/17/2016","TotalPayment":"$912142.45","Status":4,"Type":2},{"OrderID":"60429-932","ShipCountry":"US","ShipAddress":"2957 Banding Drive","ShipName":"Jenkins-Schoen","OrderDate":"8/2/2016","TotalPayment":"$785063.15","Status":3,"Type":2},{"OrderID":"68016-532","ShipCountry":"CN","ShipAddress":"4474 Bunting Lane","ShipName":"Kerluke LLC","OrderDate":"1/10/2017","TotalPayment":"$1073400.74","Status":2,"Type":3},{"OrderID":"54569-8704","ShipCountry":"FR","ShipAddress":"505 Artisan Road","ShipName":"Rosenbaum-Shields","OrderDate":"2/19/2017","TotalPayment":"$926955.18","Status":2,"Type":1},{"OrderID":"0143-1266","ShipCountry":"TZ","ShipAddress":"3265 Butterfield Terrace","ShipName":"Tremblay-Flatley","OrderDate":"2/15/2016","TotalPayment":"$1063296.10","Status":5,"Type":2},{"OrderID":"10096-0214","ShipCountry":"CN","ShipAddress":"984 Buell Terrace","ShipName":"Harris Group","OrderDate":"1/22/2016","TotalPayment":"$368367.63","Status":5,"Type":2},{"OrderID":"0781-1079","ShipCountry":"ID","ShipAddress":"29 Manitowish Street","ShipName":"Beatty and Sons","OrderDate":"12/29/2016","TotalPayment":"$327469.64","Status":6,"Type":2}]},\n{"RecordID":197,"FirstName":"Mireielle","LastName":"Woodberry","Company":"Voonyx","Email":"mwoodberry5g@icq.com","Phone":"952-720-9160","Status":2,"Type":1,"Orders":[{"OrderID":"0220-3681","ShipCountry":"FR","ShipAddress":"064 Becker Street","ShipName":"Murazik, Jacobi and Little","OrderDate":"9/8/2016","TotalPayment":"$640724.62","Status":3,"Type":3},{"OrderID":"41520-188","ShipCountry":"RS","ShipAddress":"54368 Butterfield Plaza","ShipName":"McClure, O\'Reilly and Hayes","OrderDate":"7/11/2017","TotalPayment":"$86538.80","Status":5,"Type":3},{"OrderID":"67938-1401","ShipCountry":"US","ShipAddress":"88 Crescent Oaks Trail","ShipName":"Bechtelar-Reynolds","OrderDate":"3/30/2017","TotalPayment":"$140481.00","Status":5,"Type":2},{"OrderID":"55154-5088","ShipCountry":"CN","ShipAddress":"21 Florence Place","ShipName":"Boehm-Blanda","OrderDate":"4/11/2016","TotalPayment":"$301694.62","Status":6,"Type":3},{"OrderID":"0591-5708","ShipCountry":"RU","ShipAddress":"2 Sheridan Plaza","ShipName":"Stanton-Blanda","OrderDate":"11/16/2017","TotalPayment":"$1153722.50","Status":3,"Type":1},{"OrderID":"53462-075","ShipCountry":"BR","ShipAddress":"26435 Marquette Road","ShipName":"Kuhn-Weimann","OrderDate":"3/27/2017","TotalPayment":"$136576.03","Status":2,"Type":1},{"OrderID":"51811-363","ShipCountry":"CN","ShipAddress":"4411 Union Drive","ShipName":"Strosin, Bahringer and Johns","OrderDate":"11/11/2017","TotalPayment":"$530586.01","Status":2,"Type":3},{"OrderID":"57520-0161","ShipCountry":"ID","ShipAddress":"99 Homewood Hill","ShipName":"Rowe Inc","OrderDate":"7/17/2016","TotalPayment":"$904558.79","Status":5,"Type":1},{"OrderID":"55714-8007","ShipCountry":"PL","ShipAddress":"46 New Castle Circle","ShipName":"Kertzmann LLC","OrderDate":"5/27/2017","TotalPayment":"$828144.41","Status":1,"Type":2},{"OrderID":"49349-917","ShipCountry":"UZ","ShipAddress":"8755 Di Loreto Crossing","ShipName":"Dibbert and Sons","OrderDate":"8/29/2017","TotalPayment":"$223307.00","Status":1,"Type":2},{"OrderID":"63824-478","ShipCountry":"ID","ShipAddress":"90607 Dovetail Court","ShipName":"Schamberger, Spinka and Dibbert","OrderDate":"7/20/2016","TotalPayment":"$731206.72","Status":5,"Type":2},{"OrderID":"49999-789","ShipCountry":"US","ShipAddress":"028 Farmco Avenue","ShipName":"Lebsack, Rutherford and Waters","OrderDate":"6/15/2017","TotalPayment":"$709187.30","Status":5,"Type":2},{"OrderID":"36987-1287","ShipCountry":"CN","ShipAddress":"5417 Longview Center","ShipName":"Hermiston LLC","OrderDate":"7/26/2017","TotalPayment":"$630004.45","Status":4,"Type":3},{"OrderID":"57520-0951","ShipCountry":"CN","ShipAddress":"05560 5th Pass","ShipName":"Langosh LLC","OrderDate":"8/27/2017","TotalPayment":"$536628.88","Status":6,"Type":1},{"OrderID":"49897-159","ShipCountry":"AR","ShipAddress":"97590 Bluestem Terrace","ShipName":"Hackett, Botsford and Collins","OrderDate":"4/5/2017","TotalPayment":"$528715.86","Status":3,"Type":1}]},\n{"RecordID":198,"FirstName":"Eugene","LastName":"Brownett","Company":"Fatz","Email":"ebrownett5h@dell.com","Phone":"157-876-8514","Status":5,"Type":2,"Orders":[{"OrderID":"52773-236","ShipCountry":"GR","ShipAddress":"80158 Sunbrook Crossing","ShipName":"Casper, Schinner and Mosciski","OrderDate":"3/7/2017","TotalPayment":"$459835.23","Status":4,"Type":2},{"OrderID":"49281-545","ShipCountry":"KR","ShipAddress":"6 Sage Parkway","ShipName":"Purdy Group","OrderDate":"12/28/2016","TotalPayment":"$719078.36","Status":6,"Type":2},{"OrderID":"41163-344","ShipCountry":"FI","ShipAddress":"57 Thompson Crossing","ShipName":"Hoppe, Turner and Beatty","OrderDate":"9/20/2017","TotalPayment":"$1008540.01","Status":2,"Type":1},{"OrderID":"63187-059","ShipCountry":"CN","ShipAddress":"5550 Trailsway Park","ShipName":"Beahan-Nolan","OrderDate":"8/14/2016","TotalPayment":"$612635.71","Status":5,"Type":1},{"OrderID":"0268-1365","ShipCountry":"CN","ShipAddress":"5 Calypso Trail","ShipName":"Torphy, Bayer and Donnelly","OrderDate":"12/16/2017","TotalPayment":"$867860.29","Status":6,"Type":1},{"OrderID":"0703-4246","ShipCountry":"ID","ShipAddress":"287 Gerald Drive","ShipName":"Donnelly Group","OrderDate":"1/1/2016","TotalPayment":"$1078958.40","Status":3,"Type":3},{"OrderID":"42291-750","ShipCountry":"ID","ShipAddress":"06 Mallory Parkway","ShipName":"Howe and Sons","OrderDate":"8/17/2016","TotalPayment":"$905137.39","Status":6,"Type":3},{"OrderID":"0007-4887","ShipCountry":"PH","ShipAddress":"03 Sheridan Center","ShipName":"Grady, Mante and White","OrderDate":"4/14/2017","TotalPayment":"$502327.25","Status":6,"Type":3},{"OrderID":"0363-0666","ShipCountry":"CN","ShipAddress":"496 Fremont Lane","ShipName":"Buckridge and Sons","OrderDate":"11/17/2016","TotalPayment":"$696890.26","Status":5,"Type":2},{"OrderID":"0409-6664","ShipCountry":"RU","ShipAddress":"679 Carpenter Center","ShipName":"Schroeder Group","OrderDate":"7/18/2016","TotalPayment":"$792064.94","Status":6,"Type":2},{"OrderID":"42669-007","ShipCountry":"BJ","ShipAddress":"12286 Moland Crossing","ShipName":"Terry, Smitham and Purdy","OrderDate":"9/18/2017","TotalPayment":"$119133.29","Status":5,"Type":1},{"OrderID":"54569-0559","ShipCountry":"CN","ShipAddress":"6775 Butterfield Crossing","ShipName":"Huel and Sons","OrderDate":"5/5/2016","TotalPayment":"$1030611.53","Status":5,"Type":3},{"OrderID":"51862-229","ShipCountry":"PH","ShipAddress":"6034 Judy Road","ShipName":"Crona Group","OrderDate":"4/10/2017","TotalPayment":"$370062.25","Status":3,"Type":2},{"OrderID":"55154-4057","ShipCountry":"CN","ShipAddress":"60292 Spenser Alley","ShipName":"Frami, Macejkovic and Casper","OrderDate":"9/17/2016","TotalPayment":"$1071943.65","Status":3,"Type":1}]},\n{"RecordID":199,"FirstName":"Daven","LastName":"Anthon","Company":"Twinte","Email":"danthon5i@feedburner.com","Phone":"892-509-3906","Status":1,"Type":1,"Orders":[{"OrderID":"36987-2286","ShipCountry":"CA","ShipAddress":"00998 Goodland Pass","ShipName":"Jaskolski, Hand and Koepp","OrderDate":"9/4/2017","TotalPayment":"$1131868.65","Status":1,"Type":1},{"OrderID":"33261-470","ShipCountry":"MD","ShipAddress":"16556 Elka Center","ShipName":"Gorczany and Sons","OrderDate":"8/17/2017","TotalPayment":"$517031.56","Status":2,"Type":3},{"OrderID":"53746-110","ShipCountry":"PT","ShipAddress":"32 Pawling Circle","ShipName":"Boehm-Jakubowski","OrderDate":"3/15/2017","TotalPayment":"$377968.96","Status":6,"Type":3},{"OrderID":"55316-648","ShipCountry":"FR","ShipAddress":"0168 Cascade Crossing","ShipName":"Eichmann, Runolfsdottir and Heller","OrderDate":"7/9/2016","TotalPayment":"$1172534.56","Status":5,"Type":3},{"OrderID":"64942-1300","ShipCountry":"PH","ShipAddress":"3805 Annamark Drive","ShipName":"Stroman, West and Grimes","OrderDate":"12/23/2017","TotalPayment":"$1192272.60","Status":6,"Type":1},{"OrderID":"53329-816","ShipCountry":"CN","ShipAddress":"9 Spenser Avenue","ShipName":"Hammes Inc","OrderDate":"10/14/2017","TotalPayment":"$809900.31","Status":1,"Type":3},{"OrderID":"43353-924","ShipCountry":"ZM","ShipAddress":"48 Bobwhite Way","ShipName":"Emmerich Inc","OrderDate":"9/13/2017","TotalPayment":"$952511.48","Status":6,"Type":3},{"OrderID":"51285-523","ShipCountry":"CM","ShipAddress":"67 Forest Run Place","ShipName":"Lowe-Price","OrderDate":"11/11/2017","TotalPayment":"$887100.44","Status":2,"Type":3},{"OrderID":"55154-6178","ShipCountry":"PT","ShipAddress":"426 Pierstorff Point","ShipName":"Kessler and Sons","OrderDate":"8/23/2017","TotalPayment":"$969027.53","Status":3,"Type":3},{"OrderID":"49288-9933","ShipCountry":"SE","ShipAddress":"81026 Coolidge Road","ShipName":"Prohaska-Torphy","OrderDate":"1/9/2016","TotalPayment":"$290449.74","Status":6,"Type":3}]},\n{"RecordID":200,"FirstName":"Mendy","LastName":"Gianneschi","Company":"Buzzbean","Email":"mgianneschi5j@devhub.com","Phone":"471-328-4718","Status":5,"Type":1,"Orders":[{"OrderID":"60637-018","ShipCountry":"CN","ShipAddress":"554 Golf View Trail","ShipName":"Moen Group","OrderDate":"11/25/2016","TotalPayment":"$643495.68","Status":4,"Type":1},{"OrderID":"64942-1287","ShipCountry":"RU","ShipAddress":"030 Ramsey Alley","ShipName":"Schuppe-Glover","OrderDate":"9/3/2017","TotalPayment":"$464247.47","Status":1,"Type":1},{"OrderID":"68400-207","ShipCountry":"PL","ShipAddress":"0 Schiller Avenue","ShipName":"Cormier, Doyle and Waelchi","OrderDate":"9/18/2016","TotalPayment":"$1124213.74","Status":5,"Type":3},{"OrderID":"51442-531","ShipCountry":"LK","ShipAddress":"591 American Ash Street","ShipName":"Lemke-Kunze","OrderDate":"10/20/2017","TotalPayment":"$292506.27","Status":5,"Type":2},{"OrderID":"0268-1077","ShipCountry":"US","ShipAddress":"9373 Thompson Road","ShipName":"Smith-Corkery","OrderDate":"1/17/2017","TotalPayment":"$1157983.71","Status":5,"Type":2},{"OrderID":"57520-1040","ShipCountry":"MH","ShipAddress":"091 Doe Crossing Crossing","ShipName":"Kub-Schneider","OrderDate":"10/5/2016","TotalPayment":"$588516.14","Status":6,"Type":2},{"OrderID":"49738-160","ShipCountry":"CN","ShipAddress":"7 Arizona Road","ShipName":"Reilly, Dooley and Hermiston","OrderDate":"10/11/2017","TotalPayment":"$1166316.43","Status":5,"Type":1},{"OrderID":"51861-103","ShipCountry":"RU","ShipAddress":"01 Susan Road","ShipName":"O\'Connell Group","OrderDate":"11/4/2016","TotalPayment":"$490724.62","Status":4,"Type":2},{"OrderID":"63730-113","ShipCountry":"US","ShipAddress":"64257 Schurz Road","ShipName":"Pollich-Hauck","OrderDate":"3/28/2017","TotalPayment":"$242690.66","Status":3,"Type":1},{"OrderID":"0703-3986","ShipCountry":"SE","ShipAddress":"87794 Lawn Way","ShipName":"Sipes, Zboncak and Tremblay","OrderDate":"4/30/2017","TotalPayment":"$1026805.78","Status":2,"Type":1},{"OrderID":"55714-4536","ShipCountry":"PH","ShipAddress":"9063 Clyde Gallagher Avenue","ShipName":"Prosacco and Sons","OrderDate":"8/31/2016","TotalPayment":"$551939.47","Status":2,"Type":3},{"OrderID":"60637-001","ShipCountry":"GR","ShipAddress":"73 Montana Court","ShipName":"Harris-O\'Keefe","OrderDate":"1/9/2017","TotalPayment":"$471589.83","Status":2,"Type":3},{"OrderID":"60867-105","ShipCountry":"KG","ShipAddress":"0613 Parkside Place","ShipName":"Kessler, Grimes and Rempel","OrderDate":"8/18/2017","TotalPayment":"$975339.97","Status":4,"Type":3},{"OrderID":"0085-4347","ShipCountry":"VN","ShipAddress":"45 Kropf Court","ShipName":"Pacocha, Trantow and Kerluke","OrderDate":"9/11/2016","TotalPayment":"$836061.31","Status":2,"Type":1},{"OrderID":"49349-911","ShipCountry":"RU","ShipAddress":"080 Charing Cross Parkway","ShipName":"Quitzon Inc","OrderDate":"7/22/2016","TotalPayment":"$542897.52","Status":3,"Type":3}]},\n{"RecordID":201,"FirstName":"Bonita","LastName":"Dewhirst","Company":"Oodoo","Email":"bdewhirst5k@sohu.com","Phone":"739-501-2703","Status":6,"Type":3,"Orders":[{"OrderID":"0172-5240","ShipCountry":"PA","ShipAddress":"728 Melrose Center","ShipName":"Glover-Walter","OrderDate":"8/30/2016","TotalPayment":"$230000.48","Status":5,"Type":3},{"OrderID":"0904-5222","ShipCountry":"CN","ShipAddress":"116 La Follette Alley","ShipName":"Hickle, Feest and Bahringer","OrderDate":"12/14/2017","TotalPayment":"$139830.45","Status":3,"Type":2},{"OrderID":"60681-6201","ShipCountry":"CN","ShipAddress":"409 Green Trail","ShipName":"Larkin, Greenholt and Lesch","OrderDate":"11/22/2017","TotalPayment":"$682998.07","Status":6,"Type":2},{"OrderID":"36987-1425","ShipCountry":"RU","ShipAddress":"2238 Dorton Place","ShipName":"Harber-Gleason","OrderDate":"10/21/2016","TotalPayment":"$691837.31","Status":1,"Type":2},{"OrderID":"68382-005","ShipCountry":"RU","ShipAddress":"43057 Katie Court","ShipName":"Satterfield Inc","OrderDate":"9/19/2016","TotalPayment":"$620940.87","Status":5,"Type":1},{"OrderID":"62206-4760","ShipCountry":"CN","ShipAddress":"9923 Rutledge Crossing","ShipName":"Willms, Marquardt and Cormier","OrderDate":"5/1/2017","TotalPayment":"$453711.63","Status":1,"Type":2},{"OrderID":"36987-2188","ShipCountry":"PH","ShipAddress":"509 Monterey Alley","ShipName":"Nicolas Inc","OrderDate":"3/17/2016","TotalPayment":"$426132.84","Status":2,"Type":3},{"OrderID":"0378-4598","ShipCountry":"SY","ShipAddress":"10044 Holmberg Alley","ShipName":"Brekke, Stroman and Kling","OrderDate":"7/25/2017","TotalPayment":"$306580.36","Status":6,"Type":2},{"OrderID":"57337-050","ShipCountry":"JP","ShipAddress":"58804 Walton Avenue","ShipName":"Wuckert, Kling and Kuhlman","OrderDate":"3/5/2016","TotalPayment":"$324345.14","Status":1,"Type":2},{"OrderID":"52773-240","ShipCountry":"ID","ShipAddress":"336 Pearson Avenue","ShipName":"Hayes-Gulgowski","OrderDate":"2/18/2017","TotalPayment":"$373433.96","Status":2,"Type":3},{"OrderID":"49288-0099","ShipCountry":"US","ShipAddress":"87822 Green Ridge Plaza","ShipName":"Schulist Group","OrderDate":"10/18/2016","TotalPayment":"$1192575.63","Status":1,"Type":1},{"OrderID":"36987-2708","ShipCountry":"UG","ShipAddress":"4 Schurz Crossing","ShipName":"Bartell LLC","OrderDate":"12/2/2016","TotalPayment":"$759859.91","Status":3,"Type":3},{"OrderID":"53441-275","ShipCountry":"YE","ShipAddress":"017 Service Road","ShipName":"Gulgowski Group","OrderDate":"12/26/2016","TotalPayment":"$1158084.27","Status":6,"Type":1},{"OrderID":"0591-0844","ShipCountry":"PL","ShipAddress":"3936 Leroy Pass","ShipName":"Weimann, Torphy and Kuhn","OrderDate":"6/7/2016","TotalPayment":"$265704.45","Status":5,"Type":3},{"OrderID":"0224-1855","ShipCountry":"MN","ShipAddress":"060 Dakota Point","ShipName":"Kuhic, Prohaska and Halvorson","OrderDate":"3/16/2017","TotalPayment":"$699946.98","Status":2,"Type":2},{"OrderID":"44087-3344","ShipCountry":"UA","ShipAddress":"7783 Bluestem Plaza","ShipName":"Walsh, Lang and Bosco","OrderDate":"3/10/2017","TotalPayment":"$1090762.57","Status":1,"Type":2},{"OrderID":"55154-5034","ShipCountry":"PT","ShipAddress":"878 Village Circle","ShipName":"Borer, Ziemann and Fahey","OrderDate":"10/1/2016","TotalPayment":"$78823.19","Status":1,"Type":3},{"OrderID":"76485-1001","ShipCountry":"CO","ShipAddress":"9685 Clove Parkway","ShipName":"Fay-Bergnaum","OrderDate":"2/3/2016","TotalPayment":"$858228.14","Status":3,"Type":3},{"OrderID":"36987-2627","ShipCountry":"ET","ShipAddress":"69 Schmedeman Place","ShipName":"Cronin LLC","OrderDate":"5/7/2016","TotalPayment":"$857216.22","Status":5,"Type":3}]},\n{"RecordID":202,"FirstName":"Cristabel","LastName":"Arkow","Company":"Meezzy","Email":"carkow5l@issuu.com","Phone":"899-268-1909","Status":5,"Type":2,"Orders":[{"OrderID":"16590-097","ShipCountry":"CN","ShipAddress":"368 Hazelcrest Lane","ShipName":"Metz, Bins and Heller","OrderDate":"2/26/2017","TotalPayment":"$587858.94","Status":1,"Type":1},{"OrderID":"55648-273","ShipCountry":"CN","ShipAddress":"6 South Lane","ShipName":"Volkman, Stoltenberg and Roberts","OrderDate":"1/4/2017","TotalPayment":"$221736.27","Status":3,"Type":2},{"OrderID":"50111-468","ShipCountry":"ID","ShipAddress":"947 Atwood Way","ShipName":"Thompson Inc","OrderDate":"9/2/2017","TotalPayment":"$805181.50","Status":6,"Type":1},{"OrderID":"61919-009","ShipCountry":"RU","ShipAddress":"0864 Red Cloud Way","ShipName":"Stoltenberg, Satterfield and Wolff","OrderDate":"7/27/2016","TotalPayment":"$903471.88","Status":2,"Type":2},{"OrderID":"66758-036","ShipCountry":"PH","ShipAddress":"24881 Hermina Park","ShipName":"Lang and Sons","OrderDate":"2/17/2016","TotalPayment":"$1002085.85","Status":6,"Type":3},{"OrderID":"0054-4183","ShipCountry":"FR","ShipAddress":"39739 Grayhawk Alley","ShipName":"Ruecker-Keeling","OrderDate":"11/19/2017","TotalPayment":"$239886.36","Status":4,"Type":2},{"OrderID":"52565-031","ShipCountry":"BI","ShipAddress":"054 Logan Alley","ShipName":"Rohan and Sons","OrderDate":"5/10/2017","TotalPayment":"$917297.67","Status":3,"Type":1},{"OrderID":"55154-4235","ShipCountry":"VN","ShipAddress":"76032 Burrows Terrace","ShipName":"Bogisich-Kris","OrderDate":"7/24/2016","TotalPayment":"$1140363.74","Status":4,"Type":2},{"OrderID":"65133-120","ShipCountry":"CA","ShipAddress":"8898 Granby Point","ShipName":"Casper-Reynolds","OrderDate":"8/14/2017","TotalPayment":"$996967.90","Status":6,"Type":3},{"OrderID":"54866-002","ShipCountry":"PT","ShipAddress":"83 Monica Junction","ShipName":"Ruecker LLC","OrderDate":"8/10/2017","TotalPayment":"$936918.58","Status":1,"Type":3},{"OrderID":"59762-0140","ShipCountry":"MA","ShipAddress":"406 Annamark Trail","ShipName":"Rohan Inc","OrderDate":"3/22/2017","TotalPayment":"$37107.64","Status":3,"Type":1},{"OrderID":"57627-128","ShipCountry":"PT","ShipAddress":"04920 Tennessee Center","ShipName":"Sanford-Renner","OrderDate":"4/16/2017","TotalPayment":"$749998.27","Status":2,"Type":3}]},\n{"RecordID":203,"FirstName":"Trish","LastName":"Keep","Company":"Eimbee","Email":"tkeep5m@reverbnation.com","Phone":"387-374-1342","Status":6,"Type":2,"Orders":[{"OrderID":"37012-480","ShipCountry":"PE","ShipAddress":"80568 Blackbird Center","ShipName":"Leffler and Sons","OrderDate":"7/9/2017","TotalPayment":"$556953.86","Status":3,"Type":1},{"OrderID":"54868-5676","ShipCountry":"ID","ShipAddress":"9627 Jana Center","ShipName":"Moen-Bashirian","OrderDate":"6/19/2016","TotalPayment":"$428715.95","Status":2,"Type":3},{"OrderID":"55714-4509","ShipCountry":"ID","ShipAddress":"55 Annamark Junction","ShipName":"Schulist Group","OrderDate":"4/20/2016","TotalPayment":"$477491.00","Status":2,"Type":2},{"OrderID":"59115-066","ShipCountry":"ID","ShipAddress":"0 American Plaza","ShipName":"Kris-Ankunding","OrderDate":"6/23/2017","TotalPayment":"$156185.23","Status":1,"Type":2},{"OrderID":"43074-111","ShipCountry":"ID","ShipAddress":"655 Waywood Terrace","ShipName":"Murphy, Rowe and Treutel","OrderDate":"6/4/2016","TotalPayment":"$199561.36","Status":5,"Type":2},{"OrderID":"58988-0184","ShipCountry":"NG","ShipAddress":"35626 Cascade Circle","ShipName":"Fahey Inc","OrderDate":"12/6/2017","TotalPayment":"$296422.68","Status":2,"Type":3},{"OrderID":"0268-6141","ShipCountry":"PT","ShipAddress":"9 Fallview Pass","ShipName":"Simonis Group","OrderDate":"9/3/2016","TotalPayment":"$479069.17","Status":2,"Type":3},{"OrderID":"21749-363","ShipCountry":"PH","ShipAddress":"62 Mcguire Plaza","ShipName":"Hartmann-Kunde","OrderDate":"4/11/2017","TotalPayment":"$934685.79","Status":5,"Type":1},{"OrderID":"55316-416","ShipCountry":"LK","ShipAddress":"220 Brown Point","ShipName":"Wiza, Heathcote and Bailey","OrderDate":"5/16/2017","TotalPayment":"$1193805.73","Status":5,"Type":2},{"OrderID":"12546-985","ShipCountry":"ID","ShipAddress":"5 Hermina Street","ShipName":"Jacobs, Erdman and Kuhn","OrderDate":"8/16/2017","TotalPayment":"$1051617.53","Status":6,"Type":3},{"OrderID":"0904-5858","ShipCountry":"ID","ShipAddress":"0 Scoville Place","ShipName":"Rodriguez LLC","OrderDate":"5/26/2017","TotalPayment":"$28660.97","Status":1,"Type":1},{"OrderID":"0904-6201","ShipCountry":"ID","ShipAddress":"4185 Tennyson Circle","ShipName":"Streich and Sons","OrderDate":"1/2/2016","TotalPayment":"$327666.42","Status":5,"Type":3},{"OrderID":"43742-0136","ShipCountry":"KH","ShipAddress":"23987 Russell Point","ShipName":"Ondricka-Windler","OrderDate":"6/11/2017","TotalPayment":"$441901.36","Status":1,"Type":3},{"OrderID":"63621-356","ShipCountry":"CN","ShipAddress":"0 Eastlawn Place","ShipName":"Nikolaus, Feest and Harber","OrderDate":"4/17/2016","TotalPayment":"$358859.03","Status":1,"Type":3},{"OrderID":"59310-210","ShipCountry":"CO","ShipAddress":"750 Texas Hill","ShipName":"Dare, Walter and Sawayn","OrderDate":"5/3/2016","TotalPayment":"$889029.27","Status":1,"Type":3},{"OrderID":"67046-016","ShipCountry":"PH","ShipAddress":"5 Transport Point","ShipName":"Stoltenberg, Buckridge and Glover","OrderDate":"9/18/2016","TotalPayment":"$12421.44","Status":1,"Type":1},{"OrderID":"0703-1153","ShipCountry":"JP","ShipAddress":"9001 Kipling Alley","ShipName":"Stehr, Walter and Kuhic","OrderDate":"9/14/2017","TotalPayment":"$226388.65","Status":4,"Type":1},{"OrderID":"0904-5980","ShipCountry":"ES","ShipAddress":"90287 Iowa Hill","ShipName":"Lindgren-Gutmann","OrderDate":"8/18/2016","TotalPayment":"$332870.40","Status":6,"Type":2},{"OrderID":"24385-998","ShipCountry":"US","ShipAddress":"2338 Grayhawk Plaza","ShipName":"Kassulke Inc","OrderDate":"8/1/2016","TotalPayment":"$236485.28","Status":1,"Type":1}]},\n{"RecordID":204,"FirstName":"Bogart","LastName":"Bignell","Company":"Jaxnation","Email":"bbignell5n@cnet.com","Phone":"366-700-2289","Status":6,"Type":2,"Orders":[{"OrderID":"52959-450","ShipCountry":"SS","ShipAddress":"6 Harper Alley","ShipName":"Lang, Rodriguez and Wehner","OrderDate":"4/16/2016","TotalPayment":"$283803.53","Status":3,"Type":3},{"OrderID":"63304-554","ShipCountry":"UA","ShipAddress":"6 Derek Street","ShipName":"Abernathy, Jones and Volkman","OrderDate":"4/27/2016","TotalPayment":"$277549.46","Status":6,"Type":2},{"OrderID":"51452-002","ShipCountry":"ID","ShipAddress":"05462 Fremont Circle","ShipName":"Wehner-Rowe","OrderDate":"4/1/2017","TotalPayment":"$624582.93","Status":1,"Type":1},{"OrderID":"11822-0292","ShipCountry":"PH","ShipAddress":"5 Little Fleur Junction","ShipName":"Larson-Macejkovic","OrderDate":"5/15/2017","TotalPayment":"$605850.33","Status":5,"Type":3},{"OrderID":"67877-290","ShipCountry":"PH","ShipAddress":"12 New Castle Point","ShipName":"Friesen Group","OrderDate":"12/18/2017","TotalPayment":"$952721.83","Status":2,"Type":2},{"OrderID":"36987-3087","ShipCountry":"GT","ShipAddress":"48306 Macpherson Road","ShipName":"Mayert Inc","OrderDate":"6/23/2017","TotalPayment":"$463088.71","Status":2,"Type":1},{"OrderID":"51327-400","ShipCountry":"ID","ShipAddress":"48 Di Loreto Hill","ShipName":"Jenkins, Balistreri and Cummings","OrderDate":"5/24/2017","TotalPayment":"$1180424.79","Status":4,"Type":1},{"OrderID":"76041-713","ShipCountry":"CN","ShipAddress":"1383 Walton Park","ShipName":"Schoen-Jacobson","OrderDate":"6/10/2016","TotalPayment":"$1187493.79","Status":5,"Type":2},{"OrderID":"61957-1470","ShipCountry":"AR","ShipAddress":"413 Green Hill","ShipName":"Lockman, Douglas and Renner","OrderDate":"7/3/2016","TotalPayment":"$1023428.51","Status":6,"Type":1},{"OrderID":"63629-4355","ShipCountry":"PH","ShipAddress":"11 Orin Terrace","ShipName":"Smitham-Lakin","OrderDate":"10/18/2017","TotalPayment":"$401890.06","Status":1,"Type":2},{"OrderID":"63304-599","ShipCountry":"CZ","ShipAddress":"7433 Delladonna Pass","ShipName":"Bauch and Sons","OrderDate":"6/24/2016","TotalPayment":"$376158.82","Status":2,"Type":3}]},\n{"RecordID":205,"FirstName":"Ronica","LastName":"Drei","Company":"Skyble","Email":"rdrei5o@networkadvertising.org","Phone":"404-341-2032","Status":6,"Type":3,"Orders":[{"OrderID":"0591-0370","ShipCountry":"ID","ShipAddress":"261 Spohn Drive","ShipName":"Legros Inc","OrderDate":"7/2/2017","TotalPayment":"$772164.10","Status":2,"Type":1},{"OrderID":"33261-004","ShipCountry":"AR","ShipAddress":"651 Moose Crossing","ShipName":"Murray, Schoen and Rutherford","OrderDate":"9/23/2017","TotalPayment":"$486663.07","Status":6,"Type":2},{"OrderID":"61010-5800","ShipCountry":"EC","ShipAddress":"08 Cambridge Trail","ShipName":"Muller and Sons","OrderDate":"6/20/2016","TotalPayment":"$56538.79","Status":5,"Type":1},{"OrderID":"42254-004","ShipCountry":"CN","ShipAddress":"0 Texas Terrace","ShipName":"O\'Connell, Lowe and Kreiger","OrderDate":"1/30/2017","TotalPayment":"$29952.90","Status":6,"Type":1},{"OrderID":"50021-234","ShipCountry":"PL","ShipAddress":"2 2nd Avenue","ShipName":"Howell Group","OrderDate":"5/8/2017","TotalPayment":"$805982.70","Status":5,"Type":1},{"OrderID":"10572-147","ShipCountry":"CN","ShipAddress":"36080 Arapahoe Junction","ShipName":"Wolf Inc","OrderDate":"2/18/2016","TotalPayment":"$820234.24","Status":6,"Type":1},{"OrderID":"54868-5456","ShipCountry":"BR","ShipAddress":"8349 Bartelt Drive","ShipName":"Nienow and Sons","OrderDate":"2/5/2017","TotalPayment":"$251154.15","Status":3,"Type":2}]},\n{"RecordID":206,"FirstName":"Aurelia","LastName":"Cowan","Company":"Devify","Email":"acowan5p@myspace.com","Phone":"650-998-4542","Status":4,"Type":3,"Orders":[{"OrderID":"66116-450","ShipCountry":"AM","ShipAddress":"232 Sunnyside Junction","ShipName":"Hane, Mueller and Rolfson","OrderDate":"3/11/2017","TotalPayment":"$127559.60","Status":3,"Type":1},{"OrderID":"52125-463","ShipCountry":"TZ","ShipAddress":"4535 Gulseth Alley","ShipName":"Gutkowski LLC","OrderDate":"6/28/2017","TotalPayment":"$111423.76","Status":1,"Type":3},{"OrderID":"42291-509","ShipCountry":"EC","ShipAddress":"62 Colorado Avenue","ShipName":"Homenick-Grady","OrderDate":"8/11/2017","TotalPayment":"$1002079.25","Status":3,"Type":2},{"OrderID":"63736-176","ShipCountry":"TH","ShipAddress":"423 Hagan Hill","ShipName":"Kilback, Farrell and Jerde","OrderDate":"7/1/2016","TotalPayment":"$722340.57","Status":2,"Type":1},{"OrderID":"49288-0034","ShipCountry":"RU","ShipAddress":"87427 Bunting Parkway","ShipName":"Collier, Barrows and Wisoky","OrderDate":"2/5/2017","TotalPayment":"$838174.02","Status":3,"Type":2},{"OrderID":"36987-1741","ShipCountry":"MA","ShipAddress":"4 Warbler Park","ShipName":"Gutkowski-Bosco","OrderDate":"5/4/2017","TotalPayment":"$847143.62","Status":3,"Type":2},{"OrderID":"11084-701","ShipCountry":"SC","ShipAddress":"6328 Daystar Parkway","ShipName":"Gleichner-Botsford","OrderDate":"8/3/2016","TotalPayment":"$70948.22","Status":3,"Type":3},{"OrderID":"68770-130","ShipCountry":"CN","ShipAddress":"14440 Westerfield Plaza","ShipName":"Effertz, Schumm and Kessler","OrderDate":"11/4/2016","TotalPayment":"$144530.76","Status":4,"Type":1},{"OrderID":"50268-795","ShipCountry":"CN","ShipAddress":"1 Grasskamp Court","ShipName":"White-Becker","OrderDate":"7/3/2016","TotalPayment":"$473553.00","Status":3,"Type":2},{"OrderID":"0135-0469","ShipCountry":"BA","ShipAddress":"73 Dakota Court","ShipName":"Cassin-Harvey","OrderDate":"2/27/2016","TotalPayment":"$986704.22","Status":3,"Type":3},{"OrderID":"37205-698","ShipCountry":"JP","ShipAddress":"7 Marcy Trail","ShipName":"Satterfield and Sons","OrderDate":"1/13/2016","TotalPayment":"$433457.56","Status":5,"Type":2},{"OrderID":"10927-106","ShipCountry":"ID","ShipAddress":"71230 John Wall Center","ShipName":"Schumm and Sons","OrderDate":"9/8/2016","TotalPayment":"$777510.44","Status":5,"Type":2}]},\n{"RecordID":207,"FirstName":"Janith","LastName":"Feore","Company":"Edgepulse","Email":"jfeore5q@drupal.org","Phone":"944-658-0904","Status":2,"Type":1,"Orders":[{"OrderID":"75990-3018","ShipCountry":"PT","ShipAddress":"8947 Derek Avenue","ShipName":"Hyatt, Bode and Heaney","OrderDate":"12/14/2017","TotalPayment":"$747153.45","Status":6,"Type":1},{"OrderID":"0143-9994","ShipCountry":"JP","ShipAddress":"83120 Prairie Rose Way","ShipName":"Flatley, Cormier and Waelchi","OrderDate":"3/7/2017","TotalPayment":"$543128.18","Status":4,"Type":2},{"OrderID":"0536-1275","ShipCountry":"LT","ShipAddress":"074 Bunting Trail","ShipName":"Greenfelder, Breitenberg and Smitham","OrderDate":"4/20/2017","TotalPayment":"$623158.19","Status":4,"Type":1},{"OrderID":"0054-0222","ShipCountry":"GR","ShipAddress":"0 Butternut Court","ShipName":"Koch-Prohaska","OrderDate":"10/14/2017","TotalPayment":"$343075.12","Status":5,"Type":2},{"OrderID":"53345-009","ShipCountry":"CN","ShipAddress":"97540 Schiller Lane","ShipName":"Little-Monahan","OrderDate":"1/23/2016","TotalPayment":"$1133879.40","Status":5,"Type":3},{"OrderID":"0781-1785","ShipCountry":"HR","ShipAddress":"8149 Eastwood Circle","ShipName":"Ledner-Will","OrderDate":"9/10/2017","TotalPayment":"$651973.39","Status":1,"Type":3},{"OrderID":"17478-834","ShipCountry":"ET","ShipAddress":"4505 Farmco Junction","ShipName":"Daugherty Group","OrderDate":"9/7/2017","TotalPayment":"$307610.24","Status":6,"Type":2},{"OrderID":"0143-9682","ShipCountry":"VN","ShipAddress":"82805 Rowland Parkway","ShipName":"Moen, Hackett and Rippin","OrderDate":"7/9/2017","TotalPayment":"$161028.56","Status":5,"Type":3},{"OrderID":"63029-404","ShipCountry":"RU","ShipAddress":"9 Kedzie Alley","ShipName":"Huels, Weber and Haley","OrderDate":"12/21/2017","TotalPayment":"$1166813.63","Status":6,"Type":3},{"OrderID":"59779-908","ShipCountry":"EG","ShipAddress":"42965 Grim Park","ShipName":"Schulist, Moen and Watsica","OrderDate":"9/21/2017","TotalPayment":"$32746.40","Status":3,"Type":3},{"OrderID":"11822-2943","ShipCountry":"CN","ShipAddress":"25 Mayfield Place","ShipName":"Turcotte Inc","OrderDate":"10/10/2016","TotalPayment":"$323008.28","Status":6,"Type":2},{"OrderID":"67718-941","ShipCountry":"BR","ShipAddress":"493 Derek Avenue","ShipName":"Wyman-Nicolas","OrderDate":"3/25/2017","TotalPayment":"$136249.74","Status":2,"Type":3},{"OrderID":"49288-0029","ShipCountry":"BR","ShipAddress":"2577 Dottie Parkway","ShipName":"Larkin Group","OrderDate":"1/4/2017","TotalPayment":"$1097775.78","Status":6,"Type":2}]},\n{"RecordID":208,"FirstName":"Elna","LastName":"Fairholme","Company":"Dazzlesphere","Email":"efairholme5r@twitpic.com","Phone":"366-971-3353","Status":4,"Type":2,"Orders":[{"OrderID":"47593-476","ShipCountry":"LK","ShipAddress":"6 Farmco Road","ShipName":"Mayert Group","OrderDate":"5/29/2017","TotalPayment":"$992577.84","Status":1,"Type":3},{"OrderID":"0268-0130","ShipCountry":"PH","ShipAddress":"3690 Homewood Parkway","ShipName":"Johns, Becker and Roob","OrderDate":"12/23/2016","TotalPayment":"$218509.90","Status":4,"Type":3},{"OrderID":"67457-228","ShipCountry":"BR","ShipAddress":"6 Hanover Point","ShipName":"Hirthe, Kuhic and Kreiger","OrderDate":"10/25/2016","TotalPayment":"$1106472.40","Status":3,"Type":3},{"OrderID":"67512-224","ShipCountry":"TN","ShipAddress":"7840 Oneill Way","ShipName":"Baumbach LLC","OrderDate":"9/8/2017","TotalPayment":"$792310.33","Status":1,"Type":1},{"OrderID":"55154-9607","ShipCountry":"CN","ShipAddress":"13832 Sullivan Way","ShipName":"Kerluke-Schmitt","OrderDate":"11/19/2016","TotalPayment":"$228096.15","Status":2,"Type":2},{"OrderID":"64980-320","ShipCountry":"CN","ShipAddress":"3049 Wayridge Terrace","ShipName":"Murphy, Marks and Senger","OrderDate":"10/31/2017","TotalPayment":"$229148.30","Status":6,"Type":2},{"OrderID":"44911-0030","ShipCountry":"FR","ShipAddress":"5974 Thompson Court","ShipName":"Johns, Johns and Ebert","OrderDate":"10/12/2017","TotalPayment":"$264551.02","Status":6,"Type":2},{"OrderID":"69106-170","ShipCountry":"SD","ShipAddress":"15 Helena Place","ShipName":"Bogisich, Block and Bartell","OrderDate":"12/10/2016","TotalPayment":"$157312.75","Status":6,"Type":3},{"OrderID":"0085-1264","ShipCountry":"BR","ShipAddress":"0261 Delaware Plaza","ShipName":"Nienow-Connelly","OrderDate":"5/11/2016","TotalPayment":"$296894.81","Status":1,"Type":2},{"OrderID":"20703-002","ShipCountry":"US","ShipAddress":"21 Prentice Trail","ShipName":"Weber-Barrows","OrderDate":"2/10/2016","TotalPayment":"$463670.09","Status":4,"Type":1},{"OrderID":"24236-303","ShipCountry":"FR","ShipAddress":"8 Becker Center","ShipName":"Torphy-Reichert","OrderDate":"12/15/2016","TotalPayment":"$1062136.18","Status":1,"Type":1},{"OrderID":"0185-0211","ShipCountry":"TT","ShipAddress":"107 Tomscot Court","ShipName":"Morissette-Dibbert","OrderDate":"8/21/2016","TotalPayment":"$701327.37","Status":2,"Type":3}]},\n{"RecordID":209,"FirstName":"Nilson","LastName":"Jedrys","Company":"Photolist","Email":"njedrys5s@latimes.com","Phone":"537-293-5429","Status":3,"Type":3,"Orders":[{"OrderID":"58118-5040","ShipCountry":"ID","ShipAddress":"5329 Holy Cross Circle","ShipName":"Boyer-Prohaska","OrderDate":"6/3/2017","TotalPayment":"$1153596.58","Status":5,"Type":2},{"OrderID":"49808-384","ShipCountry":"PH","ShipAddress":"32 Dayton Junction","ShipName":"Fadel-Mayert","OrderDate":"11/30/2016","TotalPayment":"$20574.74","Status":5,"Type":2},{"OrderID":"52125-734","ShipCountry":"ID","ShipAddress":"1513 Brown Place","ShipName":"Beer LLC","OrderDate":"6/14/2016","TotalPayment":"$83375.51","Status":4,"Type":1},{"OrderID":"59779-131","ShipCountry":"SE","ShipAddress":"35 Vidon Hill","ShipName":"Wehner, Bosco and Blanda","OrderDate":"3/21/2016","TotalPayment":"$1140464.09","Status":2,"Type":2},{"OrderID":"55154-3479","ShipCountry":"PH","ShipAddress":"7 Eastwood Court","ShipName":"Renner Group","OrderDate":"1/7/2017","TotalPayment":"$65596.85","Status":4,"Type":1},{"OrderID":"60681-0113","ShipCountry":"US","ShipAddress":"53 Milwaukee Plaza","ShipName":"Kovacek Inc","OrderDate":"2/22/2016","TotalPayment":"$110256.64","Status":1,"Type":1},{"OrderID":"68878-120","ShipCountry":"CU","ShipAddress":"2242 Lighthouse Bay Plaza","ShipName":"Schuppe-Buckridge","OrderDate":"3/1/2016","TotalPayment":"$716656.69","Status":6,"Type":2},{"OrderID":"76237-205","ShipCountry":"CN","ShipAddress":"73 South Junction","ShipName":"Jacobson, Dicki and Kuvalis","OrderDate":"7/1/2017","TotalPayment":"$1085509.52","Status":6,"Type":1},{"OrderID":"50865-689","ShipCountry":"CA","ShipAddress":"780 Fulton Street","ShipName":"Lind LLC","OrderDate":"7/3/2017","TotalPayment":"$1014982.86","Status":4,"Type":1},{"OrderID":"50580-295","ShipCountry":"NG","ShipAddress":"4 Melrose Plaza","ShipName":"Bartoletti-Osinski","OrderDate":"2/12/2016","TotalPayment":"$978092.81","Status":2,"Type":3},{"OrderID":"51824-044","ShipCountry":"CN","ShipAddress":"7 Banding Avenue","ShipName":"Mayer-Mueller","OrderDate":"10/16/2017","TotalPayment":"$1015566.69","Status":2,"Type":2},{"OrderID":"48951-5038","ShipCountry":"RU","ShipAddress":"11 Hagan Drive","ShipName":"Goyette, Robel and Bahringer","OrderDate":"1/23/2016","TotalPayment":"$359318.16","Status":1,"Type":3},{"OrderID":"43378-104","ShipCountry":"UA","ShipAddress":"0506 Haas Avenue","ShipName":"Shields, Adams and Turcotte","OrderDate":"6/29/2017","TotalPayment":"$289208.00","Status":3,"Type":1},{"OrderID":"36987-2994","ShipCountry":"AM","ShipAddress":"874 Steensland Trail","ShipName":"Cremin-Shanahan","OrderDate":"2/21/2016","TotalPayment":"$448270.21","Status":3,"Type":1},{"OrderID":"10237-652","ShipCountry":"ID","ShipAddress":"1528 Ridgeway Park","ShipName":"Koss Inc","OrderDate":"11/20/2016","TotalPayment":"$313472.57","Status":3,"Type":1},{"OrderID":"35356-820","ShipCountry":"ID","ShipAddress":"7 Comanche Point","ShipName":"Feeney, Runte and Spencer","OrderDate":"1/19/2016","TotalPayment":"$29075.21","Status":3,"Type":2},{"OrderID":"0115-1234","ShipCountry":"PL","ShipAddress":"6 Weeping Birch Crossing","ShipName":"Witting-Hand","OrderDate":"7/18/2017","TotalPayment":"$628733.83","Status":6,"Type":1}]},\n{"RecordID":210,"FirstName":"Mendel","LastName":"Hamshaw","Company":"Linkbridge","Email":"mhamshaw5t@twitpic.com","Phone":"923-311-6428","Status":6,"Type":3,"Orders":[{"OrderID":"53210-1004","ShipCountry":"VN","ShipAddress":"3234 Reinke Road","ShipName":"Fay, Bogisich and Bode","OrderDate":"2/4/2016","TotalPayment":"$32957.35","Status":5,"Type":3},{"OrderID":"24385-505","ShipCountry":"ID","ShipAddress":"9 Village Green Court","ShipName":"Lowe, Gibson and Prosacco","OrderDate":"7/5/2017","TotalPayment":"$592050.89","Status":5,"Type":1},{"OrderID":"65862-194","ShipCountry":"CN","ShipAddress":"3964 Division Park","ShipName":"Torphy-Renner","OrderDate":"11/14/2017","TotalPayment":"$119481.27","Status":5,"Type":1},{"OrderID":"43269-698","ShipCountry":"SE","ShipAddress":"09 Lakeland Junction","ShipName":"Simonis, Skiles and Dietrich","OrderDate":"5/2/2016","TotalPayment":"$788360.43","Status":4,"Type":2},{"OrderID":"64942-1139","ShipCountry":"UA","ShipAddress":"77251 Ridgeview Point","ShipName":"Wyman and Sons","OrderDate":"8/16/2016","TotalPayment":"$115203.32","Status":3,"Type":3},{"OrderID":"0591-2882","ShipCountry":"PE","ShipAddress":"98911 Warner Hill","ShipName":"Erdman LLC","OrderDate":"5/9/2017","TotalPayment":"$755136.52","Status":4,"Type":2},{"OrderID":"55714-1104","ShipCountry":"IL","ShipAddress":"70 Atwood Way","ShipName":"Murphy, Powlowski and Gerhold","OrderDate":"1/14/2017","TotalPayment":"$97791.96","Status":2,"Type":2},{"OrderID":"68599-5309","ShipCountry":"CN","ShipAddress":"0 Sunfield Alley","ShipName":"Yundt-Schoen","OrderDate":"9/9/2016","TotalPayment":"$685291.84","Status":1,"Type":3},{"OrderID":"0362-9023","ShipCountry":"CN","ShipAddress":"6879 Dryden Point","ShipName":"Rodriguez-Schroeder","OrderDate":"7/14/2017","TotalPayment":"$970380.75","Status":4,"Type":2},{"OrderID":"68084-728","ShipCountry":"ES","ShipAddress":"50328 West Park","ShipName":"Keebler Group","OrderDate":"7/29/2017","TotalPayment":"$352252.47","Status":3,"Type":1},{"OrderID":"43353-863","ShipCountry":"CN","ShipAddress":"818 Linden Parkway","ShipName":"Leannon Inc","OrderDate":"12/24/2017","TotalPayment":"$1173331.94","Status":2,"Type":3},{"OrderID":"0143-1475","ShipCountry":"US","ShipAddress":"54725 Huxley Hill","ShipName":"Koss-Daugherty","OrderDate":"5/12/2016","TotalPayment":"$491383.64","Status":5,"Type":2}]},\n{"RecordID":211,"FirstName":"Harland","LastName":"Lempertz","Company":"Aivee","Email":"hlempertz5u@utexas.edu","Phone":"128-591-7039","Status":1,"Type":2,"Orders":[{"OrderID":"41167-1005","ShipCountry":"MM","ShipAddress":"29 Lakeland Center","ShipName":"Corkery, Spinka and Torphy","OrderDate":"11/3/2017","TotalPayment":"$980981.44","Status":3,"Type":3},{"OrderID":"0256-0185","ShipCountry":"US","ShipAddress":"95139 Chive Drive","ShipName":"Langworth LLC","OrderDate":"1/25/2016","TotalPayment":"$514264.54","Status":5,"Type":2},{"OrderID":"62366-124","ShipCountry":"ID","ShipAddress":"35 Mosinee Street","ShipName":"Larson and Sons","OrderDate":"1/27/2016","TotalPayment":"$334733.40","Status":2,"Type":2},{"OrderID":"49825-129","ShipCountry":"CN","ShipAddress":"7 Michigan Road","ShipName":"Heathcote-Feeney","OrderDate":"8/20/2016","TotalPayment":"$877994.93","Status":6,"Type":1},{"OrderID":"37205-510","ShipCountry":"JP","ShipAddress":"8006 Mosinee Lane","ShipName":"Gislason-Batz","OrderDate":"5/28/2017","TotalPayment":"$896358.25","Status":1,"Type":2},{"OrderID":"49288-0052","ShipCountry":"CN","ShipAddress":"4 Declaration Point","ShipName":"Schuppe and Sons","OrderDate":"3/24/2017","TotalPayment":"$639013.37","Status":2,"Type":3},{"OrderID":"0591-3248","ShipCountry":"PH","ShipAddress":"86454 Westend Lane","ShipName":"Bode, Bednar and Balistreri","OrderDate":"8/1/2017","TotalPayment":"$787277.38","Status":6,"Type":1},{"OrderID":"54868-5956","ShipCountry":"CN","ShipAddress":"3613 Loomis Trail","ShipName":"Windler-Dibbert","OrderDate":"9/17/2016","TotalPayment":"$171091.19","Status":5,"Type":1},{"OrderID":"37012-110","ShipCountry":"PH","ShipAddress":"8920 Coolidge Park","ShipName":"Heidenreich, Bosco and Sawayn","OrderDate":"4/17/2017","TotalPayment":"$927288.29","Status":6,"Type":1},{"OrderID":"0409-2988","ShipCountry":"GR","ShipAddress":"9 Mitchell Terrace","ShipName":"Hammes LLC","OrderDate":"12/11/2016","TotalPayment":"$776016.18","Status":6,"Type":2},{"OrderID":"16252-509","ShipCountry":"FR","ShipAddress":"328 Morningstar Junction","ShipName":"Reichel LLC","OrderDate":"2/13/2016","TotalPayment":"$423124.69","Status":5,"Type":1},{"OrderID":"0904-6017","ShipCountry":"CN","ShipAddress":"351 Lindbergh Plaza","ShipName":"Hodkiewicz Inc","OrderDate":"7/7/2017","TotalPayment":"$849450.19","Status":3,"Type":3},{"OrderID":"44087-9005","ShipCountry":"PT","ShipAddress":"13 Londonderry Avenue","ShipName":"Swift and Sons","OrderDate":"5/19/2017","TotalPayment":"$686468.30","Status":2,"Type":1},{"OrderID":"55312-153","ShipCountry":"VN","ShipAddress":"8 Browning Point","ShipName":"Deckow-Bashirian","OrderDate":"2/12/2017","TotalPayment":"$635282.88","Status":4,"Type":2},{"OrderID":"62450-002","ShipCountry":"ID","ShipAddress":"35129 Corscot Trail","ShipName":"Kessler-Ward","OrderDate":"5/8/2017","TotalPayment":"$1158839.22","Status":3,"Type":1},{"OrderID":"11523-7216","ShipCountry":"JP","ShipAddress":"46593 Hanover Parkway","ShipName":"Schinner-Leuschke","OrderDate":"2/25/2016","TotalPayment":"$1153378.64","Status":4,"Type":1}]},\n{"RecordID":212,"FirstName":"Loleta","LastName":"Habbal","Company":"Wikivu","Email":"lhabbal5v@booking.com","Phone":"901-674-6365","Status":4,"Type":1,"Orders":[{"OrderID":"0498-2421","ShipCountry":"ID","ShipAddress":"67 Elgar Way","ShipName":"Predovic Group","OrderDate":"2/12/2017","TotalPayment":"$167852.58","Status":1,"Type":1},{"OrderID":"43063-433","ShipCountry":"NG","ShipAddress":"74 Ohio Avenue","ShipName":"Romaguera and Sons","OrderDate":"11/21/2017","TotalPayment":"$899397.59","Status":3,"Type":1},{"OrderID":"45014-137","ShipCountry":"BH","ShipAddress":"7 West Park","ShipName":"Cartwright, Schulist and Vandervort","OrderDate":"5/25/2016","TotalPayment":"$507136.96","Status":6,"Type":2},{"OrderID":"55133-050","ShipCountry":"FR","ShipAddress":"459 Lindbergh Alley","ShipName":"Bogisich-Kohler","OrderDate":"4/16/2017","TotalPayment":"$124851.33","Status":5,"Type":2},{"OrderID":"45802-061","ShipCountry":"CZ","ShipAddress":"30 Roth Crossing","ShipName":"Hickle, Daniel and Watsica","OrderDate":"12/12/2017","TotalPayment":"$166991.91","Status":1,"Type":2},{"OrderID":"0085-1402","ShipCountry":"CA","ShipAddress":"40 Warrior Terrace","ShipName":"Ledner, Okuneva and Kovacek","OrderDate":"9/30/2016","TotalPayment":"$703426.29","Status":4,"Type":3},{"OrderID":"49035-113","ShipCountry":"IE","ShipAddress":"0 High Crossing Parkway","ShipName":"Gutkowski-Dicki","OrderDate":"2/22/2017","TotalPayment":"$554990.18","Status":1,"Type":1},{"OrderID":"55111-404","ShipCountry":"CN","ShipAddress":"02861 Straubel Center","ShipName":"Prohaska Group","OrderDate":"11/30/2016","TotalPayment":"$754513.03","Status":5,"Type":1},{"OrderID":"68428-100","ShipCountry":"PL","ShipAddress":"38387 1st Terrace","ShipName":"Kemmer LLC","OrderDate":"5/11/2017","TotalPayment":"$993610.11","Status":6,"Type":2},{"OrderID":"53746-192","ShipCountry":"PL","ShipAddress":"21 Eastwood Pass","ShipName":"Cormier LLC","OrderDate":"8/28/2016","TotalPayment":"$728659.37","Status":5,"Type":2},{"OrderID":"43353-943","ShipCountry":"GR","ShipAddress":"03179 Melrose Hill","ShipName":"Wunsch, Watsica and Hackett","OrderDate":"6/17/2017","TotalPayment":"$441030.37","Status":4,"Type":1},{"OrderID":"63699-001","ShipCountry":"PH","ShipAddress":"4586 Schurz Terrace","ShipName":"Hudson Group","OrderDate":"6/13/2017","TotalPayment":"$910800.10","Status":6,"Type":1},{"OrderID":"55150-157","ShipCountry":"ID","ShipAddress":"54 Sommers Hill","ShipName":"Denesik and Sons","OrderDate":"9/28/2016","TotalPayment":"$1060729.49","Status":3,"Type":1},{"OrderID":"76452-002","ShipCountry":"RU","ShipAddress":"27847 Sherman Place","ShipName":"Bashirian and Sons","OrderDate":"1/7/2017","TotalPayment":"$549920.38","Status":2,"Type":3}]},\n{"RecordID":213,"FirstName":"Richmond","LastName":"Colenutt","Company":"Fivechat","Email":"rcolenutt5w@upenn.edu","Phone":"608-109-4638","Status":1,"Type":3,"Orders":[{"OrderID":"0187-2612","ShipCountry":"PK","ShipAddress":"02271 Luster Terrace","ShipName":"Stoltenberg Inc","OrderDate":"11/8/2017","TotalPayment":"$86484.46","Status":5,"Type":3},{"OrderID":"13537-554","ShipCountry":"CI","ShipAddress":"4871 Sage Center","ShipName":"Erdman-Herman","OrderDate":"1/9/2016","TotalPayment":"$917900.47","Status":4,"Type":1},{"OrderID":"0406-8003","ShipCountry":"CN","ShipAddress":"735 Golf Course Drive","ShipName":"Wolff-Schiller","OrderDate":"8/22/2016","TotalPayment":"$286090.35","Status":3,"Type":1},{"OrderID":"65044-2624","ShipCountry":"VN","ShipAddress":"59337 Portage Circle","ShipName":"Johnson LLC","OrderDate":"1/1/2017","TotalPayment":"$1058242.08","Status":5,"Type":2},{"OrderID":"0409-1171","ShipCountry":"CN","ShipAddress":"572 Columbus Center","ShipName":"Beatty, Witting and Wisoky","OrderDate":"1/26/2016","TotalPayment":"$390398.80","Status":6,"Type":1},{"OrderID":"61957-0104","ShipCountry":"KZ","ShipAddress":"322 Talmadge Terrace","ShipName":"Weber, Roob and Kshlerin","OrderDate":"12/14/2016","TotalPayment":"$564976.31","Status":1,"Type":1},{"OrderID":"54123-914","ShipCountry":"CN","ShipAddress":"505 Wayridge Pass","ShipName":"Stokes, Nader and Waters","OrderDate":"7/27/2017","TotalPayment":"$561082.12","Status":6,"Type":1},{"OrderID":"41190-187","ShipCountry":"CL","ShipAddress":"6394 Morningstar Pass","ShipName":"Conn Inc","OrderDate":"9/7/2016","TotalPayment":"$300157.36","Status":6,"Type":2},{"OrderID":"63629-4123","ShipCountry":"RU","ShipAddress":"830 Melrose Road","ShipName":"Windler-Russel","OrderDate":"11/16/2016","TotalPayment":"$945654.99","Status":6,"Type":1},{"OrderID":"42549-531","ShipCountry":"CA","ShipAddress":"5890 High Crossing Center","ShipName":"Quitzon-Heaney","OrderDate":"1/9/2017","TotalPayment":"$1159771.35","Status":6,"Type":3},{"OrderID":"50436-3101","ShipCountry":"RU","ShipAddress":"83041 Browning Alley","ShipName":"Stroman LLC","OrderDate":"7/13/2016","TotalPayment":"$952775.26","Status":2,"Type":2}]},\n{"RecordID":214,"FirstName":"Corby","LastName":"Danjoie","Company":"Voolia","Email":"cdanjoie5x@prweb.com","Phone":"162-821-1027","Status":4,"Type":1,"Orders":[{"OrderID":"49781-081","ShipCountry":"BR","ShipAddress":"42942 Debra Road","ShipName":"Friesen-Blick","OrderDate":"7/24/2017","TotalPayment":"$280834.89","Status":6,"Type":1},{"OrderID":"0283-0998","ShipCountry":"ID","ShipAddress":"8 School Junction","ShipName":"Gerlach Inc","OrderDate":"3/2/2016","TotalPayment":"$552203.52","Status":4,"Type":1},{"OrderID":"63868-979","ShipCountry":"CN","ShipAddress":"155 Jay Terrace","ShipName":"Schaefer and Sons","OrderDate":"9/12/2017","TotalPayment":"$570950.65","Status":4,"Type":3},{"OrderID":"67457-259","ShipCountry":"PH","ShipAddress":"0496 Monument Place","ShipName":"Weber, Kohler and Stokes","OrderDate":"2/10/2016","TotalPayment":"$949650.59","Status":3,"Type":2},{"OrderID":"44237-016","ShipCountry":"NZ","ShipAddress":"731 Anthes Pass","ShipName":"Hane-Rodriguez","OrderDate":"12/29/2016","TotalPayment":"$764331.17","Status":1,"Type":3},{"OrderID":"55289-916","ShipCountry":"RS","ShipAddress":"9554 Barby Avenue","ShipName":"Champlin and Sons","OrderDate":"6/29/2017","TotalPayment":"$519940.76","Status":1,"Type":1},{"OrderID":"68258-6972","ShipCountry":"PE","ShipAddress":"77749 Park Meadow Lane","ShipName":"Kutch Inc","OrderDate":"4/6/2017","TotalPayment":"$111711.03","Status":4,"Type":3},{"OrderID":"43353-133","ShipCountry":"UA","ShipAddress":"6047 Columbus Road","ShipName":"Rippin-Lang","OrderDate":"11/28/2017","TotalPayment":"$724576.14","Status":2,"Type":1},{"OrderID":"61957-2134","ShipCountry":"CN","ShipAddress":"075 Acker Crossing","ShipName":"Grant, Zemlak and Collins","OrderDate":"12/18/2016","TotalPayment":"$1072477.76","Status":3,"Type":1}]},\n{"RecordID":215,"FirstName":"Merrile","LastName":"Mingey","Company":"Skidoo","Email":"mmingey5y@is.gd","Phone":"460-327-8426","Status":6,"Type":1,"Orders":[{"OrderID":"55154-2355","ShipCountry":"BA","ShipAddress":"598 Mosinee Way","ShipName":"Christiansen-Lowe","OrderDate":"1/17/2016","TotalPayment":"$873370.83","Status":6,"Type":3},{"OrderID":"63323-236","ShipCountry":"RU","ShipAddress":"24 David Circle","ShipName":"Kautzer and Sons","OrderDate":"12/23/2016","TotalPayment":"$551062.09","Status":4,"Type":3},{"OrderID":"68180-556","ShipCountry":"VE","ShipAddress":"6109 Emmet Hill","ShipName":"Blanda-Paucek","OrderDate":"10/29/2017","TotalPayment":"$61495.89","Status":6,"Type":3},{"OrderID":"51393-7436","ShipCountry":"ID","ShipAddress":"2 Service Terrace","ShipName":"Tremblay-Bahringer","OrderDate":"3/2/2017","TotalPayment":"$609759.71","Status":2,"Type":1},{"OrderID":"68645-460","ShipCountry":"CN","ShipAddress":"16 Sauthoff Circle","ShipName":"Mitchell, Blanda and Schmeler","OrderDate":"2/13/2017","TotalPayment":"$902189.31","Status":5,"Type":3},{"OrderID":"10202-974","ShipCountry":"PH","ShipAddress":"20 Farragut Hill","ShipName":"Boehm Inc","OrderDate":"10/17/2017","TotalPayment":"$503092.09","Status":5,"Type":1},{"OrderID":"0591-2884","ShipCountry":"RU","ShipAddress":"10 Larry Park","ShipName":"O\'Hara, Heathcote and Wolf","OrderDate":"7/23/2017","TotalPayment":"$1015015.90","Status":2,"Type":3},{"OrderID":"51672-1262","ShipCountry":"UA","ShipAddress":"9182 Florence Terrace","ShipName":"Klocko LLC","OrderDate":"6/28/2016","TotalPayment":"$175912.25","Status":6,"Type":2},{"OrderID":"55648-726","ShipCountry":"CO","ShipAddress":"364 Meadow Ridge Pass","ShipName":"Gleichner Inc","OrderDate":"1/2/2016","TotalPayment":"$789175.64","Status":2,"Type":3},{"OrderID":"21695-971","ShipCountry":"ID","ShipAddress":"9 Grasskamp Road","ShipName":"Mante LLC","OrderDate":"8/12/2017","TotalPayment":"$1100876.62","Status":5,"Type":2},{"OrderID":"51346-258","ShipCountry":"ID","ShipAddress":"01645 Mcguire Park","ShipName":"Osinski-Kling","OrderDate":"8/30/2017","TotalPayment":"$434189.64","Status":3,"Type":2},{"OrderID":"69124-001","ShipCountry":"PT","ShipAddress":"15 Sullivan Circle","ShipName":"Turcotte, Rolfson and Leuschke","OrderDate":"10/12/2017","TotalPayment":"$202712.93","Status":4,"Type":3},{"OrderID":"53217-008","ShipCountry":"PL","ShipAddress":"488 Melvin Avenue","ShipName":"Boyle-Rolfson","OrderDate":"4/4/2016","TotalPayment":"$21314.66","Status":4,"Type":1},{"OrderID":"68472-122","ShipCountry":"MG","ShipAddress":"85 Lukken Road","ShipName":"Hane-Schaden","OrderDate":"1/18/2016","TotalPayment":"$101534.50","Status":4,"Type":1},{"OrderID":"54868-5477","ShipCountry":"NG","ShipAddress":"150 Express Point","ShipName":"Hoeger, Carroll and Moen","OrderDate":"7/15/2016","TotalPayment":"$1013465.68","Status":3,"Type":3},{"OrderID":"0143-1210","ShipCountry":"CN","ShipAddress":"20 Pond Center","ShipName":"Bode-Torp","OrderDate":"1/28/2016","TotalPayment":"$926381.28","Status":6,"Type":1},{"OrderID":"54312-275","ShipCountry":"CN","ShipAddress":"26 Harbort Plaza","ShipName":"Ortiz Inc","OrderDate":"3/11/2016","TotalPayment":"$10233.31","Status":1,"Type":3},{"OrderID":"42291-665","ShipCountry":"CN","ShipAddress":"959 Londonderry Court","ShipName":"Larson Inc","OrderDate":"8/8/2017","TotalPayment":"$491946.86","Status":4,"Type":1},{"OrderID":"36987-1776","ShipCountry":"PE","ShipAddress":"1074 Eagan Drive","ShipName":"Okuneva-Welch","OrderDate":"11/8/2017","TotalPayment":"$507000.48","Status":6,"Type":1}]},\n{"RecordID":216,"FirstName":"Maximo","LastName":"Berrecloth","Company":"Fliptune","Email":"mberrecloth5z@soundcloud.com","Phone":"647-574-4200","Status":6,"Type":3,"Orders":[{"OrderID":"48951-1129","ShipCountry":"AR","ShipAddress":"23597 Nelson Drive","ShipName":"Schmitt Group","OrderDate":"7/27/2016","TotalPayment":"$1169403.60","Status":2,"Type":2},{"OrderID":"41167-3305","ShipCountry":"HR","ShipAddress":"21039 Sunfield Court","ShipName":"Hoppe-Leuschke","OrderDate":"2/13/2017","TotalPayment":"$464146.14","Status":3,"Type":1},{"OrderID":"45802-032","ShipCountry":"IR","ShipAddress":"0 Anhalt Hill","ShipName":"Wilderman, Koch and Rowe","OrderDate":"9/28/2016","TotalPayment":"$1121368.90","Status":4,"Type":2},{"OrderID":"0904-6012","ShipCountry":"UA","ShipAddress":"3259 Badeau Road","ShipName":"Cronin, Dare and Runolfsson","OrderDate":"5/4/2016","TotalPayment":"$770553.15","Status":5,"Type":3},{"OrderID":"42192-124","ShipCountry":"NO","ShipAddress":"0353 Village Parkway","ShipName":"Aufderhar Inc","OrderDate":"7/9/2016","TotalPayment":"$505915.40","Status":5,"Type":1},{"OrderID":"60867-101","ShipCountry":"CN","ShipAddress":"30 Hagan Avenue","ShipName":"O\'Conner-Stamm","OrderDate":"4/17/2017","TotalPayment":"$955269.04","Status":2,"Type":3},{"OrderID":"43063-512","ShipCountry":"CN","ShipAddress":"247 Magdeline Drive","ShipName":"Senger-Hyatt","OrderDate":"6/17/2016","TotalPayment":"$136057.50","Status":2,"Type":3},{"OrderID":"55111-182","ShipCountry":"CN","ShipAddress":"75039 Corry Way","ShipName":"Legros-Douglas","OrderDate":"12/11/2016","TotalPayment":"$1059053.86","Status":6,"Type":3},{"OrderID":"63323-463","ShipCountry":"CN","ShipAddress":"98799 Florence Circle","ShipName":"Hermiston, Blick and Okuneva","OrderDate":"10/15/2017","TotalPayment":"$1125308.41","Status":4,"Type":2},{"OrderID":"41250-255","ShipCountry":"KZ","ShipAddress":"61056 Katie Avenue","ShipName":"Kassulke Inc","OrderDate":"6/18/2017","TotalPayment":"$1020072.57","Status":5,"Type":3},{"OrderID":"0498-2420","ShipCountry":"CZ","ShipAddress":"92211 Steensland Parkway","ShipName":"Gislason LLC","OrderDate":"6/24/2016","TotalPayment":"$467016.91","Status":6,"Type":2},{"OrderID":"67046-981","ShipCountry":"ID","ShipAddress":"3 Melby Hill","ShipName":"Zemlak-Bartell","OrderDate":"7/20/2016","TotalPayment":"$251334.94","Status":4,"Type":2},{"OrderID":"10578-014","ShipCountry":"CO","ShipAddress":"5062 Laurel Avenue","ShipName":"Rau, Collins and Rau","OrderDate":"7/31/2017","TotalPayment":"$822067.78","Status":3,"Type":2},{"OrderID":"59788-002","ShipCountry":"CN","ShipAddress":"2 Fairfield Trail","ShipName":"Osinski-Spencer","OrderDate":"1/7/2017","TotalPayment":"$1082141.46","Status":1,"Type":3},{"OrderID":"0268-6647","ShipCountry":"BW","ShipAddress":"1 Morningstar Terrace","ShipName":"Johnson-Grimes","OrderDate":"5/31/2016","TotalPayment":"$676114.99","Status":6,"Type":3},{"OrderID":"0378-6905","ShipCountry":"CN","ShipAddress":"5 Division Avenue","ShipName":"Waters and Sons","OrderDate":"8/17/2016","TotalPayment":"$211877.11","Status":4,"Type":3},{"OrderID":"57520-1004","ShipCountry":"RU","ShipAddress":"59710 Logan Lane","ShipName":"Roob-Dicki","OrderDate":"10/3/2016","TotalPayment":"$524573.93","Status":2,"Type":1},{"OrderID":"55513-710","ShipCountry":"PT","ShipAddress":"759 Everett Plaza","ShipName":"Rice-Lowe","OrderDate":"9/29/2016","TotalPayment":"$681829.08","Status":5,"Type":3},{"OrderID":"54569-6244","ShipCountry":"UA","ShipAddress":"07 Coolidge Lane","ShipName":"Pagac-Pollich","OrderDate":"10/21/2017","TotalPayment":"$464488.87","Status":4,"Type":3},{"OrderID":"0378-5145","ShipCountry":"VN","ShipAddress":"0 Mosinee Point","ShipName":"Lubowitz-Macejkovic","OrderDate":"9/2/2017","TotalPayment":"$413652.89","Status":3,"Type":1}]},\n{"RecordID":217,"FirstName":"Bailey","LastName":"Sloane","Company":"Dynabox","Email":"bsloane60@weather.com","Phone":"843-422-2022","Status":1,"Type":2,"Orders":[{"OrderID":"53808-0542","ShipCountry":"ME","ShipAddress":"64087 Vidon Plaza","ShipName":"Leffler Group","OrderDate":"1/26/2017","TotalPayment":"$494500.08","Status":2,"Type":1},{"OrderID":"57525-013","ShipCountry":"CN","ShipAddress":"8064 Kenwood Place","ShipName":"Feest and Sons","OrderDate":"3/22/2017","TotalPayment":"$609229.15","Status":2,"Type":3},{"OrderID":"10056-484","ShipCountry":"SE","ShipAddress":"971 Wayridge Point","ShipName":"Kirlin, Nader and Welch","OrderDate":"1/22/2017","TotalPayment":"$598043.10","Status":2,"Type":2},{"OrderID":"61912-001","ShipCountry":"SE","ShipAddress":"881 Coolidge Crossing","ShipName":"Tillman Group","OrderDate":"2/17/2016","TotalPayment":"$285876.56","Status":2,"Type":3},{"OrderID":"49348-958","ShipCountry":"PT","ShipAddress":"28 Leroy Trail","ShipName":"Abbott and Sons","OrderDate":"9/4/2016","TotalPayment":"$966316.34","Status":4,"Type":1},{"OrderID":"68220-055","ShipCountry":"ID","ShipAddress":"9461 Leroy Alley","ShipName":"Torp, Mitchell and Wilderman","OrderDate":"12/31/2016","TotalPayment":"$66222.81","Status":5,"Type":1},{"OrderID":"36987-1073","ShipCountry":"CN","ShipAddress":"691 Donald Road","ShipName":"Tromp-Swaniawski","OrderDate":"9/22/2016","TotalPayment":"$291922.20","Status":3,"Type":2},{"OrderID":"0363-0340","ShipCountry":"CN","ShipAddress":"00504 Eastlawn Circle","ShipName":"Doyle-Crist","OrderDate":"12/19/2016","TotalPayment":"$580994.05","Status":5,"Type":3}]},\n{"RecordID":218,"FirstName":"Jeniece","LastName":"Gravet","Company":"Gigabox","Email":"jgravet61@ameblo.jp","Phone":"563-930-6595","Status":3,"Type":3,"Orders":[{"OrderID":"51672-4150","ShipCountry":"PH","ShipAddress":"0 Ridgeview Hill","ShipName":"Balistreri Inc","OrderDate":"1/20/2017","TotalPayment":"$476048.84","Status":4,"Type":2},{"OrderID":"0002-3235","ShipCountry":"KE","ShipAddress":"160 Troy Trail","ShipName":"Morar Inc","OrderDate":"6/26/2016","TotalPayment":"$1052726.74","Status":1,"Type":2},{"OrderID":"48878-4041","ShipCountry":"CN","ShipAddress":"84 Luster Drive","ShipName":"Bauch Inc","OrderDate":"10/16/2016","TotalPayment":"$180975.10","Status":1,"Type":1},{"OrderID":"52686-339","ShipCountry":"SE","ShipAddress":"41324 Hollow Ridge Park","ShipName":"Barton-Prosacco","OrderDate":"5/29/2016","TotalPayment":"$630389.53","Status":3,"Type":2},{"OrderID":"41163-109","ShipCountry":"UA","ShipAddress":"893 Sunbrook Road","ShipName":"Graham-Cassin","OrderDate":"11/19/2016","TotalPayment":"$1091061.75","Status":2,"Type":3},{"OrderID":"0143-1765","ShipCountry":"FR","ShipAddress":"04 Crowley Center","ShipName":"Konopelski, Stracke and Botsford","OrderDate":"8/7/2017","TotalPayment":"$679835.41","Status":6,"Type":1},{"OrderID":"12090-0042","ShipCountry":"BD","ShipAddress":"62390 Waywood Alley","ShipName":"Yost, Hackett and Kling","OrderDate":"12/31/2016","TotalPayment":"$1124275.58","Status":1,"Type":1},{"OrderID":"47781-298","ShipCountry":"BR","ShipAddress":"656 Stoughton Park","ShipName":"Kulas, Adams and Rodriguez","OrderDate":"1/13/2016","TotalPayment":"$279390.25","Status":2,"Type":2},{"OrderID":"0113-0186","ShipCountry":"CN","ShipAddress":"23600 Reinke Place","ShipName":"Sporer, Auer and Windler","OrderDate":"2/21/2016","TotalPayment":"$169736.47","Status":5,"Type":1},{"OrderID":"51803-002","ShipCountry":"UA","ShipAddress":"17347 Longview Point","ShipName":"Mosciski, Lubowitz and Olson","OrderDate":"9/16/2016","TotalPayment":"$859005.31","Status":4,"Type":3},{"OrderID":"49349-237","ShipCountry":"AR","ShipAddress":"4870 Novick Way","ShipName":"Baumbach Group","OrderDate":"1/3/2016","TotalPayment":"$896072.80","Status":6,"Type":3},{"OrderID":"10586-9105","ShipCountry":"JP","ShipAddress":"8 Waubesa Pass","ShipName":"Wintheiser and Sons","OrderDate":"10/25/2017","TotalPayment":"$1075861.43","Status":3,"Type":3},{"OrderID":"16729-154","ShipCountry":"CN","ShipAddress":"9 Pennsylvania Hill","ShipName":"Shanahan-Terry","OrderDate":"5/22/2017","TotalPayment":"$1008676.07","Status":2,"Type":2}]},\n{"RecordID":219,"FirstName":"Beatrix","LastName":"Jennaroy","Company":"Jamia","Email":"bjennaroy62@delicious.com","Phone":"644-895-0021","Status":1,"Type":1,"Orders":[{"OrderID":"67544-656","ShipCountry":"MM","ShipAddress":"563 Dwight Circle","ShipName":"Metz-Hamill","OrderDate":"3/4/2017","TotalPayment":"$576295.07","Status":4,"Type":3},{"OrderID":"0363-0884","ShipCountry":"TH","ShipAddress":"9267 Kropf Junction","ShipName":"Morar-Hand","OrderDate":"9/26/2016","TotalPayment":"$1070752.28","Status":1,"Type":1},{"OrderID":"0053-7670","ShipCountry":"BR","ShipAddress":"4619 Blue Bill Park Avenue","ShipName":"Rodriguez LLC","OrderDate":"11/22/2017","TotalPayment":"$1004403.94","Status":1,"Type":2},{"OrderID":"55154-8269","ShipCountry":"TH","ShipAddress":"2 Badeau Center","ShipName":"Berge-Howe","OrderDate":"6/29/2016","TotalPayment":"$848395.08","Status":4,"Type":3},{"OrderID":"58668-1991","ShipCountry":"CO","ShipAddress":"8 Hanson Plaza","ShipName":"Green Group","OrderDate":"9/20/2017","TotalPayment":"$237152.47","Status":1,"Type":1},{"OrderID":"0615-7750","ShipCountry":"RU","ShipAddress":"73 Reinke Alley","ShipName":"Shanahan-Lindgren","OrderDate":"2/7/2017","TotalPayment":"$900985.72","Status":4,"Type":1},{"OrderID":"45802-770","ShipCountry":"TN","ShipAddress":"31483 Sutteridge Junction","ShipName":"Schuster, Buckridge and Bergstrom","OrderDate":"2/1/2016","TotalPayment":"$107117.23","Status":4,"Type":1},{"OrderID":"61096-0024","ShipCountry":"ID","ShipAddress":"75556 Independence Place","ShipName":"Luettgen-Barrows","OrderDate":"7/27/2017","TotalPayment":"$1180971.70","Status":1,"Type":1},{"OrderID":"54868-4563","ShipCountry":"FR","ShipAddress":"1117 American Hill","ShipName":"Halvorson, Hackett and McLaughlin","OrderDate":"7/26/2017","TotalPayment":"$457244.90","Status":5,"Type":1},{"OrderID":"57955-1561","ShipCountry":"ME","ShipAddress":"32 Stang Court","ShipName":"Howe LLC","OrderDate":"5/26/2017","TotalPayment":"$874431.13","Status":4,"Type":1},{"OrderID":"66715-9702","ShipCountry":"ID","ShipAddress":"57 Sutherland Alley","ShipName":"Ledner, Rempel and Murazik","OrderDate":"1/21/2017","TotalPayment":"$384487.15","Status":5,"Type":1},{"OrderID":"51824-017","ShipCountry":"FR","ShipAddress":"23896 Morrow Pass","ShipName":"Ankunding, Armstrong and McDermott","OrderDate":"5/14/2016","TotalPayment":"$906828.09","Status":4,"Type":3},{"OrderID":"66391-0610","ShipCountry":"TZ","ShipAddress":"450 Iowa Circle","ShipName":"Haag Group","OrderDate":"2/16/2016","TotalPayment":"$701862.36","Status":1,"Type":3},{"OrderID":"36987-2117","ShipCountry":"CN","ShipAddress":"85 Glacier Hill Way","ShipName":"Smith Inc","OrderDate":"3/25/2017","TotalPayment":"$212931.64","Status":3,"Type":2},{"OrderID":"68788-1738","ShipCountry":"EG","ShipAddress":"19153 Drewry Road","ShipName":"Considine LLC","OrderDate":"6/8/2017","TotalPayment":"$1011992.12","Status":2,"Type":1}]},\n{"RecordID":220,"FirstName":"Si","LastName":"Dovington","Company":"Gigashots","Email":"sdovington63@4shared.com","Phone":"760-462-1489","Status":4,"Type":1,"Orders":[{"OrderID":"58930-036","ShipCountry":"RU","ShipAddress":"65 Nancy Street","ShipName":"Hartmann, Hilpert and Predovic","OrderDate":"9/4/2017","TotalPayment":"$189284.36","Status":5,"Type":3},{"OrderID":"41190-648","ShipCountry":"NC","ShipAddress":"36 Morrow Place","ShipName":"Satterfield LLC","OrderDate":"11/8/2016","TotalPayment":"$525867.39","Status":5,"Type":2},{"OrderID":"0168-0055","ShipCountry":"AR","ShipAddress":"32 Leroy Avenue","ShipName":"Hintz, Glover and Waelchi","OrderDate":"11/25/2016","TotalPayment":"$564055.97","Status":4,"Type":2},{"OrderID":"21695-197","ShipCountry":"CL","ShipAddress":"607 Mandrake Drive","ShipName":"Ward, Hauck and Dooley","OrderDate":"1/24/2017","TotalPayment":"$556831.45","Status":3,"Type":1},{"OrderID":"36987-2003","ShipCountry":"CN","ShipAddress":"72 Stuart Junction","ShipName":"Harvey and Sons","OrderDate":"6/12/2016","TotalPayment":"$201455.23","Status":1,"Type":1},{"OrderID":"76472-1134","ShipCountry":"CN","ShipAddress":"43 Maryland Drive","ShipName":"Berge, Parisian and Mann","OrderDate":"9/28/2016","TotalPayment":"$1049031.09","Status":5,"Type":1}]},\n{"RecordID":221,"FirstName":"Keene","LastName":"Osmund","Company":"Zoomzone","Email":"kosmund64@soundcloud.com","Phone":"971-817-0072","Status":5,"Type":2,"Orders":[{"OrderID":"60681-2902","ShipCountry":"CN","ShipAddress":"133 Golf Course Pass","ShipName":"Kutch, Stoltenberg and Lesch","OrderDate":"1/28/2016","TotalPayment":"$566946.74","Status":1,"Type":2},{"OrderID":"10578-026","ShipCountry":"VN","ShipAddress":"097 Bartillon Avenue","ShipName":"Howe, Crooks and Herzog","OrderDate":"4/18/2016","TotalPayment":"$736553.26","Status":1,"Type":2},{"OrderID":"49781-077","ShipCountry":"ID","ShipAddress":"17 High Crossing Place","ShipName":"Borer, Vandervort and Altenwerth","OrderDate":"7/8/2016","TotalPayment":"$534712.79","Status":3,"Type":3},{"OrderID":"53329-101","ShipCountry":"US","ShipAddress":"6384 Badeau Road","ShipName":"Wilkinson, Gislason and Waelchi","OrderDate":"10/27/2016","TotalPayment":"$421380.82","Status":1,"Type":3},{"OrderID":"0703-3321","ShipCountry":"RU","ShipAddress":"92 Killdeer Parkway","ShipName":"Bogan-Conroy","OrderDate":"5/16/2017","TotalPayment":"$678408.71","Status":1,"Type":3},{"OrderID":"50458-094","ShipCountry":"VN","ShipAddress":"86234 Laurel Center","ShipName":"Marquardt Group","OrderDate":"4/13/2017","TotalPayment":"$991018.07","Status":2,"Type":3},{"OrderID":"49348-573","ShipCountry":"CN","ShipAddress":"3305 Bunting Plaza","ShipName":"Morissette-Leannon","OrderDate":"9/23/2016","TotalPayment":"$991276.69","Status":3,"Type":2},{"OrderID":"14537-966","ShipCountry":"CO","ShipAddress":"46 Maple Road","ShipName":"Will, Erdman and Kutch","OrderDate":"1/8/2016","TotalPayment":"$402454.41","Status":5,"Type":3},{"OrderID":"0132-0208","ShipCountry":"JP","ShipAddress":"4 Glendale Pass","ShipName":"Funk-Hudson","OrderDate":"7/24/2016","TotalPayment":"$591710.31","Status":3,"Type":2},{"OrderID":"13537-527","ShipCountry":"RU","ShipAddress":"7152 Ryan Street","ShipName":"King-Hilpert","OrderDate":"6/25/2017","TotalPayment":"$456129.22","Status":6,"Type":1},{"OrderID":"0087-2775","ShipCountry":"SE","ShipAddress":"25188 Park Meadow Lane","ShipName":"Bashirian-Jacobs","OrderDate":"5/17/2016","TotalPayment":"$909641.59","Status":2,"Type":1},{"OrderID":"54272-201","ShipCountry":"US","ShipAddress":"96038 Starling Lane","ShipName":"Schmitt-Rodriguez","OrderDate":"8/21/2016","TotalPayment":"$455078.78","Status":4,"Type":3},{"OrderID":"63181-0012","ShipCountry":"RU","ShipAddress":"8 Debra Avenue","ShipName":"Gerlach LLC","OrderDate":"7/20/2017","TotalPayment":"$72064.62","Status":4,"Type":1},{"OrderID":"59779-219","ShipCountry":"BR","ShipAddress":"3548 Magdeline Parkway","ShipName":"Dare, Conroy and Torphy","OrderDate":"1/26/2017","TotalPayment":"$173154.86","Status":1,"Type":1},{"OrderID":"54973-9120","ShipCountry":"ID","ShipAddress":"595 Mendota Avenue","ShipName":"Hills-Mann","OrderDate":"4/7/2016","TotalPayment":"$730834.94","Status":3,"Type":3},{"OrderID":"0268-1615","ShipCountry":"VN","ShipAddress":"4 Fair Oaks Street","ShipName":"Cruickshank Inc","OrderDate":"3/2/2017","TotalPayment":"$1153420.22","Status":2,"Type":2},{"OrderID":"50383-933","ShipCountry":"PT","ShipAddress":"7523 Lukken Hill","ShipName":"Feil-Treutel","OrderDate":"11/29/2017","TotalPayment":"$489305.13","Status":6,"Type":1}]},\n{"RecordID":222,"FirstName":"Maura","LastName":"Openshaw","Company":"Mymm","Email":"mopenshaw65@scribd.com","Phone":"899-154-7742","Status":4,"Type":3,"Orders":[{"OrderID":"59886-336","ShipCountry":"CN","ShipAddress":"317 Daystar Court","ShipName":"Crist-Towne","OrderDate":"4/24/2017","TotalPayment":"$948024.36","Status":2,"Type":3},{"OrderID":"50436-4233","ShipCountry":"CN","ShipAddress":"97 American Ash Terrace","ShipName":"Hilpert Group","OrderDate":"2/11/2017","TotalPayment":"$1146778.00","Status":2,"Type":3},{"OrderID":"11822-0471","ShipCountry":"RU","ShipAddress":"258 Hazelcrest Avenue","ShipName":"Kautzer Inc","OrderDate":"7/2/2016","TotalPayment":"$678381.99","Status":2,"Type":3},{"OrderID":"21695-808","ShipCountry":"ZA","ShipAddress":"4656 Rowland Court","ShipName":"Waters-Emmerich","OrderDate":"9/9/2017","TotalPayment":"$523134.87","Status":1,"Type":3},{"OrderID":"36800-355","ShipCountry":"GR","ShipAddress":"3123 Buena Vista Crossing","ShipName":"Hudson-Block","OrderDate":"2/27/2016","TotalPayment":"$205018.45","Status":1,"Type":2},{"OrderID":"63029-901","ShipCountry":"CN","ShipAddress":"22 Larry Lane","ShipName":"Sawayn LLC","OrderDate":"9/9/2016","TotalPayment":"$397397.05","Status":2,"Type":1},{"OrderID":"0378-6324","ShipCountry":"DO","ShipAddress":"86998 Algoma Hill","ShipName":"Considine and Sons","OrderDate":"4/16/2016","TotalPayment":"$164213.11","Status":3,"Type":2},{"OrderID":"55253-277","ShipCountry":"CN","ShipAddress":"11542 Jenifer Junction","ShipName":"Rolfson-Crooks","OrderDate":"6/7/2016","TotalPayment":"$1197093.70","Status":4,"Type":3},{"OrderID":"55910-464","ShipCountry":"SY","ShipAddress":"647 Clemons Terrace","ShipName":"Buckridge-Hyatt","OrderDate":"7/6/2017","TotalPayment":"$1185537.16","Status":2,"Type":3}]},\n{"RecordID":223,"FirstName":"Ham","LastName":"Collihole","Company":"Yodel","Email":"hcollihole66@nytimes.com","Phone":"863-859-4863","Status":3,"Type":3,"Orders":[{"OrderID":"68669-711","ShipCountry":"CN","ShipAddress":"28541 Autumn Leaf Parkway","ShipName":"Turner-Mann","OrderDate":"11/28/2017","TotalPayment":"$275470.06","Status":3,"Type":2},{"OrderID":"51386-750","ShipCountry":"VN","ShipAddress":"63009 Springview Court","ShipName":"Parker-Jast","OrderDate":"10/7/2016","TotalPayment":"$594668.12","Status":6,"Type":3},{"OrderID":"51862-227","ShipCountry":"JP","ShipAddress":"0 Roxbury Pass","ShipName":"Kulas, Huels and Roberts","OrderDate":"8/13/2017","TotalPayment":"$354298.45","Status":5,"Type":2},{"OrderID":"0169-0081","ShipCountry":"TZ","ShipAddress":"54 Fieldstone Court","ShipName":"Kemmer Inc","OrderDate":"1/27/2017","TotalPayment":"$426188.29","Status":3,"Type":1},{"OrderID":"68151-1991","ShipCountry":"ID","ShipAddress":"1126 Granby Junction","ShipName":"Gutkowski, Blick and Breitenberg","OrderDate":"1/22/2017","TotalPayment":"$917863.53","Status":2,"Type":1},{"OrderID":"60778-040","ShipCountry":"TH","ShipAddress":"3 Ridgeway Hill","ShipName":"Hermiston Inc","OrderDate":"5/26/2017","TotalPayment":"$323184.46","Status":4,"Type":2},{"OrderID":"21130-897","ShipCountry":"CZ","ShipAddress":"30 Jackson Park","ShipName":"Williamson LLC","OrderDate":"1/13/2016","TotalPayment":"$1074870.81","Status":3,"Type":2},{"OrderID":"68084-376","ShipCountry":"IR","ShipAddress":"92 Macpherson Avenue","ShipName":"Kreiger, Rippin and Maggio","OrderDate":"6/19/2017","TotalPayment":"$521029.01","Status":3,"Type":1},{"OrderID":"50227-3211","ShipCountry":"IR","ShipAddress":"955 Vera Hill","ShipName":"Konopelski, Tromp and Schuster","OrderDate":"3/9/2017","TotalPayment":"$655637.13","Status":3,"Type":3},{"OrderID":"68026-342","ShipCountry":"ID","ShipAddress":"7766 Shoshone Avenue","ShipName":"Pollich Inc","OrderDate":"6/5/2016","TotalPayment":"$387695.66","Status":3,"Type":3},{"OrderID":"50112-514","ShipCountry":"CO","ShipAddress":"1069 Derek Lane","ShipName":"Wisoky-Heaney","OrderDate":"6/20/2016","TotalPayment":"$168375.29","Status":3,"Type":2},{"OrderID":"68233-021","ShipCountry":"KZ","ShipAddress":"3 Onsgard Road","ShipName":"Treutel-Schuppe","OrderDate":"10/10/2017","TotalPayment":"$363815.47","Status":3,"Type":1},{"OrderID":"0268-6725","ShipCountry":"PL","ShipAddress":"7940 Oneill Trail","ShipName":"Lowe, Mayer and Jakubowski","OrderDate":"12/5/2016","TotalPayment":"$395799.49","Status":4,"Type":3},{"OrderID":"52125-413","ShipCountry":"TZ","ShipAddress":"86 Transport Place","ShipName":"Reichel-Erdman","OrderDate":"7/18/2017","TotalPayment":"$18231.45","Status":4,"Type":1},{"OrderID":"65601-736","ShipCountry":"SE","ShipAddress":"1711 Old Gate Street","ShipName":"Lubowitz Inc","OrderDate":"5/23/2017","TotalPayment":"$49084.14","Status":6,"Type":2},{"OrderID":"0069-0990","ShipCountry":"DE","ShipAddress":"97 Westport Hill","ShipName":"Treutel, Hoppe and Gerhold","OrderDate":"6/9/2016","TotalPayment":"$529501.01","Status":5,"Type":2},{"OrderID":"66993-875","ShipCountry":"MX","ShipAddress":"77416 Messerschmidt Plaza","ShipName":"Collins, Gusikowski and Krajcik","OrderDate":"5/3/2017","TotalPayment":"$1043385.57","Status":4,"Type":1},{"OrderID":"35000-608","ShipCountry":"FR","ShipAddress":"9 Monument Road","ShipName":"Wunsch Inc","OrderDate":"2/2/2017","TotalPayment":"$37470.97","Status":5,"Type":1},{"OrderID":"64980-509","ShipCountry":"PT","ShipAddress":"73179 Havey Way","ShipName":"Johnson, Schmitt and Blanda","OrderDate":"6/20/2017","TotalPayment":"$895771.00","Status":4,"Type":3},{"OrderID":"63629-1459","ShipCountry":"CN","ShipAddress":"328 Miller Avenue","ShipName":"Predovic-Carter","OrderDate":"4/30/2017","TotalPayment":"$447226.77","Status":2,"Type":1}]},\n{"RecordID":224,"FirstName":"Lea","LastName":"Vowden","Company":"Lajo","Email":"lvowden67@angelfire.com","Phone":"654-307-8290","Status":5,"Type":2,"Orders":[{"OrderID":"52410-3040","ShipCountry":"CN","ShipAddress":"47120 Farragut Avenue","ShipName":"Keeling, Cartwright and Block","OrderDate":"9/11/2017","TotalPayment":"$408676.96","Status":3,"Type":3},{"OrderID":"48951-6051","ShipCountry":"TZ","ShipAddress":"5 Arkansas Court","ShipName":"Cummerata Inc","OrderDate":"2/7/2016","TotalPayment":"$1001049.34","Status":6,"Type":3},{"OrderID":"0338-1139","ShipCountry":"ID","ShipAddress":"3368 Trailsway Terrace","ShipName":"Brekke, Metz and Sanford","OrderDate":"2/2/2016","TotalPayment":"$176561.01","Status":5,"Type":3},{"OrderID":"0378-1650","ShipCountry":"CN","ShipAddress":"89350 Forest Dale Circle","ShipName":"Flatley-Eichmann","OrderDate":"3/31/2016","TotalPayment":"$398903.85","Status":2,"Type":3},{"OrderID":"55700-012","ShipCountry":"ID","ShipAddress":"4 Waubesa Place","ShipName":"Cronin-Fisher","OrderDate":"3/24/2016","TotalPayment":"$946150.61","Status":6,"Type":1},{"OrderID":"68084-061","ShipCountry":"JP","ShipAddress":"0313 Gina Plaza","ShipName":"Funk, Kunde and Feil","OrderDate":"4/9/2016","TotalPayment":"$1099186.74","Status":6,"Type":3},{"OrderID":"33992-1889","ShipCountry":"CM","ShipAddress":"53 Melrose Junction","ShipName":"Kiehn, O\'Hara and Schultz","OrderDate":"6/6/2017","TotalPayment":"$422750.35","Status":2,"Type":1},{"OrderID":"36987-1584","ShipCountry":"LR","ShipAddress":"148 Alpine Hill","ShipName":"Durgan-Daniel","OrderDate":"4/3/2017","TotalPayment":"$1111945.22","Status":3,"Type":2},{"OrderID":"24208-430","ShipCountry":"TM","ShipAddress":"2 Lukken Circle","ShipName":"Bergstrom, Gerlach and Marvin","OrderDate":"2/28/2016","TotalPayment":"$291364.64","Status":1,"Type":1},{"OrderID":"51079-573","ShipCountry":"CN","ShipAddress":"16111 Anzinger Trail","ShipName":"Wisoky and Sons","OrderDate":"12/15/2017","TotalPayment":"$774089.43","Status":5,"Type":1},{"OrderID":"58930-018","ShipCountry":"PT","ShipAddress":"935 Vermont Hill","ShipName":"Wisoky, Barrows and Howe","OrderDate":"6/9/2016","TotalPayment":"$843641.56","Status":2,"Type":1},{"OrderID":"64980-158","ShipCountry":"CA","ShipAddress":"1743 Colorado Hill","ShipName":"McDermott Group","OrderDate":"9/30/2017","TotalPayment":"$583277.57","Status":3,"Type":1}]},\n{"RecordID":225,"FirstName":"Nissie","LastName":"Moysey","Company":"LiveZ","Email":"nmoysey68@unblog.fr","Phone":"327-923-5783","Status":3,"Type":3,"Orders":[{"OrderID":"0781-1036","ShipCountry":"RS","ShipAddress":"15900 Talmadge Road","ShipName":"Schmeler LLC","OrderDate":"6/11/2017","TotalPayment":"$458688.68","Status":3,"Type":1},{"OrderID":"60429-099","ShipCountry":"CN","ShipAddress":"6156 Thompson Road","ShipName":"O\'Kon-Sporer","OrderDate":"12/23/2017","TotalPayment":"$189183.54","Status":1,"Type":3},{"OrderID":"0113-0175","ShipCountry":"CN","ShipAddress":"7515 Vahlen Road","ShipName":"O\'Connell, Brekke and Abbott","OrderDate":"12/26/2017","TotalPayment":"$76494.76","Status":1,"Type":1},{"OrderID":"49520-201","ShipCountry":"FR","ShipAddress":"774 Carberry Place","ShipName":"Runte-Hackett","OrderDate":"7/21/2016","TotalPayment":"$844770.49","Status":3,"Type":2},{"OrderID":"48951-1150","ShipCountry":"CN","ShipAddress":"2399 8th Circle","ShipName":"Ziemann, Breitenberg and Koch","OrderDate":"4/10/2017","TotalPayment":"$839399.72","Status":2,"Type":2},{"OrderID":"63187-148","ShipCountry":"ID","ShipAddress":"262 Knutson Plaza","ShipName":"Wilderman-Wiza","OrderDate":"3/29/2017","TotalPayment":"$487678.99","Status":5,"Type":2},{"OrderID":"49349-563","ShipCountry":"CL","ShipAddress":"083 Macpherson Center","ShipName":"Langosh-Littel","OrderDate":"12/14/2017","TotalPayment":"$45608.23","Status":2,"Type":3},{"OrderID":"0078-0453","ShipCountry":"PH","ShipAddress":"7 Hayes Crossing","ShipName":"Ruecker LLC","OrderDate":"3/6/2016","TotalPayment":"$734542.46","Status":3,"Type":1},{"OrderID":"36987-1921","ShipCountry":"GM","ShipAddress":"031 Gina Avenue","ShipName":"Schumm Inc","OrderDate":"11/21/2016","TotalPayment":"$283512.39","Status":3,"Type":1}]},\n{"RecordID":226,"FirstName":"Tedmund","LastName":"Sandbatch","Company":"Vidoo","Email":"tsandbatch69@tripadvisor.com","Phone":"526-726-7709","Status":4,"Type":1,"Orders":[{"OrderID":"52959-776","ShipCountry":"CN","ShipAddress":"67510 Melvin Crossing","ShipName":"Wiegand, Mertz and Farrell","OrderDate":"2/24/2016","TotalPayment":"$821113.02","Status":6,"Type":1},{"OrderID":"42549-508","ShipCountry":"ID","ShipAddress":"4788 Ridge Oak Center","ShipName":"Lind Group","OrderDate":"12/3/2017","TotalPayment":"$41569.19","Status":1,"Type":1},{"OrderID":"0378-4296","ShipCountry":"BR","ShipAddress":"39992 Charing Cross Street","ShipName":"Schroeder Group","OrderDate":"5/24/2016","TotalPayment":"$928125.70","Status":1,"Type":2},{"OrderID":"57520-0139","ShipCountry":"ID","ShipAddress":"395 Florence Way","ShipName":"Shanahan and Sons","OrderDate":"12/3/2016","TotalPayment":"$112640.50","Status":4,"Type":2},{"OrderID":"59078-020","ShipCountry":"PE","ShipAddress":"43321 Memorial Plaza","ShipName":"Tremblay-Oberbrunner","OrderDate":"7/4/2016","TotalPayment":"$1093935.11","Status":2,"Type":2},{"OrderID":"65862-466","ShipCountry":"CN","ShipAddress":"9340 Lotheville Crossing","ShipName":"Wisoky, Stanton and Jaskolski","OrderDate":"12/16/2017","TotalPayment":"$998473.74","Status":2,"Type":2},{"OrderID":"0264-9872","ShipCountry":"BW","ShipAddress":"5005 Stang Pass","ShipName":"Ferry and Sons","OrderDate":"1/12/2017","TotalPayment":"$1147308.87","Status":4,"Type":2},{"OrderID":"43406-0051","ShipCountry":"BA","ShipAddress":"963 Bartelt Center","ShipName":"Mills Group","OrderDate":"6/18/2016","TotalPayment":"$174783.30","Status":6,"Type":3},{"OrderID":"70253-250","ShipCountry":"SE","ShipAddress":"4 Nelson Court","ShipName":"Schneider-Grimes","OrderDate":"3/8/2017","TotalPayment":"$643491.94","Status":1,"Type":2},{"OrderID":"52219-010","ShipCountry":"BR","ShipAddress":"8296 Sage Alley","ShipName":"Denesik LLC","OrderDate":"11/18/2017","TotalPayment":"$397443.11","Status":4,"Type":3},{"OrderID":"55154-1134","ShipCountry":"AR","ShipAddress":"5 Tennyson Plaza","ShipName":"Spencer and Sons","OrderDate":"9/5/2017","TotalPayment":"$851409.33","Status":1,"Type":1},{"OrderID":"35356-786","ShipCountry":"DE","ShipAddress":"011 Mallard Place","ShipName":"Dietrich and Sons","OrderDate":"1/20/2017","TotalPayment":"$938435.94","Status":2,"Type":1},{"OrderID":"46123-003","ShipCountry":"CN","ShipAddress":"6866 Dottie Trail","ShipName":"Sauer-Larson","OrderDate":"8/7/2017","TotalPayment":"$495369.22","Status":6,"Type":1}]},\n{"RecordID":227,"FirstName":"Jenine","LastName":"Dorre","Company":"Blogpad","Email":"jdorre6a@dmoz.org","Phone":"404-490-5076","Status":5,"Type":3,"Orders":[{"OrderID":"0591-3138","ShipCountry":"ID","ShipAddress":"43937 Beilfuss Crossing","ShipName":"Kunze Group","OrderDate":"5/15/2017","TotalPayment":"$1106466.16","Status":3,"Type":3},{"OrderID":"52584-052","ShipCountry":"PH","ShipAddress":"111 Morningstar Drive","ShipName":"Koch-Hansen","OrderDate":"12/13/2017","TotalPayment":"$819937.55","Status":2,"Type":1},{"OrderID":"10742-8147","ShipCountry":"CN","ShipAddress":"20367 Fairfield Pass","ShipName":"Kautzer, Jones and Cummerata","OrderDate":"2/16/2016","TotalPayment":"$123061.98","Status":2,"Type":1},{"OrderID":"10345-023","ShipCountry":"CN","ShipAddress":"416 2nd Point","ShipName":"Beier Inc","OrderDate":"1/27/2017","TotalPayment":"$671919.27","Status":6,"Type":2},{"OrderID":"47593-492","ShipCountry":"BR","ShipAddress":"022 Comanche Alley","ShipName":"Lynch-Murphy","OrderDate":"8/30/2016","TotalPayment":"$178517.80","Status":5,"Type":3},{"OrderID":"63629-4543","ShipCountry":"RU","ShipAddress":"3 Pierstorff Court","ShipName":"Littel, Ryan and Strosin","OrderDate":"6/14/2016","TotalPayment":"$433698.45","Status":5,"Type":3},{"OrderID":"52125-104","ShipCountry":"PK","ShipAddress":"0771 Bunker Hill Pass","ShipName":"Abshire-Fadel","OrderDate":"12/30/2017","TotalPayment":"$590103.73","Status":5,"Type":2},{"OrderID":"52959-549","ShipCountry":"PH","ShipAddress":"8515 Eagle Crest Court","ShipName":"D\'Amore-Fadel","OrderDate":"5/17/2016","TotalPayment":"$898176.55","Status":5,"Type":1},{"OrderID":"65044-1911","ShipCountry":"CO","ShipAddress":"3 Sutherland Lane","ShipName":"Rowe-Langosh","OrderDate":"10/9/2016","TotalPayment":"$294596.62","Status":5,"Type":1},{"OrderID":"43068-104","ShipCountry":"UG","ShipAddress":"974 Macpherson Road","ShipName":"Ritchie-Blanda","OrderDate":"5/31/2016","TotalPayment":"$246389.70","Status":2,"Type":2},{"OrderID":"54838-571","ShipCountry":"YE","ShipAddress":"95 Oriole Drive","ShipName":"Streich LLC","OrderDate":"11/5/2016","TotalPayment":"$354866.28","Status":6,"Type":3},{"OrderID":"49288-0090","ShipCountry":"CO","ShipAddress":"7 Bonner Avenue","ShipName":"Wunsch Inc","OrderDate":"9/6/2017","TotalPayment":"$827860.56","Status":2,"Type":2},{"OrderID":"76439-308","ShipCountry":"PT","ShipAddress":"29247 Sloan Court","ShipName":"Green-Wuckert","OrderDate":"6/17/2016","TotalPayment":"$45682.26","Status":5,"Type":2},{"OrderID":"0591-3450","ShipCountry":"CN","ShipAddress":"7 Summer Ridge Crossing","ShipName":"Hegmann-Kihn","OrderDate":"5/17/2016","TotalPayment":"$313451.45","Status":1,"Type":3},{"OrderID":"75857-1147","ShipCountry":"FR","ShipAddress":"5 Blaine Circle","ShipName":"Sipes-McDermott","OrderDate":"9/16/2016","TotalPayment":"$1072352.04","Status":6,"Type":2}]},\n{"RecordID":228,"FirstName":"Farr","LastName":"Goulborne","Company":"Wordpedia","Email":"fgoulborne6b@bing.com","Phone":"288-981-5830","Status":4,"Type":2,"Orders":[{"OrderID":"63323-467","ShipCountry":"GR","ShipAddress":"6282 Jackson Street","ShipName":"Mosciski Inc","OrderDate":"4/27/2016","TotalPayment":"$1171712.26","Status":3,"Type":2},{"OrderID":"12830-810","ShipCountry":"SY","ShipAddress":"12862 Derek Plaza","ShipName":"Klocko, Herman and Hickle","OrderDate":"4/30/2016","TotalPayment":"$862808.97","Status":3,"Type":3},{"OrderID":"0904-3524","ShipCountry":"PH","ShipAddress":"093 Warner Circle","ShipName":"Rippin, Hodkiewicz and Leuschke","OrderDate":"2/1/2016","TotalPayment":"$378858.87","Status":5,"Type":3},{"OrderID":"48951-8250","ShipCountry":"CN","ShipAddress":"97 Glendale Point","ShipName":"Rempel, Turner and Champlin","OrderDate":"5/22/2017","TotalPayment":"$509938.03","Status":6,"Type":2},{"OrderID":"42549-644","ShipCountry":"PL","ShipAddress":"20 Express Parkway","ShipName":"Christiansen, Donnelly and Russel","OrderDate":"1/28/2016","TotalPayment":"$1063149.99","Status":5,"Type":3},{"OrderID":"55289-048","ShipCountry":"CN","ShipAddress":"24 East Street","ShipName":"Schimmel, Hand and Lowe","OrderDate":"9/6/2017","TotalPayment":"$251321.22","Status":1,"Type":2},{"OrderID":"48417-780","ShipCountry":"ID","ShipAddress":"90 Green Circle","ShipName":"Bernhard Group","OrderDate":"3/14/2016","TotalPayment":"$13608.84","Status":5,"Type":1}]},\n{"RecordID":229,"FirstName":"Christian","LastName":"Vinker","Company":"Babbleblab","Email":"cvinker6c@vistaprint.com","Phone":"410-918-6478","Status":4,"Type":2,"Orders":[{"OrderID":"0268-0940","ShipCountry":"IL","ShipAddress":"9591 Fairfield Point","ShipName":"Kertzmann and Sons","OrderDate":"8/19/2016","TotalPayment":"$676910.30","Status":1,"Type":3},{"OrderID":"67767-117","ShipCountry":"PT","ShipAddress":"9022 Debs Trail","ShipName":"Kuhic-Champlin","OrderDate":"4/30/2016","TotalPayment":"$1148317.19","Status":3,"Type":3},{"OrderID":"55150-120","ShipCountry":"TH","ShipAddress":"179 Westridge Lane","ShipName":"Bode, Langosh and Konopelski","OrderDate":"11/14/2016","TotalPayment":"$836828.90","Status":3,"Type":2},{"OrderID":"10096-0260","ShipCountry":"KH","ShipAddress":"555 Rutledge Crossing","ShipName":"Rippin, Blanda and Leuschke","OrderDate":"3/28/2016","TotalPayment":"$285208.21","Status":3,"Type":1},{"OrderID":"75848-0500","ShipCountry":"CN","ShipAddress":"843 Ruskin Way","ShipName":"Schinner, Raynor and O\'Hara","OrderDate":"4/11/2017","TotalPayment":"$204316.28","Status":2,"Type":3},{"OrderID":"36987-2867","ShipCountry":"CA","ShipAddress":"28490 Melrose Place","ShipName":"Rodriguez-Koch","OrderDate":"7/2/2017","TotalPayment":"$165403.31","Status":4,"Type":3},{"OrderID":"35356-799","ShipCountry":"PL","ShipAddress":"260 Kedzie Circle","ShipName":"Wunsch, Goldner and Kuphal","OrderDate":"8/24/2017","TotalPayment":"$390564.25","Status":6,"Type":1},{"OrderID":"58177-380","ShipCountry":"CN","ShipAddress":"11391 Heffernan Pass","ShipName":"Klocko-Gutmann","OrderDate":"1/14/2017","TotalPayment":"$820987.59","Status":5,"Type":1},{"OrderID":"42627-217","ShipCountry":"CN","ShipAddress":"36180 Hallows Trail","ShipName":"Rosenbaum, Blick and Oberbrunner","OrderDate":"9/18/2017","TotalPayment":"$13543.94","Status":1,"Type":2},{"OrderID":"46362-003","ShipCountry":"CN","ShipAddress":"66393 Dapin Drive","ShipName":"Hudson-Hermann","OrderDate":"11/6/2016","TotalPayment":"$251207.78","Status":1,"Type":2},{"OrderID":"49349-234","ShipCountry":"RU","ShipAddress":"84818 Maple Wood Crossing","ShipName":"Ondricka-Sporer","OrderDate":"7/23/2016","TotalPayment":"$861592.85","Status":1,"Type":1},{"OrderID":"46122-217","ShipCountry":"CZ","ShipAddress":"901 Green Ridge Drive","ShipName":"Morar, Kuhlman and Ebert","OrderDate":"5/1/2017","TotalPayment":"$647564.97","Status":6,"Type":1},{"OrderID":"43742-0021","ShipCountry":"JP","ShipAddress":"854 Mayer Alley","ShipName":"Stroman, Doyle and Cassin","OrderDate":"9/13/2016","TotalPayment":"$643226.73","Status":5,"Type":1},{"OrderID":"55315-035","ShipCountry":"CA","ShipAddress":"6 Anderson Lane","ShipName":"Goyette-Considine","OrderDate":"5/1/2016","TotalPayment":"$576989.12","Status":1,"Type":3}]},\n{"RecordID":230,"FirstName":"Foss","LastName":"Echalie","Company":"Zoozzy","Email":"fechalie6d@friendfeed.com","Phone":"160-382-5749","Status":4,"Type":1,"Orders":[{"OrderID":"65044-4350","ShipCountry":"CN","ShipAddress":"7 Forest Run Hill","ShipName":"Hansen, Jaskolski and Fahey","OrderDate":"1/5/2016","TotalPayment":"$145848.91","Status":5,"Type":2},{"OrderID":"0603-5689","ShipCountry":"AF","ShipAddress":"814 Lillian Circle","ShipName":"Cole-Sipes","OrderDate":"2/26/2016","TotalPayment":"$224543.64","Status":5,"Type":2},{"OrderID":"49967-389","ShipCountry":"SI","ShipAddress":"5946 Fairview Parkway","ShipName":"Corwin Group","OrderDate":"11/15/2017","TotalPayment":"$844367.23","Status":2,"Type":3},{"OrderID":"98132-121","ShipCountry":"PE","ShipAddress":"38 Delaware Lane","ShipName":"Jones-Kilback","OrderDate":"1/15/2016","TotalPayment":"$1083840.83","Status":3,"Type":1},{"OrderID":"55910-384","ShipCountry":"BR","ShipAddress":"9 Hoffman Circle","ShipName":"Schiller, Schmitt and Gislason","OrderDate":"6/29/2016","TotalPayment":"$340878.28","Status":5,"Type":3},{"OrderID":"16590-233","ShipCountry":"CN","ShipAddress":"11 Gulseth Road","ShipName":"Bogan-Wilkinson","OrderDate":"12/27/2017","TotalPayment":"$905599.43","Status":2,"Type":2},{"OrderID":"13537-017","ShipCountry":"JM","ShipAddress":"4627 Del Mar Avenue","ShipName":"Cruickshank and Sons","OrderDate":"10/23/2017","TotalPayment":"$693877.27","Status":6,"Type":1},{"OrderID":"36987-1521","ShipCountry":"CO","ShipAddress":"71733 Northland Junction","ShipName":"Legros, Barton and Nitzsche","OrderDate":"5/28/2016","TotalPayment":"$606469.74","Status":3,"Type":3}]},\n{"RecordID":231,"FirstName":"Gregg","LastName":"Linnane","Company":"Topiclounge","Email":"glinnane6e@hugedomains.com","Phone":"865-808-7176","Status":2,"Type":1,"Orders":[{"OrderID":"63739-805","ShipCountry":"CZ","ShipAddress":"1 Talisman Place","ShipName":"Cassin, Hand and Dicki","OrderDate":"3/20/2017","TotalPayment":"$771474.16","Status":2,"Type":2},{"OrderID":"52125-617","ShipCountry":"CN","ShipAddress":"96 Dexter Crossing","ShipName":"Dooley LLC","OrderDate":"2/4/2017","TotalPayment":"$949668.92","Status":1,"Type":3},{"OrderID":"50260-300","ShipCountry":"BR","ShipAddress":"748 Lakewood Drive","ShipName":"Hamill Group","OrderDate":"9/11/2017","TotalPayment":"$442619.60","Status":1,"Type":1},{"OrderID":"62007-014","ShipCountry":"ID","ShipAddress":"01133 Lotheville Alley","ShipName":"Baumbach-Strosin","OrderDate":"7/28/2017","TotalPayment":"$153535.87","Status":3,"Type":2},{"OrderID":"54868-3457","ShipCountry":"PT","ShipAddress":"1 Granby Crossing","ShipName":"Ebert and Sons","OrderDate":"9/15/2017","TotalPayment":"$348919.78","Status":1,"Type":2},{"OrderID":"43063-274","ShipCountry":"CR","ShipAddress":"3 Bluejay Court","ShipName":"Welch and Sons","OrderDate":"12/29/2017","TotalPayment":"$58280.02","Status":4,"Type":1},{"OrderID":"49738-079","ShipCountry":"SE","ShipAddress":"4046 Cottonwood Street","ShipName":"Wehner, Anderson and Hoeger","OrderDate":"3/31/2017","TotalPayment":"$10750.60","Status":4,"Type":3},{"OrderID":"0378-3495","ShipCountry":"ID","ShipAddress":"0 Jay Road","ShipName":"Schaden Group","OrderDate":"2/5/2016","TotalPayment":"$1187413.47","Status":2,"Type":3},{"OrderID":"11559-012","ShipCountry":"IS","ShipAddress":"032 Loeprich Drive","ShipName":"Hirthe Inc","OrderDate":"10/30/2016","TotalPayment":"$872263.73","Status":5,"Type":1},{"OrderID":"58118-0903","ShipCountry":"RE","ShipAddress":"9 Clove Lane","ShipName":"Morissette, Yost and Boyle","OrderDate":"7/8/2017","TotalPayment":"$696864.51","Status":3,"Type":2},{"OrderID":"76206-001","ShipCountry":"PT","ShipAddress":"83163 Jenifer Alley","ShipName":"Torp LLC","OrderDate":"6/18/2016","TotalPayment":"$165815.60","Status":2,"Type":1},{"OrderID":"68084-269","ShipCountry":"ID","ShipAddress":"7 Ridgeview Center","ShipName":"Dare-Ullrich","OrderDate":"4/22/2017","TotalPayment":"$62004.70","Status":5,"Type":2},{"OrderID":"68151-3838","ShipCountry":"PH","ShipAddress":"06 Caliangt Crossing","ShipName":"Wunsch, Bergnaum and Schmidt","OrderDate":"9/3/2016","TotalPayment":"$731060.71","Status":4,"Type":2},{"OrderID":"0527-1341","ShipCountry":"ID","ShipAddress":"1264 Anthes Street","ShipName":"Larkin, Hyatt and Effertz","OrderDate":"4/10/2017","TotalPayment":"$1023344.32","Status":1,"Type":2},{"OrderID":"11559-737","ShipCountry":"NO","ShipAddress":"09 Elmside Hill","ShipName":"Hills-Harber","OrderDate":"2/21/2017","TotalPayment":"$91233.21","Status":5,"Type":1},{"OrderID":"13537-220","ShipCountry":"WS","ShipAddress":"41871 Bunting Road","ShipName":"Thiel Inc","OrderDate":"12/6/2016","TotalPayment":"$1016180.70","Status":2,"Type":1},{"OrderID":"52625-100","ShipCountry":"CN","ShipAddress":"14176 Vidon Place","ShipName":"Daniel and Sons","OrderDate":"4/4/2017","TotalPayment":"$434679.82","Status":5,"Type":2},{"OrderID":"43526-107","ShipCountry":"CN","ShipAddress":"310 Mockingbird Alley","ShipName":"Yundt LLC","OrderDate":"8/22/2016","TotalPayment":"$118503.41","Status":1,"Type":3}]},\n{"RecordID":232,"FirstName":"Anabal","LastName":"Laurentino","Company":"Oyope","Email":"alaurentino6f@google.es","Phone":"933-669-4901","Status":1,"Type":2,"Orders":[{"OrderID":"36800-528","ShipCountry":"PT","ShipAddress":"3 Chinook Circle","ShipName":"Schimmel Inc","OrderDate":"8/18/2017","TotalPayment":"$1133070.17","Status":4,"Type":2},{"OrderID":"49348-793","ShipCountry":"SE","ShipAddress":"6 Tennessee Road","ShipName":"Leannon Group","OrderDate":"4/11/2017","TotalPayment":"$1128359.68","Status":6,"Type":1},{"OrderID":"54569-0910","ShipCountry":"BR","ShipAddress":"3 Toban Drive","ShipName":"Homenick and Sons","OrderDate":"7/5/2016","TotalPayment":"$304803.53","Status":1,"Type":3},{"OrderID":"54868-3454","ShipCountry":"CN","ShipAddress":"38 Fordem Junction","ShipName":"Pacocha Group","OrderDate":"9/28/2016","TotalPayment":"$1065486.51","Status":2,"Type":3},{"OrderID":"62584-659","ShipCountry":"CN","ShipAddress":"5 Starling Lane","ShipName":"Lakin and Sons","OrderDate":"12/23/2017","TotalPayment":"$943313.13","Status":3,"Type":1},{"OrderID":"0003-1614","ShipCountry":"CO","ShipAddress":"7 5th Circle","ShipName":"Collins-Skiles","OrderDate":"11/29/2016","TotalPayment":"$403647.61","Status":5,"Type":1},{"OrderID":"13537-331","ShipCountry":"RU","ShipAddress":"2089 Clyde Gallagher Street","ShipName":"Kassulke, O\'Hara and Halvorson","OrderDate":"7/29/2016","TotalPayment":"$270895.21","Status":1,"Type":3},{"OrderID":"0591-2884","ShipCountry":"SE","ShipAddress":"223 Coleman Court","ShipName":"Padberg, Hodkiewicz and Towne","OrderDate":"5/10/2017","TotalPayment":"$110614.21","Status":1,"Type":2}]},\n{"RecordID":233,"FirstName":"Arlie","LastName":"Geffen","Company":"Realmix","Email":"ageffen6g@japanpost.jp","Phone":"894-880-8914","Status":4,"Type":3,"Orders":[{"OrderID":"52584-035","ShipCountry":"GR","ShipAddress":"70378 Grover Avenue","ShipName":"Reynolds, Rau and Purdy","OrderDate":"4/7/2016","TotalPayment":"$328945.31","Status":3,"Type":3},{"OrderID":"53010-1001","ShipCountry":"BR","ShipAddress":"70 Linden Parkway","ShipName":"Nicolas, Terry and Rogahn","OrderDate":"11/4/2016","TotalPayment":"$282301.44","Status":6,"Type":2},{"OrderID":"55714-4555","ShipCountry":"PT","ShipAddress":"8 Charing Cross Court","ShipName":"Bradtke-Doyle","OrderDate":"1/30/2017","TotalPayment":"$97198.73","Status":6,"Type":3},{"OrderID":"59762-3721","ShipCountry":"MY","ShipAddress":"31 Luster Junction","ShipName":"Lebsack, Daugherty and Reinger","OrderDate":"11/1/2017","TotalPayment":"$24171.50","Status":2,"Type":1},{"OrderID":"43269-874","ShipCountry":"CN","ShipAddress":"3 Hoffman Junction","ShipName":"Konopelski, Bahringer and Gulgowski","OrderDate":"12/5/2016","TotalPayment":"$373675.81","Status":6,"Type":1},{"OrderID":"68788-9088","ShipCountry":"CN","ShipAddress":"65 Green Ridge Parkway","ShipName":"Ernser, Ritchie and Von","OrderDate":"12/25/2017","TotalPayment":"$448896.25","Status":5,"Type":1},{"OrderID":"0378-7098","ShipCountry":"CO","ShipAddress":"3039 Merry Center","ShipName":"Kunde and Sons","OrderDate":"6/21/2017","TotalPayment":"$1192855.02","Status":6,"Type":3},{"OrderID":"36987-2508","ShipCountry":"CN","ShipAddress":"0 Thompson Street","ShipName":"Anderson, Reichel and Hintz","OrderDate":"9/17/2017","TotalPayment":"$339203.02","Status":4,"Type":1},{"OrderID":"65862-391","ShipCountry":"BR","ShipAddress":"9 Sachs Point","ShipName":"Heidenreich-Bergnaum","OrderDate":"3/16/2016","TotalPayment":"$144995.28","Status":3,"Type":3},{"OrderID":"10191-1937","ShipCountry":"SY","ShipAddress":"63559 Pond Road","ShipName":"Brekke-Roob","OrderDate":"1/15/2016","TotalPayment":"$232153.79","Status":5,"Type":3},{"OrderID":"24338-010","ShipCountry":"CN","ShipAddress":"7715 Westend Drive","ShipName":"Hahn LLC","OrderDate":"7/30/2017","TotalPayment":"$205485.14","Status":6,"Type":3},{"OrderID":"0143-2422","ShipCountry":"VN","ShipAddress":"1 Maple Avenue","ShipName":"Kassulke, Ward and Cruickshank","OrderDate":"10/21/2017","TotalPayment":"$52652.29","Status":1,"Type":3},{"OrderID":"58411-228","ShipCountry":"CN","ShipAddress":"81951 Hintze Alley","ShipName":"Wintheiser and Sons","OrderDate":"1/13/2017","TotalPayment":"$1195583.95","Status":4,"Type":3}]},\n{"RecordID":234,"FirstName":"Dagmar","LastName":"Donwell","Company":"Topicware","Email":"ddonwell6h@salon.com","Phone":"275-621-8277","Status":2,"Type":2,"Orders":[{"OrderID":"68645-475","ShipCountry":"BR","ShipAddress":"64612 Almo Road","ShipName":"Shields, Turcotte and Sawayn","OrderDate":"2/17/2017","TotalPayment":"$985366.79","Status":2,"Type":1},{"OrderID":"10631-096","ShipCountry":"ID","ShipAddress":"3288 Crownhardt Point","ShipName":"Wisozk-Emard","OrderDate":"8/13/2016","TotalPayment":"$363925.60","Status":1,"Type":3},{"OrderID":"0642-0077","ShipCountry":"ID","ShipAddress":"891 Carey Way","ShipName":"VonRueden and Sons","OrderDate":"2/23/2017","TotalPayment":"$1162427.60","Status":3,"Type":2},{"OrderID":"0781-5641","ShipCountry":"CN","ShipAddress":"313 Boyd Drive","ShipName":"Leffler, Grimes and Macejkovic","OrderDate":"7/12/2016","TotalPayment":"$543259.55","Status":4,"Type":3},{"OrderID":"63187-026","ShipCountry":"ID","ShipAddress":"6287 Shasta Circle","ShipName":"D\'Amore-Ledner","OrderDate":"1/13/2016","TotalPayment":"$55941.55","Status":1,"Type":3},{"OrderID":"36987-2579","ShipCountry":"ID","ShipAddress":"7365 Eastlawn Place","ShipName":"Ratke Group","OrderDate":"4/1/2017","TotalPayment":"$1047498.58","Status":1,"Type":2},{"OrderID":"55154-4730","ShipCountry":"CN","ShipAddress":"77 Golf Course Terrace","ShipName":"Wisoky-Bernhard","OrderDate":"1/10/2017","TotalPayment":"$225486.91","Status":6,"Type":2},{"OrderID":"68645-478","ShipCountry":"ID","ShipAddress":"85 Eggendart Crossing","ShipName":"Kessler LLC","OrderDate":"3/26/2017","TotalPayment":"$359672.42","Status":2,"Type":3},{"OrderID":"60429-380","ShipCountry":"CN","ShipAddress":"6156 Lukken Plaza","ShipName":"Leannon, Ortiz and Strosin","OrderDate":"10/17/2017","TotalPayment":"$30572.67","Status":3,"Type":2},{"OrderID":"0615-1393","ShipCountry":"CN","ShipAddress":"806 Bunting Road","ShipName":"Larkin-Wisoky","OrderDate":"3/7/2016","TotalPayment":"$1180153.57","Status":2,"Type":3},{"OrderID":"49349-145","ShipCountry":"NO","ShipAddress":"23926 Graedel Hill","ShipName":"Hilll Group","OrderDate":"3/29/2017","TotalPayment":"$1040358.30","Status":6,"Type":3},{"OrderID":"43742-0234","ShipCountry":"CZ","ShipAddress":"6065 Dryden Center","ShipName":"Feest-Jast","OrderDate":"1/20/2016","TotalPayment":"$655466.23","Status":2,"Type":2}]},\n{"RecordID":235,"FirstName":"Morris","LastName":"Vitte","Company":"Izio","Email":"mvitte6i@berkeley.edu","Phone":"883-877-9979","Status":1,"Type":1,"Orders":[{"OrderID":"57344-080","ShipCountry":"ID","ShipAddress":"6710 Pleasure Junction","ShipName":"Kozey-Klocko","OrderDate":"9/6/2016","TotalPayment":"$1146212.33","Status":4,"Type":2},{"OrderID":"59779-891","ShipCountry":"CZ","ShipAddress":"1 Dahle Terrace","ShipName":"Marks, Parisian and MacGyver","OrderDate":"10/11/2016","TotalPayment":"$709980.40","Status":5,"Type":3},{"OrderID":"98132-137","ShipCountry":"CN","ShipAddress":"52902 West Place","ShipName":"Hamill Group","OrderDate":"5/30/2017","TotalPayment":"$823482.30","Status":4,"Type":2},{"OrderID":"52862-306","ShipCountry":"PH","ShipAddress":"99 Gina Parkway","ShipName":"Medhurst-Walter","OrderDate":"8/23/2017","TotalPayment":"$1110617.33","Status":2,"Type":2},{"OrderID":"49358-547","ShipCountry":"FR","ShipAddress":"057 Annamark Road","ShipName":"Franecki-Flatley","OrderDate":"12/26/2016","TotalPayment":"$126420.64","Status":3,"Type":1},{"OrderID":"0603-0169","ShipCountry":"CN","ShipAddress":"89409 Di Loreto Avenue","ShipName":"Weissnat, Runolfsdottir and Cremin","OrderDate":"1/25/2017","TotalPayment":"$1111759.33","Status":5,"Type":1},{"OrderID":"58232-0048","ShipCountry":"SE","ShipAddress":"6909 Troy Court","ShipName":"Kilback, Jones and Gorczany","OrderDate":"12/28/2016","TotalPayment":"$358621.65","Status":2,"Type":1},{"OrderID":"26637-222","ShipCountry":"CN","ShipAddress":"7 Bunting Hill","ShipName":"Spencer-Nikolaus","OrderDate":"11/21/2016","TotalPayment":"$1023647.48","Status":5,"Type":3},{"OrderID":"54569-6399","ShipCountry":"JP","ShipAddress":"778 Emmet Park","ShipName":"Hackett Inc","OrderDate":"1/5/2017","TotalPayment":"$504409.79","Status":6,"Type":3},{"OrderID":"57664-281","ShipCountry":"PH","ShipAddress":"7 Dawn Junction","ShipName":"Bernier, Ledner and Welch","OrderDate":"6/21/2017","TotalPayment":"$928094.50","Status":2,"Type":1},{"OrderID":"61995-2392","ShipCountry":"CO","ShipAddress":"926 Canary Avenue","ShipName":"King-Nikolaus","OrderDate":"9/4/2017","TotalPayment":"$140644.97","Status":6,"Type":1},{"OrderID":"37012-668","ShipCountry":"CN","ShipAddress":"60259 Green Pass","ShipName":"Ruecker, Grimes and Thompson","OrderDate":"4/4/2016","TotalPayment":"$150949.44","Status":2,"Type":3},{"OrderID":"53208-446","ShipCountry":"PE","ShipAddress":"3 Division Place","ShipName":"Rempel-Rogahn","OrderDate":"3/4/2017","TotalPayment":"$301112.49","Status":4,"Type":2},{"OrderID":"42291-840","ShipCountry":"PS","ShipAddress":"0648 Corscot Parkway","ShipName":"Emard, Sporer and Gislason","OrderDate":"5/5/2017","TotalPayment":"$290977.63","Status":4,"Type":3},{"OrderID":"52959-676","ShipCountry":"CN","ShipAddress":"2061 American Drive","ShipName":"Langworth Group","OrderDate":"12/30/2016","TotalPayment":"$1198102.97","Status":2,"Type":1},{"OrderID":"55441-201","ShipCountry":"CN","ShipAddress":"8 Holy Cross Circle","ShipName":"Feil, Walker and Considine","OrderDate":"7/18/2017","TotalPayment":"$349637.93","Status":1,"Type":3},{"OrderID":"24286-1550","ShipCountry":"ID","ShipAddress":"35378 Pankratz Court","ShipName":"Brekke and Sons","OrderDate":"10/20/2016","TotalPayment":"$432731.29","Status":4,"Type":3},{"OrderID":"47781-135","ShipCountry":"SE","ShipAddress":"562 Nobel Hill","ShipName":"Kihn and Sons","OrderDate":"7/10/2017","TotalPayment":"$32336.22","Status":2,"Type":2}]},\n{"RecordID":236,"FirstName":"Orlan","LastName":"Leyman","Company":"Eabox","Email":"oleyman6j@pagesperso-orange.fr","Phone":"819-289-2843","Status":2,"Type":2,"Orders":[{"OrderID":"55289-924","ShipCountry":"PH","ShipAddress":"186 Dwight Hill","ShipName":"Lowe LLC","OrderDate":"6/8/2016","TotalPayment":"$820457.32","Status":2,"Type":1},{"OrderID":"68026-532","ShipCountry":"CN","ShipAddress":"85 Forest Dale Parkway","ShipName":"Quitzon-Kunde","OrderDate":"7/26/2016","TotalPayment":"$883502.83","Status":5,"Type":2},{"OrderID":"52959-757","ShipCountry":"MC","ShipAddress":"0589 Brickson Park Road","ShipName":"Hudson-Conroy","OrderDate":"1/11/2017","TotalPayment":"$1130032.68","Status":2,"Type":1},{"OrderID":"0591-3775","ShipCountry":"ID","ShipAddress":"1 Hallows Crossing","ShipName":"Nitzsche-Reilly","OrderDate":"2/2/2017","TotalPayment":"$237189.97","Status":1,"Type":2},{"OrderID":"49035-707","ShipCountry":"ID","ShipAddress":"53 Hermina Avenue","ShipName":"Mitchell, McKenzie and Rice","OrderDate":"9/16/2017","TotalPayment":"$114692.66","Status":3,"Type":3},{"OrderID":"10812-523","ShipCountry":"CN","ShipAddress":"273 Delaware Lane","ShipName":"Mayer-Quitzon","OrderDate":"3/29/2016","TotalPayment":"$558660.84","Status":4,"Type":2},{"OrderID":"21695-889","ShipCountry":"CZ","ShipAddress":"375 Nova Junction","ShipName":"Schulist-Stracke","OrderDate":"5/24/2017","TotalPayment":"$662393.92","Status":4,"Type":2},{"OrderID":"65044-1435","ShipCountry":"IR","ShipAddress":"8969 Ridge Oak Drive","ShipName":"Langosh-Wilkinson","OrderDate":"2/29/2016","TotalPayment":"$210103.20","Status":5,"Type":1},{"OrderID":"51991-292","ShipCountry":"BF","ShipAddress":"9 Rigney Alley","ShipName":"Wehner-Von","OrderDate":"5/5/2017","TotalPayment":"$1003147.38","Status":6,"Type":1},{"OrderID":"57955-0277","ShipCountry":"PE","ShipAddress":"47987 Sachtjen Court","ShipName":"Hilpert-Stoltenberg","OrderDate":"10/20/2016","TotalPayment":"$708540.64","Status":6,"Type":1},{"OrderID":"57344-109","ShipCountry":"CN","ShipAddress":"1 East Point","ShipName":"Wuckert, Buckridge and Pagac","OrderDate":"4/17/2017","TotalPayment":"$35755.38","Status":6,"Type":2},{"OrderID":"49281-589","ShipCountry":"RU","ShipAddress":"9 Coolidge Crossing","ShipName":"Lubowitz, Daniel and Renner","OrderDate":"8/16/2016","TotalPayment":"$455129.85","Status":3,"Type":1},{"OrderID":"75835-269","ShipCountry":"PH","ShipAddress":"27 Nancy Pass","ShipName":"Fisher, Kiehn and Senger","OrderDate":"6/10/2017","TotalPayment":"$556623.66","Status":3,"Type":3},{"OrderID":"13537-365","ShipCountry":"ID","ShipAddress":"547 Miller Terrace","ShipName":"Goyette, DuBuque and Swift","OrderDate":"5/9/2016","TotalPayment":"$419103.78","Status":6,"Type":2},{"OrderID":"62499-392","ShipCountry":"BD","ShipAddress":"56712 Moland Junction","ShipName":"Daugherty LLC","OrderDate":"6/28/2017","TotalPayment":"$1138061.37","Status":2,"Type":3},{"OrderID":"23155-214","ShipCountry":"PL","ShipAddress":"3 Shasta Trail","ShipName":"Kerluke-Flatley","OrderDate":"5/1/2017","TotalPayment":"$542473.75","Status":5,"Type":1}]},\n{"RecordID":237,"FirstName":"Bella","LastName":"Reavey","Company":"Realfire","Email":"breavey6k@e-recht24.de","Phone":"382-699-6309","Status":2,"Type":2,"Orders":[{"OrderID":"60505-0130","ShipCountry":"CA","ShipAddress":"2 International Lane","ShipName":"Harber, Russel and D\'Amore","OrderDate":"3/25/2017","TotalPayment":"$328734.07","Status":1,"Type":3},{"OrderID":"76354-104","ShipCountry":"RU","ShipAddress":"1 4th Court","ShipName":"Paucek, Mayer and Marks","OrderDate":"9/30/2017","TotalPayment":"$750496.43","Status":2,"Type":3},{"OrderID":"16590-307","ShipCountry":"ID","ShipAddress":"68 Everett Lane","ShipName":"Raynor, Stehr and Beer","OrderDate":"10/31/2016","TotalPayment":"$780032.95","Status":2,"Type":3},{"OrderID":"0069-0400","ShipCountry":"AZ","ShipAddress":"6 Oak Pass","ShipName":"Prohaska Inc","OrderDate":"5/26/2016","TotalPayment":"$15029.28","Status":3,"Type":3},{"OrderID":"68428-056","ShipCountry":"ID","ShipAddress":"9482 Susan Trail","ShipName":"Langosh-Zboncak","OrderDate":"10/21/2017","TotalPayment":"$428512.66","Status":4,"Type":3},{"OrderID":"11410-206","ShipCountry":"RU","ShipAddress":"766 Manufacturers Drive","ShipName":"Shanahan-Baumbach","OrderDate":"12/8/2016","TotalPayment":"$1035049.00","Status":5,"Type":2},{"OrderID":"55111-202","ShipCountry":"JP","ShipAddress":"617 Springs Road","ShipName":"Medhurst-Fadel","OrderDate":"2/4/2017","TotalPayment":"$699351.60","Status":6,"Type":3},{"OrderID":"61578-205","ShipCountry":"CN","ShipAddress":"81684 Kipling Court","ShipName":"Hoeger LLC","OrderDate":"4/9/2017","TotalPayment":"$512148.88","Status":5,"Type":3},{"OrderID":"76237-222","ShipCountry":"RU","ShipAddress":"47 Michigan Street","ShipName":"Carter-Mayert","OrderDate":"10/21/2017","TotalPayment":"$1039398.09","Status":6,"Type":2},{"OrderID":"41595-5512","ShipCountry":"FI","ShipAddress":"257 Schlimgen Court","ShipName":"Yundt-Wiza","OrderDate":"9/15/2016","TotalPayment":"$323047.09","Status":6,"Type":3},{"OrderID":"33261-484","ShipCountry":"CN","ShipAddress":"5790 Buell Circle","ShipName":"Trantow Inc","OrderDate":"10/18/2016","TotalPayment":"$536542.10","Status":3,"Type":3},{"OrderID":"0143-2037","ShipCountry":"CN","ShipAddress":"30 Sutherland Hill","ShipName":"Kreiger-Friesen","OrderDate":"1/1/2016","TotalPayment":"$624762.55","Status":4,"Type":2}]},\n{"RecordID":238,"FirstName":"Micaela","LastName":"Kesey","Company":"Wordify","Email":"mkesey6l@cyberchimps.com","Phone":"639-542-6146","Status":2,"Type":3,"Orders":[{"OrderID":"0555-0764","ShipCountry":"BO","ShipAddress":"16 Westridge Plaza","ShipName":"Osinski, Schoen and Reilly","OrderDate":"4/17/2017","TotalPayment":"$1025206.83","Status":5,"Type":3},{"OrderID":"52959-074","ShipCountry":"CN","ShipAddress":"24 Manitowish Way","ShipName":"Kerluke-Lakin","OrderDate":"10/1/2017","TotalPayment":"$140388.56","Status":4,"Type":3},{"OrderID":"0173-0780","ShipCountry":"CN","ShipAddress":"0 Chive Alley","ShipName":"Carter-Ledner","OrderDate":"10/14/2016","TotalPayment":"$1055419.23","Status":3,"Type":2},{"OrderID":"16590-195","ShipCountry":"CN","ShipAddress":"64 Warbler Terrace","ShipName":"Kessler-Gorczany","OrderDate":"4/3/2016","TotalPayment":"$322551.23","Status":5,"Type":2},{"OrderID":"49349-171","ShipCountry":"CN","ShipAddress":"78 Oak Valley Hill","ShipName":"Moen, Cormier and West","OrderDate":"8/7/2017","TotalPayment":"$735791.33","Status":1,"Type":1},{"OrderID":"27437-201","ShipCountry":"SE","ShipAddress":"5 Beilfuss Trail","ShipName":"Windler Inc","OrderDate":"4/19/2017","TotalPayment":"$1086814.92","Status":6,"Type":1},{"OrderID":"0268-6793","ShipCountry":"CZ","ShipAddress":"50 Stone Corner Street","ShipName":"Quigley, Raynor and Nolan","OrderDate":"11/11/2016","TotalPayment":"$253078.81","Status":1,"Type":3},{"OrderID":"0168-0326","ShipCountry":"RU","ShipAddress":"51 Susan Park","ShipName":"Turcotte-Crist","OrderDate":"8/5/2016","TotalPayment":"$1138561.09","Status":6,"Type":3},{"OrderID":"68788-9401","ShipCountry":"EC","ShipAddress":"8466 Talmadge Place","ShipName":"Hamill-Grant","OrderDate":"7/10/2017","TotalPayment":"$669470.96","Status":1,"Type":2},{"OrderID":"55346-0718","ShipCountry":"SE","ShipAddress":"00019 Ramsey Circle","ShipName":"Herman, Mante and Lebsack","OrderDate":"9/10/2016","TotalPayment":"$35769.27","Status":6,"Type":2},{"OrderID":"49035-541","ShipCountry":"FR","ShipAddress":"80400 Mcguire Drive","ShipName":"Roberts, Windler and Walsh","OrderDate":"6/13/2017","TotalPayment":"$395485.10","Status":3,"Type":2},{"OrderID":"55154-1607","ShipCountry":"TH","ShipAddress":"45421 Rusk Hill","ShipName":"Osinski-Hilll","OrderDate":"5/29/2017","TotalPayment":"$159822.46","Status":1,"Type":3}]},\n{"RecordID":239,"FirstName":"Tate","LastName":"Filler","Company":"Quire","Email":"tfiller6m@telegraph.co.uk","Phone":"415-174-2946","Status":2,"Type":1,"Orders":[{"OrderID":"0185-0072","ShipCountry":"TH","ShipAddress":"6175 Charing Cross Terrace","ShipName":"Kuhn Inc","OrderDate":"9/3/2017","TotalPayment":"$944377.97","Status":5,"Type":2},{"OrderID":"63940-614","ShipCountry":"YE","ShipAddress":"48 Surrey Trail","ShipName":"Kozey, Bergstrom and Mayer","OrderDate":"2/4/2017","TotalPayment":"$1110590.63","Status":2,"Type":2},{"OrderID":"55681-212","ShipCountry":"ID","ShipAddress":"48 Butternut Alley","ShipName":"Blick, Sawayn and Kunde","OrderDate":"5/20/2017","TotalPayment":"$708005.41","Status":1,"Type":2},{"OrderID":"49349-350","ShipCountry":"BR","ShipAddress":"8308 Kennedy Avenue","ShipName":"King LLC","OrderDate":"10/2/2017","TotalPayment":"$1170231.52","Status":6,"Type":1},{"OrderID":"35356-961","ShipCountry":"CN","ShipAddress":"31069 Macpherson Street","ShipName":"Gerhold-Kunze","OrderDate":"8/3/2016","TotalPayment":"$133974.67","Status":6,"Type":3},{"OrderID":"0093-8121","ShipCountry":"PY","ShipAddress":"75 Mitchell Crossing","ShipName":"Miller, Kihn and Harber","OrderDate":"5/22/2016","TotalPayment":"$184881.27","Status":6,"Type":1},{"OrderID":"67781-252","ShipCountry":"JP","ShipAddress":"27343 Meadow Valley Pass","ShipName":"Baumbach-Corwin","OrderDate":"6/27/2017","TotalPayment":"$670548.17","Status":6,"Type":1},{"OrderID":"10812-152","ShipCountry":"BG","ShipAddress":"5 Tomscot Lane","ShipName":"Fisher, Hoppe and Goodwin","OrderDate":"12/9/2016","TotalPayment":"$255825.99","Status":6,"Type":2},{"OrderID":"24236-736","ShipCountry":"MN","ShipAddress":"67 Sage Drive","ShipName":"Cremin, Cronin and McCullough","OrderDate":"9/25/2017","TotalPayment":"$761365.66","Status":6,"Type":2},{"OrderID":"68016-021","ShipCountry":"ID","ShipAddress":"8079 Pawling Center","ShipName":"Schmidt-Goodwin","OrderDate":"3/13/2016","TotalPayment":"$840489.67","Status":1,"Type":1},{"OrderID":"63629-2607","ShipCountry":"RU","ShipAddress":"08 Dapin Alley","ShipName":"Balistreri-Satterfield","OrderDate":"6/4/2016","TotalPayment":"$752348.75","Status":6,"Type":2},{"OrderID":"49999-226","ShipCountry":"PE","ShipAddress":"105 Ryan Point","ShipName":"Streich Inc","OrderDate":"4/3/2016","TotalPayment":"$1055275.07","Status":3,"Type":1},{"OrderID":"0173-0869","ShipCountry":"TH","ShipAddress":"67508 Melody Point","ShipName":"Daniel LLC","OrderDate":"4/12/2017","TotalPayment":"$1107087.47","Status":3,"Type":2},{"OrderID":"42936-585","ShipCountry":"CO","ShipAddress":"1456 Graedel Terrace","ShipName":"Collier LLC","OrderDate":"4/27/2017","TotalPayment":"$38626.09","Status":3,"Type":3},{"OrderID":"10237-614","ShipCountry":"ID","ShipAddress":"13336 Hooker Parkway","ShipName":"Marvin-Mraz","OrderDate":"7/5/2016","TotalPayment":"$626077.41","Status":3,"Type":2},{"OrderID":"54868-5958","ShipCountry":"BF","ShipAddress":"627 Lake View Pass","ShipName":"Kuphal-Corwin","OrderDate":"12/14/2016","TotalPayment":"$960619.07","Status":5,"Type":1},{"OrderID":"36987-1337","ShipCountry":"PT","ShipAddress":"58 Manley Street","ShipName":"Jenkins-Padberg","OrderDate":"4/1/2016","TotalPayment":"$450546.16","Status":5,"Type":2}]},\n{"RecordID":240,"FirstName":"Maxy","LastName":"Tebbett","Company":"Jabbertype","Email":"mtebbett6n@smh.com.au","Phone":"316-776-3291","Status":2,"Type":3,"Orders":[{"OrderID":"68151-3858","ShipCountry":"SE","ShipAddress":"51 Talmadge Avenue","ShipName":"Feest-Thiel","OrderDate":"5/1/2017","TotalPayment":"$773870.69","Status":3,"Type":3},{"OrderID":"67296-0122","ShipCountry":"MX","ShipAddress":"80856 Transport Parkway","ShipName":"Dooley-Gibson","OrderDate":"7/20/2016","TotalPayment":"$95832.60","Status":3,"Type":2},{"OrderID":"41167-3304","ShipCountry":"CN","ShipAddress":"13288 Oak Valley Drive","ShipName":"Powlowski Inc","OrderDate":"1/20/2016","TotalPayment":"$531858.90","Status":5,"Type":1},{"OrderID":"0703-4686","ShipCountry":"ID","ShipAddress":"323 Mandrake Junction","ShipName":"West-Krajcik","OrderDate":"10/14/2016","TotalPayment":"$1105867.56","Status":6,"Type":1},{"OrderID":"63323-173","ShipCountry":"CN","ShipAddress":"39184 Oak Trail","ShipName":"Hodkiewicz, Huels and Swift","OrderDate":"11/9/2017","TotalPayment":"$315019.56","Status":6,"Type":1},{"OrderID":"54162-006","ShipCountry":"PE","ShipAddress":"9920 Declaration Road","ShipName":"Schmitt, Rau and Marvin","OrderDate":"10/18/2017","TotalPayment":"$83560.81","Status":4,"Type":2},{"OrderID":"55154-3481","ShipCountry":"CN","ShipAddress":"18 Schmedeman Point","ShipName":"Paucek-Connelly","OrderDate":"8/18/2016","TotalPayment":"$814918.50","Status":4,"Type":3},{"OrderID":"51079-974","ShipCountry":"ID","ShipAddress":"16 Eggendart Parkway","ShipName":"Kiehn-Gislason","OrderDate":"5/26/2017","TotalPayment":"$301287.37","Status":1,"Type":1},{"OrderID":"37808-648","ShipCountry":"SV","ShipAddress":"788 Derek Hill","ShipName":"Toy LLC","OrderDate":"2/8/2017","TotalPayment":"$821446.12","Status":3,"Type":3},{"OrderID":"49288-0369","ShipCountry":"JP","ShipAddress":"8 Mccormick Parkway","ShipName":"Tillman-Beier","OrderDate":"6/5/2016","TotalPayment":"$848339.56","Status":3,"Type":2}]},\n{"RecordID":241,"FirstName":"Raymund","LastName":"Scotcher","Company":"Midel","Email":"rscotcher6o@qq.com","Phone":"640-497-6080","Status":3,"Type":3,"Orders":[{"OrderID":"0955-1710","ShipCountry":"FR","ShipAddress":"867 Loomis Court","ShipName":"Connelly-Fadel","OrderDate":"2/19/2017","TotalPayment":"$52295.71","Status":2,"Type":2},{"OrderID":"49288-0276","ShipCountry":"BR","ShipAddress":"1682 Fallview Parkway","ShipName":"Goyette-Rodriguez","OrderDate":"3/16/2016","TotalPayment":"$510770.58","Status":5,"Type":2},{"OrderID":"54868-0548","ShipCountry":"FI","ShipAddress":"44624 Bartelt Drive","ShipName":"Herzog, Wyman and Bednar","OrderDate":"11/25/2016","TotalPayment":"$596336.78","Status":6,"Type":1},{"OrderID":"33992-0271","ShipCountry":"JP","ShipAddress":"6393 Tennessee Lane","ShipName":"Balistreri, Kihn and Daugherty","OrderDate":"12/8/2017","TotalPayment":"$982277.19","Status":5,"Type":2},{"OrderID":"49953-2805","ShipCountry":"CN","ShipAddress":"246 Randy Road","ShipName":"McGlynn-Russel","OrderDate":"10/28/2017","TotalPayment":"$334743.55","Status":5,"Type":2},{"OrderID":"49035-054","ShipCountry":"CZ","ShipAddress":"2 Maywood Center","ShipName":"Mertz, VonRueden and Simonis","OrderDate":"3/2/2017","TotalPayment":"$301329.82","Status":5,"Type":1},{"OrderID":"0054-0435","ShipCountry":"JP","ShipAddress":"993 Cardinal Drive","ShipName":"Skiles-Effertz","OrderDate":"7/14/2017","TotalPayment":"$814813.24","Status":2,"Type":2},{"OrderID":"11086-048","ShipCountry":"ID","ShipAddress":"9 Mallory Hill","ShipName":"Rau-Haag","OrderDate":"6/28/2017","TotalPayment":"$756519.08","Status":2,"Type":2},{"OrderID":"57520-0675","ShipCountry":"CN","ShipAddress":"57246 Pleasure Terrace","ShipName":"Bogan, Abernathy and Jacobson","OrderDate":"9/24/2017","TotalPayment":"$577901.01","Status":4,"Type":3},{"OrderID":"52584-071","ShipCountry":"PH","ShipAddress":"95 Brickson Park Drive","ShipName":"Kilback Group","OrderDate":"6/16/2017","TotalPayment":"$548747.43","Status":1,"Type":1},{"OrderID":"76419-211","ShipCountry":"PT","ShipAddress":"81 Mallory Junction","ShipName":"Lindgren and Sons","OrderDate":"2/11/2016","TotalPayment":"$142966.69","Status":1,"Type":2},{"OrderID":"37808-102","ShipCountry":"FR","ShipAddress":"56 Lerdahl Alley","ShipName":"Kuhn and Sons","OrderDate":"11/30/2016","TotalPayment":"$907182.44","Status":1,"Type":2}]},\n{"RecordID":242,"FirstName":"Silvanus","LastName":"Hacquard","Company":"Gabvine","Email":"shacquard6p@cargocollective.com","Phone":"692-467-4644","Status":5,"Type":3,"Orders":[{"OrderID":"13107-007","ShipCountry":"FR","ShipAddress":"6 Larry Pass","ShipName":"Rosenbaum, Strosin and Wolf","OrderDate":"12/9/2016","TotalPayment":"$723288.89","Status":1,"Type":1},{"OrderID":"0062-0175","ShipCountry":"ID","ShipAddress":"35770 American Ash Parkway","ShipName":"Kunze-Kunde","OrderDate":"10/10/2016","TotalPayment":"$307818.53","Status":5,"Type":3},{"OrderID":"54458-933","ShipCountry":"FR","ShipAddress":"6 Oneill Lane","ShipName":"Reilly, Langosh and O\'Keefe","OrderDate":"8/30/2016","TotalPayment":"$108990.86","Status":1,"Type":3},{"OrderID":"42192-139","ShipCountry":"CN","ShipAddress":"72 Pankratz Parkway","ShipName":"Dietrich, Emmerich and Hane","OrderDate":"10/22/2016","TotalPayment":"$937107.45","Status":5,"Type":2},{"OrderID":"55154-2305","ShipCountry":"TH","ShipAddress":"177 Scofield Circle","ShipName":"Johnston-McKenzie","OrderDate":"9/1/2017","TotalPayment":"$491227.14","Status":6,"Type":2},{"OrderID":"68094-716","ShipCountry":"UA","ShipAddress":"0 Farmco Trail","ShipName":"Bednar-Hills","OrderDate":"4/17/2017","TotalPayment":"$204900.15","Status":3,"Type":3},{"OrderID":"0054-3722","ShipCountry":"MN","ShipAddress":"4 Spohn Way","ShipName":"Daniel Inc","OrderDate":"3/12/2016","TotalPayment":"$515570.60","Status":3,"Type":3},{"OrderID":"54723-150","ShipCountry":"PL","ShipAddress":"6225 Fulton Junction","ShipName":"Koch, Johnston and Jast","OrderDate":"10/17/2016","TotalPayment":"$635053.15","Status":3,"Type":3},{"OrderID":"55111-479","ShipCountry":"SZ","ShipAddress":"7790 Dorton Center","ShipName":"Weissnat, Turner and Blick","OrderDate":"11/13/2017","TotalPayment":"$1180811.04","Status":2,"Type":2},{"OrderID":"43269-830","ShipCountry":"CN","ShipAddress":"42098 Burning Wood Circle","ShipName":"Strosin-Barrows","OrderDate":"5/4/2016","TotalPayment":"$416868.33","Status":5,"Type":2},{"OrderID":"51769-141","ShipCountry":"PT","ShipAddress":"5792 Di Loreto Way","ShipName":"Schaefer Group","OrderDate":"7/19/2017","TotalPayment":"$65254.13","Status":3,"Type":1},{"OrderID":"58466-024","ShipCountry":"CN","ShipAddress":"112 Fairview Parkway","ShipName":"Considine LLC","OrderDate":"1/22/2017","TotalPayment":"$1052805.55","Status":3,"Type":1},{"OrderID":"52125-800","ShipCountry":"PH","ShipAddress":"6 Westport Alley","ShipName":"Cronin, Braun and Abbott","OrderDate":"11/9/2016","TotalPayment":"$484538.09","Status":1,"Type":1},{"OrderID":"0781-2271","ShipCountry":"CN","ShipAddress":"7454 Annamark Terrace","ShipName":"Braun, Lesch and Kub","OrderDate":"2/4/2017","TotalPayment":"$742630.46","Status":5,"Type":3},{"OrderID":"41190-074","ShipCountry":"BI","ShipAddress":"40 Erie Road","ShipName":"Wisozk, Braun and Auer","OrderDate":"7/1/2017","TotalPayment":"$998148.29","Status":3,"Type":2}]},\n{"RecordID":243,"FirstName":"Lissa","LastName":"Brouwer","Company":"Geba","Email":"lbrouwer6q@imdb.com","Phone":"621-972-1392","Status":5,"Type":3,"Orders":[{"OrderID":"64720-137","ShipCountry":"MN","ShipAddress":"359 Bartillon Junction","ShipName":"Emmerich and Sons","OrderDate":"9/30/2017","TotalPayment":"$548979.77","Status":2,"Type":2},{"OrderID":"52125-295","ShipCountry":"AR","ShipAddress":"8 Ridgeway Street","ShipName":"Okuneva, Orn and Mayer","OrderDate":"7/31/2017","TotalPayment":"$407975.31","Status":2,"Type":2},{"OrderID":"30142-904","ShipCountry":"CO","ShipAddress":"8 Tennessee Drive","ShipName":"Gutkowski and Sons","OrderDate":"4/29/2016","TotalPayment":"$655680.94","Status":3,"Type":2},{"OrderID":"36987-1969","ShipCountry":"PL","ShipAddress":"62868 Sunnyside Hill","ShipName":"Brekke-Harvey","OrderDate":"5/10/2016","TotalPayment":"$887205.54","Status":1,"Type":2},{"OrderID":"63029-433","ShipCountry":"PT","ShipAddress":"10 Karstens Plaza","ShipName":"Heller-Reinger","OrderDate":"1/31/2016","TotalPayment":"$584878.32","Status":5,"Type":2},{"OrderID":"36800-015","ShipCountry":"CN","ShipAddress":"5 Declaration Lane","ShipName":"Mraz-Wiegand","OrderDate":"9/23/2017","TotalPayment":"$140230.31","Status":1,"Type":1},{"OrderID":"67046-481","ShipCountry":"US","ShipAddress":"92 Glacier Hill Crossing","ShipName":"Pacocha-Homenick","OrderDate":"6/26/2016","TotalPayment":"$492424.00","Status":3,"Type":3},{"OrderID":"11822-5260","ShipCountry":"PH","ShipAddress":"302 Londonderry Plaza","ShipName":"Watsica-Lockman","OrderDate":"11/4/2016","TotalPayment":"$361164.27","Status":2,"Type":3},{"OrderID":"59011-255","ShipCountry":"PH","ShipAddress":"10 Boyd Park","ShipName":"Rodriguez, Gislason and Dare","OrderDate":"2/14/2017","TotalPayment":"$238529.10","Status":2,"Type":2},{"OrderID":"0268-1299","ShipCountry":"MD","ShipAddress":"8911 Crescent Oaks Center","ShipName":"Smith, Nicolas and Shanahan","OrderDate":"1/13/2016","TotalPayment":"$223404.49","Status":4,"Type":3},{"OrderID":"0407-1413","ShipCountry":"NG","ShipAddress":"09 Forest Run Park","ShipName":"Schmitt Group","OrderDate":"5/14/2016","TotalPayment":"$141372.72","Status":4,"Type":3},{"OrderID":"52810-501","ShipCountry":"CN","ShipAddress":"0 Carioca Terrace","ShipName":"Wiza, Johnston and Connelly","OrderDate":"8/31/2016","TotalPayment":"$402048.03","Status":3,"Type":1},{"OrderID":"55154-5537","ShipCountry":"LT","ShipAddress":"5144 Northview Plaza","ShipName":"Ernser-Dibbert","OrderDate":"11/25/2016","TotalPayment":"$359604.48","Status":5,"Type":2},{"OrderID":"44946-1010","ShipCountry":"FR","ShipAddress":"06 Katie Park","ShipName":"Lakin and Sons","OrderDate":"8/12/2017","TotalPayment":"$972939.67","Status":1,"Type":2},{"OrderID":"0268-0868","ShipCountry":"US","ShipAddress":"8949 Ramsey Alley","ShipName":"Skiles-Ratke","OrderDate":"8/29/2016","TotalPayment":"$567987.97","Status":3,"Type":2}]},\n{"RecordID":244,"FirstName":"Etti","LastName":"Ceely","Company":"Photobean","Email":"eceely6r@wisc.edu","Phone":"131-282-5025","Status":6,"Type":3,"Orders":[{"OrderID":"54868-6171","ShipCountry":"CN","ShipAddress":"7 Kennedy Court","ShipName":"Homenick Group","OrderDate":"7/29/2016","TotalPayment":"$308753.04","Status":4,"Type":1},{"OrderID":"0781-5208","ShipCountry":"FR","ShipAddress":"0 Kenwood Terrace","ShipName":"Schuppe Inc","OrderDate":"9/19/2017","TotalPayment":"$102513.55","Status":6,"Type":3},{"OrderID":"65862-157","ShipCountry":"CN","ShipAddress":"7403 Dayton Terrace","ShipName":"Blanda Inc","OrderDate":"1/29/2017","TotalPayment":"$221553.92","Status":4,"Type":3},{"OrderID":"0574-0121","ShipCountry":"CN","ShipAddress":"5 Scofield Circle","ShipName":"Ryan, Jerde and Bogisich","OrderDate":"6/25/2016","TotalPayment":"$1117455.26","Status":3,"Type":3},{"OrderID":"0409-1886","ShipCountry":"NG","ShipAddress":"3704 Carberry Center","ShipName":"Reilly-Krajcik","OrderDate":"3/6/2017","TotalPayment":"$888979.64","Status":5,"Type":2},{"OrderID":"21749-527","ShipCountry":"BR","ShipAddress":"7 Arkansas Park","ShipName":"Lakin LLC","OrderDate":"8/12/2016","TotalPayment":"$419487.30","Status":5,"Type":3}]},\n{"RecordID":245,"FirstName":"Orion","LastName":"Dahl","Company":"Fadeo","Email":"odahl6s@xrea.com","Phone":"824-773-5767","Status":6,"Type":1,"Orders":[{"OrderID":"67544-002","ShipCountry":"PH","ShipAddress":"5031 Green Pass","ShipName":"Toy Group","OrderDate":"12/2/2017","TotalPayment":"$802248.07","Status":3,"Type":2},{"OrderID":"21695-649","ShipCountry":"SE","ShipAddress":"826 Vermont Circle","ShipName":"Brown, Ankunding and Block","OrderDate":"11/13/2016","TotalPayment":"$391772.02","Status":1,"Type":2},{"OrderID":"63323-387","ShipCountry":"JO","ShipAddress":"47873 Westend Place","ShipName":"Thiel-Konopelski","OrderDate":"5/7/2016","TotalPayment":"$1116790.63","Status":5,"Type":3},{"OrderID":"0406-8962","ShipCountry":"PT","ShipAddress":"055 Brown Junction","ShipName":"Adams-Watsica","OrderDate":"2/18/2016","TotalPayment":"$1134676.59","Status":4,"Type":1},{"OrderID":"36987-1167","ShipCountry":"PT","ShipAddress":"265 Autumn Leaf Way","ShipName":"Jacobi, Pouros and Dare","OrderDate":"8/10/2017","TotalPayment":"$364838.43","Status":6,"Type":1},{"OrderID":"64578-0087","ShipCountry":"PH","ShipAddress":"8 Rockefeller Hill","ShipName":"Bergstrom, Krajcik and Weissnat","OrderDate":"12/5/2017","TotalPayment":"$193494.17","Status":5,"Type":2},{"OrderID":"65954-553","ShipCountry":"RU","ShipAddress":"99 Utah Lane","ShipName":"Braun-Kris","OrderDate":"2/22/2017","TotalPayment":"$759612.71","Status":6,"Type":1},{"OrderID":"0113-0145","ShipCountry":"JP","ShipAddress":"65635 Eagan Circle","ShipName":"Kirlin, Kemmer and Schulist","OrderDate":"1/1/2016","TotalPayment":"$59266.26","Status":4,"Type":1},{"OrderID":"57344-154","ShipCountry":"CN","ShipAddress":"9 Jenifer Terrace","ShipName":"Rutherford-Kohler","OrderDate":"2/16/2016","TotalPayment":"$488559.46","Status":2,"Type":2},{"OrderID":"33344-006","ShipCountry":"CN","ShipAddress":"6996 Maple Pass","ShipName":"Rath and Sons","OrderDate":"9/15/2017","TotalPayment":"$383634.59","Status":6,"Type":3},{"OrderID":"51672-1304","ShipCountry":"BG","ShipAddress":"5 Parkside Hill","ShipName":"Hyatt-Hessel","OrderDate":"7/3/2017","TotalPayment":"$777793.16","Status":3,"Type":1},{"OrderID":"49348-487","ShipCountry":"SE","ShipAddress":"1648 Farmco Park","ShipName":"Schamberger, Krajcik and Streich","OrderDate":"6/30/2017","TotalPayment":"$810371.71","Status":6,"Type":3},{"OrderID":"55289-147","ShipCountry":"CN","ShipAddress":"00 Clyde Gallagher Parkway","ShipName":"Klocko LLC","OrderDate":"3/7/2017","TotalPayment":"$64891.27","Status":4,"Type":2},{"OrderID":"43063-246","ShipCountry":"PS","ShipAddress":"15306 Randy Center","ShipName":"Maggio Inc","OrderDate":"2/10/2016","TotalPayment":"$1161357.39","Status":5,"Type":1},{"OrderID":"53329-946","ShipCountry":"CN","ShipAddress":"1175 Fallview Street","ShipName":"Kuhlman, Wunsch and Leuschke","OrderDate":"3/15/2017","TotalPayment":"$517098.40","Status":2,"Type":3},{"OrderID":"55154-5128","ShipCountry":"CN","ShipAddress":"52257 Union Point","ShipName":"Schamberger and Sons","OrderDate":"9/24/2017","TotalPayment":"$521145.91","Status":6,"Type":3},{"OrderID":"0615-6553","ShipCountry":"ID","ShipAddress":"69 Lakewood Alley","ShipName":"Weber Inc","OrderDate":"3/20/2016","TotalPayment":"$1065839.12","Status":6,"Type":3},{"OrderID":"13107-168","ShipCountry":"PE","ShipAddress":"80756 Lake View Point","ShipName":"Conroy, Hirthe and Nikolaus","OrderDate":"9/5/2016","TotalPayment":"$851810.70","Status":4,"Type":2},{"OrderID":"0008-1179","ShipCountry":"VE","ShipAddress":"19 Manley Trail","ShipName":"Hahn Group","OrderDate":"10/3/2016","TotalPayment":"$155461.68","Status":4,"Type":3}]},\n{"RecordID":246,"FirstName":"Florenza","LastName":"Jersh","Company":"LiveZ","Email":"fjersh6t@bloglines.com","Phone":"844-434-9352","Status":5,"Type":1,"Orders":[{"OrderID":"57910-403","ShipCountry":"CN","ShipAddress":"66 Graceland Point","ShipName":"Schaefer-Hahn","OrderDate":"12/14/2017","TotalPayment":"$504004.30","Status":4,"Type":2},{"OrderID":"0113-0393","ShipCountry":"PL","ShipAddress":"5058 Autumn Leaf Terrace","ShipName":"Effertz-Konopelski","OrderDate":"2/17/2017","TotalPayment":"$1042050.50","Status":5,"Type":1},{"OrderID":"49349-607","ShipCountry":"CN","ShipAddress":"707 Hintze Parkway","ShipName":"Halvorson, Kemmer and Pfannerstill","OrderDate":"1/10/2016","TotalPayment":"$736758.94","Status":5,"Type":3},{"OrderID":"0615-7521","ShipCountry":"MN","ShipAddress":"362 Dovetail Lane","ShipName":"DuBuque Inc","OrderDate":"5/10/2017","TotalPayment":"$163298.31","Status":2,"Type":1},{"OrderID":"51079-699","ShipCountry":"NL","ShipAddress":"8579 Larry Place","ShipName":"Skiles, Gleichner and Hirthe","OrderDate":"7/1/2017","TotalPayment":"$802139.85","Status":3,"Type":1},{"OrderID":"61941-0082","ShipCountry":"NO","ShipAddress":"3 Morrow Pass","ShipName":"Cronin-Monahan","OrderDate":"5/15/2016","TotalPayment":"$562448.92","Status":1,"Type":1},{"OrderID":"50436-7376","ShipCountry":"AL","ShipAddress":"1 Eagle Crest Park","ShipName":"Homenick and Sons","OrderDate":"1/27/2016","TotalPayment":"$173121.74","Status":3,"Type":3},{"OrderID":"68472-135","ShipCountry":"CN","ShipAddress":"00 Oak Hill","ShipName":"Nicolas Group","OrderDate":"10/13/2016","TotalPayment":"$571981.79","Status":3,"Type":3},{"OrderID":"0456-0462","ShipCountry":"CN","ShipAddress":"6151 Holmberg Place","ShipName":"Steuber-Beer","OrderDate":"12/13/2017","TotalPayment":"$159687.76","Status":1,"Type":1},{"OrderID":"61715-094","ShipCountry":"CN","ShipAddress":"517 Meadow Ridge Street","ShipName":"Mann Group","OrderDate":"11/29/2016","TotalPayment":"$1122318.95","Status":3,"Type":3},{"OrderID":"36800-300","ShipCountry":"PS","ShipAddress":"1961 Holy Cross Alley","ShipName":"Jerde-Pagac","OrderDate":"2/28/2016","TotalPayment":"$877091.45","Status":1,"Type":2},{"OrderID":"55655-122","ShipCountry":"ID","ShipAddress":"00834 Sullivan Center","ShipName":"Steuber, Fritsch and Eichmann","OrderDate":"5/14/2016","TotalPayment":"$356545.98","Status":1,"Type":3},{"OrderID":"67544-670","ShipCountry":"TD","ShipAddress":"46270 Goodland Center","ShipName":"Parker-Zieme","OrderDate":"12/30/2017","TotalPayment":"$1141856.94","Status":6,"Type":2},{"OrderID":"58496-600","ShipCountry":"RU","ShipAddress":"46731 Grim Park","ShipName":"Durgan LLC","OrderDate":"3/25/2017","TotalPayment":"$1028066.52","Status":5,"Type":3}]},\n{"RecordID":247,"FirstName":"Wilburt","LastName":"Baroux","Company":"Shuffletag","Email":"wbaroux6u@youku.com","Phone":"963-195-8667","Status":4,"Type":2,"Orders":[{"OrderID":"50268-264","ShipCountry":"PL","ShipAddress":"0994 Nobel Plaza","ShipName":"Predovic, Grady and Ondricka","OrderDate":"2/20/2017","TotalPayment":"$1123194.71","Status":6,"Type":1},{"OrderID":"43742-0069","ShipCountry":"BR","ShipAddress":"2 Oneill Center","ShipName":"Larkin Inc","OrderDate":"5/19/2017","TotalPayment":"$732456.84","Status":5,"Type":2},{"OrderID":"12496-1204","ShipCountry":"CN","ShipAddress":"97586 New Castle Pass","ShipName":"Ritchie-Larson","OrderDate":"7/11/2016","TotalPayment":"$93273.36","Status":5,"Type":1},{"OrderID":"54868-3114","ShipCountry":"CN","ShipAddress":"0 Gateway Park","ShipName":"Ferry, Willms and Bauch","OrderDate":"10/29/2017","TotalPayment":"$749625.16","Status":5,"Type":2},{"OrderID":"0409-7967","ShipCountry":"FR","ShipAddress":"98901 Golf View Street","ShipName":"Wyman-Koepp","OrderDate":"3/16/2017","TotalPayment":"$480757.78","Status":2,"Type":2},{"OrderID":"59898-120","ShipCountry":"GM","ShipAddress":"0659 Superior Road","ShipName":"Witting Group","OrderDate":"3/2/2017","TotalPayment":"$271114.40","Status":3,"Type":3},{"OrderID":"51079-273","ShipCountry":"CN","ShipAddress":"5 Barby Circle","ShipName":"Halvorson, Roob and Huel","OrderDate":"3/24/2017","TotalPayment":"$139735.93","Status":5,"Type":3},{"OrderID":"0591-5619","ShipCountry":"ID","ShipAddress":"814 Kim Crossing","ShipName":"Hand, Swift and Fadel","OrderDate":"1/12/2017","TotalPayment":"$1178482.03","Status":4,"Type":3},{"OrderID":"0268-1382","ShipCountry":"SE","ShipAddress":"47739 Brickson Park Avenue","ShipName":"Morissette, Schmitt and Zboncak","OrderDate":"5/18/2017","TotalPayment":"$883411.83","Status":2,"Type":2},{"OrderID":"0615-7604","ShipCountry":"CA","ShipAddress":"89425 Stuart Terrace","ShipName":"Balistreri-Robel","OrderDate":"9/25/2016","TotalPayment":"$155330.01","Status":6,"Type":3},{"OrderID":"50114-3205","ShipCountry":"PH","ShipAddress":"8 Del Sol Pass","ShipName":"Stroman Group","OrderDate":"5/5/2017","TotalPayment":"$523161.15","Status":2,"Type":1},{"OrderID":"65044-9945","ShipCountry":"BR","ShipAddress":"41 Forest Run Parkway","ShipName":"Graham LLC","OrderDate":"9/21/2017","TotalPayment":"$185394.46","Status":1,"Type":3},{"OrderID":"0722-6670","ShipCountry":"NA","ShipAddress":"084 Debra Plaza","ShipName":"Bashirian-Homenick","OrderDate":"1/9/2016","TotalPayment":"$481034.92","Status":4,"Type":1}]},\n{"RecordID":248,"FirstName":"Joane","LastName":"Vezey","Company":"Skipfire","Email":"jvezey6v@examiner.com","Phone":"728-892-5906","Status":3,"Type":2,"Orders":[{"OrderID":"49349-798","ShipCountry":"RU","ShipAddress":"27009 Debs Parkway","ShipName":"Mante-Casper","OrderDate":"8/5/2016","TotalPayment":"$1150440.97","Status":4,"Type":1},{"OrderID":"66969-6003","ShipCountry":"BR","ShipAddress":"086 Declaration Point","ShipName":"Simonis LLC","OrderDate":"11/14/2016","TotalPayment":"$865543.97","Status":5,"Type":1},{"OrderID":"76519-1000","ShipCountry":"TH","ShipAddress":"00 Ludington Lane","ShipName":"Stoltenberg, Rogahn and Armstrong","OrderDate":"11/5/2016","TotalPayment":"$735443.24","Status":4,"Type":3},{"OrderID":"0025-1831","ShipCountry":"CN","ShipAddress":"1023 Northport Avenue","ShipName":"Maggio-Casper","OrderDate":"12/21/2016","TotalPayment":"$925942.49","Status":3,"Type":3},{"OrderID":"63323-325","ShipCountry":"NL","ShipAddress":"9 Twin Pines Alley","ShipName":"Weber LLC","OrderDate":"10/16/2017","TotalPayment":"$801734.57","Status":5,"Type":2},{"OrderID":"54868-3935","ShipCountry":"CN","ShipAddress":"768 Anzinger Lane","ShipName":"Grady-Dickens","OrderDate":"1/24/2016","TotalPayment":"$1083548.04","Status":5,"Type":1},{"OrderID":"0832-0400","ShipCountry":"MX","ShipAddress":"23419 Thackeray Lane","ShipName":"Gleason-Price","OrderDate":"10/16/2017","TotalPayment":"$970578.02","Status":4,"Type":1},{"OrderID":"43269-774","ShipCountry":"RU","ShipAddress":"00 Harbort Alley","ShipName":"Dare-Swaniawski","OrderDate":"2/25/2016","TotalPayment":"$958976.40","Status":4,"Type":3},{"OrderID":"0527-1336","ShipCountry":"CN","ShipAddress":"01 Toban Plaza","ShipName":"McLaughlin Inc","OrderDate":"2/18/2017","TotalPayment":"$888380.96","Status":2,"Type":3},{"OrderID":"65162-679","ShipCountry":"CN","ShipAddress":"19015 Sundown Junction","ShipName":"Cole-Schmeler","OrderDate":"8/21/2017","TotalPayment":"$766271.60","Status":6,"Type":1},{"OrderID":"48951-1149","ShipCountry":"TH","ShipAddress":"8505 Goodland Street","ShipName":"Fahey, Reichel and Heaney","OrderDate":"12/30/2017","TotalPayment":"$1117895.18","Status":2,"Type":2},{"OrderID":"52427-272","ShipCountry":"SE","ShipAddress":"7 Paget Terrace","ShipName":"Breitenberg Inc","OrderDate":"10/3/2016","TotalPayment":"$37927.43","Status":5,"Type":1},{"OrderID":"64117-135","ShipCountry":"CN","ShipAddress":"57699 Arrowood Alley","ShipName":"Herzog-Hilll","OrderDate":"1/20/2017","TotalPayment":"$785784.13","Status":3,"Type":1},{"OrderID":"13537-491","ShipCountry":"VE","ShipAddress":"92606 Bay Pass","ShipName":"Tremblay and Sons","OrderDate":"4/11/2017","TotalPayment":"$1043589.06","Status":2,"Type":1},{"OrderID":"57627-163","ShipCountry":"TH","ShipAddress":"76 Vidon Parkway","ShipName":"Carroll, Morar and Abbott","OrderDate":"5/15/2017","TotalPayment":"$186591.50","Status":4,"Type":2}]},\n{"RecordID":249,"FirstName":"Gustavo","LastName":"Earles","Company":"Wikivu","Email":"gearles6w@ehow.com","Phone":"612-984-6223","Status":6,"Type":3,"Orders":[{"OrderID":"57520-0776","ShipCountry":"PL","ShipAddress":"7 Michigan Drive","ShipName":"Connelly LLC","OrderDate":"8/27/2017","TotalPayment":"$759980.22","Status":6,"Type":1},{"OrderID":"21130-332","ShipCountry":"NZ","ShipAddress":"0 Blackbird Lane","ShipName":"Sauer-Larson","OrderDate":"5/1/2017","TotalPayment":"$1026951.10","Status":4,"Type":3},{"OrderID":"76329-8251","ShipCountry":"CN","ShipAddress":"4 Hovde Lane","ShipName":"Stokes Inc","OrderDate":"10/1/2016","TotalPayment":"$293932.73","Status":3,"Type":2},{"OrderID":"68084-338","ShipCountry":"PH","ShipAddress":"5645 Eastlawn Avenue","ShipName":"Jacobi-Towne","OrderDate":"5/19/2016","TotalPayment":"$742271.72","Status":4,"Type":3},{"OrderID":"50865-050","ShipCountry":"CN","ShipAddress":"7 Bartelt Center","ShipName":"Kulas-Douglas","OrderDate":"2/8/2016","TotalPayment":"$984513.93","Status":4,"Type":1},{"OrderID":"48951-8169","ShipCountry":"CN","ShipAddress":"1 Morrow Circle","ShipName":"Franecki, Zboncak and Hessel","OrderDate":"4/25/2016","TotalPayment":"$374691.38","Status":5,"Type":1}]},\n{"RecordID":250,"FirstName":"Laural","LastName":"Tregido","Company":"Zoozzy","Email":"ltregido6x@github.com","Phone":"288-946-1247","Status":2,"Type":2,"Orders":[{"OrderID":"0013-2626","ShipCountry":"ID","ShipAddress":"5177 Amoth Crossing","ShipName":"Toy and Sons","OrderDate":"3/11/2017","TotalPayment":"$745240.20","Status":3,"Type":3},{"OrderID":"64141-008","ShipCountry":"LU","ShipAddress":"2 Tennessee Point","ShipName":"Graham, Nitzsche and Reynolds","OrderDate":"4/29/2016","TotalPayment":"$120020.91","Status":6,"Type":3},{"OrderID":"60760-229","ShipCountry":"BR","ShipAddress":"7589 Schmedeman Road","ShipName":"Lebsack-Reilly","OrderDate":"5/8/2016","TotalPayment":"$1145219.98","Status":5,"Type":3},{"OrderID":"24208-398","ShipCountry":"CN","ShipAddress":"8571 Packers Avenue","ShipName":"Wuckert, Predovic and Rutherford","OrderDate":"6/8/2016","TotalPayment":"$1153309.16","Status":2,"Type":3},{"OrderID":"63667-941","ShipCountry":"CN","ShipAddress":"5584 Kingsford Crossing","ShipName":"Kris LLC","OrderDate":"10/3/2016","TotalPayment":"$350544.94","Status":3,"Type":1},{"OrderID":"76485-1024","ShipCountry":"BR","ShipAddress":"7082 Buhler Trail","ShipName":"Rogahn, Rogahn and Larkin","OrderDate":"3/8/2017","TotalPayment":"$163381.07","Status":1,"Type":2},{"OrderID":"35356-999","ShipCountry":"CN","ShipAddress":"06838 Spenser Parkway","ShipName":"Abernathy Inc","OrderDate":"8/20/2017","TotalPayment":"$578130.34","Status":6,"Type":2},{"OrderID":"44911-0082","ShipCountry":"CN","ShipAddress":"55 Granby Plaza","ShipName":"Hessel, Osinski and Trantow","OrderDate":"7/18/2017","TotalPayment":"$782897.45","Status":3,"Type":3},{"OrderID":"63629-1260","ShipCountry":"FR","ShipAddress":"129 Del Sol Court","ShipName":"Ferry, Gerhold and Johns","OrderDate":"3/23/2016","TotalPayment":"$686047.88","Status":5,"Type":1},{"OrderID":"56062-094","ShipCountry":"GH","ShipAddress":"94726 Swallow Avenue","ShipName":"Carroll, Halvorson and Erdman","OrderDate":"12/6/2017","TotalPayment":"$434479.33","Status":3,"Type":1},{"OrderID":"34645-5008","ShipCountry":"CN","ShipAddress":"483 Boyd Parkway","ShipName":"Donnelly, Tromp and Jacobi","OrderDate":"9/29/2016","TotalPayment":"$475950.38","Status":6,"Type":3},{"OrderID":"0019-9893","ShipCountry":"NG","ShipAddress":"82019 Carey Alley","ShipName":"Harvey, Huels and Graham","OrderDate":"12/26/2017","TotalPayment":"$88125.62","Status":6,"Type":1},{"OrderID":"16590-005","ShipCountry":"RU","ShipAddress":"55935 Wayridge Drive","ShipName":"Jerde, Davis and Davis","OrderDate":"3/13/2017","TotalPayment":"$1173487.22","Status":6,"Type":1},{"OrderID":"48951-1224","ShipCountry":"PH","ShipAddress":"365 Birchwood Drive","ShipName":"Dare and Sons","OrderDate":"8/21/2016","TotalPayment":"$324858.21","Status":4,"Type":2}]},\n{"RecordID":251,"FirstName":"Ignaz","LastName":"Dicker","Company":"Livetube","Email":"idicker6y@google.pl","Phone":"879-885-0713","Status":6,"Type":3,"Orders":[{"OrderID":"67938-0826","ShipCountry":"RU","ShipAddress":"832 Talisman Point","ShipName":"Jast-Hermann","OrderDate":"4/18/2016","TotalPayment":"$776853.28","Status":1,"Type":1},{"OrderID":"33261-389","ShipCountry":"PY","ShipAddress":"13 East Road","ShipName":"Carter Group","OrderDate":"7/14/2017","TotalPayment":"$171477.62","Status":4,"Type":3},{"OrderID":"0126-0135","ShipCountry":"UG","ShipAddress":"5256 Muir Point","ShipName":"Considine Group","OrderDate":"9/3/2016","TotalPayment":"$160204.26","Status":4,"Type":1},{"OrderID":"68599-5306","ShipCountry":"JP","ShipAddress":"43091 Esker Junction","ShipName":"Miller-Armstrong","OrderDate":"9/3/2016","TotalPayment":"$215647.88","Status":4,"Type":3},{"OrderID":"51389-201","ShipCountry":"CN","ShipAddress":"72 Hoard Trail","ShipName":"Monahan, Fisher and Ruecker","OrderDate":"1/28/2017","TotalPayment":"$100630.36","Status":3,"Type":2}]},\n{"RecordID":252,"FirstName":"Albertina","LastName":"Alderwick","Company":"Devcast","Email":"aalderwick6z@domainmarket.com","Phone":"307-542-4069","Status":4,"Type":3,"Orders":[{"OrderID":"37205-742","ShipCountry":"NG","ShipAddress":"8 Del Mar Circle","ShipName":"Rohan and Sons","OrderDate":"7/17/2017","TotalPayment":"$974493.03","Status":3,"Type":3},{"OrderID":"51346-068","ShipCountry":"YE","ShipAddress":"11386 Steensland Court","ShipName":"Schumm, Kris and Morar","OrderDate":"6/24/2017","TotalPayment":"$348977.89","Status":5,"Type":2},{"OrderID":"68382-130","ShipCountry":"US","ShipAddress":"8038 Stuart Parkway","ShipName":"Gutkowski LLC","OrderDate":"1/14/2017","TotalPayment":"$645083.29","Status":3,"Type":2},{"OrderID":"52124-1166","ShipCountry":"UA","ShipAddress":"3 Bultman Terrace","ShipName":"Jast-Windler","OrderDate":"5/27/2016","TotalPayment":"$1186950.41","Status":1,"Type":3},{"OrderID":"63187-140","ShipCountry":"NG","ShipAddress":"7112 Spenser Avenue","ShipName":"Kris-Stanton","OrderDate":"8/4/2017","TotalPayment":"$524936.17","Status":1,"Type":3},{"OrderID":"54868-5121","ShipCountry":"RS","ShipAddress":"9473 Riverside Road","ShipName":"Goodwin Group","OrderDate":"2/26/2017","TotalPayment":"$761800.74","Status":4,"Type":3},{"OrderID":"0378-5201","ShipCountry":"CN","ShipAddress":"5 Evergreen Place","ShipName":"Upton, Konopelski and Franecki","OrderDate":"8/15/2016","TotalPayment":"$140885.71","Status":4,"Type":3},{"OrderID":"10812-329","ShipCountry":"RU","ShipAddress":"26 Warbler Avenue","ShipName":"Schneider Inc","OrderDate":"3/10/2017","TotalPayment":"$216054.30","Status":1,"Type":3},{"OrderID":"54575-278","ShipCountry":"BH","ShipAddress":"74 Kings Pass","ShipName":"Hane, Roberts and O\'Keefe","OrderDate":"6/11/2017","TotalPayment":"$334275.84","Status":2,"Type":1},{"OrderID":"21695-033","ShipCountry":"CN","ShipAddress":"002 Dottie Avenue","ShipName":"Waters-Walsh","OrderDate":"11/30/2016","TotalPayment":"$903418.03","Status":4,"Type":1},{"OrderID":"68180-757","ShipCountry":"CN","ShipAddress":"89708 Dwight Circle","ShipName":"Kling, Corkery and Labadie","OrderDate":"12/16/2016","TotalPayment":"$539581.44","Status":2,"Type":1},{"OrderID":"0378-6610","ShipCountry":"ID","ShipAddress":"00 Gateway Trail","ShipName":"Robel and Sons","OrderDate":"2/19/2017","TotalPayment":"$339770.09","Status":5,"Type":3},{"OrderID":"0093-0029","ShipCountry":"RU","ShipAddress":"9 Green Lane","ShipName":"Little Inc","OrderDate":"4/15/2016","TotalPayment":"$881409.61","Status":6,"Type":3},{"OrderID":"21695-689","ShipCountry":"PT","ShipAddress":"0117 Graedel Circle","ShipName":"Johnson Group","OrderDate":"8/18/2016","TotalPayment":"$499346.05","Status":5,"Type":1}]},\n{"RecordID":253,"FirstName":"Hershel","LastName":"Dufour","Company":"Shuffledrive","Email":"hdufour70@statcounter.com","Phone":"213-953-2064","Status":2,"Type":1,"Orders":[{"OrderID":"65862-189","ShipCountry":"RU","ShipAddress":"9042 Mosinee Drive","ShipName":"Leannon, Bergnaum and Leffler","OrderDate":"7/22/2017","TotalPayment":"$798231.14","Status":6,"Type":3},{"OrderID":"31722-422","ShipCountry":"ID","ShipAddress":"95770 Ronald Regan Point","ShipName":"Hyatt-Eichmann","OrderDate":"8/6/2017","TotalPayment":"$769601.36","Status":2,"Type":2},{"OrderID":"50436-3945","ShipCountry":"PE","ShipAddress":"76865 Marquette Trail","ShipName":"McCullough-Sauer","OrderDate":"4/26/2016","TotalPayment":"$754337.38","Status":2,"Type":1},{"OrderID":"65862-306","ShipCountry":"ID","ShipAddress":"153 Dakota Way","ShipName":"Nitzsche-Rippin","OrderDate":"11/14/2017","TotalPayment":"$964419.04","Status":3,"Type":2},{"OrderID":"0904-5199","ShipCountry":"ID","ShipAddress":"4 Moose Junction","ShipName":"Pollich, Hane and Doyle","OrderDate":"2/11/2016","TotalPayment":"$520496.52","Status":5,"Type":1},{"OrderID":"42584-1001","ShipCountry":"FI","ShipAddress":"3254 Brentwood Junction","ShipName":"Streich LLC","OrderDate":"2/5/2017","TotalPayment":"$940128.71","Status":1,"Type":2},{"OrderID":"52125-080","ShipCountry":"PL","ShipAddress":"0406 Thompson Street","ShipName":"Tromp LLC","OrderDate":"1/7/2017","TotalPayment":"$1128784.63","Status":5,"Type":2},{"OrderID":"62756-369","ShipCountry":"TH","ShipAddress":"5391 Macpherson Avenue","ShipName":"Williamson Inc","OrderDate":"9/21/2017","TotalPayment":"$1010049.52","Status":1,"Type":3}]},\n{"RecordID":254,"FirstName":"Lucky","LastName":"Bratt","Company":"Dabjam","Email":"lbratt71@biglobe.ne.jp","Phone":"391-230-0406","Status":6,"Type":1,"Orders":[{"OrderID":"37000-356","ShipCountry":"ID","ShipAddress":"0572 Utah Circle","ShipName":"Rutherford and Sons","OrderDate":"8/3/2016","TotalPayment":"$685386.69","Status":5,"Type":1},{"OrderID":"52376-036","ShipCountry":"IE","ShipAddress":"584 David Plaza","ShipName":"Feest and Sons","OrderDate":"1/3/2016","TotalPayment":"$606897.77","Status":3,"Type":3},{"OrderID":"0093-3109","ShipCountry":"BR","ShipAddress":"43750 Jana Avenue","ShipName":"Abbott Group","OrderDate":"3/28/2017","TotalPayment":"$830019.86","Status":3,"Type":3},{"OrderID":"42421-418","ShipCountry":"PL","ShipAddress":"8868 Clove Drive","ShipName":"Parisian, Flatley and Tremblay","OrderDate":"7/7/2017","TotalPayment":"$790724.48","Status":5,"Type":1},{"OrderID":"63323-733","ShipCountry":"CN","ShipAddress":"31942 South Crossing","ShipName":"Marvin-Goldner","OrderDate":"7/8/2017","TotalPayment":"$899232.08","Status":5,"Type":1},{"OrderID":"0268-1008","ShipCountry":"CZ","ShipAddress":"797 Merry Plaza","ShipName":"Franecki Inc","OrderDate":"9/26/2016","TotalPayment":"$388661.00","Status":5,"Type":2},{"OrderID":"52125-465","ShipCountry":"NI","ShipAddress":"56 Debs Way","ShipName":"Kuhn and Sons","OrderDate":"3/2/2017","TotalPayment":"$1108881.99","Status":5,"Type":1},{"OrderID":"33261-091","ShipCountry":"SE","ShipAddress":"8 Washington Plaza","ShipName":"Borer, Maggio and Fahey","OrderDate":"8/20/2017","TotalPayment":"$898463.64","Status":1,"Type":2},{"OrderID":"41616-760","ShipCountry":"PT","ShipAddress":"89 Rowland Road","ShipName":"McGlynn-Stanton","OrderDate":"10/26/2017","TotalPayment":"$1190249.64","Status":4,"Type":1},{"OrderID":"0268-0839","ShipCountry":"HN","ShipAddress":"4595 High Crossing Lane","ShipName":"Moore, Towne and Gorczany","OrderDate":"2/20/2017","TotalPayment":"$387344.48","Status":4,"Type":3},{"OrderID":"68084-619","ShipCountry":"RU","ShipAddress":"503 Sheridan Pass","ShipName":"O\'Reilly-Upton","OrderDate":"7/20/2017","TotalPayment":"$319624.18","Status":5,"Type":3},{"OrderID":"43857-0288","ShipCountry":"RS","ShipAddress":"90 Dottie Alley","ShipName":"Jerde, Schroeder and Denesik","OrderDate":"9/3/2016","TotalPayment":"$434717.83","Status":2,"Type":2},{"OrderID":"50184-1026","ShipCountry":"BR","ShipAddress":"92 Vermont Circle","ShipName":"Rippin Inc","OrderDate":"4/15/2017","TotalPayment":"$497617.80","Status":1,"Type":1},{"OrderID":"56062-090","ShipCountry":"RU","ShipAddress":"5 Derek Street","ShipName":"Blick, McLaughlin and Marvin","OrderDate":"10/6/2016","TotalPayment":"$543825.88","Status":4,"Type":1},{"OrderID":"12462-600","ShipCountry":"KZ","ShipAddress":"3155 Packers Circle","ShipName":"D\'Amore-Bechtelar","OrderDate":"11/8/2016","TotalPayment":"$1096416.64","Status":1,"Type":3},{"OrderID":"21695-424","ShipCountry":"RU","ShipAddress":"09434 Jay Terrace","ShipName":"Romaguera Group","OrderDate":"9/27/2017","TotalPayment":"$963507.73","Status":2,"Type":3},{"OrderID":"43063-288","ShipCountry":"AR","ShipAddress":"41 Arapahoe Crossing","ShipName":"Corkery, Kris and Ratke","OrderDate":"10/17/2017","TotalPayment":"$871482.72","Status":3,"Type":1},{"OrderID":"53808-0948","ShipCountry":"PL","ShipAddress":"70334 Arkansas Plaza","ShipName":"Goyette LLC","OrderDate":"3/12/2017","TotalPayment":"$287567.75","Status":3,"Type":2}]},\n{"RecordID":255,"FirstName":"Horatius","LastName":"Sneath","Company":"Meezzy","Email":"hsneath72@fotki.com","Phone":"600-301-8740","Status":3,"Type":2,"Orders":[{"OrderID":"43538-101","ShipCountry":"UG","ShipAddress":"7 Luster Court","ShipName":"Gaylord and Sons","OrderDate":"4/18/2016","TotalPayment":"$1107474.38","Status":4,"Type":2},{"OrderID":"11523-7365","ShipCountry":"ID","ShipAddress":"8020 Hudson Way","ShipName":"Mohr-Barton","OrderDate":"11/16/2016","TotalPayment":"$1019954.68","Status":5,"Type":2},{"OrderID":"0781-3356","ShipCountry":"PT","ShipAddress":"7 Old Shore Alley","ShipName":"Langosh Group","OrderDate":"12/10/2016","TotalPayment":"$770686.92","Status":3,"Type":2},{"OrderID":"76519-1009","ShipCountry":"ML","ShipAddress":"64 Crowley Road","ShipName":"Schoen Group","OrderDate":"5/1/2017","TotalPayment":"$113080.52","Status":4,"Type":1},{"OrderID":"0264-7780","ShipCountry":"RU","ShipAddress":"60 Hagan Court","ShipName":"Beer and Sons","OrderDate":"12/2/2016","TotalPayment":"$1113878.72","Status":4,"Type":3},{"OrderID":"63941-312","ShipCountry":"PT","ShipAddress":"4 Westridge Point","ShipName":"Murray-Mann","OrderDate":"1/29/2017","TotalPayment":"$1042968.19","Status":2,"Type":3},{"OrderID":"13985-529","ShipCountry":"MU","ShipAddress":"3800 Warbler Alley","ShipName":"Kshlerin and Sons","OrderDate":"6/29/2016","TotalPayment":"$562805.94","Status":2,"Type":2},{"OrderID":"0338-1119","ShipCountry":"BA","ShipAddress":"61945 Logan Avenue","ShipName":"Goyette-Leffler","OrderDate":"4/10/2016","TotalPayment":"$335758.94","Status":1,"Type":1},{"OrderID":"54575-140","ShipCountry":"KI","ShipAddress":"61 Weeping Birch Junction","ShipName":"Frami-Emard","OrderDate":"2/13/2016","TotalPayment":"$877911.41","Status":6,"Type":1},{"OrderID":"42002-516","ShipCountry":"ID","ShipAddress":"31037 Longview Drive","ShipName":"Marvin-Beatty","OrderDate":"1/2/2017","TotalPayment":"$548430.47","Status":5,"Type":3},{"OrderID":"54868-0816","ShipCountry":"CN","ShipAddress":"2 Prairie Rose Drive","ShipName":"Rutherford Inc","OrderDate":"6/25/2017","TotalPayment":"$872413.56","Status":4,"Type":1},{"OrderID":"0781-5782","ShipCountry":"ZM","ShipAddress":"425 Moland Alley","ShipName":"Lakin, Mann and Keeling","OrderDate":"6/5/2016","TotalPayment":"$56940.35","Status":2,"Type":1},{"OrderID":"10742-1204","ShipCountry":"JP","ShipAddress":"111 Main Street","ShipName":"Boehm LLC","OrderDate":"7/4/2016","TotalPayment":"$15590.83","Status":4,"Type":1},{"OrderID":"0378-0577","ShipCountry":"DE","ShipAddress":"0 Fordem Street","ShipName":"Sanford-Frami","OrderDate":"12/27/2016","TotalPayment":"$79735.72","Status":2,"Type":2},{"OrderID":"64159-8952","ShipCountry":"RU","ShipAddress":"668 Stuart Alley","ShipName":"Hodkiewicz-Labadie","OrderDate":"6/17/2017","TotalPayment":"$86271.10","Status":5,"Type":2},{"OrderID":"57664-368","ShipCountry":"PH","ShipAddress":"78788 Gina Center","ShipName":"Davis, Abshire and Mann","OrderDate":"4/14/2016","TotalPayment":"$905059.76","Status":2,"Type":2},{"OrderID":"40042-047","ShipCountry":"ID","ShipAddress":"77760 Shasta Park","ShipName":"Ryan-Streich","OrderDate":"8/7/2017","TotalPayment":"$140597.77","Status":6,"Type":3}]},\n{"RecordID":256,"FirstName":"Donielle","LastName":"De Morena","Company":"Gigazoom","Email":"ddemorena73@time.com","Phone":"501-701-6314","Status":6,"Type":2,"Orders":[{"OrderID":"0065-0355","ShipCountry":"JP","ShipAddress":"85650 Continental Place","ShipName":"Hartmann, Strosin and Hilll","OrderDate":"11/8/2017","TotalPayment":"$33669.76","Status":5,"Type":1},{"OrderID":"11822-3351","ShipCountry":"RU","ShipAddress":"15116 Thompson Park","ShipName":"Hermiston-Mueller","OrderDate":"1/15/2016","TotalPayment":"$1097762.70","Status":1,"Type":3},{"OrderID":"57344-123","ShipCountry":"BR","ShipAddress":"79699 Doe Crossing Avenue","ShipName":"Yundt, Hoppe and Grimes","OrderDate":"11/18/2017","TotalPayment":"$149733.47","Status":6,"Type":1},{"OrderID":"37000-143","ShipCountry":"CN","ShipAddress":"4 Havey Plaza","ShipName":"Pfeffer, Mann and Krajcik","OrderDate":"8/11/2016","TotalPayment":"$1086668.01","Status":6,"Type":1},{"OrderID":"63323-599","ShipCountry":"MQ","ShipAddress":"6 Gale Park","ShipName":"Rogahn LLC","OrderDate":"5/30/2016","TotalPayment":"$943076.17","Status":4,"Type":2},{"OrderID":"54973-0605","ShipCountry":"PH","ShipAddress":"8 Banding Parkway","ShipName":"Prosacco, Mayert and Abshire","OrderDate":"8/15/2017","TotalPayment":"$135226.94","Status":5,"Type":2},{"OrderID":"61924-102","ShipCountry":"ID","ShipAddress":"3240 Lien Plaza","ShipName":"Wilderman, Torp and Ullrich","OrderDate":"6/19/2017","TotalPayment":"$926813.49","Status":3,"Type":1},{"OrderID":"63868-965","ShipCountry":"CN","ShipAddress":"8 Hanover Crossing","ShipName":"Cormier-Quitzon","OrderDate":"7/12/2017","TotalPayment":"$299501.00","Status":5,"Type":3},{"OrderID":"50383-700","ShipCountry":"CN","ShipAddress":"45 Green Drive","ShipName":"Frami, Yost and Denesik","OrderDate":"6/7/2016","TotalPayment":"$1158878.07","Status":6,"Type":1},{"OrderID":"36987-2900","ShipCountry":"ID","ShipAddress":"223 Farwell Park","ShipName":"Stokes Group","OrderDate":"3/1/2017","TotalPayment":"$970229.61","Status":2,"Type":1},{"OrderID":"49631-212","ShipCountry":"AM","ShipAddress":"016 Hazelcrest Drive","ShipName":"Langworth-Ondricka","OrderDate":"8/21/2017","TotalPayment":"$352615.13","Status":6,"Type":3},{"OrderID":"60681-6200","ShipCountry":"SE","ShipAddress":"4403 Ramsey Park","ShipName":"Senger-Hodkiewicz","OrderDate":"9/14/2016","TotalPayment":"$593602.84","Status":3,"Type":3},{"OrderID":"0615-7635","ShipCountry":"RS","ShipAddress":"29988 David Road","ShipName":"Simonis, Marquardt and Corwin","OrderDate":"9/30/2016","TotalPayment":"$401162.13","Status":1,"Type":2},{"OrderID":"61481-0450","ShipCountry":"MX","ShipAddress":"79 Sheridan Pass","ShipName":"Krajcik, Bergstrom and Rogahn","OrderDate":"8/25/2016","TotalPayment":"$484551.50","Status":4,"Type":3},{"OrderID":"53041-615","ShipCountry":"MW","ShipAddress":"14 Nancy Drive","ShipName":"O\'Hara, Collier and Green","OrderDate":"9/25/2017","TotalPayment":"$1091312.51","Status":5,"Type":3},{"OrderID":"61715-082","ShipCountry":"NC","ShipAddress":"848 Hazelcrest Circle","ShipName":"Gleason and Sons","OrderDate":"12/31/2016","TotalPayment":"$773966.28","Status":4,"Type":2},{"OrderID":"55154-8710","ShipCountry":"ID","ShipAddress":"39 Randy Pass","ShipName":"Dickinson LLC","OrderDate":"6/13/2017","TotalPayment":"$541208.13","Status":4,"Type":1},{"OrderID":"0135-0246","ShipCountry":"BR","ShipAddress":"4236 East Avenue","ShipName":"Brekke-Schmitt","OrderDate":"5/23/2017","TotalPayment":"$420813.60","Status":6,"Type":2}]},\n{"RecordID":257,"FirstName":"Lina","LastName":"Rainville","Company":"Mynte","Email":"lrainville74@latimes.com","Phone":"684-378-0447","Status":5,"Type":1,"Orders":[{"OrderID":"30142-227","ShipCountry":"MX","ShipAddress":"20 Waubesa Place","ShipName":"O\'Connell, Turner and McClure","OrderDate":"11/5/2016","TotalPayment":"$944523.89","Status":3,"Type":2},{"OrderID":"41250-032","ShipCountry":"NG","ShipAddress":"62 Bay Lane","ShipName":"Russel, Welch and Oberbrunner","OrderDate":"9/4/2017","TotalPayment":"$311191.67","Status":6,"Type":2},{"OrderID":"0597-0013","ShipCountry":"AR","ShipAddress":"509 Jana Hill","ShipName":"Murray-Fahey","OrderDate":"12/3/2017","TotalPayment":"$833558.60","Status":1,"Type":1},{"OrderID":"53208-471","ShipCountry":"BR","ShipAddress":"6648 Browning Park","ShipName":"Kub Inc","OrderDate":"4/10/2016","TotalPayment":"$1037032.71","Status":4,"Type":3},{"OrderID":"36987-2901","ShipCountry":"TN","ShipAddress":"7 Bultman Lane","ShipName":"Kihn-Rippin","OrderDate":"7/28/2016","TotalPayment":"$82773.27","Status":4,"Type":2},{"OrderID":"54569-0907","ShipCountry":"ID","ShipAddress":"6 Esker Road","ShipName":"Feil-Satterfield","OrderDate":"5/20/2017","TotalPayment":"$1159838.69","Status":3,"Type":1},{"OrderID":"49035-220","ShipCountry":"AG","ShipAddress":"06 Kenwood Junction","ShipName":"Zieme-Feeney","OrderDate":"9/30/2017","TotalPayment":"$265260.25","Status":2,"Type":3},{"OrderID":"49580-0334","ShipCountry":"ZW","ShipAddress":"63 Golden Leaf Junction","ShipName":"Hintz and Sons","OrderDate":"4/3/2016","TotalPayment":"$456043.54","Status":6,"Type":1},{"OrderID":"63304-538","ShipCountry":"PT","ShipAddress":"02 Schmedeman Avenue","ShipName":"Ullrich, Morar and Volkman","OrderDate":"8/17/2017","TotalPayment":"$739473.00","Status":4,"Type":3}]},\n{"RecordID":258,"FirstName":"Perkin","LastName":"Guilder","Company":"Linklinks","Email":"pguilder75@economist.com","Phone":"239-388-9415","Status":5,"Type":2,"Orders":[{"OrderID":"68703-098","ShipCountry":"CA","ShipAddress":"1 Division Terrace","ShipName":"Price-Lockman","OrderDate":"1/2/2017","TotalPayment":"$700378.30","Status":6,"Type":1},{"OrderID":"68788-7365","ShipCountry":"JP","ShipAddress":"113 Kipling Hill","ShipName":"Mitchell-Breitenberg","OrderDate":"4/15/2017","TotalPayment":"$328365.02","Status":6,"Type":1},{"OrderID":"12027-102","ShipCountry":"PT","ShipAddress":"76253 Dixon Trail","ShipName":"Graham, Murray and Predovic","OrderDate":"5/8/2017","TotalPayment":"$417878.58","Status":3,"Type":2},{"OrderID":"66993-466","ShipCountry":"ID","ShipAddress":"56644 Kennedy Avenue","ShipName":"Ruecker, Lakin and Herman","OrderDate":"5/27/2017","TotalPayment":"$1036810.31","Status":6,"Type":1},{"OrderID":"57910-200","ShipCountry":"FR","ShipAddress":"7 Loomis Trail","ShipName":"Oberbrunner-Cummerata","OrderDate":"8/14/2017","TotalPayment":"$64286.76","Status":3,"Type":1},{"OrderID":"50563-202","ShipCountry":"SE","ShipAddress":"52 Ilene Lane","ShipName":"Jast and Sons","OrderDate":"8/9/2016","TotalPayment":"$1157013.30","Status":2,"Type":2},{"OrderID":"63717-915","ShipCountry":"ID","ShipAddress":"1877 Lakeland Court","ShipName":"Schmidt-Keeling","OrderDate":"5/5/2017","TotalPayment":"$1169248.37","Status":3,"Type":1},{"OrderID":"0078-0633","ShipCountry":"CN","ShipAddress":"84198 Acker Drive","ShipName":"Marks, Walsh and Bashirian","OrderDate":"4/27/2016","TotalPayment":"$82417.63","Status":3,"Type":1},{"OrderID":"10337-434","ShipCountry":"ID","ShipAddress":"1 Vera Junction","ShipName":"Renner and Sons","OrderDate":"2/9/2016","TotalPayment":"$653572.44","Status":4,"Type":1},{"OrderID":"54868-4652","ShipCountry":"US","ShipAddress":"6 Elka Alley","ShipName":"Lindgren, Abshire and Thompson","OrderDate":"4/4/2017","TotalPayment":"$746693.96","Status":2,"Type":2},{"OrderID":"76119-1443","ShipCountry":"CN","ShipAddress":"113 Cambridge Avenue","ShipName":"Williamson, Rath and Schulist","OrderDate":"4/29/2016","TotalPayment":"$1144342.85","Status":2,"Type":1},{"OrderID":"49404-116","ShipCountry":"RU","ShipAddress":"60296 Eastwood Parkway","ShipName":"Strosin-Conn","OrderDate":"8/21/2017","TotalPayment":"$507599.48","Status":6,"Type":2},{"OrderID":"61957-1501","ShipCountry":"ID","ShipAddress":"498 3rd Parkway","ShipName":"Schuster Group","OrderDate":"7/9/2016","TotalPayment":"$1038888.52","Status":5,"Type":1},{"OrderID":"65044-1060","ShipCountry":"BR","ShipAddress":"3777 La Follette Lane","ShipName":"O\'Connell-Murray","OrderDate":"1/30/2016","TotalPayment":"$318569.42","Status":3,"Type":1},{"OrderID":"66497-0001","ShipCountry":"CN","ShipAddress":"2093 Donald Park","ShipName":"Ebert Inc","OrderDate":"1/29/2016","TotalPayment":"$883435.31","Status":2,"Type":3},{"OrderID":"54868-5565","ShipCountry":"ID","ShipAddress":"42 Raven Hill","ShipName":"Torphy, Ondricka and Wuckert","OrderDate":"3/14/2016","TotalPayment":"$890776.64","Status":5,"Type":2},{"OrderID":"75977-8142","ShipCountry":"TD","ShipAddress":"18 Bluestem Court","ShipName":"Muller-Beatty","OrderDate":"3/3/2016","TotalPayment":"$945253.69","Status":2,"Type":1}]},\n{"RecordID":259,"FirstName":"Julina","LastName":"Aubrun","Company":"Dabvine","Email":"jaubrun76@nydailynews.com","Phone":"160-434-4098","Status":3,"Type":2,"Orders":[{"OrderID":"0574-0611","ShipCountry":"CN","ShipAddress":"690 Hoepker Court","ShipName":"Effertz Inc","OrderDate":"10/16/2017","TotalPayment":"$1014598.99","Status":2,"Type":2},{"OrderID":"65044-3074","ShipCountry":"RU","ShipAddress":"4 Hanson Avenue","ShipName":"Boyer, Littel and Nitzsche","OrderDate":"2/23/2017","TotalPayment":"$768699.28","Status":5,"Type":1},{"OrderID":"76509-180","ShipCountry":"CN","ShipAddress":"2 Golf View Plaza","ShipName":"Pouros-Bailey","OrderDate":"12/10/2017","TotalPayment":"$1083245.01","Status":3,"Type":3},{"OrderID":"50436-9987","ShipCountry":"US","ShipAddress":"807 Miller Alley","ShipName":"Muller LLC","OrderDate":"8/7/2017","TotalPayment":"$606732.39","Status":6,"Type":2},{"OrderID":"76070-130","ShipCountry":"SE","ShipAddress":"377 Sauthoff Trail","ShipName":"Cormier, Vandervort and Renner","OrderDate":"6/20/2016","TotalPayment":"$97780.73","Status":2,"Type":1},{"OrderID":"41250-664","ShipCountry":"MD","ShipAddress":"045 Blaine Street","ShipName":"Miller-Kiehn","OrderDate":"7/2/2016","TotalPayment":"$370178.21","Status":3,"Type":2},{"OrderID":"0536-3990","ShipCountry":"GW","ShipAddress":"28826 Longview Trail","ShipName":"Johns-Feil","OrderDate":"3/9/2016","TotalPayment":"$118703.07","Status":3,"Type":3},{"OrderID":"0268-1366","ShipCountry":"ID","ShipAddress":"1 Arkansas Center","ShipName":"Brekke, Lubowitz and Carroll","OrderDate":"10/29/2017","TotalPayment":"$508206.56","Status":5,"Type":2},{"OrderID":"66993-875","ShipCountry":"CN","ShipAddress":"5360 Grayhawk Way","ShipName":"Mante, Mosciski and O\'Conner","OrderDate":"8/12/2017","TotalPayment":"$630855.20","Status":2,"Type":3},{"OrderID":"37000-857","ShipCountry":"UY","ShipAddress":"47238 La Follette Pass","ShipName":"Greenfelder-Bernhard","OrderDate":"5/12/2016","TotalPayment":"$713215.89","Status":4,"Type":1},{"OrderID":"37000-909","ShipCountry":"CN","ShipAddress":"30908 Morning Avenue","ShipName":"West Inc","OrderDate":"11/3/2017","TotalPayment":"$134985.64","Status":3,"Type":2},{"OrderID":"0781-5234","ShipCountry":"MY","ShipAddress":"66 1st Junction","ShipName":"Lebsack, Wyman and Fritsch","OrderDate":"1/20/2016","TotalPayment":"$846459.27","Status":2,"Type":3},{"OrderID":"54569-3689","ShipCountry":"CN","ShipAddress":"776 Anniversary Trail","ShipName":"Cronin Group","OrderDate":"4/3/2017","TotalPayment":"$562774.72","Status":2,"Type":3},{"OrderID":"62080-0101","ShipCountry":"JP","ShipAddress":"851 Kinsman Point","ShipName":"Kub Inc","OrderDate":"7/9/2017","TotalPayment":"$263263.08","Status":2,"Type":2},{"OrderID":"0703-4768","ShipCountry":"CA","ShipAddress":"6437 Arizona Center","ShipName":"Douglas LLC","OrderDate":"7/29/2017","TotalPayment":"$374359.08","Status":2,"Type":1},{"OrderID":"54973-2915","ShipCountry":"BR","ShipAddress":"3562 Rowland Hill","ShipName":"Batz, Flatley and Torphy","OrderDate":"6/23/2016","TotalPayment":"$399268.40","Status":4,"Type":3},{"OrderID":"64679-572","ShipCountry":"ID","ShipAddress":"286 Hintze Drive","ShipName":"Gaylord Inc","OrderDate":"4/1/2017","TotalPayment":"$777857.69","Status":1,"Type":1},{"OrderID":"52125-559","ShipCountry":"TH","ShipAddress":"59 Sutteridge Street","ShipName":"Dooley-Koelpin","OrderDate":"8/15/2017","TotalPayment":"$830663.10","Status":6,"Type":1},{"OrderID":"68016-227","ShipCountry":"CD","ShipAddress":"6272 Donald Street","ShipName":"Walter-Sauer","OrderDate":"3/20/2017","TotalPayment":"$549906.60","Status":4,"Type":1},{"OrderID":"54868-4278","ShipCountry":"US","ShipAddress":"89493 Wayridge Terrace","ShipName":"Bins-Miller","OrderDate":"7/22/2016","TotalPayment":"$295309.34","Status":5,"Type":3}]},\n{"RecordID":260,"FirstName":"Damara","LastName":"Gertz","Company":"Twinder","Email":"dgertz77@dyndns.org","Phone":"927-926-6931","Status":4,"Type":1,"Orders":[{"OrderID":"17819-1066","ShipCountry":"PL","ShipAddress":"09 Mccormick Place","ShipName":"Greenholt, Greenholt and Hyatt","OrderDate":"12/21/2017","TotalPayment":"$423290.98","Status":2,"Type":1},{"OrderID":"49348-532","ShipCountry":"CN","ShipAddress":"002 Golf Parkway","ShipName":"White, Zboncak and Rath","OrderDate":"3/26/2016","TotalPayment":"$343082.57","Status":5,"Type":1},{"OrderID":"35356-593","ShipCountry":"CN","ShipAddress":"1148 Milwaukee Center","ShipName":"Nikolaus Group","OrderDate":"7/14/2017","TotalPayment":"$767869.68","Status":2,"Type":3},{"OrderID":"37205-319","ShipCountry":"AM","ShipAddress":"25 Becker Park","ShipName":"Kautzer-Wiegand","OrderDate":"5/4/2016","TotalPayment":"$543647.55","Status":2,"Type":3},{"OrderID":"55154-2878","ShipCountry":"ID","ShipAddress":"1 Canary Way","ShipName":"Effertz-Hammes","OrderDate":"9/22/2017","TotalPayment":"$945973.36","Status":6,"Type":3},{"OrderID":"36987-2753","ShipCountry":"US","ShipAddress":"5843 Ridge Oak Center","ShipName":"Medhurst, Streich and Gislason","OrderDate":"11/18/2016","TotalPayment":"$57340.77","Status":2,"Type":2},{"OrderID":"51004-1097","ShipCountry":"PL","ShipAddress":"24 Jay Avenue","ShipName":"Cormier, Howe and Kshlerin","OrderDate":"11/24/2017","TotalPayment":"$453978.28","Status":4,"Type":2},{"OrderID":"47682-199","ShipCountry":"HN","ShipAddress":"2816 Kropf Crossing","ShipName":"Lueilwitz-Jast","OrderDate":"3/10/2017","TotalPayment":"$883453.50","Status":3,"Type":3},{"OrderID":"0409-1755","ShipCountry":"BG","ShipAddress":"9 Rusk Terrace","ShipName":"Boehm, Shanahan and Welch","OrderDate":"3/7/2017","TotalPayment":"$731023.47","Status":1,"Type":2},{"OrderID":"48951-5016","ShipCountry":"ID","ShipAddress":"0472 Northridge Junction","ShipName":"Donnelly LLC","OrderDate":"7/15/2016","TotalPayment":"$817056.10","Status":1,"Type":2},{"OrderID":"62011-0036","ShipCountry":"CA","ShipAddress":"605 Clyde Gallagher Avenue","ShipName":"Muller-Abernathy","OrderDate":"4/21/2017","TotalPayment":"$191690.39","Status":5,"Type":3}]},\n{"RecordID":261,"FirstName":"Larisa","LastName":"Matyashev","Company":"Cogibox","Email":"lmatyashev78@creativecommons.org","Phone":"592-829-7412","Status":1,"Type":2,"Orders":[{"OrderID":"21695-442","ShipCountry":"US","ShipAddress":"66 Spohn Way","ShipName":"Runolfsson, Metz and Pagac","OrderDate":"10/24/2017","TotalPayment":"$887556.15","Status":4,"Type":3},{"OrderID":"36800-485","ShipCountry":"CN","ShipAddress":"12212 East Place","ShipName":"Franecki, Zboncak and Kassulke","OrderDate":"2/14/2017","TotalPayment":"$198341.86","Status":4,"Type":2},{"OrderID":"11096-001","ShipCountry":"NG","ShipAddress":"42 Gulseth Terrace","ShipName":"Armstrong, Marquardt and Christiansen","OrderDate":"3/29/2017","TotalPayment":"$449897.66","Status":5,"Type":3},{"OrderID":"15370-101","ShipCountry":"CR","ShipAddress":"8 Bartillon Parkway","ShipName":"Donnelly Group","OrderDate":"5/22/2016","TotalPayment":"$903278.15","Status":6,"Type":1},{"OrderID":"51824-039","ShipCountry":"CN","ShipAddress":"069 Little Fleur Street","ShipName":"Hintz Inc","OrderDate":"9/27/2016","TotalPayment":"$717680.25","Status":4,"Type":2},{"OrderID":"63187-079","ShipCountry":"CN","ShipAddress":"62 Sugar Circle","ShipName":"Stark LLC","OrderDate":"11/29/2016","TotalPayment":"$875454.71","Status":4,"Type":2},{"OrderID":"76214-012","ShipCountry":"RU","ShipAddress":"3004 Di Loreto Park","ShipName":"Jenkins, Swift and Schmidt","OrderDate":"11/13/2017","TotalPayment":"$252494.34","Status":3,"Type":3},{"OrderID":"49035-108","ShipCountry":"PH","ShipAddress":"055 Pennsylvania Court","ShipName":"Osinski-Thiel","OrderDate":"11/29/2017","TotalPayment":"$202798.74","Status":2,"Type":2}]},\n{"RecordID":262,"FirstName":"Ches","LastName":"Roskeilly","Company":"Tekfly","Email":"croskeilly79@so-net.ne.jp","Phone":"943-176-5497","Status":4,"Type":3,"Orders":[{"OrderID":"0498-7500","ShipCountry":"CN","ShipAddress":"1892 Merrick Place","ShipName":"Gleason LLC","OrderDate":"10/12/2017","TotalPayment":"$1041618.49","Status":2,"Type":3},{"OrderID":"57337-047","ShipCountry":"MX","ShipAddress":"80772 Anthes Plaza","ShipName":"Mayer Inc","OrderDate":"4/21/2017","TotalPayment":"$1104199.96","Status":4,"Type":2},{"OrderID":"35356-686","ShipCountry":"PT","ShipAddress":"07320 Mayfield Way","ShipName":"Koepp, Stiedemann and Johnson","OrderDate":"3/25/2016","TotalPayment":"$358262.77","Status":2,"Type":2},{"OrderID":"59427-706","ShipCountry":"PH","ShipAddress":"25029 Bowman Point","ShipName":"Spinka-Cruickshank","OrderDate":"2/16/2017","TotalPayment":"$501215.90","Status":5,"Type":2},{"OrderID":"0338-1138","ShipCountry":"CN","ShipAddress":"772 Longview Terrace","ShipName":"Emmerich, Lebsack and Pouros","OrderDate":"6/7/2016","TotalPayment":"$698432.39","Status":5,"Type":3},{"OrderID":"55910-922","ShipCountry":"CM","ShipAddress":"950 Longview Avenue","ShipName":"Dach-Considine","OrderDate":"6/25/2017","TotalPayment":"$739638.36","Status":3,"Type":1},{"OrderID":"37000-397","ShipCountry":"ID","ShipAddress":"05342 Pankratz Park","ShipName":"Hirthe, Cassin and Hammes","OrderDate":"8/22/2016","TotalPayment":"$347496.81","Status":1,"Type":2},{"OrderID":"61919-160","ShipCountry":"IR","ShipAddress":"2372 Goodland Circle","ShipName":"Mitchell-Mraz","OrderDate":"4/15/2017","TotalPayment":"$949711.80","Status":4,"Type":1},{"OrderID":"64117-587","ShipCountry":"GR","ShipAddress":"3995 Rieder Parkway","ShipName":"Klocko Inc","OrderDate":"1/26/2017","TotalPayment":"$478947.94","Status":1,"Type":1},{"OrderID":"54575-428","ShipCountry":"RU","ShipAddress":"35 Marquette Road","ShipName":"Nienow Group","OrderDate":"1/26/2017","TotalPayment":"$812678.12","Status":1,"Type":3},{"OrderID":"54868-5551","ShipCountry":"RU","ShipAddress":"013 Rieder Point","ShipName":"Becker LLC","OrderDate":"9/12/2016","TotalPayment":"$827775.40","Status":5,"Type":1},{"OrderID":"53808-0398","ShipCountry":"HN","ShipAddress":"0 Eagan Drive","ShipName":"Watsica Inc","OrderDate":"3/30/2016","TotalPayment":"$135120.51","Status":2,"Type":1},{"OrderID":"50436-9972","ShipCountry":"CN","ShipAddress":"6467 Starling Avenue","ShipName":"Lowe-Beatty","OrderDate":"5/9/2016","TotalPayment":"$366502.38","Status":6,"Type":1}]},\n{"RecordID":263,"FirstName":"Juliette","LastName":"Daouse","Company":"Teklist","Email":"jdaouse7a@skype.com","Phone":"520-782-8374","Status":2,"Type":1,"Orders":[{"OrderID":"65044-2203","ShipCountry":"CN","ShipAddress":"502 Hintze Place","ShipName":"Kemmer, Prosacco and VonRueden","OrderDate":"2/23/2017","TotalPayment":"$1091333.82","Status":6,"Type":3},{"OrderID":"0517-2020","ShipCountry":"BR","ShipAddress":"62915 Leroy Circle","ShipName":"Rolfson-Boehm","OrderDate":"3/7/2016","TotalPayment":"$1049386.29","Status":1,"Type":2},{"OrderID":"57955-5019","ShipCountry":"PT","ShipAddress":"376 Daystar Way","ShipName":"Crooks-Harris","OrderDate":"1/4/2016","TotalPayment":"$1022250.21","Status":6,"Type":2},{"OrderID":"0536-3222","ShipCountry":"CN","ShipAddress":"4549 Laurel Crossing","ShipName":"Bauch-Predovic","OrderDate":"4/20/2016","TotalPayment":"$1091254.22","Status":5,"Type":3},{"OrderID":"64536-2220","ShipCountry":"UA","ShipAddress":"4765 Fairfield Trail","ShipName":"Waters, Cruickshank and Von","OrderDate":"9/1/2016","TotalPayment":"$1187178.78","Status":4,"Type":1},{"OrderID":"54868-5023","ShipCountry":"TH","ShipAddress":"3 Declaration Place","ShipName":"Mante and Sons","OrderDate":"9/5/2017","TotalPayment":"$17225.41","Status":5,"Type":3},{"OrderID":"0268-6122","ShipCountry":"BY","ShipAddress":"0 Grim Avenue","ShipName":"Ullrich, Beer and Dare","OrderDate":"6/3/2017","TotalPayment":"$1185108.61","Status":1,"Type":1},{"OrderID":"43063-271","ShipCountry":"CU","ShipAddress":"973 Brentwood Hill","ShipName":"Tromp-Hermiston","OrderDate":"5/21/2016","TotalPayment":"$218548.02","Status":4,"Type":3},{"OrderID":"21130-294","ShipCountry":"CZ","ShipAddress":"91 Buena Vista Terrace","ShipName":"Kunze-Ernser","OrderDate":"10/19/2017","TotalPayment":"$296704.92","Status":2,"Type":1}]},\n{"RecordID":264,"FirstName":"Christophe","LastName":"Moger","Company":"Topicblab","Email":"cmoger7b@joomla.org","Phone":"813-943-3659","Status":4,"Type":3,"Orders":[{"OrderID":"59779-305","ShipCountry":"US","ShipAddress":"1815 Michigan Alley","ShipName":"Johnston and Sons","OrderDate":"7/31/2017","TotalPayment":"$549825.63","Status":3,"Type":1},{"OrderID":"0245-0215","ShipCountry":"PS","ShipAddress":"234 Swallow Place","ShipName":"Schmitt and Sons","OrderDate":"4/27/2016","TotalPayment":"$1154695.23","Status":3,"Type":1},{"OrderID":"68428-036","ShipCountry":"MX","ShipAddress":"4641 Mccormick Drive","ShipName":"Klein, Stamm and Quigley","OrderDate":"2/20/2016","TotalPayment":"$420319.00","Status":3,"Type":1},{"OrderID":"41163-302","ShipCountry":"PE","ShipAddress":"4672 Manufacturers Road","ShipName":"Watsica-Kovacek","OrderDate":"1/21/2016","TotalPayment":"$36479.24","Status":6,"Type":3},{"OrderID":"67457-342","ShipCountry":"AR","ShipAddress":"4 Grim Point","ShipName":"Rutherford Group","OrderDate":"4/24/2017","TotalPayment":"$144812.62","Status":6,"Type":1},{"OrderID":"55714-2269","ShipCountry":"PH","ShipAddress":"6 Nancy Hill","ShipName":"Cronin Inc","OrderDate":"10/16/2017","TotalPayment":"$40168.81","Status":2,"Type":3},{"OrderID":"11673-825","ShipCountry":"KE","ShipAddress":"8 Hoffman Center","ShipName":"Weissnat-Lynch","OrderDate":"7/10/2017","TotalPayment":"$933893.58","Status":3,"Type":2},{"OrderID":"0173-0869","ShipCountry":"BR","ShipAddress":"3 Blackbird Park","ShipName":"Ziemann Inc","OrderDate":"6/3/2017","TotalPayment":"$619083.16","Status":3,"Type":3},{"OrderID":"44523-609","ShipCountry":"PH","ShipAddress":"86 Bultman Road","ShipName":"Pacocha LLC","OrderDate":"12/8/2016","TotalPayment":"$581560.02","Status":6,"Type":1},{"OrderID":"57520-0144","ShipCountry":"ID","ShipAddress":"6612 1st Point","ShipName":"Williamson LLC","OrderDate":"2/29/2016","TotalPayment":"$469999.42","Status":5,"Type":1},{"OrderID":"49371-038","ShipCountry":"CN","ShipAddress":"692 Waxwing Circle","ShipName":"Schmeler-Ledner","OrderDate":"2/8/2016","TotalPayment":"$268834.37","Status":3,"Type":1},{"OrderID":"0185-7400","ShipCountry":"PH","ShipAddress":"9842 Almo Plaza","ShipName":"Adams and Sons","OrderDate":"12/27/2017","TotalPayment":"$294177.77","Status":5,"Type":3},{"OrderID":"55533-522","ShipCountry":"AF","ShipAddress":"6179 Clyde Gallagher Plaza","ShipName":"Kuphal Inc","OrderDate":"12/28/2017","TotalPayment":"$808859.24","Status":5,"Type":1},{"OrderID":"76119-1327","ShipCountry":"CO","ShipAddress":"20 Jenifer Street","ShipName":"Haley-Mitchell","OrderDate":"7/30/2017","TotalPayment":"$147306.14","Status":5,"Type":2},{"OrderID":"14783-250","ShipCountry":"CU","ShipAddress":"1487 Caliangt Center","ShipName":"Emard, Reichert and Maggio","OrderDate":"11/17/2016","TotalPayment":"$29578.92","Status":6,"Type":2},{"OrderID":"10237-650","ShipCountry":"MX","ShipAddress":"96 Chinook Lane","ShipName":"Beier LLC","OrderDate":"3/8/2016","TotalPayment":"$301733.63","Status":1,"Type":1},{"OrderID":"51561-001","ShipCountry":"GQ","ShipAddress":"7 Northridge Drive","ShipName":"Hane LLC","OrderDate":"7/14/2016","TotalPayment":"$69385.47","Status":5,"Type":2},{"OrderID":"68968-5552","ShipCountry":"PE","ShipAddress":"8362 Maywood Trail","ShipName":"Cole LLC","OrderDate":"4/12/2016","TotalPayment":"$817651.61","Status":6,"Type":3}]},\n{"RecordID":265,"FirstName":"Hermione","LastName":"Lortz","Company":"Tanoodle","Email":"hlortz7c@netvibes.com","Phone":"547-106-8587","Status":3,"Type":3,"Orders":[{"OrderID":"67147-576","ShipCountry":"IR","ShipAddress":"9571 Dorton Hill","ShipName":"Yundt-Kirlin","OrderDate":"10/29/2016","TotalPayment":"$349397.32","Status":3,"Type":1},{"OrderID":"59779-882","ShipCountry":"JP","ShipAddress":"19 Laurel Parkway","ShipName":"Kertzmann, Kreiger and Frami","OrderDate":"4/19/2016","TotalPayment":"$974935.12","Status":2,"Type":3},{"OrderID":"61715-015","ShipCountry":"PA","ShipAddress":"0413 Corben Street","ShipName":"Gleichner LLC","OrderDate":"9/13/2016","TotalPayment":"$772469.77","Status":3,"Type":1},{"OrderID":"76331-904","ShipCountry":"BR","ShipAddress":"00 Mariners Cove Park","ShipName":"Considine, Purdy and Marks","OrderDate":"9/8/2016","TotalPayment":"$1083503.40","Status":4,"Type":1},{"OrderID":"41520-911","ShipCountry":"CR","ShipAddress":"60287 Forest Run Avenue","ShipName":"Jakubowski, Bashirian and Jakubowski","OrderDate":"8/30/2016","TotalPayment":"$147495.85","Status":1,"Type":2},{"OrderID":"67684-2000","ShipCountry":"PL","ShipAddress":"68243 Arrowood Pass","ShipName":"Cruickshank, Lubowitz and Hamill","OrderDate":"3/9/2016","TotalPayment":"$250324.36","Status":6,"Type":1},{"OrderID":"52099-8000","ShipCountry":"AR","ShipAddress":"3806 Porter Point","ShipName":"Lang and Sons","OrderDate":"8/28/2016","TotalPayment":"$151356.87","Status":1,"Type":1},{"OrderID":"49738-304","ShipCountry":"CN","ShipAddress":"08 Bashford Center","ShipName":"Kihn, Zemlak and Daniel","OrderDate":"7/17/2016","TotalPayment":"$1195625.40","Status":3,"Type":1},{"OrderID":"61601-1126","ShipCountry":"LU","ShipAddress":"300 Fairfield Pass","ShipName":"Volkman-Russel","OrderDate":"10/10/2017","TotalPayment":"$1165763.79","Status":5,"Type":2},{"OrderID":"21130-194","ShipCountry":"CN","ShipAddress":"588 Lotheville Place","ShipName":"Koch-Shanahan","OrderDate":"11/8/2017","TotalPayment":"$292840.23","Status":4,"Type":1},{"OrderID":"58118-0114","ShipCountry":"PT","ShipAddress":"8 Mariners Cove Circle","ShipName":"Nienow LLC","OrderDate":"12/15/2017","TotalPayment":"$703110.30","Status":4,"Type":3},{"OrderID":"63824-016","ShipCountry":"ID","ShipAddress":"208 Ryan Drive","ShipName":"Wehner, Ortiz and Smitham","OrderDate":"9/27/2016","TotalPayment":"$334764.10","Status":5,"Type":2}]},\n{"RecordID":266,"FirstName":"Johnna","LastName":"Lilburne","Company":"Feedbug","Email":"jlilburne7d@npr.org","Phone":"372-950-0110","Status":6,"Type":3,"Orders":[{"OrderID":"0069-2589","ShipCountry":"AR","ShipAddress":"8533 Butterfield Trail","ShipName":"Welch, Dibbert and Brekke","OrderDate":"10/19/2016","TotalPayment":"$1142923.22","Status":3,"Type":2},{"OrderID":"0781-5754","ShipCountry":"CN","ShipAddress":"325 La Follette Park","ShipName":"Lubowitz LLC","OrderDate":"10/15/2017","TotalPayment":"$1109237.48","Status":6,"Type":1},{"OrderID":"66992-340","ShipCountry":"TH","ShipAddress":"9 Carey Street","ShipName":"Rolfson-Corkery","OrderDate":"6/27/2016","TotalPayment":"$948837.08","Status":5,"Type":2},{"OrderID":"37808-467","ShipCountry":"FR","ShipAddress":"77 Mcbride Court","ShipName":"Borer-Cummerata","OrderDate":"5/21/2016","TotalPayment":"$687403.53","Status":4,"Type":1},{"OrderID":"42507-177","ShipCountry":"ZA","ShipAddress":"59971 Morning Park","ShipName":"Herman, Bode and Lockman","OrderDate":"2/4/2017","TotalPayment":"$65126.13","Status":2,"Type":2},{"OrderID":"36987-1251","ShipCountry":"LU","ShipAddress":"26 Morningstar Street","ShipName":"Jacobi-Abshire","OrderDate":"10/20/2016","TotalPayment":"$572161.64","Status":3,"Type":1},{"OrderID":"68828-148","ShipCountry":"PL","ShipAddress":"1 Thierer Place","ShipName":"Keeling, Yundt and Torp","OrderDate":"5/12/2017","TotalPayment":"$780450.05","Status":6,"Type":3},{"OrderID":"76237-257","ShipCountry":"RU","ShipAddress":"4025 Carpenter Lane","ShipName":"Runte-Sanford","OrderDate":"12/20/2017","TotalPayment":"$1088486.21","Status":4,"Type":3}]},\n{"RecordID":267,"FirstName":"Ragnar","LastName":"Scarman","Company":"Jabbersphere","Email":"rscarman7e@slashdot.org","Phone":"274-778-5500","Status":6,"Type":3,"Orders":[{"OrderID":"42549-531","ShipCountry":"ID","ShipAddress":"0 Jay Trail","ShipName":"Emard-Farrell","OrderDate":"7/19/2016","TotalPayment":"$428398.20","Status":5,"Type":1},{"OrderID":"24385-436","ShipCountry":"ID","ShipAddress":"97994 Northland Way","ShipName":"Gerhold and Sons","OrderDate":"9/27/2017","TotalPayment":"$685303.68","Status":6,"Type":1},{"OrderID":"60512-9062","ShipCountry":"HR","ShipAddress":"03754 Washington Lane","ShipName":"Purdy Group","OrderDate":"9/26/2017","TotalPayment":"$1018215.97","Status":3,"Type":2},{"OrderID":"0268-0082","ShipCountry":"MX","ShipAddress":"15560 Amoth Crossing","ShipName":"Schneider-Lakin","OrderDate":"9/24/2017","TotalPayment":"$635548.03","Status":6,"Type":3},{"OrderID":"43526-115","ShipCountry":"CN","ShipAddress":"237 American Crossing","ShipName":"Wintheiser LLC","OrderDate":"9/13/2017","TotalPayment":"$743127.05","Status":6,"Type":1},{"OrderID":"42254-302","ShipCountry":"ID","ShipAddress":"2 Bartelt Court","ShipName":"Emard Group","OrderDate":"4/17/2016","TotalPayment":"$971759.16","Status":3,"Type":2}]},\n{"RecordID":268,"FirstName":"Dominick","LastName":"Whether","Company":"Voomm","Email":"dwhether7f@uiuc.edu","Phone":"776-198-8686","Status":5,"Type":1,"Orders":[{"OrderID":"0378-3025","ShipCountry":"HT","ShipAddress":"3026 Fisk Circle","ShipName":"Bernhard Inc","OrderDate":"11/8/2016","TotalPayment":"$141695.30","Status":1,"Type":3},{"OrderID":"36987-2153","ShipCountry":"CN","ShipAddress":"78422 Magdeline Terrace","ShipName":"Stracke-Dibbert","OrderDate":"6/8/2016","TotalPayment":"$391067.38","Status":4,"Type":2},{"OrderID":"63629-5431","ShipCountry":"RU","ShipAddress":"57076 Hallows Alley","ShipName":"Schowalter and Sons","OrderDate":"2/9/2017","TotalPayment":"$466679.27","Status":2,"Type":1},{"OrderID":"58990-000","ShipCountry":"PL","ShipAddress":"1003 Susan Court","ShipName":"Bins, Cormier and Carroll","OrderDate":"8/1/2017","TotalPayment":"$1093884.97","Status":2,"Type":3},{"OrderID":"0603-5927","ShipCountry":"MK","ShipAddress":"829 Blaine Road","ShipName":"Doyle, Schiller and Watsica","OrderDate":"5/8/2017","TotalPayment":"$618902.41","Status":5,"Type":2},{"OrderID":"10812-950","ShipCountry":"PH","ShipAddress":"6270 Graceland Road","ShipName":"Runolfsdottir-Murphy","OrderDate":"7/6/2017","TotalPayment":"$759020.42","Status":5,"Type":2},{"OrderID":"50302-300","ShipCountry":"GR","ShipAddress":"70 Scoville Terrace","ShipName":"Spinka, Kulas and Johnston","OrderDate":"9/19/2016","TotalPayment":"$1078902.95","Status":6,"Type":3},{"OrderID":"0363-0113","ShipCountry":"PH","ShipAddress":"318 Manley Center","ShipName":"Satterfield Group","OrderDate":"2/14/2017","TotalPayment":"$1001278.41","Status":2,"Type":1}]},\n{"RecordID":269,"FirstName":"Shelli","LastName":"Grut","Company":"Camido","Email":"sgrut7g@51.la","Phone":"414-960-0264","Status":5,"Type":2,"Orders":[{"OrderID":"11822-8210","ShipCountry":"CN","ShipAddress":"0 Pleasure Point","ShipName":"Graham-Collins","OrderDate":"2/6/2017","TotalPayment":"$523694.18","Status":5,"Type":1},{"OrderID":"63824-343","ShipCountry":"MU","ShipAddress":"92006 Carpenter Point","ShipName":"Cummings, Herman and Pacocha","OrderDate":"3/4/2016","TotalPayment":"$374733.04","Status":3,"Type":2},{"OrderID":"68382-198","ShipCountry":"JP","ShipAddress":"4 Vidon Hill","ShipName":"Brown Inc","OrderDate":"5/16/2017","TotalPayment":"$178758.55","Status":2,"Type":1},{"OrderID":"59779-417","ShipCountry":"CN","ShipAddress":"9984 Hudson Pass","ShipName":"Jacobs, Mann and Block","OrderDate":"12/18/2016","TotalPayment":"$190401.76","Status":6,"Type":1},{"OrderID":"21130-159","ShipCountry":"KZ","ShipAddress":"881 Westerfield Street","ShipName":"Sauer, Greenfelder and Schimmel","OrderDate":"8/11/2017","TotalPayment":"$1122127.92","Status":4,"Type":3},{"OrderID":"54868-3006","ShipCountry":"FR","ShipAddress":"90386 Tony Center","ShipName":"Haag-Wilkinson","OrderDate":"11/11/2016","TotalPayment":"$764005.67","Status":1,"Type":2},{"OrderID":"0904-5282","ShipCountry":"MX","ShipAddress":"775 Ruskin Alley","ShipName":"Hayes-Hand","OrderDate":"9/20/2016","TotalPayment":"$525669.80","Status":4,"Type":3},{"OrderID":"24451-775","ShipCountry":"PL","ShipAddress":"11 Talisman Point","ShipName":"Runolfsson, Cruickshank and Crooks","OrderDate":"7/17/2016","TotalPayment":"$1048797.03","Status":3,"Type":1},{"OrderID":"49643-047","ShipCountry":"HR","ShipAddress":"7634 Shoshone Point","ShipName":"Boyle Inc","OrderDate":"5/1/2016","TotalPayment":"$1198237.28","Status":4,"Type":3},{"OrderID":"0115-1473","ShipCountry":"UA","ShipAddress":"7036 Hanson Avenue","ShipName":"Hyatt LLC","OrderDate":"7/18/2017","TotalPayment":"$712261.46","Status":6,"Type":3},{"OrderID":"55289-045","ShipCountry":"CN","ShipAddress":"119 Clarendon Drive","ShipName":"Schultz Inc","OrderDate":"7/20/2017","TotalPayment":"$80884.93","Status":4,"Type":2},{"OrderID":"43857-0073","ShipCountry":"YE","ShipAddress":"22 Vernon Drive","ShipName":"Torp-Tromp","OrderDate":"4/2/2017","TotalPayment":"$168603.50","Status":2,"Type":3}]},\n{"RecordID":270,"FirstName":"Morgana","LastName":"Pengilly","Company":"Kwimbee","Email":"mpengilly7h@ucla.edu","Phone":"831-864-1809","Status":6,"Type":2,"Orders":[{"OrderID":"22100-015","ShipCountry":"ID","ShipAddress":"52 South Circle","ShipName":"Jerde-Rogahn","OrderDate":"11/17/2017","TotalPayment":"$399626.33","Status":3,"Type":1},{"OrderID":"16252-535","ShipCountry":"PE","ShipAddress":"4 Johnson Alley","ShipName":"Kuphal and Sons","OrderDate":"1/15/2017","TotalPayment":"$742088.24","Status":3,"Type":3},{"OrderID":"49967-208","ShipCountry":"RU","ShipAddress":"16 Spenser Alley","ShipName":"Jaskolski Inc","OrderDate":"3/3/2016","TotalPayment":"$588063.03","Status":3,"Type":2},{"OrderID":"36987-2087","ShipCountry":"NO","ShipAddress":"0756 Shelley Plaza","ShipName":"O\'Conner-Becker","OrderDate":"12/26/2017","TotalPayment":"$16353.59","Status":2,"Type":2},{"OrderID":"48951-5069","ShipCountry":"HT","ShipAddress":"4390 West Plaza","ShipName":"Weimann Inc","OrderDate":"11/5/2016","TotalPayment":"$1019431.52","Status":4,"Type":2},{"OrderID":"49348-361","ShipCountry":"PH","ShipAddress":"8716 Dawn Center","ShipName":"Simonis-Predovic","OrderDate":"1/4/2017","TotalPayment":"$92271.52","Status":4,"Type":2},{"OrderID":"55566-7501","ShipCountry":"ID","ShipAddress":"67 Mallory Alley","ShipName":"Okuneva Group","OrderDate":"5/7/2017","TotalPayment":"$746313.99","Status":2,"Type":2},{"OrderID":"46122-031","ShipCountry":"SY","ShipAddress":"975 Prairie Rose Street","ShipName":"Nolan, Harris and Bosco","OrderDate":"9/23/2017","TotalPayment":"$478554.49","Status":1,"Type":3},{"OrderID":"51830-020","ShipCountry":"SV","ShipAddress":"58732 Sunnyside Court","ShipName":"Mitchell-Gaylord","OrderDate":"9/26/2017","TotalPayment":"$752817.79","Status":1,"Type":1},{"OrderID":"24488-010","ShipCountry":"JP","ShipAddress":"5186 Superior Road","ShipName":"Robel LLC","OrderDate":"9/3/2016","TotalPayment":"$955207.16","Status":2,"Type":2},{"OrderID":"52698-002","ShipCountry":"PH","ShipAddress":"3845 Reindahl Alley","ShipName":"Rau, Luettgen and Bergstrom","OrderDate":"1/26/2017","TotalPayment":"$928875.68","Status":1,"Type":2},{"OrderID":"43772-0036","ShipCountry":"GR","ShipAddress":"4 Harbort Road","ShipName":"Stehr-Runolfsson","OrderDate":"8/28/2016","TotalPayment":"$95294.30","Status":2,"Type":3},{"OrderID":"46122-157","ShipCountry":"NG","ShipAddress":"2334 Hayes Park","ShipName":"Kunze, Nader and Champlin","OrderDate":"5/20/2016","TotalPayment":"$137639.38","Status":4,"Type":3},{"OrderID":"75847-4001","ShipCountry":"RU","ShipAddress":"221 Bunting Court","ShipName":"Dach Inc","OrderDate":"9/28/2017","TotalPayment":"$539410.52","Status":5,"Type":1},{"OrderID":"48951-1030","ShipCountry":"ID","ShipAddress":"317 Elgar Crossing","ShipName":"Rath and Sons","OrderDate":"11/15/2017","TotalPayment":"$919217.01","Status":1,"Type":3}]},\n{"RecordID":271,"FirstName":"Rossie","LastName":"Grebert","Company":"Tagfeed","Email":"rgrebert7i@amazon.co.uk","Phone":"454-784-6844","Status":6,"Type":1,"Orders":[{"OrderID":"50410-020","ShipCountry":"PT","ShipAddress":"07343 Nobel Pass","ShipName":"Boehm, Gusikowski and Stroman","OrderDate":"6/6/2017","TotalPayment":"$794700.44","Status":5,"Type":1},{"OrderID":"76509-100","ShipCountry":"FR","ShipAddress":"80 Holmberg Park","ShipName":"Tromp Group","OrderDate":"8/25/2016","TotalPayment":"$212118.21","Status":4,"Type":3},{"OrderID":"0406-8003","ShipCountry":"KM","ShipAddress":"170 Memorial Plaza","ShipName":"Johns LLC","OrderDate":"10/3/2017","TotalPayment":"$675607.27","Status":2,"Type":2},{"OrderID":"55910-279","ShipCountry":"ID","ShipAddress":"00633 Oakridge Trail","ShipName":"Schmidt-Cummings","OrderDate":"9/22/2016","TotalPayment":"$289873.08","Status":1,"Type":3},{"OrderID":"21130-477","ShipCountry":"RU","ShipAddress":"6 Bunker Hill Trail","ShipName":"Denesik, Larson and Wilkinson","OrderDate":"10/11/2016","TotalPayment":"$840178.54","Status":1,"Type":1},{"OrderID":"63629-1793","ShipCountry":"ID","ShipAddress":"13 Dottie Hill","ShipName":"Stanton Inc","OrderDate":"10/16/2016","TotalPayment":"$1005869.54","Status":1,"Type":1},{"OrderID":"43857-0328","ShipCountry":"RS","ShipAddress":"21649 Atwood Center","ShipName":"Considine LLC","OrderDate":"7/2/2016","TotalPayment":"$161534.16","Status":4,"Type":3},{"OrderID":"21130-458","ShipCountry":"PH","ShipAddress":"66 Pierstorff Alley","ShipName":"O\'Connell LLC","OrderDate":"8/15/2016","TotalPayment":"$232943.29","Status":6,"Type":2},{"OrderID":"49643-420","ShipCountry":"AO","ShipAddress":"9 Lien Hill","ShipName":"Hettinger, Hauck and Cummings","OrderDate":"1/20/2016","TotalPayment":"$913932.64","Status":4,"Type":3},{"OrderID":"43251-2281","ShipCountry":"PH","ShipAddress":"908 Meadow Valley Pass","ShipName":"Senger Group","OrderDate":"5/8/2016","TotalPayment":"$448333.16","Status":5,"Type":3},{"OrderID":"55648-743","ShipCountry":"CY","ShipAddress":"6804 Northridge Junction","ShipName":"Murphy-Pacocha","OrderDate":"12/3/2017","TotalPayment":"$909279.69","Status":6,"Type":2},{"OrderID":"58118-1343","ShipCountry":"CN","ShipAddress":"3076 Pepper Wood Alley","ShipName":"Kemmer-Gutmann","OrderDate":"10/20/2016","TotalPayment":"$718226.21","Status":5,"Type":2},{"OrderID":"51824-014","ShipCountry":"BD","ShipAddress":"40 Golf View Street","ShipName":"Weimann, Welch and Bruen","OrderDate":"4/6/2017","TotalPayment":"$82617.98","Status":4,"Type":2},{"OrderID":"51285-204","ShipCountry":"NL","ShipAddress":"44007 Hallows Street","ShipName":"Ruecker LLC","OrderDate":"10/16/2017","TotalPayment":"$708882.58","Status":4,"Type":1},{"OrderID":"0615-1354","ShipCountry":"SZ","ShipAddress":"5 Wayridge Street","ShipName":"Glover, Hirthe and Torp","OrderDate":"3/7/2017","TotalPayment":"$360860.89","Status":6,"Type":3},{"OrderID":"63629-2882","ShipCountry":"GT","ShipAddress":"1 Lyons Way","ShipName":"Hickle Inc","OrderDate":"3/19/2017","TotalPayment":"$437008.42","Status":3,"Type":2},{"OrderID":"68472-135","ShipCountry":"RU","ShipAddress":"93611 Tennessee Alley","ShipName":"Towne, Wolf and Stracke","OrderDate":"7/24/2016","TotalPayment":"$985693.25","Status":3,"Type":1},{"OrderID":"0085-4353","ShipCountry":"SE","ShipAddress":"62774 Division Court","ShipName":"Auer, Wiegand and Boyle","OrderDate":"3/16/2016","TotalPayment":"$724584.18","Status":4,"Type":1}]},\n{"RecordID":272,"FirstName":"Horst","LastName":"Felmingham","Company":"Skyndu","Email":"hfelmingham7j@dot.gov","Phone":"943-479-4462","Status":6,"Type":2,"Orders":[{"OrderID":"62106-004","ShipCountry":"CN","ShipAddress":"12191 Kim Park","ShipName":"Welch-Heathcote","OrderDate":"10/14/2017","TotalPayment":"$621095.40","Status":4,"Type":3},{"OrderID":"54868-4175","ShipCountry":"AU","ShipAddress":"967 Sycamore Hill","ShipName":"Kuvalis-Skiles","OrderDate":"3/26/2016","TotalPayment":"$29711.00","Status":2,"Type":2},{"OrderID":"50436-0195","ShipCountry":"ID","ShipAddress":"79263 Melody Point","ShipName":"Powlowski and Sons","OrderDate":"5/24/2017","TotalPayment":"$1047349.34","Status":4,"Type":1},{"OrderID":"76237-134","ShipCountry":"CO","ShipAddress":"12 Waxwing Court","ShipName":"Raynor Inc","OrderDate":"4/12/2017","TotalPayment":"$818380.24","Status":5,"Type":3},{"OrderID":"59351-0333","ShipCountry":"LV","ShipAddress":"46780 Oak Parkway","ShipName":"D\'Amore LLC","OrderDate":"1/21/2016","TotalPayment":"$1112847.30","Status":1,"Type":1},{"OrderID":"67046-223","ShipCountry":"CA","ShipAddress":"45148 Lakewood Gardens Drive","ShipName":"Schmeler Group","OrderDate":"9/1/2017","TotalPayment":"$1032000.27","Status":5,"Type":3},{"OrderID":"53808-0452","ShipCountry":"CA","ShipAddress":"88 Meadow Valley Circle","ShipName":"Schaefer, Funk and Raynor","OrderDate":"5/27/2016","TotalPayment":"$777309.33","Status":1,"Type":3},{"OrderID":"67544-102","ShipCountry":"RU","ShipAddress":"11 Helena Drive","ShipName":"Batz, Kub and McCullough","OrderDate":"6/2/2017","TotalPayment":"$912391.90","Status":6,"Type":1},{"OrderID":"68727-600","ShipCountry":"SY","ShipAddress":"0 Mcguire Lane","ShipName":"Feest-Swaniawski","OrderDate":"11/10/2016","TotalPayment":"$175823.15","Status":4,"Type":2},{"OrderID":"54868-5249","ShipCountry":"PT","ShipAddress":"8 Merchant Parkway","ShipName":"Pfannerstill Inc","OrderDate":"2/22/2017","TotalPayment":"$1099461.03","Status":4,"Type":2}]},\n{"RecordID":273,"FirstName":"Reynold","LastName":"Martt","Company":"Plajo","Email":"rmartt7k@mit.edu","Phone":"137-978-6044","Status":3,"Type":1,"Orders":[{"OrderID":"0093-0026","ShipCountry":"PE","ShipAddress":"72397 Hauk Circle","ShipName":"Batz, Bahringer and Spencer","OrderDate":"10/3/2016","TotalPayment":"$204395.67","Status":5,"Type":3},{"OrderID":"30142-930","ShipCountry":"GR","ShipAddress":"786 Derek Crossing","ShipName":"Feeney, Hilpert and Hoppe","OrderDate":"11/15/2016","TotalPayment":"$63905.96","Status":5,"Type":2},{"OrderID":"13537-002","ShipCountry":"AL","ShipAddress":"97 Walton Point","ShipName":"Ruecker and Sons","OrderDate":"2/20/2016","TotalPayment":"$426902.96","Status":1,"Type":2},{"OrderID":"24385-301","ShipCountry":"PH","ShipAddress":"2 Rockefeller Point","ShipName":"Cummerata, Rolfson and Fadel","OrderDate":"6/26/2016","TotalPayment":"$1186173.95","Status":3,"Type":3},{"OrderID":"63629-4788","ShipCountry":"PT","ShipAddress":"8146 Express Place","ShipName":"Bailey Inc","OrderDate":"8/30/2016","TotalPayment":"$1112759.17","Status":2,"Type":2},{"OrderID":"49852-034","ShipCountry":"ID","ShipAddress":"2570 Veith Court","ShipName":"Koelpin Inc","OrderDate":"1/26/2016","TotalPayment":"$863264.10","Status":3,"Type":3},{"OrderID":"42421-326","ShipCountry":"CN","ShipAddress":"3 Novick Junction","ShipName":"Hermann-Cruickshank","OrderDate":"11/9/2017","TotalPayment":"$786823.21","Status":5,"Type":2},{"OrderID":"53808-0547","ShipCountry":"CN","ShipAddress":"081 Warrior Lane","ShipName":"Batz, Ward and McCullough","OrderDate":"1/4/2016","TotalPayment":"$767992.30","Status":5,"Type":3}]},\n{"RecordID":274,"FirstName":"Nathanael","LastName":"Wainscoat","Company":"Rhybox","Email":"nwainscoat7l@reddit.com","Phone":"250-703-6420","Status":3,"Type":2,"Orders":[{"OrderID":"59779-831","ShipCountry":"NG","ShipAddress":"1958 Sullivan Place","ShipName":"Towne Group","OrderDate":"9/25/2016","TotalPayment":"$916740.35","Status":3,"Type":1},{"OrderID":"76020-200","ShipCountry":"VN","ShipAddress":"8368 Ridgeview Plaza","ShipName":"Heaney Group","OrderDate":"5/24/2017","TotalPayment":"$183037.44","Status":6,"Type":1},{"OrderID":"36987-3028","ShipCountry":"PH","ShipAddress":"5 Grasskamp Circle","ShipName":"Heller Group","OrderDate":"1/24/2017","TotalPayment":"$147011.74","Status":3,"Type":3},{"OrderID":"55312-437","ShipCountry":"PH","ShipAddress":"537 Bunker Hill Plaza","ShipName":"Effertz Group","OrderDate":"10/11/2017","TotalPayment":"$28207.11","Status":2,"Type":3},{"OrderID":"51138-065","ShipCountry":"PH","ShipAddress":"9 Hoard Park","ShipName":"O\'Hara-Schmeler","OrderDate":"12/14/2016","TotalPayment":"$1124565.25","Status":2,"Type":1},{"OrderID":"47682-578","ShipCountry":"CZ","ShipAddress":"719 Green Court","ShipName":"Renner, Beatty and Abernathy","OrderDate":"11/6/2017","TotalPayment":"$407711.77","Status":2,"Type":1},{"OrderID":"52125-514","ShipCountry":"RU","ShipAddress":"163 Kim Circle","ShipName":"Haley, Ernser and Cartwright","OrderDate":"5/29/2016","TotalPayment":"$788328.38","Status":2,"Type":2},{"OrderID":"49349-251","ShipCountry":"CN","ShipAddress":"37584 Delladonna Trail","ShipName":"Lynch, Rowe and Walsh","OrderDate":"11/12/2017","TotalPayment":"$253289.21","Status":6,"Type":2},{"OrderID":"52304-712","ShipCountry":"ID","ShipAddress":"539 Crowley Parkway","ShipName":"O\'Hara, Funk and Kihn","OrderDate":"12/4/2016","TotalPayment":"$604916.78","Status":5,"Type":3},{"OrderID":"47335-586","ShipCountry":"CN","ShipAddress":"343 Sutteridge Alley","ShipName":"Koelpin, Mitchell and Moen","OrderDate":"4/12/2017","TotalPayment":"$232602.01","Status":2,"Type":2},{"OrderID":"52125-562","ShipCountry":"CL","ShipAddress":"1032 Browning Lane","ShipName":"Mertz Group","OrderDate":"1/13/2016","TotalPayment":"$407820.58","Status":3,"Type":1},{"OrderID":"63347-501","ShipCountry":"CN","ShipAddress":"6 Weeping Birch Court","ShipName":"Dickinson Inc","OrderDate":"6/4/2017","TotalPayment":"$209449.38","Status":1,"Type":2},{"OrderID":"16729-246","ShipCountry":"CN","ShipAddress":"3 Barby Pass","ShipName":"Renner-West","OrderDate":"2/27/2016","TotalPayment":"$219330.18","Status":5,"Type":3},{"OrderID":"0338-0117","ShipCountry":"ID","ShipAddress":"9 Cherokee Alley","ShipName":"Baumbach-Kshlerin","OrderDate":"1/26/2016","TotalPayment":"$200910.31","Status":4,"Type":3},{"OrderID":"62839-1084","ShipCountry":"PT","ShipAddress":"4978 4th Hill","ShipName":"Effertz-Gutkowski","OrderDate":"5/26/2016","TotalPayment":"$558136.43","Status":4,"Type":2},{"OrderID":"0363-0332","ShipCountry":"PH","ShipAddress":"75 Pond Street","ShipName":"Treutel and Sons","OrderDate":"12/16/2017","TotalPayment":"$948705.90","Status":4,"Type":2},{"OrderID":"54569-6500","ShipCountry":"PH","ShipAddress":"2 Porter Alley","ShipName":"Wiegand-DuBuque","OrderDate":"8/22/2017","TotalPayment":"$279453.38","Status":3,"Type":3},{"OrderID":"49999-701","ShipCountry":"PT","ShipAddress":"00312 Acker Way","ShipName":"Larson LLC","OrderDate":"11/14/2017","TotalPayment":"$708715.88","Status":1,"Type":3},{"OrderID":"63940-310","ShipCountry":"ID","ShipAddress":"56 Warrior Point","ShipName":"Kemmer-Olson","OrderDate":"5/4/2017","TotalPayment":"$147797.34","Status":5,"Type":3},{"OrderID":"50114-5115","ShipCountry":"SE","ShipAddress":"0963 Rigney Pass","ShipName":"Farrell, Swift and Goyette","OrderDate":"9/20/2017","TotalPayment":"$1154282.07","Status":3,"Type":3}]},\n{"RecordID":275,"FirstName":"Pate","LastName":"McCrachen","Company":"Thoughtstorm","Email":"pmccrachen7m@soundcloud.com","Phone":"496-341-5568","Status":3,"Type":3,"Orders":[{"OrderID":"65342-1394","ShipCountry":"CN","ShipAddress":"77 Riverside Center","ShipName":"Leannon-Sanford","OrderDate":"12/29/2016","TotalPayment":"$693107.51","Status":1,"Type":3},{"OrderID":"68472-122","ShipCountry":"AR","ShipAddress":"94 Sundown Parkway","ShipName":"Hand and Sons","OrderDate":"3/6/2017","TotalPayment":"$734060.68","Status":1,"Type":2},{"OrderID":"0832-0709","ShipCountry":"CN","ShipAddress":"74447 Kennedy Place","ShipName":"Kemmer, Carroll and Lakin","OrderDate":"9/7/2016","TotalPayment":"$948553.02","Status":2,"Type":1},{"OrderID":"0009-3359","ShipCountry":"PL","ShipAddress":"3 Lighthouse Bay Crossing","ShipName":"Haag, Goldner and Towne","OrderDate":"11/6/2016","TotalPayment":"$36540.07","Status":1,"Type":1},{"OrderID":"21695-270","ShipCountry":"CN","ShipAddress":"118 Northfield Way","ShipName":"Cassin, Abernathy and Wunsch","OrderDate":"4/13/2017","TotalPayment":"$1023727.26","Status":1,"Type":2},{"OrderID":"43611-006","ShipCountry":"CA","ShipAddress":"68 Dennis Plaza","ShipName":"Bosco Inc","OrderDate":"5/15/2017","TotalPayment":"$642239.38","Status":5,"Type":1},{"OrderID":"50436-4694","ShipCountry":"FR","ShipAddress":"96299 Fisk Drive","ShipName":"Nikolaus LLC","OrderDate":"6/5/2017","TotalPayment":"$240517.32","Status":3,"Type":3},{"OrderID":"13537-216","ShipCountry":"BD","ShipAddress":"5 Dakota Parkway","ShipName":"Keebler-Baumbach","OrderDate":"10/31/2016","TotalPayment":"$266934.94","Status":3,"Type":1},{"OrderID":"59973-003","ShipCountry":"CN","ShipAddress":"3 Weeping Birch Crossing","ShipName":"Barton Group","OrderDate":"7/3/2016","TotalPayment":"$333951.56","Status":2,"Type":1},{"OrderID":"24488-020","ShipCountry":"US","ShipAddress":"4 Kipling Park","ShipName":"Boyer-Bode","OrderDate":"8/1/2016","TotalPayment":"$923751.36","Status":6,"Type":1},{"OrderID":"24488-003","ShipCountry":"NZ","ShipAddress":"78 Ridge Oak Lane","ShipName":"Emmerich-Roob","OrderDate":"1/24/2017","TotalPayment":"$321835.59","Status":6,"Type":3},{"OrderID":"21130-198","ShipCountry":"GR","ShipAddress":"5 Becker Parkway","ShipName":"Lubowitz Group","OrderDate":"7/9/2017","TotalPayment":"$316108.54","Status":4,"Type":1}]},\n{"RecordID":276,"FirstName":"Faina","LastName":"McIndrew","Company":"Demivee","Email":"fmcindrew7n@technorati.com","Phone":"200-696-3584","Status":4,"Type":3,"Orders":[{"OrderID":"37000-151","ShipCountry":"GT","ShipAddress":"8 Meadow Ridge Junction","ShipName":"Lehner-Kerluke","OrderDate":"11/4/2017","TotalPayment":"$1046231.61","Status":6,"Type":3},{"OrderID":"68387-260","ShipCountry":"RU","ShipAddress":"93297 7th Avenue","ShipName":"White Group","OrderDate":"7/21/2017","TotalPayment":"$814008.20","Status":1,"Type":1},{"OrderID":"65162-573","ShipCountry":"RU","ShipAddress":"06 Monica Pass","ShipName":"Kub, Dietrich and Kerluke","OrderDate":"7/15/2016","TotalPayment":"$829081.80","Status":5,"Type":1},{"OrderID":"49967-327","ShipCountry":"JM","ShipAddress":"8889 Waubesa Avenue","ShipName":"Zboncak-Terry","OrderDate":"2/22/2016","TotalPayment":"$696384.82","Status":4,"Type":2},{"OrderID":"43772-0008","ShipCountry":"CN","ShipAddress":"80 Hermina Place","ShipName":"Fadel-Rutherford","OrderDate":"7/3/2016","TotalPayment":"$1064980.05","Status":6,"Type":3},{"OrderID":"76237-115","ShipCountry":"PH","ShipAddress":"96 Jay Junction","ShipName":"Klein-Bins","OrderDate":"12/11/2017","TotalPayment":"$299765.78","Status":4,"Type":2}]},\n{"RecordID":277,"FirstName":"Suzanne","LastName":"McGerraghty","Company":"Dabshots","Email":"smcgerraghty7o@cnet.com","Phone":"799-244-6193","Status":1,"Type":2,"Orders":[{"OrderID":"63739-547","ShipCountry":"GM","ShipAddress":"2719 Kropf Point","ShipName":"Stoltenberg-West","OrderDate":"11/8/2016","TotalPayment":"$65135.14","Status":1,"Type":3},{"OrderID":"0699-7091","ShipCountry":"CN","ShipAddress":"960 Stephen Alley","ShipName":"Adams Group","OrderDate":"4/12/2016","TotalPayment":"$873110.62","Status":2,"Type":2},{"OrderID":"0591-3774","ShipCountry":"GR","ShipAddress":"404 Onsgard Crossing","ShipName":"Kerluke Group","OrderDate":"9/7/2016","TotalPayment":"$686178.62","Status":3,"Type":3},{"OrderID":"50458-591","ShipCountry":"PH","ShipAddress":"03 Eliot Street","ShipName":"Stracke and Sons","OrderDate":"4/16/2016","TotalPayment":"$1092697.56","Status":2,"Type":3},{"OrderID":"49527-743","ShipCountry":"CN","ShipAddress":"01827 Bunker Hill Alley","ShipName":"Koch-Reilly","OrderDate":"8/22/2016","TotalPayment":"$840133.62","Status":5,"Type":1}]},\n{"RecordID":278,"FirstName":"Sanford","LastName":"Livock","Company":"Oodoo","Email":"slivock7p@gov.uk","Phone":"826-713-9328","Status":4,"Type":2,"Orders":[{"OrderID":"54162-269","ShipCountry":"CZ","ShipAddress":"8431 Arapahoe Place","ShipName":"Bashirian-Strosin","OrderDate":"9/28/2017","TotalPayment":"$1072089.42","Status":4,"Type":3},{"OrderID":"24658-130","ShipCountry":"CA","ShipAddress":"56441 Russell Terrace","ShipName":"Morar, Lueilwitz and MacGyver","OrderDate":"1/8/2017","TotalPayment":"$537029.06","Status":1,"Type":2},{"OrderID":"60977-002","ShipCountry":"FR","ShipAddress":"227 Golden Leaf Circle","ShipName":"Cremin LLC","OrderDate":"7/15/2017","TotalPayment":"$541615.17","Status":5,"Type":2},{"OrderID":"65044-9991","ShipCountry":"PY","ShipAddress":"06797 Hintze Pass","ShipName":"Oberbrunner Group","OrderDate":"4/5/2017","TotalPayment":"$1075259.51","Status":4,"Type":3},{"OrderID":"66336-586","ShipCountry":"CN","ShipAddress":"38257 Mayer Trail","ShipName":"Lesch-Roberts","OrderDate":"4/4/2017","TotalPayment":"$1169661.51","Status":4,"Type":1},{"OrderID":"0781-9165","ShipCountry":"PH","ShipAddress":"1 Coleman Plaza","ShipName":"Rau-VonRueden","OrderDate":"6/24/2016","TotalPayment":"$680299.85","Status":3,"Type":2},{"OrderID":"49999-094","ShipCountry":"PH","ShipAddress":"4 Lake View Terrace","ShipName":"Stanton LLC","OrderDate":"5/5/2017","TotalPayment":"$594352.99","Status":2,"Type":3},{"OrderID":"42291-273","ShipCountry":"CN","ShipAddress":"139 Dawn Park","ShipName":"Lesch-Schulist","OrderDate":"6/24/2016","TotalPayment":"$818383.60","Status":5,"Type":2},{"OrderID":"0378-0460","ShipCountry":"US","ShipAddress":"81 Maple Wood Way","ShipName":"Lueilwitz-Nolan","OrderDate":"2/11/2017","TotalPayment":"$1183259.58","Status":4,"Type":1}]},\n{"RecordID":279,"FirstName":"Doreen","LastName":"Lapree","Company":"Nlounge","Email":"dlapree7q@kickstarter.com","Phone":"513-301-5421","Status":3,"Type":1,"Orders":[{"OrderID":"49999-836","ShipCountry":"PT","ShipAddress":"519 Grayhawk Point","ShipName":"O\'Connell, Corkery and Murray","OrderDate":"3/31/2016","TotalPayment":"$915098.95","Status":5,"Type":1},{"OrderID":"10337-808","ShipCountry":"RS","ShipAddress":"12 Bashford Terrace","ShipName":"West and Sons","OrderDate":"12/24/2016","TotalPayment":"$581237.98","Status":5,"Type":3},{"OrderID":"0049-5740","ShipCountry":"FR","ShipAddress":"52235 Dakota Way","ShipName":"Walker Inc","OrderDate":"5/8/2016","TotalPayment":"$1192378.36","Status":1,"Type":3},{"OrderID":"64125-136","ShipCountry":"CN","ShipAddress":"94 Nelson Drive","ShipName":"Luettgen, Klein and Abshire","OrderDate":"4/29/2017","TotalPayment":"$924050.37","Status":4,"Type":1},{"OrderID":"68788-9822","ShipCountry":"CN","ShipAddress":"47165 Clove Court","ShipName":"Kub, Goldner and Carroll","OrderDate":"5/16/2016","TotalPayment":"$110220.46","Status":6,"Type":2},{"OrderID":"21695-653","ShipCountry":"CN","ShipAddress":"1038 Becker Road","ShipName":"Upton and Sons","OrderDate":"9/14/2016","TotalPayment":"$452436.77","Status":2,"Type":3},{"OrderID":"36987-1403","ShipCountry":"SE","ShipAddress":"5396 Pine View Crossing","ShipName":"Legros Group","OrderDate":"12/18/2016","TotalPayment":"$230839.36","Status":5,"Type":3},{"OrderID":"55648-763","ShipCountry":"ID","ShipAddress":"958 Packers Avenue","ShipName":"Keeling-Jacobs","OrderDate":"6/18/2017","TotalPayment":"$91937.86","Status":4,"Type":2},{"OrderID":"13537-136","ShipCountry":"BG","ShipAddress":"2 Erie Parkway","ShipName":"Bailey, Jakubowski and Greenholt","OrderDate":"6/28/2017","TotalPayment":"$992813.34","Status":1,"Type":1},{"OrderID":"59842-012","ShipCountry":"RU","ShipAddress":"2846 Express Avenue","ShipName":"Boehm-Auer","OrderDate":"11/25/2016","TotalPayment":"$495232.59","Status":4,"Type":1},{"OrderID":"36987-1949","ShipCountry":"RU","ShipAddress":"914 Melody Way","ShipName":"Murazik-Feeney","OrderDate":"11/14/2017","TotalPayment":"$627982.72","Status":1,"Type":2},{"OrderID":"62756-543","ShipCountry":"ID","ShipAddress":"366 Moulton Junction","ShipName":"Mills-Glover","OrderDate":"6/24/2016","TotalPayment":"$462076.47","Status":2,"Type":1},{"OrderID":"43319-020","ShipCountry":"ID","ShipAddress":"39448 Fair Oaks Hill","ShipName":"Boehm-Goldner","OrderDate":"5/27/2016","TotalPayment":"$525879.36","Status":1,"Type":2},{"OrderID":"42236-001","ShipCountry":"PT","ShipAddress":"0907 Longview Point","ShipName":"Rolfson-Goldner","OrderDate":"11/13/2016","TotalPayment":"$1071776.04","Status":3,"Type":2},{"OrderID":"0113-0798","ShipCountry":"MX","ShipAddress":"288 Esch Plaza","ShipName":"Graham-Renner","OrderDate":"10/21/2017","TotalPayment":"$513051.96","Status":4,"Type":3},{"OrderID":"0093-4059","ShipCountry":"JP","ShipAddress":"366 Coolidge Park","ShipName":"Shanahan-Conroy","OrderDate":"12/25/2016","TotalPayment":"$387871.15","Status":6,"Type":2},{"OrderID":"49349-979","ShipCountry":"TR","ShipAddress":"79671 Magdeline Hill","ShipName":"Carter, Hane and Cole","OrderDate":"9/10/2017","TotalPayment":"$1108271.66","Status":3,"Type":1},{"OrderID":"54973-9123","ShipCountry":"RU","ShipAddress":"96 Iowa Pass","ShipName":"Tremblay-Kautzer","OrderDate":"5/29/2017","TotalPayment":"$614128.81","Status":6,"Type":1},{"OrderID":"68151-2298","ShipCountry":"CN","ShipAddress":"6047 Grasskamp Way","ShipName":"Bogisich, Nikolaus and Cummings","OrderDate":"1/31/2017","TotalPayment":"$575856.32","Status":1,"Type":3},{"OrderID":"41520-168","ShipCountry":"CZ","ShipAddress":"21367 Mayer Street","ShipName":"Marvin, Mayer and Goyette","OrderDate":"3/10/2017","TotalPayment":"$776092.97","Status":3,"Type":2}]},\n{"RecordID":280,"FirstName":"La verne","LastName":"Carwithim","Company":"Yadel","Email":"lcarwithim7r@wufoo.com","Phone":"332-437-4339","Status":6,"Type":2,"Orders":[{"OrderID":"43071-100","ShipCountry":"FR","ShipAddress":"1 Emmet Pass","ShipName":"Lowe Inc","OrderDate":"9/20/2016","TotalPayment":"$23877.59","Status":2,"Type":2},{"OrderID":"60505-2533","ShipCountry":"PL","ShipAddress":"30012 3rd Hill","ShipName":"Greenholt LLC","OrderDate":"12/5/2016","TotalPayment":"$143906.79","Status":6,"Type":2},{"OrderID":"58737-103","ShipCountry":"RU","ShipAddress":"577 Packers Avenue","ShipName":"Dietrich and Sons","OrderDate":"10/17/2017","TotalPayment":"$145472.81","Status":2,"Type":3},{"OrderID":"64942-1235","ShipCountry":"NL","ShipAddress":"2 Mayfield Drive","ShipName":"Predovic Group","OrderDate":"10/2/2017","TotalPayment":"$146174.38","Status":4,"Type":3},{"OrderID":"0093-0813","ShipCountry":"PT","ShipAddress":"49 Fisk Drive","ShipName":"Cummerata, Doyle and Stanton","OrderDate":"6/5/2016","TotalPayment":"$199835.40","Status":3,"Type":2},{"OrderID":"10477-5601","ShipCountry":"GR","ShipAddress":"4318 Vermont Lane","ShipName":"Rau-Huel","OrderDate":"8/22/2017","TotalPayment":"$178780.90","Status":4,"Type":3},{"OrderID":"43857-0082","ShipCountry":"PE","ShipAddress":"81356 Alpine Plaza","ShipName":"Kub, Mohr and Beer","OrderDate":"2/9/2016","TotalPayment":"$257822.06","Status":3,"Type":2},{"OrderID":"36987-2600","ShipCountry":"ID","ShipAddress":"1820 Vahlen Point","ShipName":"Welch Group","OrderDate":"4/28/2017","TotalPayment":"$648018.82","Status":3,"Type":1},{"OrderID":"51672-4161","ShipCountry":"FR","ShipAddress":"83919 Corry Avenue","ShipName":"Towne, West and Bogisich","OrderDate":"8/26/2017","TotalPayment":"$74076.55","Status":3,"Type":1},{"OrderID":"55154-9614","ShipCountry":"ID","ShipAddress":"873 Upham Hill","ShipName":"Rippin Group","OrderDate":"3/14/2016","TotalPayment":"$23751.58","Status":5,"Type":2},{"OrderID":"41520-294","ShipCountry":"IS","ShipAddress":"6038 Spohn Pass","ShipName":"Hegmann-Koss","OrderDate":"11/23/2016","TotalPayment":"$332974.10","Status":1,"Type":1},{"OrderID":"21695-879","ShipCountry":"BR","ShipAddress":"09130 Pankratz Trail","ShipName":"Walsh, Donnelly and Walsh","OrderDate":"2/23/2017","TotalPayment":"$790135.86","Status":2,"Type":1},{"OrderID":"13537-061","ShipCountry":"CN","ShipAddress":"2233 Farmco Court","ShipName":"O\'Conner Inc","OrderDate":"6/24/2016","TotalPayment":"$149968.37","Status":6,"Type":3}]},\n{"RecordID":281,"FirstName":"Julita","LastName":"Addison","Company":"Mynte","Email":"jaddison7s@hc360.com","Phone":"383-239-9852","Status":3,"Type":3,"Orders":[{"OrderID":"42291-700","ShipCountry":"ID","ShipAddress":"702 Pearson Court","ShipName":"Bernhard, Pollich and Jacobson","OrderDate":"7/11/2017","TotalPayment":"$459615.42","Status":2,"Type":3},{"OrderID":"11819-282","ShipCountry":"PL","ShipAddress":"559 Beilfuss Hill","ShipName":"Purdy, Mayert and Weissnat","OrderDate":"12/27/2017","TotalPayment":"$487450.26","Status":3,"Type":2},{"OrderID":"49643-392","ShipCountry":"CZ","ShipAddress":"33606 Mendota Lane","ShipName":"Douglas-Swift","OrderDate":"1/5/2017","TotalPayment":"$726376.23","Status":4,"Type":1},{"OrderID":"42291-885","ShipCountry":"ZM","ShipAddress":"817 Raven Parkway","ShipName":"Erdman-Block","OrderDate":"3/8/2017","TotalPayment":"$970439.98","Status":2,"Type":2},{"OrderID":"0574-7050","ShipCountry":"PS","ShipAddress":"62 Manley Avenue","ShipName":"Stiedemann-Hayes","OrderDate":"1/6/2017","TotalPayment":"$1105940.38","Status":4,"Type":3},{"OrderID":"68428-152","ShipCountry":"BA","ShipAddress":"23117 Killdeer Road","ShipName":"Greenholt-Prohaska","OrderDate":"8/28/2016","TotalPayment":"$238748.74","Status":4,"Type":3},{"OrderID":"49349-290","ShipCountry":"ID","ShipAddress":"3290 Packers Place","ShipName":"Rowe Inc","OrderDate":"4/19/2016","TotalPayment":"$952009.70","Status":5,"Type":2},{"OrderID":"60505-0232","ShipCountry":"CN","ShipAddress":"81 Moulton Junction","ShipName":"D\'Amore, Deckow and Heller","OrderDate":"10/18/2017","TotalPayment":"$659129.84","Status":2,"Type":1},{"OrderID":"0310-0275","ShipCountry":"BR","ShipAddress":"28571 Bluejay Drive","ShipName":"Bergnaum LLC","OrderDate":"10/3/2017","TotalPayment":"$1101706.41","Status":4,"Type":1},{"OrderID":"55289-107","ShipCountry":"CY","ShipAddress":"4 Ohio Alley","ShipName":"Rippin and Sons","OrderDate":"3/8/2017","TotalPayment":"$343518.80","Status":2,"Type":1},{"OrderID":"52686-318","ShipCountry":"TH","ShipAddress":"9288 Kim Road","ShipName":"Moen-Rolfson","OrderDate":"4/26/2017","TotalPayment":"$602216.30","Status":1,"Type":1},{"OrderID":"44523-609","ShipCountry":"ID","ShipAddress":"057 East Center","ShipName":"Pollich-Crona","OrderDate":"9/23/2017","TotalPayment":"$995857.32","Status":1,"Type":3},{"OrderID":"49349-341","ShipCountry":"CN","ShipAddress":"4991 Grasskamp Circle","ShipName":"Kerluke-Collins","OrderDate":"7/12/2017","TotalPayment":"$977918.82","Status":3,"Type":3},{"OrderID":"10019-030","ShipCountry":"ID","ShipAddress":"5 Amoth Avenue","ShipName":"Berge-Shanahan","OrderDate":"1/24/2016","TotalPayment":"$841394.27","Status":6,"Type":1},{"OrderID":"43063-053","ShipCountry":"BR","ShipAddress":"3 1st Court","ShipName":"Huels, Lemke and Kulas","OrderDate":"6/12/2016","TotalPayment":"$122094.90","Status":3,"Type":1},{"OrderID":"55154-2731","ShipCountry":"ID","ShipAddress":"39410 Heffernan Terrace","ShipName":"Roob-Hyatt","OrderDate":"10/17/2017","TotalPayment":"$722296.18","Status":6,"Type":3},{"OrderID":"21130-321","ShipCountry":"RW","ShipAddress":"83145 Bashford Center","ShipName":"Hickle-Bauch","OrderDate":"3/10/2017","TotalPayment":"$733017.38","Status":4,"Type":1}]},\n{"RecordID":282,"FirstName":"Betti","LastName":"Margiotta","Company":"Oyoba","Email":"bmargiotta7t@amazon.co.jp","Phone":"375-623-3526","Status":6,"Type":3,"Orders":[{"OrderID":"11701-020","ShipCountry":"PL","ShipAddress":"918 Eggendart Center","ShipName":"Luettgen, Gulgowski and Kemmer","OrderDate":"3/30/2017","TotalPayment":"$737133.83","Status":4,"Type":1},{"OrderID":"64092-316","ShipCountry":"RU","ShipAddress":"5439 Judy Pass","ShipName":"Medhurst, Fahey and Runolfsson","OrderDate":"4/5/2016","TotalPayment":"$541593.59","Status":1,"Type":2},{"OrderID":"43857-0042","ShipCountry":"CN","ShipAddress":"956 Kenwood Crossing","ShipName":"Kiehn Inc","OrderDate":"1/3/2016","TotalPayment":"$930488.73","Status":5,"Type":1},{"OrderID":"49035-098","ShipCountry":"GR","ShipAddress":"49461 Laurel Park","ShipName":"Robel, Considine and Streich","OrderDate":"1/2/2017","TotalPayment":"$557665.47","Status":4,"Type":1},{"OrderID":"67938-1083","ShipCountry":"DK","ShipAddress":"14 Northfield Parkway","ShipName":"Predovic, Durgan and Torp","OrderDate":"2/28/2016","TotalPayment":"$862119.94","Status":6,"Type":2},{"OrderID":"42291-208","ShipCountry":"RU","ShipAddress":"7 Bartillon Center","ShipName":"Hermiston, VonRueden and Hauck","OrderDate":"7/21/2017","TotalPayment":"$825440.26","Status":3,"Type":3},{"OrderID":"24488-003","ShipCountry":"IE","ShipAddress":"95433 Main Parkway","ShipName":"Ward and Sons","OrderDate":"1/1/2016","TotalPayment":"$385292.94","Status":2,"Type":3},{"OrderID":"54868-4976","ShipCountry":"ID","ShipAddress":"865 Lotheville Place","ShipName":"Doyle, Schneider and Barton","OrderDate":"1/25/2016","TotalPayment":"$546992.72","Status":2,"Type":3},{"OrderID":"0006-3918","ShipCountry":"US","ShipAddress":"671 Beilfuss Junction","ShipName":"Donnelly, McCullough and Johnson","OrderDate":"6/12/2016","TotalPayment":"$750695.49","Status":1,"Type":1},{"OrderID":"49520-301","ShipCountry":"PH","ShipAddress":"011 American Ash Street","ShipName":"Abshire Inc","OrderDate":"5/15/2016","TotalPayment":"$196324.85","Status":4,"Type":3},{"OrderID":"76237-201","ShipCountry":"PT","ShipAddress":"5 Dryden Street","ShipName":"Muller Inc","OrderDate":"5/15/2017","TotalPayment":"$374846.84","Status":5,"Type":2},{"OrderID":"58443-0040","ShipCountry":"ID","ShipAddress":"85 Jana Junction","ShipName":"Schinner-Dach","OrderDate":"10/1/2017","TotalPayment":"$187884.40","Status":6,"Type":3},{"OrderID":"24987-436","ShipCountry":"UA","ShipAddress":"72 Dryden Pass","ShipName":"Bruen-Reinger","OrderDate":"4/1/2016","TotalPayment":"$1019330.08","Status":5,"Type":3},{"OrderID":"60760-354","ShipCountry":"PL","ShipAddress":"5498 Brickson Park Terrace","ShipName":"Schumm LLC","OrderDate":"8/1/2017","TotalPayment":"$399040.05","Status":6,"Type":2},{"OrderID":"49404-102","ShipCountry":"PT","ShipAddress":"04730 Eggendart Way","ShipName":"Gerhold and Sons","OrderDate":"9/5/2016","TotalPayment":"$32984.57","Status":5,"Type":2},{"OrderID":"0378-1052","ShipCountry":"CL","ShipAddress":"07 Jay Court","ShipName":"O\'Kon-Schowalter","OrderDate":"8/21/2016","TotalPayment":"$92340.77","Status":4,"Type":2},{"OrderID":"0069-3857","ShipCountry":"CN","ShipAddress":"00745 Fairfield Park","ShipName":"Paucek-Howe","OrderDate":"5/11/2017","TotalPayment":"$423919.77","Status":1,"Type":3}]},\n{"RecordID":283,"FirstName":"Felita","LastName":"Walewski","Company":"Jaxnation","Email":"fwalewski7u@merriam-webster.com","Phone":"125-183-2785","Status":5,"Type":3,"Orders":[{"OrderID":"54868-5391","ShipCountry":"CN","ShipAddress":"41 Victoria Point","ShipName":"Kihn-Flatley","OrderDate":"4/22/2017","TotalPayment":"$829743.69","Status":4,"Type":1},{"OrderID":"0924-0011","ShipCountry":"CN","ShipAddress":"9467 Knutson Pass","ShipName":"Bergnaum, Bergnaum and Parker","OrderDate":"7/6/2017","TotalPayment":"$1088658.69","Status":3,"Type":1},{"OrderID":"37808-009","ShipCountry":"PY","ShipAddress":"1 6th Park","ShipName":"Auer-Bradtke","OrderDate":"2/4/2016","TotalPayment":"$827573.30","Status":1,"Type":2},{"OrderID":"50730-5150","ShipCountry":"CN","ShipAddress":"7001 Judy Alley","ShipName":"Lesch-Renner","OrderDate":"9/27/2016","TotalPayment":"$1016536.10","Status":6,"Type":3},{"OrderID":"68400-800","ShipCountry":"KZ","ShipAddress":"856 Banding Crossing","ShipName":"D\'Amore Inc","OrderDate":"6/23/2016","TotalPayment":"$196044.07","Status":6,"Type":1},{"OrderID":"0186-4025","ShipCountry":"FR","ShipAddress":"240 Heath Avenue","ShipName":"Marquardt-Hane","OrderDate":"4/1/2016","TotalPayment":"$751701.96","Status":6,"Type":2},{"OrderID":"37012-544","ShipCountry":"JP","ShipAddress":"4021 Burning Wood Road","ShipName":"Graham-Powlowski","OrderDate":"3/12/2017","TotalPayment":"$231530.57","Status":1,"Type":2},{"OrderID":"49349-916","ShipCountry":"PH","ShipAddress":"69550 Stephen Plaza","ShipName":"Mayert, Reilly and Rosenbaum","OrderDate":"7/19/2017","TotalPayment":"$818612.17","Status":2,"Type":2},{"OrderID":"41250-906","ShipCountry":"CO","ShipAddress":"714 Iowa Hill","ShipName":"Greenholt LLC","OrderDate":"5/12/2016","TotalPayment":"$431358.82","Status":6,"Type":3},{"OrderID":"49817-1992","ShipCountry":"CN","ShipAddress":"3874 Superior Terrace","ShipName":"Feest-Skiles","OrderDate":"12/22/2017","TotalPayment":"$223974.26","Status":4,"Type":3},{"OrderID":"55111-622","ShipCountry":"CO","ShipAddress":"81790 Mcbride Junction","ShipName":"Collins Inc","OrderDate":"2/1/2017","TotalPayment":"$596937.54","Status":3,"Type":2}]},\n{"RecordID":284,"FirstName":"Roxane","LastName":"Scapelhorn","Company":"Twitterbridge","Email":"rscapelhorn7v@constantcontact.com","Phone":"682-569-7886","Status":6,"Type":2,"Orders":[{"OrderID":"0245-0003","ShipCountry":"KR","ShipAddress":"257 Bellgrove Lane","ShipName":"Dickinson-Trantow","OrderDate":"11/21/2016","TotalPayment":"$918349.27","Status":4,"Type":3},{"OrderID":"42507-165","ShipCountry":"CN","ShipAddress":"5207 Granby Junction","ShipName":"Beatty, Thiel and Becker","OrderDate":"10/10/2016","TotalPayment":"$337532.85","Status":3,"Type":1},{"OrderID":"64725-0736","ShipCountry":"GB","ShipAddress":"11 Nancy Center","ShipName":"Daniel-Smitham","OrderDate":"10/8/2016","TotalPayment":"$895940.24","Status":6,"Type":1},{"OrderID":"42291-656","ShipCountry":"AO","ShipAddress":"5322 Bonner Plaza","ShipName":"Weimann, Ziemann and Feest","OrderDate":"7/26/2017","TotalPayment":"$1176398.29","Status":1,"Type":1},{"OrderID":"35356-786","ShipCountry":"PH","ShipAddress":"627 Eastlawn Alley","ShipName":"Kuvalis Inc","OrderDate":"12/30/2016","TotalPayment":"$194952.11","Status":1,"Type":3},{"OrderID":"64305-003","ShipCountry":"CN","ShipAddress":"50 Vidon Pass","ShipName":"Fay, Nolan and King","OrderDate":"5/9/2017","TotalPayment":"$670511.03","Status":5,"Type":2},{"OrderID":"60456-576","ShipCountry":"PT","ShipAddress":"0 Judy Circle","ShipName":"Gerhold Inc","OrderDate":"7/17/2017","TotalPayment":"$549316.04","Status":3,"Type":2},{"OrderID":"67296-0447","ShipCountry":"US","ShipAddress":"13347 Larry Road","ShipName":"Greenholt LLC","OrderDate":"6/18/2017","TotalPayment":"$39111.07","Status":1,"Type":3},{"OrderID":"11509-0375","ShipCountry":"CN","ShipAddress":"54 Packers Parkway","ShipName":"Klein, Hudson and Hills","OrderDate":"3/13/2017","TotalPayment":"$1021236.93","Status":5,"Type":1},{"OrderID":"68516-5215","ShipCountry":"JP","ShipAddress":"358 Gale Way","ShipName":"Schmeler, Hartmann and Senger","OrderDate":"6/1/2017","TotalPayment":"$309559.53","Status":3,"Type":3},{"OrderID":"0536-4089","ShipCountry":"CN","ShipAddress":"719 Oak Center","ShipName":"Donnelly, Rosenbaum and Hauck","OrderDate":"5/24/2016","TotalPayment":"$1178615.07","Status":4,"Type":3},{"OrderID":"65321-022","ShipCountry":"US","ShipAddress":"56553 Butterfield Court","ShipName":"Muller-O\'Hara","OrderDate":"5/12/2017","TotalPayment":"$270182.63","Status":3,"Type":1},{"OrderID":"41250-361","ShipCountry":"PH","ShipAddress":"7 Crest Line Court","ShipName":"Moen and Sons","OrderDate":"1/12/2016","TotalPayment":"$517457.62","Status":4,"Type":3},{"OrderID":"60505-0116","ShipCountry":"CN","ShipAddress":"81343 Mosinee Alley","ShipName":"Turner Inc","OrderDate":"1/24/2016","TotalPayment":"$549003.12","Status":3,"Type":3},{"OrderID":"36987-3449","ShipCountry":"US","ShipAddress":"472 Atwood Lane","ShipName":"Brown, Wintheiser and Zieme","OrderDate":"4/4/2017","TotalPayment":"$755882.49","Status":4,"Type":2},{"OrderID":"13537-546","ShipCountry":"PL","ShipAddress":"81452 Hazelcrest Place","ShipName":"Littel, Zboncak and Bashirian","OrderDate":"10/25/2017","TotalPayment":"$95016.25","Status":3,"Type":3},{"OrderID":"0363-0461","ShipCountry":"ID","ShipAddress":"47275 Briar Crest Avenue","ShipName":"Davis and Sons","OrderDate":"8/18/2017","TotalPayment":"$431670.78","Status":3,"Type":2}]},\n{"RecordID":285,"FirstName":"Todd","LastName":"Westcot","Company":"Mydo","Email":"twestcot7w@usda.gov","Phone":"751-402-5321","Status":4,"Type":3,"Orders":[{"OrderID":"0519-1452","ShipCountry":"FR","ShipAddress":"248 Hollow Ridge Street","ShipName":"Hackett LLC","OrderDate":"6/22/2016","TotalPayment":"$878272.75","Status":5,"Type":3},{"OrderID":"68151-5004","ShipCountry":"CI","ShipAddress":"32 Sherman Lane","ShipName":"Brekke-Mosciski","OrderDate":"7/5/2016","TotalPayment":"$949603.66","Status":4,"Type":2},{"OrderID":"16590-047","ShipCountry":"IR","ShipAddress":"54778 5th Parkway","ShipName":"Upton-Senger","OrderDate":"12/5/2017","TotalPayment":"$765941.84","Status":6,"Type":3},{"OrderID":"50436-3444","ShipCountry":"JP","ShipAddress":"0 Stone Corner Trail","ShipName":"Shanahan-Bailey","OrderDate":"10/7/2016","TotalPayment":"$774075.37","Status":1,"Type":1},{"OrderID":"53808-0756","ShipCountry":"CZ","ShipAddress":"484 Daystar Avenue","ShipName":"McCullough Group","OrderDate":"11/26/2017","TotalPayment":"$77588.57","Status":4,"Type":2},{"OrderID":"0067-2039","ShipCountry":"CN","ShipAddress":"02 Hallows Street","ShipName":"Gutkowski-Kulas","OrderDate":"10/2/2016","TotalPayment":"$697265.64","Status":4,"Type":3},{"OrderID":"50967-317","ShipCountry":"RU","ShipAddress":"95569 3rd Road","ShipName":"Mohr, Bins and Eichmann","OrderDate":"1/13/2016","TotalPayment":"$114768.97","Status":2,"Type":2},{"OrderID":"50227-1090","ShipCountry":"PH","ShipAddress":"10 Sunnyside Parkway","ShipName":"Harvey-McKenzie","OrderDate":"6/26/2016","TotalPayment":"$739156.43","Status":5,"Type":3},{"OrderID":"0113-0142","ShipCountry":"PT","ShipAddress":"38745 Monterey Hill","ShipName":"Christiansen, Conroy and Auer","OrderDate":"10/13/2016","TotalPayment":"$915181.29","Status":3,"Type":1},{"OrderID":"35356-981","ShipCountry":"CZ","ShipAddress":"64995 Mesta Way","ShipName":"O\'Kon Inc","OrderDate":"12/7/2016","TotalPayment":"$916168.65","Status":2,"Type":3},{"OrderID":"53807-521","ShipCountry":"SE","ShipAddress":"34 Pleasure Parkway","ShipName":"Lakin-Larkin","OrderDate":"10/20/2017","TotalPayment":"$591333.26","Status":1,"Type":3},{"OrderID":"42248-114","ShipCountry":"FI","ShipAddress":"420 Talisman Way","ShipName":"Schneider, Mann and Stracke","OrderDate":"6/22/2016","TotalPayment":"$1042642.04","Status":1,"Type":3},{"OrderID":"21695-615","ShipCountry":"PL","ShipAddress":"3896 John Wall Trail","ShipName":"Mohr Inc","OrderDate":"11/4/2017","TotalPayment":"$505672.10","Status":5,"Type":1},{"OrderID":"55910-156","ShipCountry":"ID","ShipAddress":"8 Oak Valley Way","ShipName":"Auer-Ondricka","OrderDate":"5/16/2017","TotalPayment":"$918328.73","Status":1,"Type":1},{"OrderID":"36987-2983","ShipCountry":"FR","ShipAddress":"125 Declaration Terrace","ShipName":"Stanton, Jaskolski and Hettinger","OrderDate":"12/20/2016","TotalPayment":"$1093094.18","Status":2,"Type":3},{"OrderID":"50268-750","ShipCountry":"CN","ShipAddress":"6180 Graedel Terrace","ShipName":"Bechtelar-Lehner","OrderDate":"1/14/2017","TotalPayment":"$172569.44","Status":3,"Type":2}]},\n{"RecordID":286,"FirstName":"Everard","LastName":"Waszkiewicz","Company":"Devbug","Email":"ewaszkiewicz7x@dion.ne.jp","Phone":"227-294-8309","Status":3,"Type":1,"Orders":[{"OrderID":"59746-001","ShipCountry":"SY","ShipAddress":"5 Ludington Circle","ShipName":"Stiedemann-Balistreri","OrderDate":"5/3/2017","TotalPayment":"$58446.61","Status":5,"Type":1},{"OrderID":"61727-306","ShipCountry":"CN","ShipAddress":"93329 Tony Park","ShipName":"Volkman, Grant and Hermiston","OrderDate":"9/30/2017","TotalPayment":"$900949.00","Status":1,"Type":3},{"OrderID":"14783-032","ShipCountry":"PL","ShipAddress":"24964 Petterle Place","ShipName":"Kris-Kozey","OrderDate":"7/29/2017","TotalPayment":"$49055.05","Status":1,"Type":3},{"OrderID":"37808-194","ShipCountry":"JP","ShipAddress":"47 1st Drive","ShipName":"Ryan Group","OrderDate":"1/23/2017","TotalPayment":"$58297.80","Status":5,"Type":3},{"OrderID":"60512-9063","ShipCountry":"TH","ShipAddress":"1074 Arkansas Street","ShipName":"Lockman and Sons","OrderDate":"9/10/2016","TotalPayment":"$587192.48","Status":1,"Type":1},{"OrderID":"28877-5970","ShipCountry":"CN","ShipAddress":"975 Gerald Alley","ShipName":"Gleason LLC","OrderDate":"1/13/2016","TotalPayment":"$1092006.07","Status":5,"Type":3},{"OrderID":"13668-281","ShipCountry":"MX","ShipAddress":"36 Manley Court","ShipName":"Johns LLC","OrderDate":"4/11/2017","TotalPayment":"$577214.71","Status":5,"Type":1},{"OrderID":"21695-501","ShipCountry":"ID","ShipAddress":"47494 Thierer Trail","ShipName":"Dare, Kutch and Boehm","OrderDate":"1/3/2016","TotalPayment":"$684035.64","Status":5,"Type":2},{"OrderID":"43199-013","ShipCountry":"CN","ShipAddress":"9 Ohio Hill","ShipName":"Pfeffer, Satterfield and Bartoletti","OrderDate":"6/13/2017","TotalPayment":"$738695.47","Status":2,"Type":2},{"OrderID":"49349-566","ShipCountry":"CN","ShipAddress":"43 Stuart Parkway","ShipName":"O\'Keefe-Harber","OrderDate":"6/21/2017","TotalPayment":"$1149402.43","Status":4,"Type":3},{"OrderID":"65044-9954","ShipCountry":"CN","ShipAddress":"65 Dwight Trail","ShipName":"Harris and Sons","OrderDate":"4/12/2017","TotalPayment":"$1014980.17","Status":4,"Type":3},{"OrderID":"54738-554","ShipCountry":"PT","ShipAddress":"812 Waxwing Avenue","ShipName":"Pacocha, Ledner and Swift","OrderDate":"5/2/2017","TotalPayment":"$289155.86","Status":6,"Type":3},{"OrderID":"60681-7002","ShipCountry":"HR","ShipAddress":"18 Stone Corner Road","ShipName":"Nienow-Hirthe","OrderDate":"9/30/2016","TotalPayment":"$1141375.42","Status":6,"Type":3},{"OrderID":"61314-630","ShipCountry":"CR","ShipAddress":"3596 Dixon Alley","ShipName":"Stracke Group","OrderDate":"10/26/2017","TotalPayment":"$487639.93","Status":2,"Type":2},{"OrderID":"56062-166","ShipCountry":"CN","ShipAddress":"47378 Fulton Pass","ShipName":"Crona, Konopelski and Keeling","OrderDate":"11/24/2017","TotalPayment":"$588740.30","Status":2,"Type":2},{"OrderID":"52584-241","ShipCountry":"PH","ShipAddress":"8 Hollow Ridge Crossing","ShipName":"Barrows LLC","OrderDate":"8/21/2016","TotalPayment":"$264997.12","Status":1,"Type":3},{"OrderID":"68327-026","ShipCountry":"FR","ShipAddress":"88754 Monterey Court","ShipName":"Brekke-Rempel","OrderDate":"6/25/2016","TotalPayment":"$1101653.69","Status":5,"Type":2},{"OrderID":"68788-9813","ShipCountry":"PT","ShipAddress":"708 Moland Drive","ShipName":"Rath, Rath and O\'Kon","OrderDate":"5/1/2017","TotalPayment":"$718189.54","Status":5,"Type":2},{"OrderID":"12634-179","ShipCountry":"CN","ShipAddress":"06 Vahlen Center","ShipName":"Weissnat and Sons","OrderDate":"1/12/2016","TotalPayment":"$759438.89","Status":4,"Type":2},{"OrderID":"52124-0002","ShipCountry":"PS","ShipAddress":"51 Northwestern Place","ShipName":"Gaylord Inc","OrderDate":"6/13/2016","TotalPayment":"$325607.52","Status":2,"Type":1}]},\n{"RecordID":287,"FirstName":"Henka","LastName":"Saltmarsh","Company":"Skyndu","Email":"hsaltmarsh7y@163.com","Phone":"658-428-2860","Status":1,"Type":3,"Orders":[{"OrderID":"51655-010","ShipCountry":"CN","ShipAddress":"981 Village Green Center","ShipName":"Hayes-Rowe","OrderDate":"4/4/2017","TotalPayment":"$834963.25","Status":5,"Type":2},{"OrderID":"10578-037","ShipCountry":"PH","ShipAddress":"35 Blackbird Crossing","ShipName":"Bosco Inc","OrderDate":"8/1/2017","TotalPayment":"$954783.43","Status":1,"Type":2},{"OrderID":"68016-143","ShipCountry":"PH","ShipAddress":"665 Buell Lane","ShipName":"Block Inc","OrderDate":"1/7/2016","TotalPayment":"$774180.02","Status":1,"Type":3},{"OrderID":"62175-205","ShipCountry":"BR","ShipAddress":"2 Clemons Park","ShipName":"Baumbach-Rolfson","OrderDate":"1/3/2017","TotalPayment":"$805880.44","Status":1,"Type":1},{"OrderID":"68387-210","ShipCountry":"PH","ShipAddress":"94 Kinsman Center","ShipName":"Brekke, Kovacek and Zieme","OrderDate":"12/16/2016","TotalPayment":"$616165.88","Status":5,"Type":1},{"OrderID":"59667-0072","ShipCountry":"MY","ShipAddress":"3452 Cherokee Pass","ShipName":"Runte-Wiza","OrderDate":"6/15/2016","TotalPayment":"$1074319.24","Status":3,"Type":2},{"OrderID":"59390-206","ShipCountry":"CN","ShipAddress":"874 High Crossing Pass","ShipName":"Hackett-Johnston","OrderDate":"11/10/2017","TotalPayment":"$255278.77","Status":1,"Type":3},{"OrderID":"36987-3166","ShipCountry":"NO","ShipAddress":"727 Anzinger Place","ShipName":"Monahan, Hoeger and O\'Connell","OrderDate":"1/3/2016","TotalPayment":"$568646.83","Status":4,"Type":3},{"OrderID":"62011-0097","ShipCountry":"RU","ShipAddress":"0 Duke Park","ShipName":"Schmidt, Legros and Ernser","OrderDate":"10/7/2017","TotalPayment":"$685338.21","Status":1,"Type":3},{"OrderID":"54973-3172","ShipCountry":"RU","ShipAddress":"52565 Haas Place","ShipName":"Batz-Cartwright","OrderDate":"3/15/2017","TotalPayment":"$48550.76","Status":1,"Type":1},{"OrderID":"63824-163","ShipCountry":"RU","ShipAddress":"717 Old Gate Parkway","ShipName":"Murphy-Zboncak","OrderDate":"11/9/2016","TotalPayment":"$96566.46","Status":4,"Type":1},{"OrderID":"52007-140","ShipCountry":"CM","ShipAddress":"35353 Lakewood Gardens Point","ShipName":"Boyle-Turcotte","OrderDate":"7/3/2016","TotalPayment":"$240877.44","Status":5,"Type":1},{"OrderID":"62716-665","ShipCountry":"CA","ShipAddress":"4 Debs Drive","ShipName":"Pouros-Carroll","OrderDate":"8/18/2016","TotalPayment":"$1070119.29","Status":4,"Type":1}]},\n{"RecordID":288,"FirstName":"Jeane","LastName":"Gaspar","Company":"Dynazzy","Email":"jgaspar7z@army.mil","Phone":"586-470-9326","Status":2,"Type":1,"Orders":[{"OrderID":"24488-026","ShipCountry":"NL","ShipAddress":"56859 Nobel Circle","ShipName":"Konopelski-Homenick","OrderDate":"11/3/2017","TotalPayment":"$579098.48","Status":3,"Type":2},{"OrderID":"54868-5846","ShipCountry":"BR","ShipAddress":"7 Susan Way","ShipName":"Schimmel, Ratke and Cummings","OrderDate":"9/11/2017","TotalPayment":"$1123559.99","Status":1,"Type":2},{"OrderID":"54868-5844","ShipCountry":"PH","ShipAddress":"0283 Linden Parkway","ShipName":"Runolfsson-O\'Kon","OrderDate":"8/4/2017","TotalPayment":"$459802.65","Status":3,"Type":1},{"OrderID":"60429-146","ShipCountry":"JP","ShipAddress":"862 Oriole Terrace","ShipName":"Ritchie-Stehr","OrderDate":"2/5/2017","TotalPayment":"$1147190.44","Status":5,"Type":1},{"OrderID":"58411-184","ShipCountry":"CN","ShipAddress":"1733 Lerdahl Drive","ShipName":"Kuvalis-Kulas","OrderDate":"2/20/2017","TotalPayment":"$1097955.03","Status":3,"Type":2},{"OrderID":"49643-370","ShipCountry":"ID","ShipAddress":"4 Summerview Alley","ShipName":"Stark, Mohr and Windler","OrderDate":"12/12/2017","TotalPayment":"$433309.83","Status":2,"Type":2},{"OrderID":"49738-459","ShipCountry":"IR","ShipAddress":"020 Hoard Junction","ShipName":"Gutkowski Inc","OrderDate":"8/25/2017","TotalPayment":"$537908.62","Status":5,"Type":2},{"OrderID":"55714-4405","ShipCountry":"BR","ShipAddress":"5492 Pearson Trail","ShipName":"Cremin-Thiel","OrderDate":"9/13/2017","TotalPayment":"$227764.72","Status":3,"Type":1}]},\n{"RecordID":289,"FirstName":"Judith","LastName":"Halpin","Company":"Abata","Email":"jhalpin80@uiuc.edu","Phone":"822-677-9707","Status":1,"Type":2,"Orders":[{"OrderID":"59039-005","ShipCountry":"KE","ShipAddress":"78 Milwaukee Center","ShipName":"Wilderman LLC","OrderDate":"4/9/2016","TotalPayment":"$165750.60","Status":2,"Type":2},{"OrderID":"31190-400","ShipCountry":"MX","ShipAddress":"4 Browning Hill","ShipName":"Smith, Huels and Cummings","OrderDate":"8/17/2016","TotalPayment":"$99734.67","Status":3,"Type":3},{"OrderID":"21695-400","ShipCountry":"ID","ShipAddress":"83 Oneill Place","ShipName":"Osinski-Will","OrderDate":"7/9/2017","TotalPayment":"$586092.44","Status":5,"Type":3},{"OrderID":"61570-111","ShipCountry":"PT","ShipAddress":"649 Blackbird Pass","ShipName":"Schaden-Spencer","OrderDate":"9/1/2017","TotalPayment":"$1138142.27","Status":6,"Type":2},{"OrderID":"60432-741","ShipCountry":"BA","ShipAddress":"7 Dawn Way","ShipName":"Schroeder-Kemmer","OrderDate":"12/10/2016","TotalPayment":"$121127.13","Status":4,"Type":2},{"OrderID":"63629-1383","ShipCountry":"FR","ShipAddress":"992 Vernon Crossing","ShipName":"Collier-Homenick","OrderDate":"6/5/2017","TotalPayment":"$1050874.35","Status":3,"Type":3},{"OrderID":"0591-0853","ShipCountry":"TZ","ShipAddress":"6369 Upham Circle","ShipName":"McClure, Armstrong and Schmeler","OrderDate":"8/21/2017","TotalPayment":"$849601.81","Status":3,"Type":3},{"OrderID":"33261-357","ShipCountry":"GS","ShipAddress":"90510 Doe Crossing Parkway","ShipName":"Brown LLC","OrderDate":"3/21/2016","TotalPayment":"$146984.01","Status":1,"Type":2},{"OrderID":"63629-4998","ShipCountry":"ID","ShipAddress":"47 Parkside Plaza","ShipName":"Parisian-Hane","OrderDate":"3/16/2016","TotalPayment":"$606108.62","Status":5,"Type":1},{"OrderID":"67877-220","ShipCountry":"CN","ShipAddress":"9 Amoth Way","ShipName":"Turcotte-Hahn","OrderDate":"11/1/2016","TotalPayment":"$156980.25","Status":1,"Type":3},{"OrderID":"59262-353","ShipCountry":"PH","ShipAddress":"824 Debs Terrace","ShipName":"Dietrich-Lueilwitz","OrderDate":"11/2/2016","TotalPayment":"$349342.66","Status":5,"Type":1},{"OrderID":"0378-3120","ShipCountry":"MX","ShipAddress":"189 Little Fleur Park","ShipName":"Bernier-Jakubowski","OrderDate":"5/14/2016","TotalPayment":"$1037639.99","Status":3,"Type":1},{"OrderID":"0009-5093","ShipCountry":"FR","ShipAddress":"0 Elmside Parkway","ShipName":"Mueller Inc","OrderDate":"9/29/2016","TotalPayment":"$645737.00","Status":5,"Type":2},{"OrderID":"52261-0206","ShipCountry":"BR","ShipAddress":"7935 Forest Run Way","ShipName":"Bechtelar LLC","OrderDate":"7/24/2017","TotalPayment":"$990399.30","Status":6,"Type":2},{"OrderID":"61919-629","ShipCountry":"LV","ShipAddress":"99 Melrose Way","ShipName":"Kirlin, Okuneva and Bernhard","OrderDate":"2/12/2017","TotalPayment":"$144461.71","Status":3,"Type":3},{"OrderID":"68788-8001","ShipCountry":"CN","ShipAddress":"1 Everett Road","ShipName":"Nikolaus Inc","OrderDate":"4/23/2016","TotalPayment":"$852847.89","Status":2,"Type":3},{"OrderID":"65044-3456","ShipCountry":"IR","ShipAddress":"908 Oak Place","ShipName":"Hermiston Group","OrderDate":"1/13/2017","TotalPayment":"$1014561.67","Status":1,"Type":3},{"OrderID":"41520-123","ShipCountry":"CN","ShipAddress":"86 Algoma Crossing","ShipName":"Bechtelar, Weimann and Jones","OrderDate":"4/19/2017","TotalPayment":"$938678.35","Status":5,"Type":1},{"OrderID":"53045-300","ShipCountry":"BS","ShipAddress":"497 Washington Point","ShipName":"Stanton, Kris and Kunze","OrderDate":"7/15/2016","TotalPayment":"$457167.90","Status":5,"Type":2},{"OrderID":"0378-1132","ShipCountry":"ID","ShipAddress":"69939 Menomonie Trail","ShipName":"Donnelly-Stoltenberg","OrderDate":"8/8/2017","TotalPayment":"$874086.15","Status":2,"Type":1}]},\n{"RecordID":290,"FirstName":"Christoforo","LastName":"Darling","Company":"Brainverse","Email":"cdarling81@bravesites.com","Phone":"383-578-5658","Status":5,"Type":1,"Orders":[{"OrderID":"60760-227","ShipCountry":"JP","ShipAddress":"104 Sullivan Alley","ShipName":"Daniel and Sons","OrderDate":"11/19/2017","TotalPayment":"$1116438.34","Status":4,"Type":1},{"OrderID":"0904-0004","ShipCountry":"RU","ShipAddress":"7 Packers Road","ShipName":"Bernier, Leannon and Effertz","OrderDate":"2/27/2016","TotalPayment":"$1184158.59","Status":5,"Type":2},{"OrderID":"55289-638","ShipCountry":"ID","ShipAddress":"91990 Hoepker Avenue","ShipName":"Monahan and Sons","OrderDate":"2/23/2017","TotalPayment":"$1123217.72","Status":2,"Type":2},{"OrderID":"36987-1899","ShipCountry":"AR","ShipAddress":"7803 Declaration Pass","ShipName":"Harvey-Mraz","OrderDate":"9/12/2017","TotalPayment":"$1086393.54","Status":5,"Type":3},{"OrderID":"54868-3619","ShipCountry":"SE","ShipAddress":"18862 Del Sol Parkway","ShipName":"Rempel, Gislason and Hills","OrderDate":"4/27/2017","TotalPayment":"$800590.89","Status":4,"Type":3},{"OrderID":"50845-0017","ShipCountry":"RU","ShipAddress":"88 Bluejay Alley","ShipName":"Bins-Herzog","OrderDate":"4/10/2017","TotalPayment":"$1054325.06","Status":2,"Type":1},{"OrderID":"68462-228","ShipCountry":"US","ShipAddress":"803 Cottonwood Point","ShipName":"Mertz Inc","OrderDate":"12/14/2017","TotalPayment":"$1153352.24","Status":4,"Type":2},{"OrderID":"55154-1610","ShipCountry":"PT","ShipAddress":"08 Stone Corner Way","ShipName":"Hilpert LLC","OrderDate":"8/9/2017","TotalPayment":"$1099022.57","Status":3,"Type":1},{"OrderID":"49825-724","ShipCountry":"RU","ShipAddress":"67742 Old Gate Terrace","ShipName":"Fritsch Group","OrderDate":"4/3/2017","TotalPayment":"$611478.25","Status":6,"Type":2},{"OrderID":"98132-749","ShipCountry":"RU","ShipAddress":"35951 Ridgeview Way","ShipName":"Johnson, Wisoky and Doyle","OrderDate":"7/16/2016","TotalPayment":"$704931.17","Status":3,"Type":2},{"OrderID":"11410-006","ShipCountry":"GR","ShipAddress":"8 Stang Alley","ShipName":"Shields, Hagenes and Trantow","OrderDate":"12/17/2017","TotalPayment":"$819103.37","Status":3,"Type":1},{"OrderID":"58892-518","ShipCountry":"CZ","ShipAddress":"3 Nancy Pass","ShipName":"Murazik, Jaskolski and Cronin","OrderDate":"2/25/2016","TotalPayment":"$871401.85","Status":6,"Type":3},{"OrderID":"67544-253","ShipCountry":"RU","ShipAddress":"7 Victoria Road","ShipName":"Ward-Swift","OrderDate":"7/26/2017","TotalPayment":"$478117.33","Status":2,"Type":2},{"OrderID":"63354-009","ShipCountry":"TH","ShipAddress":"7 Knutson Drive","ShipName":"Lindgren and Sons","OrderDate":"10/20/2017","TotalPayment":"$778512.15","Status":3,"Type":1},{"OrderID":"63739-366","ShipCountry":"RU","ShipAddress":"544 Briar Crest Way","ShipName":"Gottlieb, Reynolds and Gorczany","OrderDate":"6/13/2016","TotalPayment":"$1025718.54","Status":3,"Type":2},{"OrderID":"45163-451","ShipCountry":"RU","ShipAddress":"9210 David Point","ShipName":"Halvorson and Sons","OrderDate":"1/28/2017","TotalPayment":"$246577.30","Status":6,"Type":2},{"OrderID":"0143-1277","ShipCountry":"MC","ShipAddress":"61164 Arizona Circle","ShipName":"Hoeger-Lemke","OrderDate":"6/12/2016","TotalPayment":"$592524.77","Status":2,"Type":2},{"OrderID":"0228-3505","ShipCountry":"RU","ShipAddress":"54 Lakewood Crossing","ShipName":"Kuhic-Krajcik","OrderDate":"2/29/2016","TotalPayment":"$1100846.90","Status":6,"Type":1},{"OrderID":"54868-6049","ShipCountry":"ID","ShipAddress":"0734 Dorton Junction","ShipName":"Hirthe-Breitenberg","OrderDate":"3/8/2017","TotalPayment":"$264718.25","Status":2,"Type":1}]},\n{"RecordID":291,"FirstName":"Terrie","LastName":"Sich","Company":"Edgeify","Email":"tsich82@meetup.com","Phone":"298-819-3626","Status":6,"Type":3,"Orders":[{"OrderID":"59779-428","ShipCountry":"KR","ShipAddress":"812 Oriole Pass","ShipName":"Hackett-Halvorson","OrderDate":"7/30/2016","TotalPayment":"$1010820.45","Status":6,"Type":3},{"OrderID":"51079-938","ShipCountry":"BR","ShipAddress":"8248 Miller Terrace","ShipName":"Quitzon, Tremblay and Mayert","OrderDate":"5/7/2016","TotalPayment":"$281606.98","Status":5,"Type":3},{"OrderID":"76340-7001","ShipCountry":"CN","ShipAddress":"12 Myrtle Plaza","ShipName":"Sauer-Koepp","OrderDate":"5/1/2016","TotalPayment":"$620504.30","Status":1,"Type":2},{"OrderID":"67226-1020","ShipCountry":"CN","ShipAddress":"3 Vernon Drive","ShipName":"Jast-Corwin","OrderDate":"11/6/2017","TotalPayment":"$38299.02","Status":1,"Type":3},{"OrderID":"68472-062","ShipCountry":"GR","ShipAddress":"749 Vernon Pass","ShipName":"Kuphal, Gerlach and Jast","OrderDate":"5/2/2016","TotalPayment":"$957336.20","Status":1,"Type":1},{"OrderID":"10812-971","ShipCountry":"PL","ShipAddress":"458 Randy Crossing","ShipName":"Volkman, Reilly and Corwin","OrderDate":"2/2/2017","TotalPayment":"$343694.52","Status":4,"Type":1},{"OrderID":"0869-0434","ShipCountry":"JP","ShipAddress":"8458 Roth Pass","ShipName":"Christiansen, Schiller and Kozey","OrderDate":"7/10/2017","TotalPayment":"$19786.96","Status":1,"Type":1},{"OrderID":"55566-5040","ShipCountry":"FR","ShipAddress":"074 Grayhawk Road","ShipName":"Larkin, Gislason and Senger","OrderDate":"8/8/2017","TotalPayment":"$452463.34","Status":1,"Type":2},{"OrderID":"55910-559","ShipCountry":"JP","ShipAddress":"37 Mariners Cove Way","ShipName":"Rempel, Thiel and Prosacco","OrderDate":"9/30/2017","TotalPayment":"$449359.65","Status":5,"Type":1},{"OrderID":"49348-477","ShipCountry":"ID","ShipAddress":"9 Valley Edge Point","ShipName":"Wilderman-Greenholt","OrderDate":"12/7/2016","TotalPayment":"$422876.20","Status":4,"Type":2},{"OrderID":"55154-4987","ShipCountry":"TZ","ShipAddress":"5453 Utah Way","ShipName":"Abbott Group","OrderDate":"2/17/2016","TotalPayment":"$354720.09","Status":1,"Type":1},{"OrderID":"0023-9155","ShipCountry":"US","ShipAddress":"18399 Morningstar Avenue","ShipName":"Wyman-Thiel","OrderDate":"11/4/2017","TotalPayment":"$989627.17","Status":3,"Type":1},{"OrderID":"53346-1359","ShipCountry":"CN","ShipAddress":"15 Northfield Point","ShipName":"McGlynn, Bernhard and Hane","OrderDate":"11/1/2017","TotalPayment":"$295689.76","Status":3,"Type":2},{"OrderID":"53329-941","ShipCountry":"PH","ShipAddress":"454 Myrtle Alley","ShipName":"Swift LLC","OrderDate":"5/13/2016","TotalPayment":"$655904.51","Status":1,"Type":3},{"OrderID":"0591-3753","ShipCountry":"FR","ShipAddress":"55985 Harbort Junction","ShipName":"Lang, Rempel and Hills","OrderDate":"7/2/2017","TotalPayment":"$16318.50","Status":5,"Type":3},{"OrderID":"37012-499","ShipCountry":"VC","ShipAddress":"6469 Spaight Drive","ShipName":"Kerluke-Kub","OrderDate":"1/27/2016","TotalPayment":"$476363.06","Status":4,"Type":1},{"OrderID":"50114-7015","ShipCountry":"ID","ShipAddress":"93 Mockingbird Parkway","ShipName":"Hoppe, Kohler and Nikolaus","OrderDate":"5/10/2017","TotalPayment":"$637283.30","Status":3,"Type":2}]},\n{"RecordID":292,"FirstName":"Ertha","LastName":"Rawlings","Company":"Eamia","Email":"erawlings83@mac.com","Phone":"882-762-2222","Status":1,"Type":1,"Orders":[{"OrderID":"54868-5030","ShipCountry":"HR","ShipAddress":"0877 Anderson Hill","ShipName":"O\'Keefe-Bednar","OrderDate":"4/16/2017","TotalPayment":"$645757.92","Status":1,"Type":3},{"OrderID":"55289-911","ShipCountry":"PL","ShipAddress":"60545 Pennsylvania Junction","ShipName":"Wehner-Hettinger","OrderDate":"4/5/2016","TotalPayment":"$1075377.63","Status":4,"Type":2},{"OrderID":"0113-0622","ShipCountry":"ME","ShipAddress":"46 Northridge Road","ShipName":"Murphy LLC","OrderDate":"7/8/2017","TotalPayment":"$261361.74","Status":6,"Type":1},{"OrderID":"0143-9939","ShipCountry":"UA","ShipAddress":"7 Lunder Plaza","ShipName":"Torphy, Grady and Kovacek","OrderDate":"12/5/2016","TotalPayment":"$529815.39","Status":1,"Type":1},{"OrderID":"10631-099","ShipCountry":"UA","ShipAddress":"007 Lukken Crossing","ShipName":"Howe, Grant and McLaughlin","OrderDate":"12/27/2017","TotalPayment":"$365555.48","Status":4,"Type":3},{"OrderID":"55312-377","ShipCountry":"KM","ShipAddress":"7075 2nd Circle","ShipName":"Stehr-Stroman","OrderDate":"3/5/2017","TotalPayment":"$597579.34","Status":6,"Type":3},{"OrderID":"27437-207","ShipCountry":"UG","ShipAddress":"0986 Dunning Plaza","ShipName":"Corkery, Rath and Dooley","OrderDate":"1/2/2016","TotalPayment":"$256731.54","Status":3,"Type":2},{"OrderID":"10096-0289","ShipCountry":"MX","ShipAddress":"0701 Kedzie Parkway","ShipName":"Krajcik, Auer and Champlin","OrderDate":"4/30/2017","TotalPayment":"$638615.28","Status":3,"Type":3},{"OrderID":"52125-680","ShipCountry":"CO","ShipAddress":"35 Shasta Way","ShipName":"Legros LLC","OrderDate":"10/25/2017","TotalPayment":"$862282.15","Status":3,"Type":1},{"OrderID":"55154-6627","ShipCountry":"TH","ShipAddress":"22 Mandrake Parkway","ShipName":"Metz-Gaylord","OrderDate":"9/18/2016","TotalPayment":"$1018304.43","Status":4,"Type":3},{"OrderID":"0363-0560","ShipCountry":"ID","ShipAddress":"6 Bellgrove Circle","ShipName":"Leffler-Goldner","OrderDate":"6/12/2016","TotalPayment":"$80491.47","Status":1,"Type":3},{"OrderID":"0363-0236","ShipCountry":"ID","ShipAddress":"3 Forest Dale Way","ShipName":"Macejkovic, Blick and Bins","OrderDate":"11/12/2017","TotalPayment":"$187000.08","Status":6,"Type":3},{"OrderID":"61543-7237","ShipCountry":"MY","ShipAddress":"6781 Buell Center","ShipName":"Champlin LLC","OrderDate":"8/11/2017","TotalPayment":"$34072.26","Status":5,"Type":2},{"OrderID":"49035-101","ShipCountry":"ID","ShipAddress":"79 Daystar Drive","ShipName":"Lakin-Klocko","OrderDate":"5/5/2016","TotalPayment":"$446963.75","Status":4,"Type":3},{"OrderID":"17630-2005","ShipCountry":"PH","ShipAddress":"2 Northridge Avenue","ShipName":"Schumm, Kertzmann and Schinner","OrderDate":"4/3/2017","TotalPayment":"$128297.14","Status":1,"Type":2},{"OrderID":"10967-057","ShipCountry":"IE","ShipAddress":"8 Artisan Way","ShipName":"Reinger LLC","OrderDate":"10/20/2016","TotalPayment":"$428866.51","Status":4,"Type":1},{"OrderID":"36987-2716","ShipCountry":"US","ShipAddress":"1036 Gerald Place","ShipName":"Abshire and Sons","OrderDate":"3/3/2016","TotalPayment":"$312472.22","Status":6,"Type":3},{"OrderID":"0781-5209","ShipCountry":"PL","ShipAddress":"5351 Harper Pass","ShipName":"Huel, Koch and Schultz","OrderDate":"10/5/2017","TotalPayment":"$945029.41","Status":5,"Type":1},{"OrderID":"66579-0090","ShipCountry":"ID","ShipAddress":"538 Dapin Place","ShipName":"Beahan-Botsford","OrderDate":"3/15/2016","TotalPayment":"$750837.19","Status":5,"Type":3},{"OrderID":"41190-321","ShipCountry":"CN","ShipAddress":"70022 Nevada Street","ShipName":"Homenick-Crooks","OrderDate":"7/1/2016","TotalPayment":"$252768.88","Status":5,"Type":1}]},\n{"RecordID":293,"FirstName":"Ulrika","LastName":"Yitzhakof","Company":"Youtags","Email":"uyitzhakof84@addtoany.com","Phone":"399-924-0896","Status":5,"Type":3,"Orders":[{"OrderID":"50268-335","ShipCountry":"ID","ShipAddress":"24 Lakeland Avenue","ShipName":"Turcotte, D\'Amore and Hills","OrderDate":"5/3/2016","TotalPayment":"$1171159.84","Status":3,"Type":2},{"OrderID":"53346-1330","ShipCountry":"NG","ShipAddress":"8708 Mandrake Way","ShipName":"Rogahn-Bins","OrderDate":"7/19/2016","TotalPayment":"$1037175.79","Status":1,"Type":2},{"OrderID":"10147-0881","ShipCountry":"UA","ShipAddress":"445 Westend Drive","ShipName":"Kihn-O\'Hara","OrderDate":"3/23/2017","TotalPayment":"$610637.63","Status":3,"Type":1},{"OrderID":"58443-0022","ShipCountry":"AR","ShipAddress":"3 Westend Point","ShipName":"Schuster, Ondricka and O\'Conner","OrderDate":"4/25/2017","TotalPayment":"$448192.54","Status":1,"Type":2},{"OrderID":"0591-5555","ShipCountry":"PH","ShipAddress":"1 Shopko Place","ShipName":"Block LLC","OrderDate":"7/16/2017","TotalPayment":"$739813.40","Status":2,"Type":1},{"OrderID":"48951-4057","ShipCountry":"BY","ShipAddress":"6904 Leroy Plaza","ShipName":"Little, Wisoky and Murray","OrderDate":"8/8/2016","TotalPayment":"$726872.96","Status":6,"Type":2},{"OrderID":"52125-660","ShipCountry":"PL","ShipAddress":"6128 Starling Place","ShipName":"Schmitt-Reichel","OrderDate":"10/13/2016","TotalPayment":"$165867.29","Status":2,"Type":3},{"OrderID":"68788-9796","ShipCountry":"FR","ShipAddress":"16 Tennessee Road","ShipName":"Murray-Thompson","OrderDate":"9/21/2016","TotalPayment":"$1052960.01","Status":1,"Type":3},{"OrderID":"68016-134","ShipCountry":"PH","ShipAddress":"35054 Doe Crossing Alley","ShipName":"Lemke Inc","OrderDate":"1/21/2016","TotalPayment":"$1069746.70","Status":6,"Type":3},{"OrderID":"43419-703","ShipCountry":"CN","ShipAddress":"5805 Fairview Lane","ShipName":"Gorczany LLC","OrderDate":"4/26/2017","TotalPayment":"$552314.10","Status":4,"Type":1},{"OrderID":"0363-0531","ShipCountry":"US","ShipAddress":"6662 Troy Lane","ShipName":"Schneider, Hilll and Spencer","OrderDate":"4/8/2016","TotalPayment":"$277740.21","Status":2,"Type":1},{"OrderID":"30142-370","ShipCountry":"PH","ShipAddress":"275 Lyons Terrace","ShipName":"Bayer-Eichmann","OrderDate":"5/14/2016","TotalPayment":"$762598.30","Status":6,"Type":3},{"OrderID":"75983-738","ShipCountry":"PL","ShipAddress":"57861 School Street","ShipName":"Harris-Orn","OrderDate":"5/5/2016","TotalPayment":"$429737.37","Status":5,"Type":3},{"OrderID":"15127-730","ShipCountry":"ID","ShipAddress":"60 Holy Cross Plaza","ShipName":"Wilderman-Kassulke","OrderDate":"9/14/2017","TotalPayment":"$592720.54","Status":6,"Type":3}]},\n{"RecordID":294,"FirstName":"Fannie","LastName":"Harnwell","Company":"Linkbuzz","Email":"fharnwell85@behance.net","Phone":"503-650-4806","Status":4,"Type":1,"Orders":[{"OrderID":"36800-162","ShipCountry":"CN","ShipAddress":"02045 Canary Avenue","ShipName":"Mante, Renner and Gerhold","OrderDate":"6/30/2016","TotalPayment":"$544081.36","Status":1,"Type":3},{"OrderID":"99207-010","ShipCountry":"PT","ShipAddress":"851 Elmside Drive","ShipName":"Rutherford-Grimes","OrderDate":"12/8/2016","TotalPayment":"$1132139.01","Status":3,"Type":3},{"OrderID":"21695-007","ShipCountry":"CM","ShipAddress":"67548 Aberg Court","ShipName":"Emmerich, VonRueden and Paucek","OrderDate":"1/14/2016","TotalPayment":"$69243.60","Status":1,"Type":3},{"OrderID":"57243-055","ShipCountry":"CN","ShipAddress":"9573 Morrow Way","ShipName":"Kuhic, Stark and Kutch","OrderDate":"9/6/2016","TotalPayment":"$250480.92","Status":1,"Type":1},{"OrderID":"37205-724","ShipCountry":"ID","ShipAddress":"5 Village Green Trail","ShipName":"Koch Inc","OrderDate":"8/2/2017","TotalPayment":"$522849.36","Status":2,"Type":1}]},\n{"RecordID":295,"FirstName":"Cherise","LastName":"Styan","Company":"Agivu","Email":"cstyan86@tmall.com","Phone":"701-347-0202","Status":5,"Type":3,"Orders":[{"OrderID":"0121-0544","ShipCountry":"ID","ShipAddress":"288 Leroy Court","ShipName":"Kihn Group","OrderDate":"10/4/2016","TotalPayment":"$790432.31","Status":5,"Type":1},{"OrderID":"10191-1566","ShipCountry":"BR","ShipAddress":"3 Welch Point","ShipName":"Barton Group","OrderDate":"3/10/2017","TotalPayment":"$795802.06","Status":3,"Type":1},{"OrderID":"11673-041","ShipCountry":"ID","ShipAddress":"10 Laurel Pass","ShipName":"Robel Group","OrderDate":"3/18/2017","TotalPayment":"$629560.40","Status":4,"Type":3},{"OrderID":"68428-114","ShipCountry":"CA","ShipAddress":"95 La Follette Pass","ShipName":"Ondricka LLC","OrderDate":"7/5/2016","TotalPayment":"$329283.86","Status":4,"Type":3},{"OrderID":"54868-4630","ShipCountry":"NL","ShipAddress":"97 Garrison Circle","ShipName":"Ankunding-Cole","OrderDate":"10/11/2017","TotalPayment":"$1066260.59","Status":4,"Type":1},{"OrderID":"59779-614","ShipCountry":"BR","ShipAddress":"88027 Sheridan Center","ShipName":"Doyle-Kiehn","OrderDate":"11/4/2017","TotalPayment":"$465597.64","Status":4,"Type":1},{"OrderID":"0603-5482","ShipCountry":"ID","ShipAddress":"3 Algoma Plaza","ShipName":"Hoppe Inc","OrderDate":"9/13/2017","TotalPayment":"$208039.02","Status":2,"Type":1},{"OrderID":"49808-123","ShipCountry":"GR","ShipAddress":"6471 Nobel Park","ShipName":"Beahan LLC","OrderDate":"5/19/2017","TotalPayment":"$511151.33","Status":3,"Type":3},{"OrderID":"33261-220","ShipCountry":"CN","ShipAddress":"57384 Spaight Road","ShipName":"Abernathy-Kub","OrderDate":"6/4/2017","TotalPayment":"$224612.04","Status":6,"Type":3},{"OrderID":"98132-2132","ShipCountry":"FR","ShipAddress":"9260 Emmet Drive","ShipName":"Schuster, Shanahan and Gaylord","OrderDate":"11/30/2017","TotalPayment":"$1064770.99","Status":6,"Type":3},{"OrderID":"36987-2759","ShipCountry":"CN","ShipAddress":"714 Ridgeway Pass","ShipName":"Spencer, Schowalter and Kling","OrderDate":"12/1/2017","TotalPayment":"$705492.37","Status":2,"Type":1},{"OrderID":"52125-444","ShipCountry":"UA","ShipAddress":"453 Darwin Junction","ShipName":"Leffler-Rau","OrderDate":"1/13/2016","TotalPayment":"$683426.43","Status":4,"Type":2},{"OrderID":"62558-001","ShipCountry":"CN","ShipAddress":"57 Loeprich Circle","ShipName":"Wintheiser Inc","OrderDate":"12/18/2017","TotalPayment":"$98814.44","Status":1,"Type":3},{"OrderID":"55648-154","ShipCountry":"FR","ShipAddress":"94 Beilfuss Parkway","ShipName":"Schneider and Sons","OrderDate":"11/17/2017","TotalPayment":"$702665.99","Status":6,"Type":3},{"OrderID":"0603-7642","ShipCountry":"BE","ShipAddress":"93 Westridge Park","ShipName":"Hintz Inc","OrderDate":"4/26/2016","TotalPayment":"$543903.59","Status":4,"Type":3},{"OrderID":"69097-153","ShipCountry":"NP","ShipAddress":"6 Bowman Place","ShipName":"Jenkins, Carroll and Leannon","OrderDate":"1/14/2017","TotalPayment":"$150568.37","Status":1,"Type":3},{"OrderID":"63304-901","ShipCountry":"EG","ShipAddress":"8846 Weeping Birch Terrace","ShipName":"Terry-Schaefer","OrderDate":"12/24/2017","TotalPayment":"$255260.57","Status":3,"Type":2}]},\n{"RecordID":296,"FirstName":"Gardiner","LastName":"Antrack","Company":"LiveZ","Email":"gantrack87@indiegogo.com","Phone":"656-286-6951","Status":3,"Type":2,"Orders":[{"OrderID":"57782-397","ShipCountry":"US","ShipAddress":"5598 Ridge Oak Street","ShipName":"Lakin and Sons","OrderDate":"2/15/2016","TotalPayment":"$116351.40","Status":6,"Type":2},{"OrderID":"62175-313","ShipCountry":"CN","ShipAddress":"9 Anniversary Street","ShipName":"Lemke, Turcotte and Beer","OrderDate":"4/11/2017","TotalPayment":"$1118796.70","Status":1,"Type":2},{"OrderID":"42291-143","ShipCountry":"FR","ShipAddress":"2070 Kensington Lane","ShipName":"O\'Keefe-Hessel","OrderDate":"11/16/2016","TotalPayment":"$688523.66","Status":6,"Type":1},{"OrderID":"49738-409","ShipCountry":"CN","ShipAddress":"474 Forest Trail","ShipName":"Davis, Kihn and Gerhold","OrderDate":"5/8/2017","TotalPayment":"$536287.79","Status":6,"Type":2},{"OrderID":"54868-6052","ShipCountry":"ID","ShipAddress":"75 Almo Junction","ShipName":"Bernhard, Orn and Johnson","OrderDate":"4/16/2017","TotalPayment":"$498871.60","Status":4,"Type":1},{"OrderID":"59779-188","ShipCountry":"SE","ShipAddress":"2186 Kinsman Circle","ShipName":"Corwin, Schimmel and Hessel","OrderDate":"7/17/2017","TotalPayment":"$606764.48","Status":4,"Type":3},{"OrderID":"0781-4003","ShipCountry":"ID","ShipAddress":"4 Chive Parkway","ShipName":"Greenfelder and Sons","OrderDate":"4/13/2016","TotalPayment":"$449559.98","Status":3,"Type":3},{"OrderID":"36987-2515","ShipCountry":"CN","ShipAddress":"1 Harper Street","ShipName":"Jast, Hoeger and Pagac","OrderDate":"9/17/2016","TotalPayment":"$1034394.62","Status":5,"Type":1},{"OrderID":"63629-4026","ShipCountry":"PH","ShipAddress":"7 Ramsey Circle","ShipName":"Bergnaum-Kub","OrderDate":"11/25/2017","TotalPayment":"$525752.33","Status":2,"Type":3},{"OrderID":"54575-946","ShipCountry":"ID","ShipAddress":"247 Doe Crossing Court","ShipName":"Corkery-Waelchi","OrderDate":"12/28/2016","TotalPayment":"$1155092.27","Status":3,"Type":2},{"OrderID":"55154-9419","ShipCountry":"RS","ShipAddress":"052 Scofield Place","ShipName":"Weber-Renner","OrderDate":"8/23/2017","TotalPayment":"$191349.72","Status":1,"Type":2},{"OrderID":"49035-353","ShipCountry":"YE","ShipAddress":"63 Meadow Valley Parkway","ShipName":"Ferry-Streich","OrderDate":"2/10/2017","TotalPayment":"$961940.59","Status":6,"Type":1},{"OrderID":"0409-1176","ShipCountry":"PH","ShipAddress":"55090 Walton Hill","ShipName":"Mraz Group","OrderDate":"4/6/2016","TotalPayment":"$868979.22","Status":2,"Type":3},{"OrderID":"17772-103","ShipCountry":"PE","ShipAddress":"9073 Express Lane","ShipName":"Crist-Bednar","OrderDate":"7/15/2017","TotalPayment":"$320725.00","Status":5,"Type":1},{"OrderID":"43063-307","ShipCountry":"CU","ShipAddress":"789 Fisk Way","ShipName":"Goodwin Group","OrderDate":"7/26/2017","TotalPayment":"$264174.08","Status":6,"Type":1}]},\n{"RecordID":297,"FirstName":"Vida","LastName":"Letty","Company":"Skippad","Email":"vletty88@oracle.com","Phone":"210-267-5838","Status":3,"Type":2,"Orders":[{"OrderID":"68084-737","ShipCountry":"US","ShipAddress":"9785 Corscot Road","ShipName":"Weissnat-Jones","OrderDate":"1/25/2016","TotalPayment":"$439250.28","Status":4,"Type":3},{"OrderID":"65862-157","ShipCountry":"CW","ShipAddress":"25838 Morning Trail","ShipName":"Bernier-Lang","OrderDate":"11/15/2017","TotalPayment":"$1133493.79","Status":1,"Type":3},{"OrderID":"49349-326","ShipCountry":"CA","ShipAddress":"3338 Dixon Hill","ShipName":"Gusikowski-Yundt","OrderDate":"12/22/2017","TotalPayment":"$1134016.69","Status":1,"Type":3},{"OrderID":"0378-1450","ShipCountry":"CN","ShipAddress":"07 Crescent Oaks Avenue","ShipName":"Kris-Larson","OrderDate":"3/26/2017","TotalPayment":"$669117.80","Status":1,"Type":1},{"OrderID":"68429-201","ShipCountry":"ID","ShipAddress":"309 Melody Trail","ShipName":"Williamson, McClure and Carter","OrderDate":"9/13/2016","TotalPayment":"$738920.21","Status":2,"Type":2},{"OrderID":"55316-393","ShipCountry":"GT","ShipAddress":"9 Barby Park","ShipName":"Rolfson Group","OrderDate":"9/19/2017","TotalPayment":"$311236.80","Status":6,"Type":1},{"OrderID":"70253-470","ShipCountry":"ID","ShipAddress":"436 Union Place","ShipName":"Homenick-Cruickshank","OrderDate":"8/26/2016","TotalPayment":"$321873.76","Status":1,"Type":3},{"OrderID":"0006-0731","ShipCountry":"HR","ShipAddress":"1 Judy Center","ShipName":"Runolfsdottir-Kozey","OrderDate":"3/12/2017","TotalPayment":"$879822.62","Status":3,"Type":3},{"OrderID":"10544-011","ShipCountry":"KP","ShipAddress":"2690 Utah Plaza","ShipName":"Koelpin, Spinka and Schaden","OrderDate":"1/19/2016","TotalPayment":"$1006394.73","Status":6,"Type":3},{"OrderID":"0904-5840","ShipCountry":"CN","ShipAddress":"1 Eastwood Road","ShipName":"Beier and Sons","OrderDate":"9/3/2017","TotalPayment":"$1063504.85","Status":6,"Type":3},{"OrderID":"11822-2102","ShipCountry":"ID","ShipAddress":"16 Evergreen Lane","ShipName":"Botsford-Huel","OrderDate":"7/8/2017","TotalPayment":"$747813.87","Status":6,"Type":1},{"OrderID":"56062-227","ShipCountry":"FI","ShipAddress":"914 Monterey Lane","ShipName":"Macejkovic LLC","OrderDate":"1/31/2016","TotalPayment":"$612333.87","Status":1,"Type":3}]},\n{"RecordID":298,"FirstName":"Sasha","LastName":"Marsden","Company":"Skyndu","Email":"smarsden89@cam.ac.uk","Phone":"182-598-9278","Status":2,"Type":2,"Orders":[{"OrderID":"41250-704","ShipCountry":"UA","ShipAddress":"93 Corben Avenue","ShipName":"Cartwright-Cole","OrderDate":"9/10/2017","TotalPayment":"$280975.68","Status":6,"Type":2},{"OrderID":"52007-110","ShipCountry":"ID","ShipAddress":"547 Brown Way","ShipName":"Brekke-Kunde","OrderDate":"1/31/2016","TotalPayment":"$1012225.83","Status":3,"Type":3},{"OrderID":"55289-007","ShipCountry":"UA","ShipAddress":"606 Oak Valley Drive","ShipName":"Kub-Wilderman","OrderDate":"3/17/2016","TotalPayment":"$886822.08","Status":2,"Type":2},{"OrderID":"59779-613","ShipCountry":"ID","ShipAddress":"3308 Bultman Terrace","ShipName":"Baumbach-Hirthe","OrderDate":"11/24/2017","TotalPayment":"$904052.62","Status":1,"Type":3},{"OrderID":"10889-106","ShipCountry":"FI","ShipAddress":"54 Green Ridge Terrace","ShipName":"Kautzer-Sawayn","OrderDate":"12/24/2017","TotalPayment":"$428398.52","Status":5,"Type":1},{"OrderID":"47335-928","ShipCountry":"CN","ShipAddress":"6 Monterey Terrace","ShipName":"Bartell-Fahey","OrderDate":"6/29/2016","TotalPayment":"$771680.54","Status":1,"Type":1}]},\n{"RecordID":299,"FirstName":"Connie","LastName":"Darth","Company":"Youspan","Email":"cdarth8a@soundcloud.com","Phone":"213-857-8543","Status":6,"Type":3,"Orders":[{"OrderID":"0178-0821","ShipCountry":"EE","ShipAddress":"8305 Delaware Alley","ShipName":"Cummings-Collins","OrderDate":"1/11/2017","TotalPayment":"$304122.59","Status":1,"Type":2},{"OrderID":"66336-479","ShipCountry":"RS","ShipAddress":"280 Myrtle Street","ShipName":"Hoppe LLC","OrderDate":"10/28/2016","TotalPayment":"$336073.70","Status":5,"Type":2},{"OrderID":"75870-002","ShipCountry":"MX","ShipAddress":"478 Acker Trail","ShipName":"Corkery, Kautzer and Mayert","OrderDate":"3/29/2016","TotalPayment":"$108327.70","Status":1,"Type":3},{"OrderID":"49288-0105","ShipCountry":"ID","ShipAddress":"892 Mendota Street","ShipName":"Donnelly, Mertz and Metz","OrderDate":"5/2/2017","TotalPayment":"$455045.75","Status":2,"Type":2},{"OrderID":"52125-168","ShipCountry":"GM","ShipAddress":"37676 Cordelia Trail","ShipName":"Marquardt, Davis and Bins","OrderDate":"9/24/2017","TotalPayment":"$626023.73","Status":1,"Type":2},{"OrderID":"63304-261","ShipCountry":"TH","ShipAddress":"38376 Porter Junction","ShipName":"Barton LLC","OrderDate":"4/10/2017","TotalPayment":"$861271.40","Status":4,"Type":1},{"OrderID":"21695-432","ShipCountry":"CN","ShipAddress":"19 Westridge Point","ShipName":"Schultz Group","OrderDate":"7/31/2016","TotalPayment":"$1175136.70","Status":3,"Type":1},{"OrderID":"0591-3720","ShipCountry":"PE","ShipAddress":"0881 Vahlen Point","ShipName":"Shanahan-Kunze","OrderDate":"10/8/2017","TotalPayment":"$1128260.38","Status":2,"Type":2},{"OrderID":"0363-5270","ShipCountry":"ID","ShipAddress":"0552 Crescent Oaks Trail","ShipName":"Bechtelar, Littel and Zboncak","OrderDate":"8/8/2017","TotalPayment":"$672856.66","Status":3,"Type":2},{"OrderID":"49035-555","ShipCountry":"PT","ShipAddress":"552 Walton Junction","ShipName":"Kutch-Larson","OrderDate":"8/25/2016","TotalPayment":"$160995.52","Status":4,"Type":2},{"OrderID":"64762-874","ShipCountry":"SE","ShipAddress":"205 Hazelcrest Parkway","ShipName":"Bednar and Sons","OrderDate":"2/13/2016","TotalPayment":"$31423.23","Status":3,"Type":3},{"OrderID":"47682-681","ShipCountry":"JP","ShipAddress":"8061 Rutledge Circle","ShipName":"Kirlin, Botsford and Green","OrderDate":"1/1/2017","TotalPayment":"$798750.48","Status":5,"Type":2},{"OrderID":"63739-079","ShipCountry":"VN","ShipAddress":"12 West Court","ShipName":"Torphy-Kutch","OrderDate":"7/23/2017","TotalPayment":"$934185.09","Status":1,"Type":3},{"OrderID":"67475-313","ShipCountry":"CY","ShipAddress":"5815 Hayes Avenue","ShipName":"Runte Inc","OrderDate":"12/10/2016","TotalPayment":"$1028518.46","Status":2,"Type":2},{"OrderID":"55154-5992","ShipCountry":"ID","ShipAddress":"29336 Crownhardt Park","ShipName":"Doyle LLC","OrderDate":"12/19/2016","TotalPayment":"$873778.64","Status":6,"Type":3},{"OrderID":"0407-0691","ShipCountry":"CN","ShipAddress":"3 Village Trail","ShipName":"Bernier, Cruickshank and Sanford","OrderDate":"7/24/2016","TotalPayment":"$770955.80","Status":2,"Type":2},{"OrderID":"57520-0081","ShipCountry":"CN","ShipAddress":"5058 Lakewood Gardens Plaza","ShipName":"Batz, Kutch and Dickens","OrderDate":"3/22/2016","TotalPayment":"$637112.75","Status":3,"Type":2},{"OrderID":"52125-211","ShipCountry":"CN","ShipAddress":"3955 Rigney Circle","ShipName":"MacGyver-Kris","OrderDate":"10/7/2017","TotalPayment":"$802817.81","Status":5,"Type":1},{"OrderID":"42254-004","ShipCountry":"RU","ShipAddress":"80 Rockefeller Parkway","ShipName":"Hills-Ebert","OrderDate":"2/27/2017","TotalPayment":"$538738.30","Status":6,"Type":1}]},\n{"RecordID":300,"FirstName":"Elijah","LastName":"Blincow","Company":"Aimbu","Email":"eblincow8b@drupal.org","Phone":"444-358-2559","Status":4,"Type":1,"Orders":[{"OrderID":"28595-801","ShipCountry":"PT","ShipAddress":"70133 Granby Junction","ShipName":"Windler-Legros","OrderDate":"3/21/2017","TotalPayment":"$973450.86","Status":5,"Type":1},{"OrderID":"10742-8662","ShipCountry":"CN","ShipAddress":"5 Oak Valley Drive","ShipName":"Roob Group","OrderDate":"7/16/2016","TotalPayment":"$351619.95","Status":5,"Type":3},{"OrderID":"54868-6036","ShipCountry":"PH","ShipAddress":"22 Autumn Leaf Hill","ShipName":"Durgan-Shanahan","OrderDate":"2/7/2016","TotalPayment":"$164038.65","Status":3,"Type":3},{"OrderID":"64127-054","ShipCountry":"HN","ShipAddress":"77910 Tony Alley","ShipName":"Ernser LLC","OrderDate":"2/5/2017","TotalPayment":"$483234.46","Status":4,"Type":1},{"OrderID":"0378-9682","ShipCountry":"RU","ShipAddress":"3352 Stang Junction","ShipName":"Klocko Inc","OrderDate":"10/7/2016","TotalPayment":"$900799.01","Status":3,"Type":3},{"OrderID":"68788-9502","ShipCountry":"PA","ShipAddress":"5312 Northfield Avenue","ShipName":"Berge, Kohler and D\'Amore","OrderDate":"5/31/2016","TotalPayment":"$195484.02","Status":2,"Type":3},{"OrderID":"0378-1550","ShipCountry":"CA","ShipAddress":"1489 Sachtjen Point","ShipName":"Green-Littel","OrderDate":"2/4/2017","TotalPayment":"$1099928.12","Status":2,"Type":3},{"OrderID":"67226-1020","ShipCountry":"MY","ShipAddress":"610 Prentice Alley","ShipName":"Oberbrunner Inc","OrderDate":"4/17/2016","TotalPayment":"$864101.11","Status":5,"Type":1},{"OrderID":"22577-070","ShipCountry":"PT","ShipAddress":"068 Warrior Point","ShipName":"Langosh, Hickle and Glover","OrderDate":"3/6/2017","TotalPayment":"$166628.87","Status":6,"Type":2},{"OrderID":"68084-449","ShipCountry":"SE","ShipAddress":"56565 Vidon Circle","ShipName":"Boyle, Davis and Kerluke","OrderDate":"6/18/2017","TotalPayment":"$1194255.34","Status":2,"Type":1},{"OrderID":"64406-807","ShipCountry":"RU","ShipAddress":"83 Merry Court","ShipName":"Steuber-Kuphal","OrderDate":"10/1/2017","TotalPayment":"$1105795.06","Status":6,"Type":3},{"OrderID":"60505-3255","ShipCountry":"MN","ShipAddress":"82897 6th Parkway","ShipName":"Hagenes-Orn","OrderDate":"11/27/2017","TotalPayment":"$257859.06","Status":1,"Type":1},{"OrderID":"76162-101","ShipCountry":"NG","ShipAddress":"6 Linden Road","ShipName":"Blick-Bechtelar","OrderDate":"5/23/2017","TotalPayment":"$38614.11","Status":2,"Type":3},{"OrderID":"51655-500","ShipCountry":"CN","ShipAddress":"52043 Hoffman Point","ShipName":"Weber Group","OrderDate":"9/24/2017","TotalPayment":"$22898.33","Status":6,"Type":2},{"OrderID":"64257-515","ShipCountry":"CN","ShipAddress":"315 Melody Terrace","ShipName":"Murray-Volkman","OrderDate":"4/14/2017","TotalPayment":"$622766.12","Status":5,"Type":2},{"OrderID":"36987-1879","ShipCountry":"SY","ShipAddress":"1656 Duke Park","ShipName":"Satterfield, Mayert and Grant","OrderDate":"7/24/2017","TotalPayment":"$807094.67","Status":6,"Type":2},{"OrderID":"49348-326","ShipCountry":"CN","ShipAddress":"6674 New Castle Street","ShipName":"Hahn-McClure","OrderDate":"4/13/2016","TotalPayment":"$307223.74","Status":4,"Type":1},{"OrderID":"0603-2339","ShipCountry":"PH","ShipAddress":"42271 Elka Way","ShipName":"Kuhlman Inc","OrderDate":"11/27/2016","TotalPayment":"$186777.78","Status":2,"Type":2},{"OrderID":"49349-305","ShipCountry":"UA","ShipAddress":"18449 Parkside Trail","ShipName":"Conn and Sons","OrderDate":"7/27/2016","TotalPayment":"$1002855.80","Status":2,"Type":2},{"OrderID":"54235-207","ShipCountry":"CO","ShipAddress":"03 Meadow Ridge Road","ShipName":"Spinka, Hilll and Pfeffer","OrderDate":"4/10/2017","TotalPayment":"$361119.89","Status":3,"Type":2}]},\n{"RecordID":301,"FirstName":"Fraze","LastName":"Scapelhorn","Company":"Browsetype","Email":"fscapelhorn8c@lycos.com","Phone":"592-949-7350","Status":4,"Type":1,"Orders":[{"OrderID":"64205-537","ShipCountry":"TH","ShipAddress":"779 Carey Lane","ShipName":"Hauck Inc","OrderDate":"9/23/2016","TotalPayment":"$859971.41","Status":6,"Type":2},{"OrderID":"37205-667","ShipCountry":"CN","ShipAddress":"78134 Crowley Court","ShipName":"Deckow-Robel","OrderDate":"10/31/2016","TotalPayment":"$108638.65","Status":3,"Type":2},{"OrderID":"66435-103","ShipCountry":"ID","ShipAddress":"2 Burning Wood Alley","ShipName":"Osinski-Kling","OrderDate":"3/7/2017","TotalPayment":"$432927.78","Status":2,"Type":1},{"OrderID":"0517-1010","ShipCountry":"CN","ShipAddress":"2818 Northwestern Place","ShipName":"Considine, Nikolaus and Harber","OrderDate":"4/17/2017","TotalPayment":"$787560.22","Status":3,"Type":1},{"OrderID":"53499-3571","ShipCountry":"PH","ShipAddress":"02683 Oakridge Street","ShipName":"Beier-Jacobson","OrderDate":"6/23/2017","TotalPayment":"$264686.80","Status":1,"Type":2},{"OrderID":"13925-040","ShipCountry":"PT","ShipAddress":"353 Myrtle Plaza","ShipName":"Stiedemann-Champlin","OrderDate":"3/6/2017","TotalPayment":"$930187.86","Status":6,"Type":2},{"OrderID":"11673-090","ShipCountry":"CN","ShipAddress":"55688 Namekagon Place","ShipName":"Hegmann Inc","OrderDate":"1/2/2016","TotalPayment":"$431060.33","Status":1,"Type":3},{"OrderID":"59428-720","ShipCountry":"CN","ShipAddress":"4 Cordelia Hill","ShipName":"Morissette and Sons","OrderDate":"12/28/2016","TotalPayment":"$425846.93","Status":1,"Type":1},{"OrderID":"43547-279","ShipCountry":"PE","ShipAddress":"06114 Rieder Plaza","ShipName":"Ryan-Keebler","OrderDate":"10/22/2017","TotalPayment":"$64375.89","Status":5,"Type":3},{"OrderID":"76119-1445","ShipCountry":"CN","ShipAddress":"0306 6th Junction","ShipName":"Lebsack and Sons","OrderDate":"4/8/2016","TotalPayment":"$900946.82","Status":3,"Type":3},{"OrderID":"0363-3440","ShipCountry":"RU","ShipAddress":"1314 Havey Terrace","ShipName":"Bode-Hauck","OrderDate":"1/4/2016","TotalPayment":"$594081.88","Status":3,"Type":2},{"OrderID":"41520-611","ShipCountry":"BR","ShipAddress":"8 Bultman Drive","ShipName":"Kutch Group","OrderDate":"9/30/2017","TotalPayment":"$675107.49","Status":4,"Type":3}]},\n{"RecordID":302,"FirstName":"Veradis","LastName":"Mettericke","Company":"Flashdog","Email":"vmettericke8d@soundcloud.com","Phone":"727-250-6284","Status":3,"Type":1,"Orders":[{"OrderID":"55045-3243","ShipCountry":"PH","ShipAddress":"92689 Crowley Center","ShipName":"Walter-Howe","OrderDate":"7/3/2016","TotalPayment":"$1140689.42","Status":6,"Type":3},{"OrderID":"36987-3311","ShipCountry":"RU","ShipAddress":"455 Cardinal Pass","ShipName":"Kassulke, Auer and Maggio","OrderDate":"10/31/2017","TotalPayment":"$176933.82","Status":5,"Type":3},{"OrderID":"49348-223","ShipCountry":"PT","ShipAddress":"7422 Scott Center","ShipName":"Reichel, Jones and Lueilwitz","OrderDate":"7/14/2017","TotalPayment":"$811003.69","Status":4,"Type":2},{"OrderID":"51389-113","ShipCountry":"KR","ShipAddress":"728 Stephen Pass","ShipName":"Wilkinson and Sons","OrderDate":"11/24/2017","TotalPayment":"$163804.64","Status":3,"Type":3},{"OrderID":"55670-958","ShipCountry":"KW","ShipAddress":"39 Pearson Center","ShipName":"Marks-Adams","OrderDate":"2/15/2016","TotalPayment":"$495150.13","Status":3,"Type":2},{"OrderID":"51079-154","ShipCountry":"BO","ShipAddress":"0 Forster Center","ShipName":"Volkman-Schimmel","OrderDate":"5/7/2016","TotalPayment":"$94412.66","Status":6,"Type":1}]},\n{"RecordID":303,"FirstName":"Benjamen","LastName":"Halford","Company":"Wikido","Email":"bhalford8e@sourceforge.net","Phone":"254-403-6287","Status":2,"Type":1,"Orders":[{"OrderID":"51672-4095","ShipCountry":"CN","ShipAddress":"192 Canary Court","ShipName":"Brakus-Gorczany","OrderDate":"11/1/2016","TotalPayment":"$144934.43","Status":4,"Type":3},{"OrderID":"21130-463","ShipCountry":"AR","ShipAddress":"4 Tony Alley","ShipName":"Romaguera-Wunsch","OrderDate":"7/26/2016","TotalPayment":"$170713.58","Status":5,"Type":2},{"OrderID":"68703-005","ShipCountry":"BR","ShipAddress":"0 John Wall Park","ShipName":"Rutherford Inc","OrderDate":"10/19/2017","TotalPayment":"$385971.78","Status":3,"Type":1},{"OrderID":"49349-061","ShipCountry":"PH","ShipAddress":"777 Burning Wood Place","ShipName":"Runolfsdottir, Jerde and Murazik","OrderDate":"12/5/2016","TotalPayment":"$921776.60","Status":5,"Type":1},{"OrderID":"55154-4209","ShipCountry":"ET","ShipAddress":"96856 Carey Park","ShipName":"Bahringer-Bailey","OrderDate":"6/14/2016","TotalPayment":"$244982.42","Status":6,"Type":3},{"OrderID":"11673-319","ShipCountry":"UA","ShipAddress":"813 Comanche Avenue","ShipName":"Abbott Group","OrderDate":"3/14/2017","TotalPayment":"$804775.54","Status":6,"Type":1},{"OrderID":"66129-020","ShipCountry":"CN","ShipAddress":"23 Shoshone Terrace","ShipName":"Williamson-Russel","OrderDate":"6/11/2017","TotalPayment":"$1182388.66","Status":2,"Type":2},{"OrderID":"0299-3820","ShipCountry":"CN","ShipAddress":"9 Manley Parkway","ShipName":"Boyer-Harris","OrderDate":"2/1/2016","TotalPayment":"$926270.15","Status":6,"Type":3},{"OrderID":"0052-0315","ShipCountry":"ID","ShipAddress":"98 Prairie Rose Street","ShipName":"Pfannerstill-Romaguera","OrderDate":"9/11/2016","TotalPayment":"$1001161.77","Status":4,"Type":1},{"OrderID":"37000-098","ShipCountry":"UA","ShipAddress":"7725 Lakewood Street","ShipName":"Kulas, Flatley and Tillman","OrderDate":"11/17/2017","TotalPayment":"$122079.20","Status":4,"Type":2},{"OrderID":"67046-030","ShipCountry":"RS","ShipAddress":"18 Summerview Terrace","ShipName":"Volkman, Weber and Daniel","OrderDate":"3/25/2017","TotalPayment":"$587078.92","Status":1,"Type":1},{"OrderID":"43353-818","ShipCountry":"PY","ShipAddress":"9 Summerview Pass","ShipName":"Effertz-Lebsack","OrderDate":"5/22/2017","TotalPayment":"$493616.39","Status":4,"Type":1},{"OrderID":"0409-1412","ShipCountry":"UA","ShipAddress":"7 Anthes Place","ShipName":"Padberg, Becker and Welch","OrderDate":"3/16/2017","TotalPayment":"$710095.26","Status":1,"Type":1},{"OrderID":"12634-183","ShipCountry":"MN","ShipAddress":"9982 Jenifer Point","ShipName":"Hintz and Sons","OrderDate":"12/1/2017","TotalPayment":"$249250.46","Status":4,"Type":3},{"OrderID":"67544-252","ShipCountry":"AL","ShipAddress":"3966 Gina Point","ShipName":"Ullrich Group","OrderDate":"2/14/2017","TotalPayment":"$1047315.16","Status":5,"Type":1},{"OrderID":"68788-9683","ShipCountry":"RU","ShipAddress":"1069 Forest Dale Pass","ShipName":"Quitzon-Steuber","OrderDate":"1/11/2016","TotalPayment":"$559894.50","Status":2,"Type":2},{"OrderID":"24488-010","ShipCountry":"GT","ShipAddress":"65 Rowland Court","ShipName":"Dare LLC","OrderDate":"9/1/2016","TotalPayment":"$675626.22","Status":1,"Type":3},{"OrderID":"68084-083","ShipCountry":"ID","ShipAddress":"993 Reinke Plaza","ShipName":"Paucek, Graham and Thompson","OrderDate":"2/1/2016","TotalPayment":"$1146227.00","Status":5,"Type":2},{"OrderID":"55289-806","ShipCountry":"CN","ShipAddress":"098 Manitowish Court","ShipName":"O\'Hara Inc","OrderDate":"11/24/2017","TotalPayment":"$530280.66","Status":6,"Type":3}]},\n{"RecordID":304,"FirstName":"Lebbie","LastName":"Bysh","Company":"Meembee","Email":"lbysh8f@google.co.jp","Phone":"667-895-8899","Status":4,"Type":1,"Orders":[{"OrderID":"43742-0101","ShipCountry":"NG","ShipAddress":"18257 6th Crossing","ShipName":"Fisher, Simonis and Dibbert","OrderDate":"6/29/2016","TotalPayment":"$939112.45","Status":1,"Type":1},{"OrderID":"16590-833","ShipCountry":"BR","ShipAddress":"13 Alpine Plaza","ShipName":"Heathcote-Grant","OrderDate":"2/19/2017","TotalPayment":"$137222.34","Status":5,"Type":2},{"OrderID":"54569-3285","ShipCountry":"CN","ShipAddress":"5555 Arrowood Hill","ShipName":"Gulgowski, Gibson and Collier","OrderDate":"4/26/2016","TotalPayment":"$10728.04","Status":6,"Type":2},{"OrderID":"45963-345","ShipCountry":"ID","ShipAddress":"14 Dovetail Center","ShipName":"Doyle-West","OrderDate":"10/6/2016","TotalPayment":"$55281.63","Status":2,"Type":3},{"OrderID":"10544-146","ShipCountry":"ID","ShipAddress":"9 6th Drive","ShipName":"Grady-Lakin","OrderDate":"9/20/2017","TotalPayment":"$66457.20","Status":2,"Type":1},{"OrderID":"35356-608","ShipCountry":"CN","ShipAddress":"9854 Namekagon Place","ShipName":"Rath Inc","OrderDate":"8/2/2016","TotalPayment":"$197162.64","Status":6,"Type":3},{"OrderID":"0904-6191","ShipCountry":"NL","ShipAddress":"42576 Springview Street","ShipName":"Leannon Inc","OrderDate":"10/12/2017","TotalPayment":"$134462.25","Status":4,"Type":1},{"OrderID":"0615-0378","ShipCountry":"ID","ShipAddress":"38110 Sutherland Terrace","ShipName":"Lakin, Kozey and Gottlieb","OrderDate":"10/15/2016","TotalPayment":"$1192309.02","Status":6,"Type":3},{"OrderID":"67858-001","ShipCountry":"CN","ShipAddress":"24 Coleman Court","ShipName":"Weber LLC","OrderDate":"7/19/2017","TotalPayment":"$417952.84","Status":6,"Type":1},{"OrderID":"10267-0064","ShipCountry":"AT","ShipAddress":"3978 Thompson Hill","ShipName":"Adams and Sons","OrderDate":"12/21/2017","TotalPayment":"$1048894.70","Status":2,"Type":3},{"OrderID":"36987-3130","ShipCountry":"KR","ShipAddress":"1 Steensland Place","ShipName":"O\'Conner, Hartmann and Bode","OrderDate":"8/16/2017","TotalPayment":"$377719.48","Status":1,"Type":3}]},\n{"RecordID":305,"FirstName":"Chrissy","LastName":"Mairs","Company":"Izio","Email":"cmairs8g@japanpost.jp","Phone":"304-339-6293","Status":2,"Type":1,"Orders":[{"OrderID":"58668-0581","ShipCountry":"KE","ShipAddress":"47 Shoshone Road","ShipName":"Bauch, Thompson and Cartwright","OrderDate":"10/8/2017","TotalPayment":"$194503.29","Status":2,"Type":1},{"OrderID":"11673-417","ShipCountry":"ID","ShipAddress":"5420 Ohio Drive","ShipName":"Reichert, Kshlerin and Kub","OrderDate":"9/5/2017","TotalPayment":"$212951.10","Status":4,"Type":1},{"OrderID":"0268-1524","ShipCountry":"ID","ShipAddress":"33335 Corben Trail","ShipName":"Torphy, Ortiz and Corkery","OrderDate":"9/29/2017","TotalPayment":"$781905.33","Status":6,"Type":1},{"OrderID":"54868-2331","ShipCountry":"MA","ShipAddress":"52 Rockefeller Circle","ShipName":"Rath-Schulist","OrderDate":"7/1/2017","TotalPayment":"$115229.94","Status":1,"Type":1},{"OrderID":"43857-0042","ShipCountry":"UA","ShipAddress":"2 4th Street","ShipName":"Predovic, Monahan and Anderson","OrderDate":"10/7/2016","TotalPayment":"$149203.13","Status":3,"Type":2},{"OrderID":"49643-365","ShipCountry":"CZ","ShipAddress":"3 Towne Park","ShipName":"Reinger LLC","OrderDate":"10/19/2016","TotalPayment":"$731670.33","Status":3,"Type":2},{"OrderID":"0172-5241","ShipCountry":"GR","ShipAddress":"5 Monument Parkway","ShipName":"Larson and Sons","OrderDate":"1/8/2017","TotalPayment":"$916472.01","Status":5,"Type":3},{"OrderID":"55154-1909","ShipCountry":"ZA","ShipAddress":"0263 Coleman Park","ShipName":"Hudson LLC","OrderDate":"2/18/2017","TotalPayment":"$226491.31","Status":2,"Type":2},{"OrderID":"16590-144","ShipCountry":"RU","ShipAddress":"0865 Arrowood Circle","ShipName":"Haley-Larkin","OrderDate":"4/27/2016","TotalPayment":"$541096.25","Status":2,"Type":2},{"OrderID":"55312-946","ShipCountry":"ID","ShipAddress":"98 Graedel Alley","ShipName":"Mertz and Sons","OrderDate":"7/28/2016","TotalPayment":"$592573.29","Status":6,"Type":2}]},\n{"RecordID":306,"FirstName":"Gavan","LastName":"Kiehl","Company":"Skilith","Email":"gkiehl8h@gov.uk","Phone":"762-995-1020","Status":1,"Type":2,"Orders":[{"OrderID":"55312-825","ShipCountry":"NZ","ShipAddress":"050 High Crossing Court","ShipName":"Lowe, Sporer and Moore","OrderDate":"3/11/2017","TotalPayment":"$779368.38","Status":5,"Type":3},{"OrderID":"42291-121","ShipCountry":"RU","ShipAddress":"8 Kinsman Drive","ShipName":"Anderson, Crist and Franecki","OrderDate":"9/29/2016","TotalPayment":"$336359.67","Status":3,"Type":1},{"OrderID":"0536-1004","ShipCountry":"ID","ShipAddress":"43268 Acker Avenue","ShipName":"Cassin-Jacobi","OrderDate":"3/5/2016","TotalPayment":"$71636.91","Status":1,"Type":1},{"OrderID":"34666-021","ShipCountry":"ID","ShipAddress":"229 Westridge Park","ShipName":"Ankunding, Kuhlman and Johns","OrderDate":"1/25/2016","TotalPayment":"$631972.67","Status":2,"Type":1},{"OrderID":"21695-132","ShipCountry":"BR","ShipAddress":"95 Nova Hill","ShipName":"Beahan, Kling and Grant","OrderDate":"7/13/2017","TotalPayment":"$691487.15","Status":1,"Type":3}]},\n{"RecordID":307,"FirstName":"Bordie","LastName":"Statter","Company":"Centizu","Email":"bstatter8i@a8.net","Phone":"900-143-0118","Status":6,"Type":3,"Orders":[{"OrderID":"41250-476","ShipCountry":"CN","ShipAddress":"51273 5th Circle","ShipName":"Doyle Group","OrderDate":"8/7/2017","TotalPayment":"$413292.46","Status":2,"Type":1},{"OrderID":"0378-0372","ShipCountry":"NI","ShipAddress":"8325 Colorado Street","ShipName":"Nikolaus LLC","OrderDate":"10/23/2016","TotalPayment":"$1173223.36","Status":3,"Type":1},{"OrderID":"66336-673","ShipCountry":"CA","ShipAddress":"66450 Saint Paul Crossing","ShipName":"Greenholt-Ondricka","OrderDate":"5/29/2016","TotalPayment":"$877123.48","Status":3,"Type":3},{"OrderID":"76354-205","ShipCountry":"US","ShipAddress":"23387 East Alley","ShipName":"Bednar Group","OrderDate":"6/26/2017","TotalPayment":"$519398.44","Status":2,"Type":3},{"OrderID":"0378-0228","ShipCountry":"CN","ShipAddress":"3961 Bartelt Street","ShipName":"Hyatt Inc","OrderDate":"4/30/2016","TotalPayment":"$283141.43","Status":6,"Type":1},{"OrderID":"0942-6330","ShipCountry":"MZ","ShipAddress":"631 Mandrake Street","ShipName":"Reichert-Jones","OrderDate":"10/9/2017","TotalPayment":"$619164.85","Status":2,"Type":2},{"OrderID":"63833-616","ShipCountry":"PS","ShipAddress":"62 Pierstorff Pass","ShipName":"Willms Inc","OrderDate":"4/8/2017","TotalPayment":"$568559.76","Status":4,"Type":1},{"OrderID":"36987-1393","ShipCountry":"ID","ShipAddress":"04609 Little Fleur Place","ShipName":"Kovacek-Borer","OrderDate":"6/26/2016","TotalPayment":"$577011.38","Status":4,"Type":1},{"OrderID":"55316-318","ShipCountry":"MX","ShipAddress":"5 Hovde Crossing","ShipName":"Goyette-Berge","OrderDate":"7/16/2016","TotalPayment":"$831446.38","Status":3,"Type":1},{"OrderID":"49288-0649","ShipCountry":"MA","ShipAddress":"0943 Badeau Point","ShipName":"Champlin-Schimmel","OrderDate":"4/10/2016","TotalPayment":"$201785.70","Status":5,"Type":1},{"OrderID":"65923-077","ShipCountry":"AT","ShipAddress":"7 Donald Court","ShipName":"Boyer-Torp","OrderDate":"9/21/2017","TotalPayment":"$842665.34","Status":3,"Type":1},{"OrderID":"61919-118","ShipCountry":"CN","ShipAddress":"1207 Delaware Drive","ShipName":"Barrows, Kiehn and Quitzon","OrderDate":"5/29/2016","TotalPayment":"$1140872.88","Status":3,"Type":1},{"OrderID":"60760-279","ShipCountry":"CN","ShipAddress":"15258 Lunder Junction","ShipName":"Wunsch-Kassulke","OrderDate":"10/7/2016","TotalPayment":"$1021350.75","Status":1,"Type":3},{"OrderID":"0093-3010","ShipCountry":"PH","ShipAddress":"221 Cardinal Pass","ShipName":"Gusikowski, Tremblay and O\'Conner","OrderDate":"2/18/2016","TotalPayment":"$826709.00","Status":2,"Type":1}]},\n{"RecordID":308,"FirstName":"Geri","LastName":"Hukin","Company":"Snaptags","Email":"ghukin8j@umich.edu","Phone":"315-384-3095","Status":1,"Type":3,"Orders":[{"OrderID":"0904-0789","ShipCountry":"HR","ShipAddress":"63100 Reinke Pass","ShipName":"Harvey, Weimann and Walter","OrderDate":"10/21/2017","TotalPayment":"$883177.44","Status":6,"Type":2},{"OrderID":"10147-0891","ShipCountry":"VN","ShipAddress":"99084 Susan Way","ShipName":"Considine-Runolfsdottir","OrderDate":"9/7/2017","TotalPayment":"$236803.03","Status":3,"Type":2},{"OrderID":"21695-030","ShipCountry":"AZ","ShipAddress":"635 Marquette Hill","ShipName":"Dietrich Inc","OrderDate":"1/28/2016","TotalPayment":"$959310.86","Status":2,"Type":2},{"OrderID":"52797-020","ShipCountry":"BR","ShipAddress":"05825 Bartelt Plaza","ShipName":"Koch and Sons","OrderDate":"3/14/2017","TotalPayment":"$866617.09","Status":4,"Type":3},{"OrderID":"60344-6001","ShipCountry":"SE","ShipAddress":"984 Harbort Hill","ShipName":"Stroman Inc","OrderDate":"8/6/2016","TotalPayment":"$1147624.75","Status":4,"Type":3},{"OrderID":"68647-197","ShipCountry":"CN","ShipAddress":"2 Sommers Lane","ShipName":"Rutherford LLC","OrderDate":"8/3/2017","TotalPayment":"$1159630.21","Status":3,"Type":2},{"OrderID":"49643-423","ShipCountry":"GM","ShipAddress":"1605 Rutledge Lane","ShipName":"Murphy, Veum and Cole","OrderDate":"12/12/2017","TotalPayment":"$1035802.70","Status":3,"Type":1},{"OrderID":"57815-011","ShipCountry":"HN","ShipAddress":"63134 Gina Pass","ShipName":"Pagac-Miller","OrderDate":"5/7/2017","TotalPayment":"$870877.09","Status":3,"Type":1},{"OrderID":"42982-4461","ShipCountry":"RU","ShipAddress":"4 Waxwing Junction","ShipName":"Brown LLC","OrderDate":"8/9/2017","TotalPayment":"$818041.50","Status":2,"Type":3}]},\n{"RecordID":309,"FirstName":"Gard","LastName":"Ullyott","Company":"Mynte","Email":"gullyott8k@microsoft.com","Phone":"649-149-0674","Status":1,"Type":1,"Orders":[{"OrderID":"49349-588","ShipCountry":"CN","ShipAddress":"457 Ryan Hill","ShipName":"Considine, Pacocha and Russel","OrderDate":"5/15/2017","TotalPayment":"$184861.78","Status":3,"Type":3},{"OrderID":"51009-127","ShipCountry":"RU","ShipAddress":"27 Hudson Drive","ShipName":"Emmerich Group","OrderDate":"9/14/2016","TotalPayment":"$59717.32","Status":3,"Type":1},{"OrderID":"66472-024","ShipCountry":"PH","ShipAddress":"12795 Waxwing Street","ShipName":"Gleichner LLC","OrderDate":"4/24/2016","TotalPayment":"$566963.97","Status":6,"Type":3},{"OrderID":"0363-0070","ShipCountry":"ID","ShipAddress":"27 Moose Park","ShipName":"Nikolaus and Sons","OrderDate":"8/5/2017","TotalPayment":"$650946.40","Status":5,"Type":1},{"OrderID":"53041-412","ShipCountry":"NO","ShipAddress":"61 Gulseth Road","ShipName":"Purdy, Prohaska and McKenzie","OrderDate":"12/14/2017","TotalPayment":"$50533.46","Status":1,"Type":3},{"OrderID":"0904-5572","ShipCountry":"PL","ShipAddress":"362 Eagle Crest Drive","ShipName":"Gibson, Bechtelar and Jacobs","OrderDate":"1/26/2016","TotalPayment":"$228418.32","Status":5,"Type":3},{"OrderID":"55154-6159","ShipCountry":"ID","ShipAddress":"1902 Warbler Place","ShipName":"Lubowitz-Krajcik","OrderDate":"11/15/2017","TotalPayment":"$517298.79","Status":3,"Type":3},{"OrderID":"10812-409","ShipCountry":"CN","ShipAddress":"76054 Chive Junction","ShipName":"King Inc","OrderDate":"12/26/2017","TotalPayment":"$767770.21","Status":6,"Type":3}]},\n{"RecordID":310,"FirstName":"Red","LastName":"MacLure","Company":"Yakitri","Email":"rmaclure8l@comsenz.com","Phone":"999-953-7813","Status":5,"Type":2,"Orders":[{"OrderID":"68703-117","ShipCountry":"MN","ShipAddress":"6 8th Terrace","ShipName":"Mraz, Langworth and Hahn","OrderDate":"1/25/2017","TotalPayment":"$922771.82","Status":4,"Type":2},{"OrderID":"49348-702","ShipCountry":"JP","ShipAddress":"609 Lunder Parkway","ShipName":"Boyer-Greenfelder","OrderDate":"5/16/2017","TotalPayment":"$273015.04","Status":4,"Type":3},{"OrderID":"49204-001","ShipCountry":"PH","ShipAddress":"77 Leroy Drive","ShipName":"Russel-Russel","OrderDate":"12/21/2016","TotalPayment":"$876503.66","Status":1,"Type":3},{"OrderID":"0131-1810","ShipCountry":"YE","ShipAddress":"3865 Reindahl Plaza","ShipName":"Hackett, Nicolas and Pouros","OrderDate":"2/13/2016","TotalPayment":"$848125.74","Status":4,"Type":3},{"OrderID":"67457-108","ShipCountry":"ID","ShipAddress":"4 Eliot Junction","ShipName":"Grimes LLC","OrderDate":"1/14/2016","TotalPayment":"$70401.03","Status":6,"Type":1},{"OrderID":"0363-2529","ShipCountry":"PL","ShipAddress":"2558 Welch Place","ShipName":"Carter Inc","OrderDate":"8/25/2016","TotalPayment":"$516740.73","Status":6,"Type":1},{"OrderID":"68026-241","ShipCountry":"RU","ShipAddress":"05772 Redwing Circle","ShipName":"Kunze LLC","OrderDate":"6/10/2016","TotalPayment":"$119635.20","Status":6,"Type":1},{"OrderID":"43063-014","ShipCountry":"CA","ShipAddress":"9573 Derek Crossing","ShipName":"Weimann LLC","OrderDate":"8/15/2017","TotalPayment":"$1197521.66","Status":4,"Type":1},{"OrderID":"0159-2500","ShipCountry":"PL","ShipAddress":"1 Briar Crest Avenue","ShipName":"Schuppe, Hammes and Breitenberg","OrderDate":"3/7/2016","TotalPayment":"$667446.76","Status":6,"Type":2},{"OrderID":"31645-157","ShipCountry":"PH","ShipAddress":"7 East Crossing","ShipName":"Brekke, Fahey and Fisher","OrderDate":"5/25/2016","TotalPayment":"$916128.90","Status":4,"Type":1}]},\n{"RecordID":311,"FirstName":"Eugenio","LastName":"Parfett","Company":"Jatri","Email":"eparfett8m@geocities.jp","Phone":"773-334-2162","Status":4,"Type":2,"Orders":[{"OrderID":"55711-064","ShipCountry":"CN","ShipAddress":"1895 Monica Alley","ShipName":"Schaefer LLC","OrderDate":"5/11/2016","TotalPayment":"$251421.52","Status":1,"Type":2},{"OrderID":"68828-111","ShipCountry":"CN","ShipAddress":"3 Browning Plaza","ShipName":"Schaefer LLC","OrderDate":"4/12/2016","TotalPayment":"$925764.47","Status":6,"Type":3},{"OrderID":"64893-495","ShipCountry":"JP","ShipAddress":"59908 Rusk Avenue","ShipName":"Stanton Group","OrderDate":"12/11/2017","TotalPayment":"$861910.69","Status":3,"Type":2},{"OrderID":"43857-0119","ShipCountry":"NZ","ShipAddress":"5699 Sutteridge Place","ShipName":"Luettgen, Medhurst and Jerde","OrderDate":"12/2/2017","TotalPayment":"$618701.94","Status":6,"Type":2},{"OrderID":"68462-293","ShipCountry":"NI","ShipAddress":"59 Hintze Parkway","ShipName":"Mueller and Sons","OrderDate":"5/9/2016","TotalPayment":"$190095.51","Status":3,"Type":3},{"OrderID":"63187-016","ShipCountry":"CO","ShipAddress":"43915 Clarendon Street","ShipName":"Lesch Group","OrderDate":"10/26/2016","TotalPayment":"$837483.34","Status":2,"Type":1},{"OrderID":"54569-1889","ShipCountry":"PL","ShipAddress":"5 Annamark Pass","ShipName":"Zieme-Ondricka","OrderDate":"8/15/2016","TotalPayment":"$766942.49","Status":3,"Type":2},{"OrderID":"55315-466","ShipCountry":"SE","ShipAddress":"47 Fieldstone Street","ShipName":"Stroman, Predovic and MacGyver","OrderDate":"11/20/2017","TotalPayment":"$1155352.03","Status":4,"Type":3},{"OrderID":"54868-5412","ShipCountry":"FR","ShipAddress":"04 Rockefeller Park","ShipName":"Reichert Group","OrderDate":"4/18/2017","TotalPayment":"$839692.40","Status":1,"Type":1}]},\n{"RecordID":312,"FirstName":"Maxwell","LastName":"Clucas","Company":"Innotype","Email":"mclucas8n@japanpost.jp","Phone":"525-609-6336","Status":5,"Type":1,"Orders":[{"OrderID":"52567-124","ShipCountry":"US","ShipAddress":"45613 Kennedy Parkway","ShipName":"Kunze, Nienow and Frami","OrderDate":"8/11/2017","TotalPayment":"$307398.57","Status":6,"Type":2},{"OrderID":"44946-1024","ShipCountry":"PH","ShipAddress":"47032 Blue Bill Park Drive","ShipName":"Walsh and Sons","OrderDate":"3/10/2017","TotalPayment":"$195241.57","Status":4,"Type":2},{"OrderID":"76347-125","ShipCountry":"MX","ShipAddress":"82 Prentice Avenue","ShipName":"Davis Group","OrderDate":"6/28/2017","TotalPayment":"$1175101.49","Status":4,"Type":2},{"OrderID":"60913-031","ShipCountry":"PE","ShipAddress":"74 Canary Street","ShipName":"Schiller-Shields","OrderDate":"4/23/2016","TotalPayment":"$456188.46","Status":2,"Type":2},{"OrderID":"49035-015","ShipCountry":"CZ","ShipAddress":"2275 Amoth Place","ShipName":"Kilback-Corkery","OrderDate":"8/19/2017","TotalPayment":"$350970.49","Status":5,"Type":1},{"OrderID":"54868-6212","ShipCountry":"ID","ShipAddress":"322 Manufacturers Center","ShipName":"Carter, Kunze and Konopelski","OrderDate":"12/5/2017","TotalPayment":"$515344.90","Status":2,"Type":2},{"OrderID":"36800-063","ShipCountry":"FR","ShipAddress":"2289 Rockefeller Center","ShipName":"Runolfsson, Cremin and Hammes","OrderDate":"6/25/2017","TotalPayment":"$173328.95","Status":6,"Type":1}]},\n{"RecordID":313,"FirstName":"Neala","LastName":"Darque","Company":"Topiczoom","Email":"ndarque8o@nytimes.com","Phone":"252-980-5741","Status":3,"Type":2,"Orders":[{"OrderID":"60429-205","ShipCountry":"SE","ShipAddress":"7 Mccormick Point","ShipName":"McLaughlin-Waelchi","OrderDate":"10/4/2017","TotalPayment":"$764597.29","Status":2,"Type":1},{"OrderID":"76045-006","ShipCountry":"MN","ShipAddress":"9 Tennyson Point","ShipName":"Doyle Group","OrderDate":"10/24/2016","TotalPayment":"$175321.72","Status":1,"Type":2},{"OrderID":"48951-5070","ShipCountry":"ID","ShipAddress":"28180 Heffernan Lane","ShipName":"Champlin LLC","OrderDate":"11/18/2017","TotalPayment":"$576901.78","Status":1,"Type":2},{"OrderID":"43269-670","ShipCountry":"US","ShipAddress":"764 Corscot Way","ShipName":"Beer Inc","OrderDate":"4/28/2016","TotalPayment":"$852967.10","Status":1,"Type":1},{"OrderID":"57687-906","ShipCountry":"FR","ShipAddress":"85 Ramsey Hill","ShipName":"Romaguera LLC","OrderDate":"2/8/2017","TotalPayment":"$166482.89","Status":3,"Type":2},{"OrderID":"30142-243","ShipCountry":"CN","ShipAddress":"14 Roxbury Point","ShipName":"Dietrich, Tromp and Lakin","OrderDate":"3/9/2016","TotalPayment":"$898210.76","Status":6,"Type":2},{"OrderID":"68016-224","ShipCountry":"LK","ShipAddress":"8025 Meadow Ridge Terrace","ShipName":"Predovic, Abernathy and Mitchell","OrderDate":"1/12/2016","TotalPayment":"$1056395.61","Status":1,"Type":2},{"OrderID":"44911-0121","ShipCountry":"ID","ShipAddress":"357 Lerdahl Crossing","ShipName":"Greenfelder, Metz and Okuneva","OrderDate":"11/3/2016","TotalPayment":"$589020.95","Status":3,"Type":1},{"OrderID":"24623-049","ShipCountry":"PH","ShipAddress":"914 Truax Alley","ShipName":"Gottlieb, Champlin and Koch","OrderDate":"1/22/2016","TotalPayment":"$857670.92","Status":2,"Type":2},{"OrderID":"37808-495","ShipCountry":"RU","ShipAddress":"2403 Namekagon Plaza","ShipName":"Gerlach LLC","OrderDate":"5/12/2017","TotalPayment":"$362763.59","Status":4,"Type":3},{"OrderID":"57520-0038","ShipCountry":"LU","ShipAddress":"251 School Avenue","ShipName":"Bartell, Krajcik and Jacobson","OrderDate":"6/28/2016","TotalPayment":"$347214.03","Status":5,"Type":1},{"OrderID":"41250-154","ShipCountry":"JP","ShipAddress":"94 Ridgeway Center","ShipName":"Bauch, Paucek and Lindgren","OrderDate":"9/4/2017","TotalPayment":"$596945.86","Status":3,"Type":2}]},\n{"RecordID":314,"FirstName":"Alexandros","LastName":"Wankel","Company":"Zava","Email":"awankel8p@bravesites.com","Phone":"229-711-8704","Status":2,"Type":2,"Orders":[{"OrderID":"42507-897","ShipCountry":"NC","ShipAddress":"941 Golf Road","ShipName":"Lowe-Deckow","OrderDate":"7/4/2016","TotalPayment":"$200440.86","Status":3,"Type":3},{"OrderID":"0904-5763","ShipCountry":"CN","ShipAddress":"986 Pearson Alley","ShipName":"Kshlerin LLC","OrderDate":"2/23/2017","TotalPayment":"$10262.84","Status":5,"Type":1},{"OrderID":"68788-0179","ShipCountry":"DO","ShipAddress":"712 Waubesa Plaza","ShipName":"O\'Reilly, Terry and Hansen","OrderDate":"6/24/2016","TotalPayment":"$562313.16","Status":1,"Type":2},{"OrderID":"64117-208","ShipCountry":"MT","ShipAddress":"859 Elka Drive","ShipName":"Fritsch Inc","OrderDate":"6/18/2017","TotalPayment":"$1178199.44","Status":3,"Type":1},{"OrderID":"0409-2053","ShipCountry":"SD","ShipAddress":"8 Bayside Lane","ShipName":"Christiansen Inc","OrderDate":"9/21/2017","TotalPayment":"$46013.96","Status":6,"Type":2},{"OrderID":"49967-295","ShipCountry":"PL","ShipAddress":"912 Knutson Park","ShipName":"Ratke LLC","OrderDate":"6/29/2017","TotalPayment":"$311575.83","Status":3,"Type":3},{"OrderID":"52959-008","ShipCountry":"TH","ShipAddress":"18 Old Shore Parkway","ShipName":"Mann-Bosco","OrderDate":"10/14/2017","TotalPayment":"$953358.16","Status":1,"Type":3}]},\n{"RecordID":315,"FirstName":"Bianka","LastName":"Lawry","Company":"Lazzy","Email":"blawry8q@guardian.co.uk","Phone":"351-736-6828","Status":3,"Type":2,"Orders":[{"OrderID":"0378-0723","ShipCountry":"ID","ShipAddress":"1316 Dorton Crossing","ShipName":"Zemlak Inc","OrderDate":"9/12/2017","TotalPayment":"$494997.16","Status":1,"Type":2},{"OrderID":"60681-1103","ShipCountry":"RU","ShipAddress":"7631 Monument Plaza","ShipName":"Schuppe, Hirthe and Willms","OrderDate":"8/9/2017","TotalPayment":"$603260.19","Status":2,"Type":1},{"OrderID":"68788-9212","ShipCountry":"BR","ShipAddress":"188 Evergreen Road","ShipName":"Quitzon Inc","OrderDate":"1/11/2017","TotalPayment":"$929199.56","Status":2,"Type":3},{"OrderID":"14537-408","ShipCountry":"FR","ShipAddress":"61 Lawn Crossing","ShipName":"Towne-Ondricka","OrderDate":"4/8/2016","TotalPayment":"$955762.50","Status":2,"Type":3},{"OrderID":"0378-0080","ShipCountry":"PL","ShipAddress":"82786 Sherman Pass","ShipName":"Heller and Sons","OrderDate":"9/30/2017","TotalPayment":"$759515.15","Status":3,"Type":2}]},\n{"RecordID":316,"FirstName":"Krisha","LastName":"Readie","Company":"Flashset","Email":"kreadie8r@marketplace.net","Phone":"495-724-7500","Status":6,"Type":1,"Orders":[{"OrderID":"57520-0614","ShipCountry":"PE","ShipAddress":"0228 Namekagon Road","ShipName":"Greenholt Inc","OrderDate":"10/25/2017","TotalPayment":"$743610.16","Status":4,"Type":2},{"OrderID":"58411-179","ShipCountry":"MZ","ShipAddress":"57620 Valley Edge Parkway","ShipName":"Blanda-Thiel","OrderDate":"1/6/2016","TotalPayment":"$1074951.10","Status":5,"Type":1},{"OrderID":"42571-112","ShipCountry":"CN","ShipAddress":"2 Granby Street","ShipName":"Gorczany-Marks","OrderDate":"2/18/2016","TotalPayment":"$494784.78","Status":4,"Type":2},{"OrderID":"0054-0079","ShipCountry":"RU","ShipAddress":"317 Lakewood Alley","ShipName":"Sawayn, Kertzmann and Cartwright","OrderDate":"7/15/2017","TotalPayment":"$1079073.56","Status":3,"Type":2},{"OrderID":"54738-904","ShipCountry":"US","ShipAddress":"223 Dryden Park","ShipName":"Jerde, Turner and Walker","OrderDate":"3/3/2017","TotalPayment":"$421220.21","Status":6,"Type":3},{"OrderID":"24236-484","ShipCountry":"CN","ShipAddress":"260 Ilene Lane","ShipName":"Sporer, Medhurst and Legros","OrderDate":"6/1/2016","TotalPayment":"$127894.92","Status":6,"Type":2},{"OrderID":"41163-180","ShipCountry":"SE","ShipAddress":"2 Cardinal Junction","ShipName":"Davis, Hudson and Mertz","OrderDate":"1/6/2016","TotalPayment":"$942725.09","Status":2,"Type":3},{"OrderID":"49348-080","ShipCountry":"ID","ShipAddress":"6 Banding Court","ShipName":"McLaughlin-Schaden","OrderDate":"3/10/2017","TotalPayment":"$596546.63","Status":2,"Type":2},{"OrderID":"55154-0355","ShipCountry":"PH","ShipAddress":"7 Barby Junction","ShipName":"Sauer-Tillman","OrderDate":"9/24/2017","TotalPayment":"$712159.85","Status":6,"Type":3},{"OrderID":"30142-344","ShipCountry":"BR","ShipAddress":"26312 Armistice Terrace","ShipName":"Emmerich, Hauck and Schimmel","OrderDate":"3/16/2017","TotalPayment":"$992802.71","Status":5,"Type":1},{"OrderID":"31645-152","ShipCountry":"AM","ShipAddress":"95065 Muir Plaza","ShipName":"Hane-Friesen","OrderDate":"7/16/2017","TotalPayment":"$937493.65","Status":6,"Type":1},{"OrderID":"59762-6691","ShipCountry":"CN","ShipAddress":"048 Badeau Center","ShipName":"Lang, Koelpin and Gerlach","OrderDate":"2/20/2016","TotalPayment":"$270636.18","Status":5,"Type":1},{"OrderID":"49702-225","ShipCountry":"RS","ShipAddress":"160 Mendota Pass","ShipName":"Dare, Rau and Prosacco","OrderDate":"6/26/2017","TotalPayment":"$356133.37","Status":3,"Type":2},{"OrderID":"67172-113","ShipCountry":"JP","ShipAddress":"69 Ryan Plaza","ShipName":"Ryan-Cole","OrderDate":"11/26/2016","TotalPayment":"$909910.86","Status":3,"Type":1},{"OrderID":"63459-177","ShipCountry":"CN","ShipAddress":"00280 Delladonna Place","ShipName":"Batz, Thompson and Kub","OrderDate":"1/17/2016","TotalPayment":"$1185397.58","Status":2,"Type":2},{"OrderID":"67457-177","ShipCountry":"PH","ShipAddress":"9 Reinke Avenue","ShipName":"Hessel Inc","OrderDate":"4/8/2016","TotalPayment":"$645250.45","Status":5,"Type":1}]},\n{"RecordID":317,"FirstName":"Julianna","LastName":"Fintoph","Company":"Kare","Email":"jfintoph8s@istockphoto.com","Phone":"240-865-2909","Status":6,"Type":3,"Orders":[{"OrderID":"0615-7831","ShipCountry":"CN","ShipAddress":"35 Shopko Crossing","ShipName":"Corwin-White","OrderDate":"8/4/2016","TotalPayment":"$156930.08","Status":4,"Type":2},{"OrderID":"61957-0550","ShipCountry":"ID","ShipAddress":"38 Harper Hill","ShipName":"Morar, Murphy and Altenwerth","OrderDate":"6/10/2016","TotalPayment":"$589028.66","Status":1,"Type":1},{"OrderID":"13734-121","ShipCountry":"UA","ShipAddress":"2086 Springview Point","ShipName":"Schimmel-Flatley","OrderDate":"11/28/2017","TotalPayment":"$1020266.71","Status":5,"Type":1},{"OrderID":"21695-216","ShipCountry":"CN","ShipAddress":"14 Center Alley","ShipName":"Kuvalis-Gibson","OrderDate":"8/5/2016","TotalPayment":"$852347.59","Status":5,"Type":2},{"OrderID":"68788-9892","ShipCountry":"CN","ShipAddress":"5375 Erie Court","ShipName":"Farrell LLC","OrderDate":"10/20/2017","TotalPayment":"$607349.40","Status":1,"Type":2},{"OrderID":"68828-054","ShipCountry":"HR","ShipAddress":"813 Gulseth Street","ShipName":"Keebler, Goodwin and Farrell","OrderDate":"3/18/2016","TotalPayment":"$174268.94","Status":1,"Type":3},{"OrderID":"55154-9364","ShipCountry":"TH","ShipAddress":"03 Northridge Hill","ShipName":"Batz Inc","OrderDate":"11/17/2017","TotalPayment":"$542528.44","Status":2,"Type":2},{"OrderID":"13537-408","ShipCountry":"MX","ShipAddress":"304 Mendota Plaza","ShipName":"Lemke, Weimann and O\'Kon","OrderDate":"3/25/2017","TotalPayment":"$675847.62","Status":1,"Type":2},{"OrderID":"58411-196","ShipCountry":"PL","ShipAddress":"78 Park Meadow Pass","ShipName":"Nikolaus LLC","OrderDate":"5/21/2017","TotalPayment":"$1136578.42","Status":3,"Type":3},{"OrderID":"60681-3003","ShipCountry":"HR","ShipAddress":"919 Truax Circle","ShipName":"Bashirian-Gaylord","OrderDate":"5/12/2017","TotalPayment":"$148883.21","Status":5,"Type":3},{"OrderID":"27808-002","ShipCountry":"UG","ShipAddress":"59311 Hanson Park","ShipName":"Wiegand-Batz","OrderDate":"12/17/2016","TotalPayment":"$310664.45","Status":2,"Type":3},{"OrderID":"41163-397","ShipCountry":"IR","ShipAddress":"902 Rutledge Place","ShipName":"Trantow Inc","OrderDate":"9/22/2017","TotalPayment":"$149981.04","Status":1,"Type":1},{"OrderID":"0135-0430","ShipCountry":"CA","ShipAddress":"37 Monica Pass","ShipName":"Hodkiewicz-Stamm","OrderDate":"2/1/2016","TotalPayment":"$470522.01","Status":2,"Type":1},{"OrderID":"40104-263","ShipCountry":"CM","ShipAddress":"4 Dwight Street","ShipName":"Boyer, Zulauf and Treutel","OrderDate":"7/6/2016","TotalPayment":"$212556.22","Status":4,"Type":1},{"OrderID":"50419-456","ShipCountry":"PL","ShipAddress":"1 Schiller Circle","ShipName":"Robel, Haag and Crist","OrderDate":"6/3/2017","TotalPayment":"$1081981.74","Status":2,"Type":3},{"OrderID":"63824-395","ShipCountry":"PH","ShipAddress":"32905 Lukken Parkway","ShipName":"McGlynn, Reichel and Barton","OrderDate":"2/21/2016","TotalPayment":"$86769.10","Status":2,"Type":1},{"OrderID":"49825-123","ShipCountry":"PL","ShipAddress":"230 Heath Junction","ShipName":"Hoeger LLC","OrderDate":"2/17/2017","TotalPayment":"$170852.83","Status":5,"Type":3},{"OrderID":"58232-4021","ShipCountry":"CN","ShipAddress":"587 Cherokee Trail","ShipName":"Wehner Group","OrderDate":"10/18/2016","TotalPayment":"$1020210.79","Status":2,"Type":3}]},\n{"RecordID":318,"FirstName":"Bree","LastName":"Mariot","Company":"Trilith","Email":"bmariot8t@photobucket.com","Phone":"968-173-1083","Status":2,"Type":2,"Orders":[{"OrderID":"16714-404","ShipCountry":"TH","ShipAddress":"507 Mcbride Parkway","ShipName":"McKenzie-Konopelski","OrderDate":"5/4/2017","TotalPayment":"$854737.75","Status":2,"Type":2},{"OrderID":"13734-015","ShipCountry":"NG","ShipAddress":"69936 Fallview Point","ShipName":"Tromp LLC","OrderDate":"10/29/2017","TotalPayment":"$822174.82","Status":3,"Type":1},{"OrderID":"41163-450","ShipCountry":"PT","ShipAddress":"3226 Huxley Parkway","ShipName":"Hane, Swift and Lynch","OrderDate":"4/1/2017","TotalPayment":"$883588.48","Status":2,"Type":3},{"OrderID":"68382-651","ShipCountry":"CN","ShipAddress":"354 1st Street","ShipName":"Halvorson Inc","OrderDate":"7/7/2017","TotalPayment":"$467483.39","Status":5,"Type":2},{"OrderID":"24670-0001","ShipCountry":"GT","ShipAddress":"57 Duke Court","ShipName":"White, Ruecker and Murphy","OrderDate":"1/14/2017","TotalPayment":"$161868.82","Status":3,"Type":2},{"OrderID":"51079-076","ShipCountry":"CZ","ShipAddress":"63533 Continental Plaza","ShipName":"Braun-Wiza","OrderDate":"6/28/2016","TotalPayment":"$1001811.78","Status":3,"Type":1},{"OrderID":"0093-2049","ShipCountry":"JP","ShipAddress":"48 Green Court","ShipName":"Leffler-Kohler","OrderDate":"2/12/2017","TotalPayment":"$352888.11","Status":6,"Type":2},{"OrderID":"54868-5075","ShipCountry":"CN","ShipAddress":"04098 International Alley","ShipName":"Schamberger and Sons","OrderDate":"5/18/2017","TotalPayment":"$509278.64","Status":6,"Type":3}]},\n{"RecordID":319,"FirstName":"Millie","LastName":"Shilstone","Company":"Babbleopia","Email":"mshilstone8u@tmall.com","Phone":"171-598-1450","Status":6,"Type":3,"Orders":[{"OrderID":"45567-0455","ShipCountry":"BR","ShipAddress":"6 Monument Way","ShipName":"Marquardt LLC","OrderDate":"3/6/2016","TotalPayment":"$726366.51","Status":6,"Type":1},{"OrderID":"37012-852","ShipCountry":"FR","ShipAddress":"2907 Dennis Parkway","ShipName":"Johnson-Farrell","OrderDate":"6/9/2017","TotalPayment":"$591574.35","Status":5,"Type":2},{"OrderID":"52533-106","ShipCountry":"GR","ShipAddress":"20327 Garrison Drive","ShipName":"O\'Reilly-Mante","OrderDate":"4/5/2016","TotalPayment":"$780691.84","Status":5,"Type":3},{"OrderID":"63629-3321","ShipCountry":"CN","ShipAddress":"70865 Spenser Terrace","ShipName":"Crona-Blick","OrderDate":"12/3/2016","TotalPayment":"$784585.34","Status":3,"Type":3},{"OrderID":"63146-101","ShipCountry":"AF","ShipAddress":"72 Summer Ridge Place","ShipName":"Leuschke-Schuster","OrderDate":"5/12/2017","TotalPayment":"$182332.49","Status":3,"Type":2},{"OrderID":"21695-037","ShipCountry":"RU","ShipAddress":"08 Thompson Drive","ShipName":"Raynor-Larkin","OrderDate":"4/18/2017","TotalPayment":"$571697.31","Status":2,"Type":1},{"OrderID":"11695-1436","ShipCountry":"SI","ShipAddress":"1967 Pond Alley","ShipName":"Williamson-Botsford","OrderDate":"12/5/2016","TotalPayment":"$674075.34","Status":1,"Type":1},{"OrderID":"42806-048","ShipCountry":"AL","ShipAddress":"4949 Corry Road","ShipName":"Davis-Wisozk","OrderDate":"7/19/2016","TotalPayment":"$1183537.41","Status":3,"Type":1}]},\n{"RecordID":320,"FirstName":"Molli","LastName":"Garton","Company":"Skiptube","Email":"mgarton8v@washingtonpost.com","Phone":"306-184-4274","Status":2,"Type":3,"Orders":[{"OrderID":"67510-0083","ShipCountry":"DE","ShipAddress":"50 Nelson Crossing","ShipName":"Rau Inc","OrderDate":"1/19/2017","TotalPayment":"$66478.49","Status":6,"Type":3},{"OrderID":"58118-2520","ShipCountry":"BR","ShipAddress":"7 Thackeray Avenue","ShipName":"Tromp-Kreiger","OrderDate":"11/8/2016","TotalPayment":"$1100818.58","Status":5,"Type":2},{"OrderID":"12634-849","ShipCountry":"HR","ShipAddress":"338 Rusk Court","ShipName":"Hermiston, Gerlach and Towne","OrderDate":"5/24/2016","TotalPayment":"$1145951.38","Status":2,"Type":2},{"OrderID":"0781-7137","ShipCountry":"CZ","ShipAddress":"71722 Scott Place","ShipName":"Roberts-Funk","OrderDate":"6/4/2017","TotalPayment":"$665660.73","Status":5,"Type":3},{"OrderID":"65862-491","ShipCountry":"PE","ShipAddress":"11140 Bluejay Hill","ShipName":"Gislason-Shanahan","OrderDate":"10/24/2016","TotalPayment":"$286521.53","Status":4,"Type":1},{"OrderID":"60505-3255","ShipCountry":"UA","ShipAddress":"14678 Sauthoff Road","ShipName":"Krajcik-Koelpin","OrderDate":"5/4/2016","TotalPayment":"$297218.72","Status":1,"Type":3},{"OrderID":"63039-1002","ShipCountry":"CN","ShipAddress":"74 4th Trail","ShipName":"Braun and Sons","OrderDate":"6/5/2016","TotalPayment":"$1107893.17","Status":2,"Type":3},{"OrderID":"0496-0752","ShipCountry":"BR","ShipAddress":"13053 Becker Plaza","ShipName":"Mohr LLC","OrderDate":"2/8/2016","TotalPayment":"$28494.27","Status":6,"Type":3},{"OrderID":"48951-9009","ShipCountry":"VN","ShipAddress":"3763 Warrior Hill","ShipName":"Wilderman LLC","OrderDate":"9/6/2016","TotalPayment":"$611206.00","Status":6,"Type":1},{"OrderID":"0363-1676","ShipCountry":"CN","ShipAddress":"035 Veith Way","ShipName":"Hayes, Ledner and Conroy","OrderDate":"7/9/2016","TotalPayment":"$545476.50","Status":6,"Type":1},{"OrderID":"0363-0060","ShipCountry":"CN","ShipAddress":"51 Almo Place","ShipName":"Wunsch and Sons","OrderDate":"1/15/2017","TotalPayment":"$340269.42","Status":5,"Type":3},{"OrderID":"58503-049","ShipCountry":"IR","ShipAddress":"589 Harper Parkway","ShipName":"Anderson-White","OrderDate":"9/5/2017","TotalPayment":"$194518.41","Status":6,"Type":3},{"OrderID":"49348-361","ShipCountry":"US","ShipAddress":"203 Myrtle Court","ShipName":"Reichert LLC","OrderDate":"3/12/2016","TotalPayment":"$1199954.20","Status":5,"Type":1},{"OrderID":"16590-140","ShipCountry":"MX","ShipAddress":"85 Esch Hill","ShipName":"Brakus, Kuvalis and Bosco","OrderDate":"2/1/2017","TotalPayment":"$124561.55","Status":2,"Type":2},{"OrderID":"17478-120","ShipCountry":"PT","ShipAddress":"326 Autumn Leaf Way","ShipName":"Adams, Ebert and Hoppe","OrderDate":"12/9/2017","TotalPayment":"$508945.40","Status":6,"Type":3},{"OrderID":"68745-1145","ShipCountry":"CN","ShipAddress":"91 Manufacturers Point","ShipName":"Fisher, Parker and Hickle","OrderDate":"1/19/2016","TotalPayment":"$1121382.45","Status":2,"Type":3},{"OrderID":"62713-814","ShipCountry":"GN","ShipAddress":"4 Brentwood Alley","ShipName":"Williamson LLC","OrderDate":"1/10/2017","TotalPayment":"$646656.75","Status":2,"Type":1}]},\n{"RecordID":321,"FirstName":"Axe","LastName":"Loudyan","Company":"Dynabox","Email":"aloudyan8w@narod.ru","Phone":"401-862-7429","Status":1,"Type":1,"Orders":[{"OrderID":"10019-641","ShipCountry":"SE","ShipAddress":"2995 Charing Cross Avenue","ShipName":"West, Dare and Williamson","OrderDate":"8/3/2016","TotalPayment":"$747155.54","Status":6,"Type":3},{"OrderID":"65862-185","ShipCountry":"CN","ShipAddress":"3 Toban Avenue","ShipName":"Littel-Brekke","OrderDate":"3/11/2017","TotalPayment":"$222222.55","Status":4,"Type":2},{"OrderID":"61722-081","ShipCountry":"IE","ShipAddress":"547 Kingsford Lane","ShipName":"Ernser Group","OrderDate":"5/21/2016","TotalPayment":"$653686.19","Status":4,"Type":1},{"OrderID":"0591-0862","ShipCountry":"RU","ShipAddress":"43 Kinsman Alley","ShipName":"Brakus and Sons","OrderDate":"2/16/2016","TotalPayment":"$797915.20","Status":5,"Type":3},{"OrderID":"36987-2730","ShipCountry":"CZ","ShipAddress":"25 Westridge Crossing","ShipName":"Casper-Huel","OrderDate":"1/1/2017","TotalPayment":"$1139637.98","Status":6,"Type":2},{"OrderID":"53808-0967","ShipCountry":"CN","ShipAddress":"458 Messerschmidt Terrace","ShipName":"Maggio, Mayert and Altenwerth","OrderDate":"8/25/2017","TotalPayment":"$568125.70","Status":2,"Type":3},{"OrderID":"47202-1404","ShipCountry":"GT","ShipAddress":"7 Mendota Circle","ShipName":"Emmerich, Skiles and Hintz","OrderDate":"4/24/2016","TotalPayment":"$1097730.68","Status":1,"Type":1},{"OrderID":"65517-1006","ShipCountry":"CD","ShipAddress":"001 Spohn Drive","ShipName":"Greenholt and Sons","OrderDate":"2/24/2017","TotalPayment":"$550426.75","Status":5,"Type":3},{"OrderID":"36987-1612","ShipCountry":"ID","ShipAddress":"58 Dahle Lane","ShipName":"Christiansen LLC","OrderDate":"4/11/2016","TotalPayment":"$535942.83","Status":4,"Type":2},{"OrderID":"49609-102","ShipCountry":"TH","ShipAddress":"0408 Welch Parkway","ShipName":"Champlin-Bogisich","OrderDate":"1/4/2016","TotalPayment":"$435625.48","Status":3,"Type":3},{"OrderID":"51769-615","ShipCountry":"IR","ShipAddress":"4 Graceland Way","ShipName":"Stanton, Bahringer and Armstrong","OrderDate":"9/26/2016","TotalPayment":"$1131486.51","Status":6,"Type":1},{"OrderID":"55154-8294","ShipCountry":"NC","ShipAddress":"03 Hagan Terrace","ShipName":"Lemke-Schroeder","OrderDate":"10/1/2016","TotalPayment":"$1189322.24","Status":6,"Type":3},{"OrderID":"0173-0388","ShipCountry":"CN","ShipAddress":"79 Bartillon Terrace","ShipName":"Kuhlman-Zieme","OrderDate":"7/15/2017","TotalPayment":"$952684.42","Status":2,"Type":2},{"OrderID":"10671-011","ShipCountry":"CN","ShipAddress":"073 Russell Avenue","ShipName":"Nienow and Sons","OrderDate":"12/21/2017","TotalPayment":"$59264.10","Status":1,"Type":2},{"OrderID":"51367-009","ShipCountry":"CO","ShipAddress":"55995 Westerfield Center","ShipName":"Dare and Sons","OrderDate":"5/25/2017","TotalPayment":"$764705.34","Status":5,"Type":1},{"OrderID":"52125-157","ShipCountry":"PE","ShipAddress":"0 Sutteridge Parkway","ShipName":"Feil LLC","OrderDate":"7/22/2016","TotalPayment":"$176632.30","Status":6,"Type":1},{"OrderID":"54838-548","ShipCountry":"PL","ShipAddress":"6 Hooker Crossing","ShipName":"Berge-Satterfield","OrderDate":"9/2/2016","TotalPayment":"$437988.45","Status":5,"Type":1},{"OrderID":"53808-0386","ShipCountry":"AF","ShipAddress":"52 Dunning Parkway","ShipName":"Bechtelar, Bahringer and Heaney","OrderDate":"10/8/2016","TotalPayment":"$348299.58","Status":2,"Type":2}]},\n{"RecordID":322,"FirstName":"Tamma","LastName":"Caroline","Company":"Livepath","Email":"tcaroline8x@merriam-webster.com","Phone":"413-923-2588","Status":5,"Type":1,"Orders":[{"OrderID":"41250-248","ShipCountry":"IL","ShipAddress":"2303 Barby Crossing","ShipName":"Heathcote, Heidenreich and Streich","OrderDate":"11/26/2016","TotalPayment":"$107994.91","Status":1,"Type":3},{"OrderID":"30142-001","ShipCountry":"NG","ShipAddress":"4 Fremont Way","ShipName":"Upton Group","OrderDate":"6/22/2017","TotalPayment":"$904609.27","Status":4,"Type":3},{"OrderID":"21695-709","ShipCountry":"ID","ShipAddress":"4696 Artisan Lane","ShipName":"Will LLC","OrderDate":"1/11/2016","TotalPayment":"$56626.03","Status":6,"Type":1},{"OrderID":"68788-9520","ShipCountry":"PT","ShipAddress":"90 Claremont Drive","ShipName":"Parker, Douglas and Zieme","OrderDate":"8/10/2017","TotalPayment":"$1003638.57","Status":2,"Type":2},{"OrderID":"67542-010","ShipCountry":"MN","ShipAddress":"6 Pleasure Junction","ShipName":"Koelpin-Stehr","OrderDate":"6/3/2016","TotalPayment":"$501962.68","Status":1,"Type":3},{"OrderID":"0185-0017","ShipCountry":"PT","ShipAddress":"53 Gulseth Circle","ShipName":"Simonis, Nolan and Wyman","OrderDate":"12/15/2017","TotalPayment":"$805799.74","Status":2,"Type":1},{"OrderID":"41250-866","ShipCountry":"UA","ShipAddress":"502 Grover Parkway","ShipName":"Morar Group","OrderDate":"10/22/2016","TotalPayment":"$744354.45","Status":4,"Type":1},{"OrderID":"67112-401","ShipCountry":"GR","ShipAddress":"37299 Kropf Alley","ShipName":"Kling, Swaniawski and Keeling","OrderDate":"5/11/2017","TotalPayment":"$910211.34","Status":1,"Type":1},{"OrderID":"10742-0204","ShipCountry":"ID","ShipAddress":"85 Lindbergh Court","ShipName":"Hand, Rohan and Jerde","OrderDate":"6/28/2016","TotalPayment":"$944844.32","Status":5,"Type":3}]},\n{"RecordID":323,"FirstName":"Winni","LastName":"Haughton","Company":"Voonix","Email":"whaughton8y@ameblo.jp","Phone":"216-215-6182","Status":5,"Type":2,"Orders":[{"OrderID":"42291-834","ShipCountry":"ID","ShipAddress":"0900 Sauthoff Plaza","ShipName":"Bartoletti LLC","OrderDate":"12/14/2017","TotalPayment":"$309063.51","Status":6,"Type":2},{"OrderID":"0268-0879","ShipCountry":"PT","ShipAddress":"8 Meadow Ridge Park","ShipName":"Friesen, Bechtelar and Reinger","OrderDate":"4/21/2016","TotalPayment":"$883586.17","Status":5,"Type":3},{"OrderID":"70253-025","ShipCountry":"CN","ShipAddress":"48 Corry Point","ShipName":"Oberbrunner and Sons","OrderDate":"5/1/2016","TotalPayment":"$491569.44","Status":2,"Type":2},{"OrderID":"58930-039","ShipCountry":"BR","ShipAddress":"30 Del Mar Pass","ShipName":"Olson-Rice","OrderDate":"6/19/2017","TotalPayment":"$375138.70","Status":5,"Type":2},{"OrderID":"35356-848","ShipCountry":"GR","ShipAddress":"550 Lien Avenue","ShipName":"Brekke-Hamill","OrderDate":"6/30/2016","TotalPayment":"$547084.42","Status":1,"Type":1},{"OrderID":"0074-4317","ShipCountry":"ID","ShipAddress":"79 Jackson Junction","ShipName":"Herzog LLC","OrderDate":"5/13/2016","TotalPayment":"$477330.98","Status":6,"Type":3},{"OrderID":"53389-562","ShipCountry":"ID","ShipAddress":"4 Glendale Terrace","ShipName":"Cormier Inc","OrderDate":"3/11/2017","TotalPayment":"$1104276.41","Status":2,"Type":2}]},\n{"RecordID":324,"FirstName":"Madlin","LastName":"Rimell","Company":"Yoveo","Email":"mrimell8z@sakura.ne.jp","Phone":"964-414-4046","Status":2,"Type":1,"Orders":[{"OrderID":"47781-306","ShipCountry":"RU","ShipAddress":"072 Dawn Parkway","ShipName":"Goldner-Koss","OrderDate":"7/15/2016","TotalPayment":"$684766.55","Status":1,"Type":3},{"OrderID":"50458-594","ShipCountry":"HR","ShipAddress":"32 Division Circle","ShipName":"Daniel, Schulist and Gleichner","OrderDate":"1/25/2016","TotalPayment":"$1016454.78","Status":1,"Type":3},{"OrderID":"55289-135","ShipCountry":"US","ShipAddress":"8 Hazelcrest Road","ShipName":"Thiel-Lebsack","OrderDate":"3/27/2017","TotalPayment":"$965107.72","Status":5,"Type":3},{"OrderID":"54131-001","ShipCountry":"US","ShipAddress":"81 School Road","ShipName":"Fadel, Welch and Borer","OrderDate":"3/22/2016","TotalPayment":"$1199081.90","Status":1,"Type":3},{"OrderID":"67046-274","ShipCountry":"PH","ShipAddress":"1590 Oneill Court","ShipName":"Weber-Smith","OrderDate":"7/8/2016","TotalPayment":"$578826.11","Status":5,"Type":1},{"OrderID":"13537-040","ShipCountry":"BR","ShipAddress":"431 Anzinger Drive","ShipName":"Jakubowski-Daugherty","OrderDate":"12/31/2016","TotalPayment":"$49437.53","Status":3,"Type":3},{"OrderID":"61957-1103","ShipCountry":"IT","ShipAddress":"414 Farmco Crossing","ShipName":"Waters-Shanahan","OrderDate":"4/20/2017","TotalPayment":"$560785.82","Status":1,"Type":2},{"OrderID":"57520-0368","ShipCountry":"CN","ShipAddress":"2 Truax Pass","ShipName":"Ritchie-Smitham","OrderDate":"7/25/2017","TotalPayment":"$383848.35","Status":5,"Type":3},{"OrderID":"43857-0272","ShipCountry":"IR","ShipAddress":"81620 Mayer Street","ShipName":"Yundt, Durgan and Johnson","OrderDate":"12/28/2016","TotalPayment":"$145904.43","Status":2,"Type":2},{"OrderID":"0091-3725","ShipCountry":"LV","ShipAddress":"02374 Blue Bill Park Place","ShipName":"Hackett Inc","OrderDate":"7/17/2016","TotalPayment":"$234954.27","Status":3,"Type":2},{"OrderID":"11523-0165","ShipCountry":"CN","ShipAddress":"5759 Novick Parkway","ShipName":"D\'Amore-Schuster","OrderDate":"8/31/2016","TotalPayment":"$544399.73","Status":1,"Type":3},{"OrderID":"14049-830","ShipCountry":"ID","ShipAddress":"6 Commercial Street","ShipName":"Gleichner, Walter and Cummerata","OrderDate":"1/7/2017","TotalPayment":"$92056.23","Status":5,"Type":3}]},\n{"RecordID":325,"FirstName":"Salmon","LastName":"Tankus","Company":"Skiptube","Email":"stankus90@deviantart.com","Phone":"208-824-6841","Status":1,"Type":3,"Orders":[{"OrderID":"52389-627","ShipCountry":"CN","ShipAddress":"865 Dayton Point","ShipName":"Smith-Dickinson","OrderDate":"8/25/2017","TotalPayment":"$1186999.02","Status":3,"Type":2},{"OrderID":"61312-002","ShipCountry":"PA","ShipAddress":"31800 Dixon Trail","ShipName":"Goldner, Windler and Gleason","OrderDate":"1/28/2016","TotalPayment":"$320789.78","Status":1,"Type":1},{"OrderID":"68462-343","ShipCountry":"DE","ShipAddress":"069 Browning Place","ShipName":"Lynch, Bergnaum and Ernser","OrderDate":"4/22/2017","TotalPayment":"$968208.80","Status":6,"Type":3},{"OrderID":"17478-514","ShipCountry":"MX","ShipAddress":"594 American Drive","ShipName":"Little-Kling","OrderDate":"6/30/2016","TotalPayment":"$511246.89","Status":2,"Type":2},{"OrderID":"54868-6088","ShipCountry":"BR","ShipAddress":"0 Nobel Parkway","ShipName":"Connelly, Koss and Huels","OrderDate":"9/30/2016","TotalPayment":"$728153.44","Status":5,"Type":2},{"OrderID":"49348-029","ShipCountry":"ID","ShipAddress":"90541 Merchant Street","ShipName":"Jaskolski, Koch and Cole","OrderDate":"1/27/2016","TotalPayment":"$176077.28","Status":2,"Type":1},{"OrderID":"57541-000","ShipCountry":"RU","ShipAddress":"0035 Maywood Alley","ShipName":"Reynolds-Lind","OrderDate":"8/26/2016","TotalPayment":"$35327.13","Status":1,"Type":2},{"OrderID":"36987-2927","ShipCountry":"CN","ShipAddress":"160 East Parkway","ShipName":"Padberg-Shanahan","OrderDate":"11/20/2017","TotalPayment":"$296563.02","Status":3,"Type":1},{"OrderID":"49349-806","ShipCountry":"PH","ShipAddress":"46861 Larry Hill","ShipName":"Douglas-Leannon","OrderDate":"3/10/2016","TotalPayment":"$932779.05","Status":2,"Type":2},{"OrderID":"0363-0333","ShipCountry":"CN","ShipAddress":"26895 South Center","ShipName":"Maggio, Hermiston and Mitchell","OrderDate":"11/7/2016","TotalPayment":"$1052678.93","Status":1,"Type":2},{"OrderID":"76282-258","ShipCountry":"ID","ShipAddress":"7 Butterfield Drive","ShipName":"Fahey-Champlin","OrderDate":"9/16/2017","TotalPayment":"$522936.19","Status":5,"Type":2},{"OrderID":"61442-161","ShipCountry":"CZ","ShipAddress":"59302 Moose Junction","ShipName":"Jacobson-Feil","OrderDate":"10/28/2016","TotalPayment":"$689444.87","Status":5,"Type":3}]},\n{"RecordID":326,"FirstName":"Fiann","LastName":"Panketh","Company":"Yadel","Email":"fpanketh91@e-recht24.de","Phone":"114-899-4582","Status":2,"Type":3,"Orders":[{"OrderID":"23155-147","ShipCountry":"SA","ShipAddress":"0 Monica Drive","ShipName":"VonRueden-Boehm","OrderDate":"9/20/2016","TotalPayment":"$938392.45","Status":4,"Type":3},{"OrderID":"0407-2707","ShipCountry":"SL","ShipAddress":"8665 Dakota Parkway","ShipName":"Thiel Group","OrderDate":"11/11/2016","TotalPayment":"$1188713.85","Status":2,"Type":3},{"OrderID":"51393-7334","ShipCountry":"NG","ShipAddress":"5400 Alpine Street","ShipName":"Crist Group","OrderDate":"1/31/2017","TotalPayment":"$438045.89","Status":3,"Type":2},{"OrderID":"10812-397","ShipCountry":"MD","ShipAddress":"6 Elka Street","ShipName":"Littel-Reilly","OrderDate":"10/30/2016","TotalPayment":"$868508.17","Status":3,"Type":2},{"OrderID":"49348-380","ShipCountry":"JO","ShipAddress":"27875 Kings Park","ShipName":"Torp and Sons","OrderDate":"2/1/2016","TotalPayment":"$981983.88","Status":6,"Type":2},{"OrderID":"0143-9938","ShipCountry":"FR","ShipAddress":"8 Rockefeller Center","ShipName":"Hirthe, Flatley and Reilly","OrderDate":"11/24/2017","TotalPayment":"$489415.43","Status":4,"Type":2},{"OrderID":"49349-085","ShipCountry":"CZ","ShipAddress":"8249 Evergreen Trail","ShipName":"Schaefer-McCullough","OrderDate":"5/30/2017","TotalPayment":"$655025.60","Status":4,"Type":3},{"OrderID":"51209-003","ShipCountry":"ID","ShipAddress":"53450 Center Hill","ShipName":"Walker, Witting and Hodkiewicz","OrderDate":"12/2/2016","TotalPayment":"$103015.27","Status":4,"Type":1},{"OrderID":"49999-943","ShipCountry":"ID","ShipAddress":"71 Randy Place","ShipName":"Emard-Brekke","OrderDate":"9/17/2016","TotalPayment":"$639616.60","Status":2,"Type":2},{"OrderID":"57520-0224","ShipCountry":"RU","ShipAddress":"3107 Nancy Way","ShipName":"Wolff and Sons","OrderDate":"7/29/2016","TotalPayment":"$54671.81","Status":4,"Type":1}]},\n{"RecordID":327,"FirstName":"Lou","LastName":"Haryngton","Company":"Yadel","Email":"lharyngton92@ow.ly","Phone":"475-989-4445","Status":1,"Type":3,"Orders":[{"OrderID":"0135-0157","ShipCountry":"ID","ShipAddress":"4860 Commercial Street","ShipName":"Lind and Sons","OrderDate":"6/21/2016","TotalPayment":"$1044101.83","Status":6,"Type":1},{"OrderID":"0904-5633","ShipCountry":"ID","ShipAddress":"67533 Rieder Point","ShipName":"Eichmann-Nikolaus","OrderDate":"3/6/2017","TotalPayment":"$53299.34","Status":5,"Type":2},{"OrderID":"54569-1139","ShipCountry":"MA","ShipAddress":"82145 Hansons Circle","ShipName":"Brown Inc","OrderDate":"5/27/2017","TotalPayment":"$616250.96","Status":5,"Type":1},{"OrderID":"76237-214","ShipCountry":"SE","ShipAddress":"5232 Duke Parkway","ShipName":"Murray, Ankunding and Hoeger","OrderDate":"7/23/2017","TotalPayment":"$636036.58","Status":3,"Type":1},{"OrderID":"49260-613","ShipCountry":"RU","ShipAddress":"420 Sutherland Place","ShipName":"Herzog Group","OrderDate":"5/16/2017","TotalPayment":"$382141.23","Status":5,"Type":1},{"OrderID":"21695-194","ShipCountry":"RU","ShipAddress":"125 Michigan Center","ShipName":"White Inc","OrderDate":"2/21/2017","TotalPayment":"$1196449.21","Status":4,"Type":3},{"OrderID":"51414-600","ShipCountry":"ID","ShipAddress":"195 Park Meadow Plaza","ShipName":"Lynch Group","OrderDate":"8/18/2016","TotalPayment":"$671960.45","Status":3,"Type":2},{"OrderID":"68788-9182","ShipCountry":"PK","ShipAddress":"42719 Monterey Court","ShipName":"Reichel-Stroman","OrderDate":"11/14/2016","TotalPayment":"$808395.96","Status":3,"Type":1},{"OrderID":"36987-2839","ShipCountry":"CN","ShipAddress":"8 Buhler Alley","ShipName":"Lesch-Pollich","OrderDate":"9/21/2016","TotalPayment":"$1022561.29","Status":1,"Type":1},{"OrderID":"51346-142","ShipCountry":"CN","ShipAddress":"928 Dennis Crossing","ShipName":"Ward-Wehner","OrderDate":"9/24/2017","TotalPayment":"$1123693.39","Status":2,"Type":1},{"OrderID":"0135-0135","ShipCountry":"NC","ShipAddress":"6488 Sugar Place","ShipName":"Sipes, Harber and Keebler","OrderDate":"1/7/2017","TotalPayment":"$429820.84","Status":3,"Type":1},{"OrderID":"15370-110","ShipCountry":"JP","ShipAddress":"87 Utah Park","ShipName":"Kub LLC","OrderDate":"12/24/2016","TotalPayment":"$1024731.52","Status":1,"Type":3},{"OrderID":"58281-563","ShipCountry":"HN","ShipAddress":"31279 Gale Drive","ShipName":"Lebsack, Kunze and VonRueden","OrderDate":"8/22/2016","TotalPayment":"$223217.63","Status":2,"Type":1},{"OrderID":"68180-202","ShipCountry":"BG","ShipAddress":"224 Golden Leaf Avenue","ShipName":"Erdman and Sons","OrderDate":"11/25/2017","TotalPayment":"$126780.88","Status":4,"Type":2},{"OrderID":"0703-2395","ShipCountry":"CL","ShipAddress":"0633 Florence Hill","ShipName":"Nitzsche Group","OrderDate":"12/8/2016","TotalPayment":"$55762.83","Status":5,"Type":1},{"OrderID":"0462-0434","ShipCountry":"PL","ShipAddress":"5751 Northridge Street","ShipName":"Gerlach Group","OrderDate":"6/16/2017","TotalPayment":"$49907.79","Status":2,"Type":2},{"OrderID":"55312-949","ShipCountry":"CN","ShipAddress":"080 Stone Corner Way","ShipName":"Armstrong, Kris and Grady","OrderDate":"1/27/2016","TotalPayment":"$531069.19","Status":3,"Type":3},{"OrderID":"0245-0213","ShipCountry":"ID","ShipAddress":"4531 Lawn Lane","ShipName":"Wilderman, Upton and Beer","OrderDate":"10/27/2016","TotalPayment":"$191209.78","Status":1,"Type":1},{"OrderID":"56062-047","ShipCountry":"CZ","ShipAddress":"15450 Talmadge Drive","ShipName":"Brekke-MacGyver","OrderDate":"7/7/2017","TotalPayment":"$632037.67","Status":1,"Type":3}]},\n{"RecordID":328,"FirstName":"Fons","LastName":"Braidwood","Company":"Aimbu","Email":"fbraidwood93@constantcontact.com","Phone":"956-759-4168","Status":1,"Type":2,"Orders":[{"OrderID":"36987-2282","ShipCountry":"CN","ShipAddress":"6 Sheridan Terrace","ShipName":"Ruecker, Bosco and Rutherford","OrderDate":"1/2/2017","TotalPayment":"$487701.77","Status":6,"Type":3},{"OrderID":"55714-1103","ShipCountry":"ID","ShipAddress":"089 Graedel Place","ShipName":"Abbott-Bauch","OrderDate":"2/1/2017","TotalPayment":"$1037624.31","Status":1,"Type":2},{"OrderID":"63404-0910","ShipCountry":"PE","ShipAddress":"2 Schmedeman Road","ShipName":"Fisher and Sons","OrderDate":"10/5/2016","TotalPayment":"$114937.97","Status":1,"Type":3},{"OrderID":"68428-114","ShipCountry":"PH","ShipAddress":"0 Charing Cross Road","ShipName":"Boehm-Upton","OrderDate":"11/18/2017","TotalPayment":"$1056969.25","Status":4,"Type":1},{"OrderID":"21695-154","ShipCountry":"CA","ShipAddress":"4942 John Wall Plaza","ShipName":"Haley, Koch and Keebler","OrderDate":"6/27/2016","TotalPayment":"$701424.44","Status":5,"Type":3},{"OrderID":"0904-6139","ShipCountry":"AR","ShipAddress":"17 Express Pass","ShipName":"Leffler-Luettgen","OrderDate":"9/29/2016","TotalPayment":"$138904.42","Status":2,"Type":2},{"OrderID":"59779-100","ShipCountry":"FR","ShipAddress":"855 Ridge Oak Place","ShipName":"Gulgowski, Parisian and Lemke","OrderDate":"5/29/2016","TotalPayment":"$1039218.39","Status":1,"Type":2},{"OrderID":"61748-304","ShipCountry":"US","ShipAddress":"9209 Westridge Terrace","ShipName":"Blick Inc","OrderDate":"12/14/2017","TotalPayment":"$689569.57","Status":1,"Type":2}]},\n{"RecordID":329,"FirstName":"Roldan","LastName":"Antonellini","Company":"Fatz","Email":"rantonellini94@yandex.ru","Phone":"509-780-6815","Status":1,"Type":2,"Orders":[{"OrderID":"24208-399","ShipCountry":"PK","ShipAddress":"9 Northland Drive","ShipName":"McGlynn-MacGyver","OrderDate":"11/13/2016","TotalPayment":"$1051398.59","Status":3,"Type":2},{"OrderID":"50268-111","ShipCountry":"CN","ShipAddress":"1 Ryan Lane","ShipName":"Koss and Sons","OrderDate":"10/2/2017","TotalPayment":"$1189123.71","Status":2,"Type":2},{"OrderID":"54868-2464","ShipCountry":"PH","ShipAddress":"4911 Becker Avenue","ShipName":"Kautzer, Herman and Marquardt","OrderDate":"7/24/2017","TotalPayment":"$737666.93","Status":2,"Type":2},{"OrderID":"50383-025","ShipCountry":"GR","ShipAddress":"1 Muir Way","ShipName":"Schiller Inc","OrderDate":"1/14/2016","TotalPayment":"$902636.91","Status":4,"Type":3},{"OrderID":"68400-308","ShipCountry":"MY","ShipAddress":"7 Buhler Place","ShipName":"Wunsch, Kihn and Cummerata","OrderDate":"1/12/2017","TotalPayment":"$498910.99","Status":3,"Type":1},{"OrderID":"49349-712","ShipCountry":"FR","ShipAddress":"796 Glendale Junction","ShipName":"Fadel-Gerhold","OrderDate":"9/13/2016","TotalPayment":"$794027.75","Status":2,"Type":3},{"OrderID":"60429-374","ShipCountry":"VE","ShipAddress":"9613 Russell Trail","ShipName":"Olson-Koch","OrderDate":"12/11/2017","TotalPayment":"$125344.39","Status":3,"Type":3},{"OrderID":"0378-6088","ShipCountry":"PH","ShipAddress":"49 Golden Leaf Plaza","ShipName":"Abshire and Sons","OrderDate":"10/1/2016","TotalPayment":"$1012863.41","Status":2,"Type":3},{"OrderID":"68712-049","ShipCountry":"RU","ShipAddress":"4 Fulton Avenue","ShipName":"Effertz Group","OrderDate":"5/30/2016","TotalPayment":"$57503.49","Status":4,"Type":3},{"OrderID":"55714-4419","ShipCountry":"ID","ShipAddress":"1559 Little Fleur Alley","ShipName":"Dare LLC","OrderDate":"3/29/2017","TotalPayment":"$616984.05","Status":4,"Type":2},{"OrderID":"51079-753","ShipCountry":"CN","ShipAddress":"0429 Vahlen Pass","ShipName":"Schmitt Group","OrderDate":"6/24/2016","TotalPayment":"$446177.44","Status":6,"Type":2},{"OrderID":"51346-059","ShipCountry":"PE","ShipAddress":"0852 Toban Crossing","ShipName":"Lemke-Beatty","OrderDate":"2/3/2016","TotalPayment":"$530728.20","Status":2,"Type":2}]},\n{"RecordID":330,"FirstName":"Selie","LastName":"Pawlowicz","Company":"Yamia","Email":"spawlowicz95@newyorker.com","Phone":"543-950-5875","Status":6,"Type":2,"Orders":[{"OrderID":"63629-1467","ShipCountry":"PL","ShipAddress":"5804 Esch Alley","ShipName":"Waters-Hackett","OrderDate":"3/14/2016","TotalPayment":"$138809.48","Status":3,"Type":2},{"OrderID":"55319-500","ShipCountry":"ID","ShipAddress":"01229 Wayridge Street","ShipName":"Gulgowski Inc","OrderDate":"12/1/2016","TotalPayment":"$692904.90","Status":1,"Type":1},{"OrderID":"48256-0041","ShipCountry":"US","ShipAddress":"4 Warrior Avenue","ShipName":"Boyer, Reinger and Bauch","OrderDate":"8/2/2017","TotalPayment":"$735650.68","Status":3,"Type":2},{"OrderID":"68788-9683","ShipCountry":"LU","ShipAddress":"5526 Schurz Junction","ShipName":"Moore LLC","OrderDate":"12/17/2016","TotalPayment":"$174337.32","Status":4,"Type":2},{"OrderID":"54868-5313","ShipCountry":"PH","ShipAddress":"6 Manufacturers Crossing","ShipName":"Gottlieb, Oberbrunner and Cummings","OrderDate":"8/14/2016","TotalPayment":"$914304.96","Status":1,"Type":2},{"OrderID":"0944-2833","ShipCountry":"SY","ShipAddress":"5485 Almo Point","ShipName":"MacGyver, Marvin and Blick","OrderDate":"12/23/2016","TotalPayment":"$477948.96","Status":3,"Type":1},{"OrderID":"53807-521","ShipCountry":"CN","ShipAddress":"24763 Carioca Terrace","ShipName":"Kozey and Sons","OrderDate":"2/28/2017","TotalPayment":"$1038029.73","Status":4,"Type":2},{"OrderID":"49288-0179","ShipCountry":"SE","ShipAddress":"73 Eliot Trail","ShipName":"Spinka-Glover","OrderDate":"10/5/2017","TotalPayment":"$945389.90","Status":4,"Type":2},{"OrderID":"54868-6364","ShipCountry":"PT","ShipAddress":"55 Pawling Point","ShipName":"Wisoky LLC","OrderDate":"2/20/2017","TotalPayment":"$622149.95","Status":6,"Type":2},{"OrderID":"12121-001","ShipCountry":"CN","ShipAddress":"7063 Dorton Drive","ShipName":"Hodkiewicz, Botsford and Carroll","OrderDate":"2/6/2016","TotalPayment":"$244011.02","Status":6,"Type":3},{"OrderID":"44087-1150","ShipCountry":"AO","ShipAddress":"7 Forest Point","ShipName":"Stroman-Macejkovic","OrderDate":"7/15/2017","TotalPayment":"$283075.30","Status":4,"Type":3}]},\n{"RecordID":331,"FirstName":"Tris","LastName":"Leatt","Company":"LiveZ","Email":"tleatt96@tinyurl.com","Phone":"566-709-6996","Status":2,"Type":1,"Orders":[{"OrderID":"66390-0001","ShipCountry":"GR","ShipAddress":"6 Sloan Trail","ShipName":"McCullough-Hoppe","OrderDate":"9/8/2017","TotalPayment":"$565743.42","Status":3,"Type":3},{"OrderID":"41250-843","ShipCountry":"RU","ShipAddress":"751 Cherokee Pass","ShipName":"Lubowitz, Kirlin and Littel","OrderDate":"6/26/2017","TotalPayment":"$296083.50","Status":5,"Type":3},{"OrderID":"24208-602","ShipCountry":"TJ","ShipAddress":"091 Cambridge Parkway","ShipName":"Prosacco-Boehm","OrderDate":"4/3/2017","TotalPayment":"$1035005.97","Status":1,"Type":1},{"OrderID":"62620-2001","ShipCountry":"YE","ShipAddress":"1561 Goodland Way","ShipName":"Boyer, Kuhic and Stiedemann","OrderDate":"7/9/2016","TotalPayment":"$62184.60","Status":2,"Type":3},{"OrderID":"42002-445","ShipCountry":"BR","ShipAddress":"41 Merchant Drive","ShipName":"Schamberger-Funk","OrderDate":"9/20/2017","TotalPayment":"$670698.53","Status":5,"Type":2},{"OrderID":"64942-1113","ShipCountry":"NO","ShipAddress":"42 3rd Drive","ShipName":"Dach, Medhurst and Gusikowski","OrderDate":"1/27/2016","TotalPayment":"$1110357.19","Status":5,"Type":3},{"OrderID":"45802-094","ShipCountry":"TZ","ShipAddress":"09970 Blaine Pass","ShipName":"Bednar-Wyman","OrderDate":"1/14/2017","TotalPayment":"$422330.92","Status":6,"Type":1},{"OrderID":"64205-211","ShipCountry":"FR","ShipAddress":"39183 Jenifer Way","ShipName":"Grant-Mraz","OrderDate":"4/3/2016","TotalPayment":"$678111.61","Status":4,"Type":3},{"OrderID":"52533-028","ShipCountry":"ID","ShipAddress":"63297 Spohn Drive","ShipName":"Stanton-Hoppe","OrderDate":"5/24/2016","TotalPayment":"$599102.33","Status":4,"Type":3},{"OrderID":"30142-548","ShipCountry":"CN","ShipAddress":"6530 Oak Center","ShipName":"Spinka-Goldner","OrderDate":"5/31/2016","TotalPayment":"$830294.10","Status":1,"Type":1},{"OrderID":"67345-0006","ShipCountry":"EC","ShipAddress":"6534 South Alley","ShipName":"Wintheiser, Cole and Hodkiewicz","OrderDate":"7/16/2016","TotalPayment":"$41470.39","Status":1,"Type":1}]},\n{"RecordID":332,"FirstName":"Catlee","LastName":"Bramham","Company":"Trudoo","Email":"cbramham97@ow.ly","Phone":"182-146-7652","Status":1,"Type":2,"Orders":[{"OrderID":"0338-1119","ShipCountry":"US","ShipAddress":"30 Fremont Point","ShipName":"O\'Hara and Sons","OrderDate":"9/19/2017","TotalPayment":"$1035348.44","Status":5,"Type":3},{"OrderID":"29500-2433","ShipCountry":"TH","ShipAddress":"58 Briar Crest Terrace","ShipName":"Swaniawski-Padberg","OrderDate":"2/5/2016","TotalPayment":"$886225.24","Status":4,"Type":1},{"OrderID":"0363-0751","ShipCountry":"CF","ShipAddress":"134 Dovetail Court","ShipName":"O\'Reilly-Kris","OrderDate":"8/6/2016","TotalPayment":"$883260.02","Status":5,"Type":1},{"OrderID":"66993-025","ShipCountry":"MX","ShipAddress":"17196 Old Shore Circle","ShipName":"Armstrong-Will","OrderDate":"10/9/2017","TotalPayment":"$49080.85","Status":1,"Type":1},{"OrderID":"60760-211","ShipCountry":"JP","ShipAddress":"15 Meadow Ridge Terrace","ShipName":"Reinger Group","OrderDate":"5/16/2017","TotalPayment":"$853066.51","Status":1,"Type":1},{"OrderID":"50436-8700","ShipCountry":"NI","ShipAddress":"999 Bashford Alley","ShipName":"Dietrich, Fritsch and Erdman","OrderDate":"11/26/2017","TotalPayment":"$929530.00","Status":1,"Type":2},{"OrderID":"0363-0397","ShipCountry":"RU","ShipAddress":"565 Clemons Lane","ShipName":"Homenick-Batz","OrderDate":"6/15/2016","TotalPayment":"$1130342.62","Status":2,"Type":3},{"OrderID":"68462-106","ShipCountry":"ID","ShipAddress":"70179 Grim Pass","ShipName":"Nader-Bayer","OrderDate":"12/17/2016","TotalPayment":"$711207.18","Status":1,"Type":1},{"OrderID":"0338-3991","ShipCountry":"BR","ShipAddress":"766 Comanche Alley","ShipName":"Klein Inc","OrderDate":"1/18/2017","TotalPayment":"$174164.23","Status":4,"Type":3},{"OrderID":"37808-297","ShipCountry":"US","ShipAddress":"43472 Elka Street","ShipName":"Leuschke, Corkery and Larkin","OrderDate":"2/25/2016","TotalPayment":"$839864.86","Status":5,"Type":1},{"OrderID":"36800-140","ShipCountry":"PE","ShipAddress":"7973 Bluestem Place","ShipName":"Green, Kuhn and Stark","OrderDate":"2/29/2016","TotalPayment":"$728786.40","Status":2,"Type":2},{"OrderID":"53808-0707","ShipCountry":"TH","ShipAddress":"993 Scofield Circle","ShipName":"Lang Group","OrderDate":"5/25/2016","TotalPayment":"$270730.83","Status":4,"Type":3},{"OrderID":"23155-217","ShipCountry":"PE","ShipAddress":"49 Arkansas Pass","ShipName":"Batz, Goldner and Mann","OrderDate":"1/11/2017","TotalPayment":"$277138.73","Status":6,"Type":2},{"OrderID":"0024-5850","ShipCountry":"TJ","ShipAddress":"392 Melrose Junction","ShipName":"West and Sons","OrderDate":"3/31/2016","TotalPayment":"$134229.16","Status":5,"Type":3},{"OrderID":"53208-520","ShipCountry":"ID","ShipAddress":"4 Waxwing Parkway","ShipName":"Funk, Bashirian and Breitenberg","OrderDate":"4/4/2017","TotalPayment":"$935266.08","Status":1,"Type":3},{"OrderID":"27789-911","ShipCountry":"CN","ShipAddress":"36 Forest Run Way","ShipName":"Jacobi Inc","OrderDate":"9/22/2016","TotalPayment":"$715918.46","Status":5,"Type":1},{"OrderID":"59923-601","ShipCountry":"MY","ShipAddress":"64205 Coleman Hill","ShipName":"Weissnat-Lakin","OrderDate":"6/5/2017","TotalPayment":"$102732.76","Status":6,"Type":2},{"OrderID":"65862-477","ShipCountry":"MX","ShipAddress":"35161 Debra Pass","ShipName":"Schneider-Beatty","OrderDate":"9/22/2016","TotalPayment":"$838772.17","Status":4,"Type":2}]},\n{"RecordID":333,"FirstName":"Alonso","LastName":"Goodlad","Company":"Rhyloo","Email":"agoodlad98@ustream.tv","Phone":"545-277-2965","Status":5,"Type":1,"Orders":[{"OrderID":"68820-107","ShipCountry":"CN","ShipAddress":"8 South Park","ShipName":"Bauch, Raynor and Ritchie","OrderDate":"7/9/2017","TotalPayment":"$270076.42","Status":5,"Type":2},{"OrderID":"0179-0124","ShipCountry":"CN","ShipAddress":"733 Prentice Plaza","ShipName":"Skiles, Sauer and Breitenberg","OrderDate":"11/14/2016","TotalPayment":"$1083010.67","Status":1,"Type":1},{"OrderID":"61570-075","ShipCountry":"ID","ShipAddress":"16 Sugar Lane","ShipName":"Koch, Lynch and Ondricka","OrderDate":"9/18/2017","TotalPayment":"$309138.32","Status":1,"Type":3},{"OrderID":"66116-429","ShipCountry":"PY","ShipAddress":"9 Kipling Park","ShipName":"Hudson, Green and Beier","OrderDate":"12/6/2017","TotalPayment":"$1167943.18","Status":3,"Type":3},{"OrderID":"21695-554","ShipCountry":"ID","ShipAddress":"15809 Laurel Way","ShipName":"Huel and Sons","OrderDate":"2/26/2017","TotalPayment":"$77216.87","Status":6,"Type":1},{"OrderID":"33342-087","ShipCountry":"DO","ShipAddress":"875 Holmberg Trail","ShipName":"Wolf-Simonis","OrderDate":"8/18/2016","TotalPayment":"$325160.91","Status":5,"Type":2},{"OrderID":"16103-357","ShipCountry":"MN","ShipAddress":"5279 Grim Terrace","ShipName":"Schultz LLC","OrderDate":"7/12/2017","TotalPayment":"$805308.80","Status":3,"Type":2},{"OrderID":"55154-4786","ShipCountry":"UZ","ShipAddress":"7342 Mccormick Park","ShipName":"Larson-Hilll","OrderDate":"4/16/2017","TotalPayment":"$446739.75","Status":5,"Type":3},{"OrderID":"31645-158","ShipCountry":"JP","ShipAddress":"2 Katie Parkway","ShipName":"Bode, Gleason and Marvin","OrderDate":"10/26/2016","TotalPayment":"$469957.76","Status":4,"Type":2},{"OrderID":"0615-3559","ShipCountry":"CA","ShipAddress":"231 Sauthoff Junction","ShipName":"Treutel LLC","OrderDate":"3/24/2016","TotalPayment":"$483495.40","Status":4,"Type":1},{"OrderID":"54458-923","ShipCountry":"VN","ShipAddress":"66404 Sachs Avenue","ShipName":"Roob-Herman","OrderDate":"8/4/2017","TotalPayment":"$402755.45","Status":6,"Type":1},{"OrderID":"0944-2833","ShipCountry":"US","ShipAddress":"69 Reinke Parkway","ShipName":"Bauch, Rodriguez and Lueilwitz","OrderDate":"10/25/2016","TotalPayment":"$1184071.14","Status":3,"Type":3},{"OrderID":"0944-4175","ShipCountry":"CZ","ShipAddress":"40 Mallard Road","ShipName":"Prohaska-Kling","OrderDate":"12/5/2017","TotalPayment":"$469539.10","Status":1,"Type":2},{"OrderID":"68151-2111","ShipCountry":"MY","ShipAddress":"98067 Jana Terrace","ShipName":"Kreiger, Miller and Blanda","OrderDate":"11/12/2017","TotalPayment":"$612490.17","Status":3,"Type":1},{"OrderID":"59021-011","ShipCountry":"PH","ShipAddress":"7 Manitowish Drive","ShipName":"Heaney-Farrell","OrderDate":"5/12/2016","TotalPayment":"$768180.99","Status":6,"Type":2},{"OrderID":"24488-036","ShipCountry":"CN","ShipAddress":"1849 Hauk Court","ShipName":"Willms Inc","OrderDate":"7/20/2017","TotalPayment":"$735146.05","Status":4,"Type":2}]},\n{"RecordID":334,"FirstName":"Bibi","LastName":"Atte-Stone","Company":"Dabshots","Email":"battestone99@nymag.com","Phone":"741-312-9280","Status":5,"Type":3,"Orders":[{"OrderID":"11410-128","ShipCountry":"CN","ShipAddress":"486 Ridgeway Alley","ShipName":"Hartmann, Hermann and Flatley","OrderDate":"10/7/2016","TotalPayment":"$49008.44","Status":6,"Type":1},{"OrderID":"64117-236","ShipCountry":"CN","ShipAddress":"4183 Logan Center","ShipName":"Dietrich, Fritsch and Vandervort","OrderDate":"11/15/2016","TotalPayment":"$676695.30","Status":3,"Type":3},{"OrderID":"52544-892","ShipCountry":"ID","ShipAddress":"1062 Nova Place","ShipName":"Fadel Inc","OrderDate":"3/29/2017","TotalPayment":"$284721.67","Status":6,"Type":1},{"OrderID":"54569-1983","ShipCountry":"CZ","ShipAddress":"2603 Sachs Circle","ShipName":"Russel Inc","OrderDate":"11/19/2017","TotalPayment":"$447277.03","Status":5,"Type":3},{"OrderID":"75921-409","ShipCountry":"IE","ShipAddress":"98 Hallows Junction","ShipName":"Schuppe-Terry","OrderDate":"5/17/2016","TotalPayment":"$216328.15","Status":5,"Type":1},{"OrderID":"65044-2203","ShipCountry":"HR","ShipAddress":"80 Delaware Court","ShipName":"Beer, Macejkovic and Romaguera","OrderDate":"10/31/2016","TotalPayment":"$1047392.24","Status":1,"Type":1},{"OrderID":"10202-337","ShipCountry":"PH","ShipAddress":"91004 Granby Alley","ShipName":"Littel, Franecki and Ebert","OrderDate":"2/10/2017","TotalPayment":"$252241.01","Status":4,"Type":3},{"OrderID":"53808-0863","ShipCountry":"IE","ShipAddress":"11 Lerdahl Court","ShipName":"Pagac-Mann","OrderDate":"1/3/2016","TotalPayment":"$711080.84","Status":6,"Type":3},{"OrderID":"33992-0329","ShipCountry":"FR","ShipAddress":"42294 Vera Street","ShipName":"Spencer Group","OrderDate":"12/6/2016","TotalPayment":"$1182756.09","Status":3,"Type":1},{"OrderID":"68210-1902","ShipCountry":"BG","ShipAddress":"6 Hoepker Alley","ShipName":"McLaughlin-Schowalter","OrderDate":"4/22/2017","TotalPayment":"$984585.55","Status":2,"Type":1},{"OrderID":"43269-679","ShipCountry":"CN","ShipAddress":"029 Trailsway Circle","ShipName":"Casper, Shields and Bernhard","OrderDate":"12/5/2016","TotalPayment":"$892727.11","Status":2,"Type":2},{"OrderID":"54868-5334","ShipCountry":"ID","ShipAddress":"5582 Eagle Crest Road","ShipName":"Cremin-Reinger","OrderDate":"5/26/2017","TotalPayment":"$456967.06","Status":5,"Type":3}]},\n{"RecordID":335,"FirstName":"Dolley","LastName":"Dymock","Company":"Kare","Email":"ddymock9a@cisco.com","Phone":"965-302-9119","Status":3,"Type":1,"Orders":[{"OrderID":"51996-001","ShipCountry":"MX","ShipAddress":"78720 Blackbird Road","ShipName":"McCullough Group","OrderDate":"5/22/2017","TotalPayment":"$297254.14","Status":3,"Type":3},{"OrderID":"0603-9418","ShipCountry":"FR","ShipAddress":"6 Ryan Way","ShipName":"Beatty and Sons","OrderDate":"7/25/2016","TotalPayment":"$758836.88","Status":2,"Type":1},{"OrderID":"52959-540","ShipCountry":"PH","ShipAddress":"61014 Hintze Parkway","ShipName":"Keebler, Steuber and Purdy","OrderDate":"5/4/2016","TotalPayment":"$1046977.70","Status":1,"Type":3},{"OrderID":"42549-620","ShipCountry":"PE","ShipAddress":"66776 Arrowood Park","ShipName":"Swaniawski, Champlin and Sipes","OrderDate":"3/28/2016","TotalPayment":"$553875.88","Status":1,"Type":3},{"OrderID":"50804-080","ShipCountry":"ID","ShipAddress":"3635 Algoma Terrace","ShipName":"Romaguera-Connelly","OrderDate":"6/6/2017","TotalPayment":"$598947.84","Status":6,"Type":1},{"OrderID":"36800-571","ShipCountry":"KR","ShipAddress":"51123 Dixon Street","ShipName":"Oberbrunner Group","OrderDate":"3/30/2016","TotalPayment":"$538008.93","Status":1,"Type":1},{"OrderID":"28877-5960","ShipCountry":"US","ShipAddress":"603 Burning Wood Plaza","ShipName":"Lebsack Group","OrderDate":"1/29/2017","TotalPayment":"$430455.26","Status":4,"Type":1},{"OrderID":"36987-2314","ShipCountry":"FR","ShipAddress":"807 Cottonwood Trail","ShipName":"Johnson, Conn and Turcotte","OrderDate":"3/7/2017","TotalPayment":"$1115430.50","Status":6,"Type":3},{"OrderID":"10019-037","ShipCountry":"JP","ShipAddress":"5795 Pankratz Park","ShipName":"Sanford-Davis","OrderDate":"12/11/2017","TotalPayment":"$833895.18","Status":6,"Type":1},{"OrderID":"0288-2203","ShipCountry":"GR","ShipAddress":"23 Grover Center","ShipName":"Stracke, Torp and Tillman","OrderDate":"2/7/2017","TotalPayment":"$673531.69","Status":3,"Type":1},{"OrderID":"68258-1972","ShipCountry":"PT","ShipAddress":"5031 Kinsman Plaza","ShipName":"Bartell-Schmidt","OrderDate":"5/11/2016","TotalPayment":"$75686.01","Status":1,"Type":3},{"OrderID":"61380-259","ShipCountry":"PS","ShipAddress":"249 Dwight Park","ShipName":"Deckow, Lehner and Krajcik","OrderDate":"7/3/2016","TotalPayment":"$546606.41","Status":6,"Type":1},{"OrderID":"42508-159","ShipCountry":"CA","ShipAddress":"19 Twin Pines Terrace","ShipName":"Reichert, Pagac and Schmitt","OrderDate":"3/27/2017","TotalPayment":"$817272.67","Status":5,"Type":3},{"OrderID":"50268-728","ShipCountry":"MT","ShipAddress":"408 Holmberg Parkway","ShipName":"Osinski, Sanford and Zemlak","OrderDate":"6/13/2017","TotalPayment":"$364571.62","Status":3,"Type":3},{"OrderID":"64679-906","ShipCountry":"VN","ShipAddress":"0917 Lunder Court","ShipName":"Leuschke, Prosacco and Gutmann","OrderDate":"5/19/2017","TotalPayment":"$342402.97","Status":1,"Type":2},{"OrderID":"31645-171","ShipCountry":"NO","ShipAddress":"14 Barby Lane","ShipName":"Hessel, Gutmann and Dickinson","OrderDate":"4/18/2017","TotalPayment":"$1003389.02","Status":2,"Type":3},{"OrderID":"68084-213","ShipCountry":"ID","ShipAddress":"02 Shopko Avenue","ShipName":"Stracke, Beer and Wolff","OrderDate":"2/9/2017","TotalPayment":"$742788.99","Status":4,"Type":1}]},\n{"RecordID":336,"FirstName":"Guillemette","LastName":"Lowre","Company":"Npath","Email":"glowre9b@odnoklassniki.ru","Phone":"455-354-7623","Status":4,"Type":2,"Orders":[{"OrderID":"59623-002","ShipCountry":"CH","ShipAddress":"13186 Larry Lane","ShipName":"Oberbrunner and Sons","OrderDate":"1/21/2017","TotalPayment":"$582039.67","Status":6,"Type":2},{"OrderID":"43063-533","ShipCountry":"AF","ShipAddress":"401 Comanche Park","ShipName":"Farrell, Franecki and Howe","OrderDate":"8/8/2016","TotalPayment":"$511459.66","Status":2,"Type":1},{"OrderID":"0517-0034","ShipCountry":"JP","ShipAddress":"535 Morrow Park","ShipName":"Walsh-MacGyver","OrderDate":"12/6/2017","TotalPayment":"$752946.52","Status":5,"Type":3},{"OrderID":"0781-7171","ShipCountry":"PT","ShipAddress":"9384 Amoth Pass","ShipName":"Heaney-Dare","OrderDate":"2/6/2016","TotalPayment":"$476517.27","Status":4,"Type":1},{"OrderID":"52584-317","ShipCountry":"AO","ShipAddress":"8913 Oxford Park","ShipName":"Price-Welch","OrderDate":"8/10/2017","TotalPayment":"$776745.22","Status":4,"Type":1},{"OrderID":"61957-2030","ShipCountry":"KG","ShipAddress":"191 Mitchell Pass","ShipName":"Waters-Hansen","OrderDate":"10/6/2016","TotalPayment":"$902223.87","Status":1,"Type":2},{"OrderID":"51621-030","ShipCountry":"PH","ShipAddress":"179 Lake View Way","ShipName":"Murray and Sons","OrderDate":"1/5/2016","TotalPayment":"$745046.02","Status":6,"Type":2},{"OrderID":"60561-0001","ShipCountry":"BR","ShipAddress":"90 Hallows Center","ShipName":"Lynch and Sons","OrderDate":"11/10/2016","TotalPayment":"$17444.27","Status":2,"Type":3},{"OrderID":"0131-2470","ShipCountry":"ID","ShipAddress":"582 Bobwhite Way","ShipName":"Labadie, Raynor and Frami","OrderDate":"5/1/2017","TotalPayment":"$43893.73","Status":5,"Type":3}]},\n{"RecordID":337,"FirstName":"Petronilla","LastName":"Filippo","Company":"Skinix","Email":"pfilippo9c@soundcloud.com","Phone":"835-342-3849","Status":5,"Type":2,"Orders":[{"OrderID":"0268-6745","ShipCountry":"PE","ShipAddress":"100 Lighthouse Bay Point","ShipName":"Hoeger, Hahn and Jacobson","OrderDate":"10/28/2017","TotalPayment":"$1059274.91","Status":6,"Type":1},{"OrderID":"36800-328","ShipCountry":"BR","ShipAddress":"310 Arrowood Pass","ShipName":"Torphy-Kunde","OrderDate":"1/29/2016","TotalPayment":"$429966.79","Status":1,"Type":1},{"OrderID":"52054-804","ShipCountry":"IT","ShipAddress":"984 Bowman Trail","ShipName":"Brown Group","OrderDate":"8/5/2017","TotalPayment":"$587171.50","Status":1,"Type":1},{"OrderID":"64117-718","ShipCountry":"FR","ShipAddress":"9 Northwestern Alley","ShipName":"Heidenreich LLC","OrderDate":"4/22/2016","TotalPayment":"$1082959.45","Status":4,"Type":3},{"OrderID":"24385-005","ShipCountry":"RU","ShipAddress":"08 Melvin Parkway","ShipName":"Mills Inc","OrderDate":"12/25/2016","TotalPayment":"$619144.24","Status":3,"Type":1},{"OrderID":"60793-145","ShipCountry":"US","ShipAddress":"1 Union Court","ShipName":"Corkery-Morissette","OrderDate":"11/5/2017","TotalPayment":"$507828.99","Status":4,"Type":1},{"OrderID":"0093-7291","ShipCountry":"ID","ShipAddress":"76 Green Ridge Terrace","ShipName":"Mraz, Moen and Lesch","OrderDate":"1/12/2017","TotalPayment":"$184555.67","Status":2,"Type":2},{"OrderID":"63629-4526","ShipCountry":"PF","ShipAddress":"885 Blaine Court","ShipName":"Spencer Group","OrderDate":"1/29/2017","TotalPayment":"$1047969.64","Status":6,"Type":3},{"OrderID":"67544-568","ShipCountry":"ID","ShipAddress":"91589 Dorton Crossing","ShipName":"VonRueden Inc","OrderDate":"5/12/2016","TotalPayment":"$1183317.91","Status":1,"Type":2},{"OrderID":"49288-0304","ShipCountry":"SN","ShipAddress":"85289 Bunker Hill Plaza","ShipName":"Ernser, Farrell and Berge","OrderDate":"11/1/2016","TotalPayment":"$13312.00","Status":3,"Type":2},{"OrderID":"37205-848","ShipCountry":"ID","ShipAddress":"9 Shasta Junction","ShipName":"Gerlach-Nader","OrderDate":"6/5/2016","TotalPayment":"$502893.55","Status":6,"Type":1},{"OrderID":"65862-560","ShipCountry":"KE","ShipAddress":"02785 Milwaukee Junction","ShipName":"Graham Group","OrderDate":"9/11/2016","TotalPayment":"$646279.20","Status":1,"Type":2},{"OrderID":"57896-199","ShipCountry":"GR","ShipAddress":"93022 Chinook Center","ShipName":"Eichmann Inc","OrderDate":"5/10/2017","TotalPayment":"$981102.21","Status":1,"Type":1},{"OrderID":"0409-1775","ShipCountry":"RU","ShipAddress":"963 Sunbrook Junction","ShipName":"McLaughlin Group","OrderDate":"5/14/2017","TotalPayment":"$944807.37","Status":3,"Type":1}]},\n{"RecordID":338,"FirstName":"Ericha","LastName":"Creavin","Company":"Oba","Email":"ecreavin9d@51.la","Phone":"491-148-0797","Status":3,"Type":3,"Orders":[{"OrderID":"52686-329","ShipCountry":"JP","ShipAddress":"7 Erie Center","ShipName":"Hirthe-Witting","OrderDate":"4/29/2017","TotalPayment":"$937231.85","Status":4,"Type":1},{"OrderID":"0268-1224","ShipCountry":"GU","ShipAddress":"9 Fulton Circle","ShipName":"Purdy, Harvey and Nicolas","OrderDate":"4/24/2016","TotalPayment":"$81928.95","Status":6,"Type":2},{"OrderID":"69170-102","ShipCountry":"PL","ShipAddress":"9 Miller Plaza","ShipName":"Dooley and Sons","OrderDate":"9/9/2016","TotalPayment":"$1138292.04","Status":3,"Type":1},{"OrderID":"48951-8158","ShipCountry":"BW","ShipAddress":"43 Dryden Crossing","ShipName":"Wunsch LLC","OrderDate":"4/27/2017","TotalPayment":"$51083.78","Status":5,"Type":2},{"OrderID":"10191-1603","ShipCountry":"CI","ShipAddress":"7 3rd Lane","ShipName":"Anderson-Kris","OrderDate":"6/25/2016","TotalPayment":"$1083210.00","Status":2,"Type":2},{"OrderID":"67777-231","ShipCountry":"IE","ShipAddress":"18698 Eastlawn Hill","ShipName":"Howell LLC","OrderDate":"6/14/2017","TotalPayment":"$887273.87","Status":3,"Type":2},{"OrderID":"55154-6164","ShipCountry":"RU","ShipAddress":"28 Forest Dale Plaza","ShipName":"Hartmann, McGlynn and Stracke","OrderDate":"6/12/2017","TotalPayment":"$989555.18","Status":3,"Type":2},{"OrderID":"0517-7201","ShipCountry":"DE","ShipAddress":"4695 Melby Crossing","ShipName":"McDermott, Lebsack and Mann","OrderDate":"1/3/2016","TotalPayment":"$736440.86","Status":4,"Type":2},{"OrderID":"42291-895","ShipCountry":"FI","ShipAddress":"8 Fulton Trail","ShipName":"Doyle, Kulas and Schimmel","OrderDate":"9/14/2016","TotalPayment":"$54138.43","Status":1,"Type":2},{"OrderID":"68647-206","ShipCountry":"RU","ShipAddress":"6569 Northwestern Way","ShipName":"Braun LLC","OrderDate":"10/24/2017","TotalPayment":"$240907.89","Status":1,"Type":2},{"OrderID":"52584-485","ShipCountry":"AF","ShipAddress":"76 Clarendon Junction","ShipName":"Gislason, Kessler and Botsford","OrderDate":"8/17/2017","TotalPayment":"$544501.87","Status":1,"Type":2},{"OrderID":"63187-054","ShipCountry":"UA","ShipAddress":"9 Bay Drive","ShipName":"Stanton and Sons","OrderDate":"1/27/2017","TotalPayment":"$966245.13","Status":6,"Type":2},{"OrderID":"36987-2123","ShipCountry":"ID","ShipAddress":"98998 Reinke Road","ShipName":"Kautzer-Weissnat","OrderDate":"9/1/2016","TotalPayment":"$683253.40","Status":6,"Type":2},{"OrderID":"53675-100","ShipCountry":"CO","ShipAddress":"193 Reindahl Place","ShipName":"Feest-Cummings","OrderDate":"9/27/2017","TotalPayment":"$819447.52","Status":1,"Type":2},{"OrderID":"52664-003","ShipCountry":"ID","ShipAddress":"901 Lake View Hill","ShipName":"Pouros-Kerluke","OrderDate":"7/1/2017","TotalPayment":"$679598.00","Status":3,"Type":1},{"OrderID":"0591-3159","ShipCountry":"AM","ShipAddress":"9 Donald Drive","ShipName":"Beahan, Zulauf and Kreiger","OrderDate":"7/15/2016","TotalPayment":"$1152279.01","Status":4,"Type":1}]},\n{"RecordID":339,"FirstName":"Wash","LastName":"Perrie","Company":"Divanoodle","Email":"wperrie9e@about.com","Phone":"600-549-2636","Status":3,"Type":2,"Orders":[{"OrderID":"63730-216","ShipCountry":"ID","ShipAddress":"0956 Alpine Road","ShipName":"Cartwright, Hoeger and Hessel","OrderDate":"12/16/2017","TotalPayment":"$293131.05","Status":1,"Type":3},{"OrderID":"14783-035","ShipCountry":"ID","ShipAddress":"02115 Macpherson Plaza","ShipName":"Cummings, Thompson and Kulas","OrderDate":"1/21/2016","TotalPayment":"$937132.33","Status":3,"Type":3},{"OrderID":"49349-248","ShipCountry":"SA","ShipAddress":"352 Golden Leaf Trail","ShipName":"Jerde LLC","OrderDate":"7/18/2016","TotalPayment":"$1083750.74","Status":4,"Type":3},{"OrderID":"42858-002","ShipCountry":"PH","ShipAddress":"623 Raven Way","ShipName":"Kautzer-Hilll","OrderDate":"11/28/2016","TotalPayment":"$942385.73","Status":5,"Type":1},{"OrderID":"46122-262","ShipCountry":"MX","ShipAddress":"810 Thierer Park","ShipName":"Kerluke-Erdman","OrderDate":"5/14/2017","TotalPayment":"$991719.55","Status":1,"Type":1},{"OrderID":"24385-493","ShipCountry":"US","ShipAddress":"3066 Loeprich Pass","ShipName":"Grady-Schmitt","OrderDate":"7/21/2017","TotalPayment":"$1155633.31","Status":4,"Type":1},{"OrderID":"0615-7730","ShipCountry":"ID","ShipAddress":"3 Luster Place","ShipName":"Pagac-Okuneva","OrderDate":"3/3/2017","TotalPayment":"$1054047.93","Status":5,"Type":3},{"OrderID":"49371-027","ShipCountry":"TH","ShipAddress":"8 Jana Alley","ShipName":"Herzog, Kemmer and Kulas","OrderDate":"11/28/2016","TotalPayment":"$624527.31","Status":1,"Type":3},{"OrderID":"43419-027","ShipCountry":"PH","ShipAddress":"9 Montana Circle","ShipName":"Stoltenberg-Steuber","OrderDate":"7/12/2016","TotalPayment":"$1139604.64","Status":4,"Type":1},{"OrderID":"68084-267","ShipCountry":"PH","ShipAddress":"84 Division Lane","ShipName":"Volkman and Sons","OrderDate":"3/30/2016","TotalPayment":"$1005201.05","Status":6,"Type":3},{"OrderID":"0597-0120","ShipCountry":"CN","ShipAddress":"220 2nd Circle","ShipName":"Batz and Sons","OrderDate":"9/5/2017","TotalPayment":"$758119.95","Status":2,"Type":3},{"OrderID":"0007-4882","ShipCountry":"LY","ShipAddress":"833 Dwight Avenue","ShipName":"Pfannerstill-Robel","OrderDate":"2/21/2016","TotalPayment":"$1183447.15","Status":1,"Type":3},{"OrderID":"66078-504","ShipCountry":"ID","ShipAddress":"44 Dunning Alley","ShipName":"Hettinger-Hermann","OrderDate":"2/1/2016","TotalPayment":"$468281.64","Status":2,"Type":3},{"OrderID":"57520-0203","ShipCountry":"BR","ShipAddress":"193 Orin Point","ShipName":"Mueller-Jast","OrderDate":"11/3/2016","TotalPayment":"$778696.63","Status":6,"Type":1}]},\n{"RecordID":340,"FirstName":"Raynard","LastName":"Kennicott","Company":"Skinder","Email":"rkennicott9f@squidoo.com","Phone":"360-873-3622","Status":2,"Type":1,"Orders":[{"OrderID":"50436-9978","ShipCountry":"BY","ShipAddress":"49 Monument Hill","ShipName":"Reilly, Dooley and Lehner","OrderDate":"9/13/2016","TotalPayment":"$662075.08","Status":2,"Type":1},{"OrderID":"59779-888","ShipCountry":"JP","ShipAddress":"06 Marquette Plaza","ShipName":"Macejkovic, McDermott and Gaylord","OrderDate":"12/5/2016","TotalPayment":"$640008.50","Status":6,"Type":3},{"OrderID":"54973-2909","ShipCountry":"PH","ShipAddress":"665 Mendota Park","ShipName":"Abshire LLC","OrderDate":"4/24/2016","TotalPayment":"$991084.70","Status":2,"Type":3},{"OrderID":"47593-521","ShipCountry":"GB","ShipAddress":"9097 John Wall Way","ShipName":"O\'Hara Inc","OrderDate":"10/26/2016","TotalPayment":"$456846.17","Status":3,"Type":3},{"OrderID":"47918-840","ShipCountry":"CN","ShipAddress":"80253 Brickson Park Point","ShipName":"Tillman, Streich and Howell","OrderDate":"5/26/2017","TotalPayment":"$700679.62","Status":5,"Type":3},{"OrderID":"36987-2595","ShipCountry":"CZ","ShipAddress":"8881 Lakewood Gardens Drive","ShipName":"Bergstrom, Hamill and Ondricka","OrderDate":"3/17/2016","TotalPayment":"$858369.04","Status":6,"Type":3},{"OrderID":"51346-014","ShipCountry":"RU","ShipAddress":"8961 Eagle Crest Crossing","ShipName":"Hirthe and Sons","OrderDate":"2/22/2017","TotalPayment":"$215306.15","Status":6,"Type":1},{"OrderID":"64942-1338","ShipCountry":"AL","ShipAddress":"5027 Blackbird Road","ShipName":"Stracke, Auer and Simonis","OrderDate":"7/10/2016","TotalPayment":"$1063269.13","Status":2,"Type":2},{"OrderID":"59883-920","ShipCountry":"PH","ShipAddress":"5834 Straubel Park","ShipName":"Graham-Torp","OrderDate":"12/2/2016","TotalPayment":"$43405.44","Status":6,"Type":2},{"OrderID":"60505-0598","ShipCountry":"MN","ShipAddress":"00244 Corry Park","ShipName":"Mohr and Sons","OrderDate":"4/18/2016","TotalPayment":"$299131.91","Status":5,"Type":1},{"OrderID":"0245-0169","ShipCountry":"HT","ShipAddress":"3883 Farwell Lane","ShipName":"Homenick-Schmeler","OrderDate":"8/11/2016","TotalPayment":"$1039293.08","Status":6,"Type":1},{"OrderID":"68745-1044","ShipCountry":"CZ","ShipAddress":"518 Springs Drive","ShipName":"Pagac and Sons","OrderDate":"5/28/2017","TotalPayment":"$217827.54","Status":5,"Type":3},{"OrderID":"57451-5065","ShipCountry":"RU","ShipAddress":"3773 Walton Point","ShipName":"Maggio and Sons","OrderDate":"5/18/2016","TotalPayment":"$930067.77","Status":4,"Type":1},{"OrderID":"65954-064","ShipCountry":"PF","ShipAddress":"8101 Garrison Park","ShipName":"Hilll, McDermott and Rowe","OrderDate":"5/5/2016","TotalPayment":"$1122616.04","Status":3,"Type":3}]},\n{"RecordID":341,"FirstName":"Leroi","LastName":"Albone","Company":"Eayo","Email":"lalbone9g@unesco.org","Phone":"333-157-2913","Status":6,"Type":2,"Orders":[{"OrderID":"68084-475","ShipCountry":"CO","ShipAddress":"8 Village Green Point","ShipName":"Stark-Bernier","OrderDate":"10/26/2016","TotalPayment":"$1197920.92","Status":2,"Type":2},{"OrderID":"60429-297","ShipCountry":"BD","ShipAddress":"275 Scott Pass","ShipName":"Connelly-Simonis","OrderDate":"5/21/2017","TotalPayment":"$807074.59","Status":3,"Type":1},{"OrderID":"0603-6161","ShipCountry":"FR","ShipAddress":"6 Independence Parkway","ShipName":"Carter-DuBuque","OrderDate":"5/27/2016","TotalPayment":"$77254.00","Status":3,"Type":1},{"OrderID":"62175-124","ShipCountry":"CA","ShipAddress":"8978 8th Lane","ShipName":"Dicki-Lubowitz","OrderDate":"8/5/2017","TotalPayment":"$1126974.10","Status":2,"Type":3},{"OrderID":"53738-9905","ShipCountry":"CN","ShipAddress":"0385 Hudson Circle","ShipName":"Kihn Inc","OrderDate":"5/17/2017","TotalPayment":"$606646.13","Status":2,"Type":2},{"OrderID":"51346-186","ShipCountry":"RU","ShipAddress":"315 Carpenter Crossing","ShipName":"Eichmann Group","OrderDate":"3/5/2016","TotalPayment":"$270413.18","Status":4,"Type":2},{"OrderID":"0904-1102","ShipCountry":"CN","ShipAddress":"6 Lien Street","ShipName":"Ryan-Bartell","OrderDate":"10/27/2016","TotalPayment":"$640997.03","Status":2,"Type":2},{"OrderID":"63162-518","ShipCountry":"HN","ShipAddress":"6 Melvin Plaza","ShipName":"Bayer, Gusikowski and Howe","OrderDate":"11/11/2017","TotalPayment":"$935472.23","Status":2,"Type":1},{"OrderID":"49349-087","ShipCountry":"PE","ShipAddress":"9 Randy Parkway","ShipName":"Goodwin, Mosciski and Collier","OrderDate":"8/12/2017","TotalPayment":"$106689.37","Status":3,"Type":1},{"OrderID":"0944-4351","ShipCountry":"SE","ShipAddress":"042 Commercial Center","ShipName":"Hilll LLC","OrderDate":"1/8/2016","TotalPayment":"$736436.10","Status":6,"Type":3},{"OrderID":"11410-150","ShipCountry":"CN","ShipAddress":"6 Packers Terrace","ShipName":"Littel, Dare and Wehner","OrderDate":"3/28/2017","TotalPayment":"$314603.75","Status":4,"Type":2},{"OrderID":"63730-204","ShipCountry":"BD","ShipAddress":"5 Esker Way","ShipName":"Langworth Group","OrderDate":"4/20/2017","TotalPayment":"$867355.82","Status":4,"Type":1},{"OrderID":"68788-9669","ShipCountry":"RU","ShipAddress":"08651 Corben Center","ShipName":"Stoltenberg Group","OrderDate":"2/6/2017","TotalPayment":"$998959.77","Status":3,"Type":2},{"OrderID":"50458-398","ShipCountry":"IE","ShipAddress":"3172 Delladonna Way","ShipName":"Prosacco-Jakubowski","OrderDate":"8/13/2017","TotalPayment":"$1117672.04","Status":4,"Type":1},{"OrderID":"0143-9682","ShipCountry":"PH","ShipAddress":"808 Moulton Court","ShipName":"Bins Inc","OrderDate":"5/8/2016","TotalPayment":"$605688.31","Status":5,"Type":1},{"OrderID":"49348-397","ShipCountry":"ID","ShipAddress":"3 Hoffman Drive","ShipName":"Paucek Inc","OrderDate":"7/21/2016","TotalPayment":"$265659.50","Status":2,"Type":2},{"OrderID":"68001-154","ShipCountry":"PT","ShipAddress":"73 Kings Plaza","ShipName":"Towne, Trantow and O\'Hara","OrderDate":"9/27/2017","TotalPayment":"$748557.88","Status":4,"Type":1},{"OrderID":"65156-515","ShipCountry":"CN","ShipAddress":"3450 Prentice Way","ShipName":"Rowe Inc","OrderDate":"3/13/2017","TotalPayment":"$578726.88","Status":2,"Type":1},{"OrderID":"12022-240","ShipCountry":"AU","ShipAddress":"63 Mifflin Hill","ShipName":"Schowalter-Predovic","OrderDate":"5/12/2017","TotalPayment":"$427878.41","Status":2,"Type":1}]},\n{"RecordID":342,"FirstName":"Marjy","LastName":"South","Company":"Tazzy","Email":"msouth9h@google.es","Phone":"736-438-4260","Status":5,"Type":2,"Orders":[{"OrderID":"0615-5536","ShipCountry":"KZ","ShipAddress":"2 Barnett Center","ShipName":"Shields-Parker","OrderDate":"5/2/2016","TotalPayment":"$254109.76","Status":3,"Type":1},{"OrderID":"52125-115","ShipCountry":"PT","ShipAddress":"3 Hovde Trail","ShipName":"Schneider LLC","OrderDate":"1/25/2016","TotalPayment":"$591392.17","Status":5,"Type":3},{"OrderID":"49738-399","ShipCountry":"LU","ShipAddress":"5022 Jackson Road","ShipName":"Pagac, Smitham and Boyle","OrderDate":"5/1/2017","TotalPayment":"$985497.79","Status":6,"Type":2},{"OrderID":"54868-1073","ShipCountry":"NE","ShipAddress":"06759 Westend Pass","ShipName":"Donnelly LLC","OrderDate":"12/30/2017","TotalPayment":"$402350.05","Status":3,"Type":3},{"OrderID":"59676-565","ShipCountry":"ID","ShipAddress":"30 Pennsylvania Drive","ShipName":"Walker-Walter","OrderDate":"4/4/2017","TotalPayment":"$347570.74","Status":4,"Type":2},{"OrderID":"66336-579","ShipCountry":"CN","ShipAddress":"46 Larry Alley","ShipName":"Johnston, Smith and Wilderman","OrderDate":"7/14/2016","TotalPayment":"$278759.39","Status":2,"Type":2},{"OrderID":"58914-301","ShipCountry":"KM","ShipAddress":"2 Upham Drive","ShipName":"Sauer-Raynor","OrderDate":"1/8/2017","TotalPayment":"$102360.43","Status":2,"Type":3},{"OrderID":"42507-240","ShipCountry":"JP","ShipAddress":"444 Gateway Point","ShipName":"Nader-Hilpert","OrderDate":"3/1/2016","TotalPayment":"$1152106.98","Status":5,"Type":2},{"OrderID":"58232-0723","ShipCountry":"IE","ShipAddress":"0807 Golf Point","ShipName":"Bailey-Batz","OrderDate":"12/8/2017","TotalPayment":"$169134.72","Status":5,"Type":1},{"OrderID":"54868-3757","ShipCountry":"TD","ShipAddress":"11 Mallard Park","ShipName":"Koss Group","OrderDate":"9/19/2017","TotalPayment":"$647833.15","Status":6,"Type":3},{"OrderID":"42043-320","ShipCountry":"BR","ShipAddress":"15 Summit Parkway","ShipName":"Witting-Konopelski","OrderDate":"7/1/2017","TotalPayment":"$1172158.54","Status":3,"Type":3},{"OrderID":"63629-1639","ShipCountry":"CN","ShipAddress":"8 Del Mar Terrace","ShipName":"Kuvalis-Pacocha","OrderDate":"10/26/2017","TotalPayment":"$889157.02","Status":4,"Type":2},{"OrderID":"26050-101","ShipCountry":"FR","ShipAddress":"853 Evergreen Place","ShipName":"Cartwright Group","OrderDate":"11/26/2016","TotalPayment":"$891719.59","Status":1,"Type":2},{"OrderID":"48951-8170","ShipCountry":"ID","ShipAddress":"865 Sloan Plaza","ShipName":"Cole-Deckow","OrderDate":"1/4/2016","TotalPayment":"$916136.23","Status":6,"Type":2},{"OrderID":"59779-116","ShipCountry":"US","ShipAddress":"3 Hudson Alley","ShipName":"Mueller-Ledner","OrderDate":"5/10/2017","TotalPayment":"$347855.04","Status":4,"Type":3},{"OrderID":"68084-044","ShipCountry":"PH","ShipAddress":"3171 Lukken Parkway","ShipName":"Padberg, Powlowski and Gerhold","OrderDate":"8/9/2017","TotalPayment":"$276805.15","Status":2,"Type":2},{"OrderID":"49781-074","ShipCountry":"ES","ShipAddress":"128 Hovde Drive","ShipName":"Spencer-Grimes","OrderDate":"11/28/2017","TotalPayment":"$896783.34","Status":2,"Type":2},{"OrderID":"10191-1249","ShipCountry":"PH","ShipAddress":"0 Farwell Court","ShipName":"Lindgren-Boehm","OrderDate":"7/31/2016","TotalPayment":"$582816.42","Status":5,"Type":3},{"OrderID":"57520-0620","ShipCountry":"BR","ShipAddress":"3 Roxbury Park","ShipName":"Connelly, Kilback and Marvin","OrderDate":"1/1/2016","TotalPayment":"$219005.64","Status":4,"Type":1}]},\n{"RecordID":343,"FirstName":"Bayard","LastName":"Proctor","Company":"Trupe","Email":"bproctor9i@discuz.net","Phone":"236-187-0969","Status":5,"Type":3,"Orders":[{"OrderID":"50580-269","ShipCountry":"RU","ShipAddress":"92840 Moose Park","ShipName":"Hauck-Yost","OrderDate":"9/26/2017","TotalPayment":"$591735.25","Status":6,"Type":2},{"OrderID":"54569-2571","ShipCountry":"ID","ShipAddress":"619 David Drive","ShipName":"Lubowitz, Keeling and Keebler","OrderDate":"4/8/2016","TotalPayment":"$24880.39","Status":1,"Type":1},{"OrderID":"43857-0193","ShipCountry":"RU","ShipAddress":"1015 Packers Center","ShipName":"Cormier and Sons","OrderDate":"11/6/2017","TotalPayment":"$588580.04","Status":1,"Type":2},{"OrderID":"62296-0032","ShipCountry":"TZ","ShipAddress":"3 Division Place","ShipName":"McLaughlin-Bartoletti","OrderDate":"7/16/2017","TotalPayment":"$607189.16","Status":2,"Type":2},{"OrderID":"56152-0010","ShipCountry":"PL","ShipAddress":"03 Buell Alley","ShipName":"Crist Group","OrderDate":"11/21/2016","TotalPayment":"$178479.03","Status":1,"Type":3},{"OrderID":"13925-103","ShipCountry":"RU","ShipAddress":"89898 Milwaukee Drive","ShipName":"Beier-Marvin","OrderDate":"7/17/2016","TotalPayment":"$319696.15","Status":6,"Type":3},{"OrderID":"59762-0075","ShipCountry":"MX","ShipAddress":"4 Bonner Street","ShipName":"Armstrong, Fritsch and Romaguera","OrderDate":"5/14/2017","TotalPayment":"$290390.62","Status":1,"Type":1},{"OrderID":"60505-3454","ShipCountry":"BR","ShipAddress":"5761 Grasskamp Trail","ShipName":"Senger LLC","OrderDate":"10/21/2017","TotalPayment":"$413409.05","Status":6,"Type":3},{"OrderID":"57520-0106","ShipCountry":"LS","ShipAddress":"08707 Blackbird Plaza","ShipName":"Jerde-Sporer","OrderDate":"5/29/2016","TotalPayment":"$877615.03","Status":4,"Type":1},{"OrderID":"33261-992","ShipCountry":"PA","ShipAddress":"73 Pleasure Parkway","ShipName":"Reichel and Sons","OrderDate":"2/15/2016","TotalPayment":"$266845.65","Status":5,"Type":2},{"OrderID":"64980-130","ShipCountry":"XK","ShipAddress":"3777 Sachs Avenue","ShipName":"Hilpert-Wuckert","OrderDate":"8/21/2017","TotalPayment":"$191776.50","Status":1,"Type":3}]},\n{"RecordID":344,"FirstName":"Ira","LastName":"Comley","Company":"Vimbo","Email":"icomley9j@wiley.com","Phone":"656-190-8225","Status":6,"Type":2,"Orders":[{"OrderID":"49348-001","ShipCountry":"CN","ShipAddress":"7 West Alley","ShipName":"Klein, Kulas and Leannon","OrderDate":"8/4/2016","TotalPayment":"$1149000.51","Status":4,"Type":1},{"OrderID":"11410-106","ShipCountry":"PS","ShipAddress":"7 Hoepker Point","ShipName":"Ruecker, Shanahan and Flatley","OrderDate":"1/31/2017","TotalPayment":"$400282.27","Status":4,"Type":3},{"OrderID":"55714-2322","ShipCountry":"VN","ShipAddress":"539 Merry Hill","ShipName":"Ledner Group","OrderDate":"7/13/2016","TotalPayment":"$608049.34","Status":2,"Type":2},{"OrderID":"0378-2073","ShipCountry":"AR","ShipAddress":"5 Jackson Park","ShipName":"Krajcik-Kerluke","OrderDate":"5/24/2017","TotalPayment":"$83508.55","Status":2,"Type":3},{"OrderID":"37808-198","ShipCountry":"ID","ShipAddress":"1602 Becker Crossing","ShipName":"Mante and Sons","OrderDate":"7/21/2017","TotalPayment":"$832475.56","Status":3,"Type":2},{"OrderID":"0407-0690","ShipCountry":"BR","ShipAddress":"257 Florence Circle","ShipName":"Emmerich Group","OrderDate":"4/6/2016","TotalPayment":"$774815.58","Status":3,"Type":1},{"OrderID":"0904-0789","ShipCountry":"PH","ShipAddress":"7 Mockingbird Pass","ShipName":"Kemmer LLC","OrderDate":"2/3/2017","TotalPayment":"$251372.02","Status":5,"Type":3},{"OrderID":"60505-0010","ShipCountry":"CN","ShipAddress":"837 Larry Place","ShipName":"Beatty Inc","OrderDate":"8/19/2016","TotalPayment":"$899945.32","Status":6,"Type":1},{"OrderID":"57469-021","ShipCountry":"CN","ShipAddress":"616 Drewry Road","ShipName":"Kuhic and Sons","OrderDate":"12/12/2016","TotalPayment":"$199795.06","Status":6,"Type":3},{"OrderID":"63629-5219","ShipCountry":"VN","ShipAddress":"219 Gina Lane","ShipName":"Konopelski LLC","OrderDate":"4/3/2017","TotalPayment":"$249576.61","Status":1,"Type":3},{"OrderID":"51672-2088","ShipCountry":"PG","ShipAddress":"405 Dawn Plaza","ShipName":"Mayert-Treutel","OrderDate":"9/7/2016","TotalPayment":"$1010260.42","Status":6,"Type":2},{"OrderID":"65342-1009","ShipCountry":"SE","ShipAddress":"2 Banding Hill","ShipName":"DuBuque-Oberbrunner","OrderDate":"4/16/2016","TotalPayment":"$742308.86","Status":2,"Type":3},{"OrderID":"0245-0219","ShipCountry":"RU","ShipAddress":"057 La Follette Place","ShipName":"Bashirian, Barton and Hilpert","OrderDate":"1/18/2016","TotalPayment":"$437329.28","Status":5,"Type":3},{"OrderID":"52915-020","ShipCountry":"MK","ShipAddress":"36 Moulton Crossing","ShipName":"Kessler-Mosciski","OrderDate":"9/24/2017","TotalPayment":"$289692.16","Status":3,"Type":2},{"OrderID":"36987-1246","ShipCountry":"CN","ShipAddress":"85 Fair Oaks Avenue","ShipName":"Marks Inc","OrderDate":"4/28/2017","TotalPayment":"$881128.16","Status":3,"Type":2},{"OrderID":"52389-136","ShipCountry":"ID","ShipAddress":"7 Bartillon Point","ShipName":"Johnston-McDermott","OrderDate":"8/30/2016","TotalPayment":"$230907.64","Status":1,"Type":3},{"OrderID":"62011-0050","ShipCountry":"ID","ShipAddress":"5919 Hovde Parkway","ShipName":"Schmeler-Legros","OrderDate":"6/16/2016","TotalPayment":"$335635.98","Status":1,"Type":3},{"OrderID":"0228-2982","ShipCountry":"ID","ShipAddress":"3 Carberry Park","ShipName":"Grimes-Wiza","OrderDate":"8/13/2017","TotalPayment":"$402470.76","Status":1,"Type":3},{"OrderID":"43742-0200","ShipCountry":"KW","ShipAddress":"3822 Kedzie Place","ShipName":"Orn LLC","OrderDate":"12/21/2017","TotalPayment":"$10263.83","Status":5,"Type":3}]},\n{"RecordID":345,"FirstName":"Rosetta","LastName":"MacKenney","Company":"Flipopia","Email":"rmackenney9k@skyrock.com","Phone":"579-148-4004","Status":3,"Type":1,"Orders":[{"OrderID":"54569-0452","ShipCountry":"KP","ShipAddress":"2835 Saint Paul Avenue","ShipName":"Rippin-Zemlak","OrderDate":"8/8/2016","TotalPayment":"$876392.85","Status":6,"Type":3},{"OrderID":"29500-909","ShipCountry":"ID","ShipAddress":"56159 Reindahl Park","ShipName":"Barrows-Abernathy","OrderDate":"7/30/2016","TotalPayment":"$804654.46","Status":2,"Type":2},{"OrderID":"64942-1192","ShipCountry":"FI","ShipAddress":"82946 Carioca Pass","ShipName":"Kling Group","OrderDate":"10/7/2016","TotalPayment":"$53359.03","Status":2,"Type":3},{"OrderID":"68094-716","ShipCountry":"PH","ShipAddress":"11173 Prairieview Center","ShipName":"Fritsch, Kuvalis and Wolf","OrderDate":"5/29/2016","TotalPayment":"$472940.89","Status":6,"Type":3},{"OrderID":"36987-1343","ShipCountry":"PT","ShipAddress":"3 Drewry Circle","ShipName":"Torp and Sons","OrderDate":"2/12/2016","TotalPayment":"$1151739.56","Status":3,"Type":3},{"OrderID":"0378-2268","ShipCountry":"MK","ShipAddress":"86 Alpine Hill","ShipName":"Bruen and Sons","OrderDate":"12/3/2017","TotalPayment":"$493260.11","Status":2,"Type":1},{"OrderID":"52544-931","ShipCountry":"GR","ShipAddress":"4996 Southridge Avenue","ShipName":"Stokes-McClure","OrderDate":"2/29/2016","TotalPayment":"$680304.90","Status":5,"Type":1},{"OrderID":"54575-228","ShipCountry":"CN","ShipAddress":"1691 Gerald Junction","ShipName":"Altenwerth-Raynor","OrderDate":"3/19/2017","TotalPayment":"$492839.92","Status":6,"Type":1},{"OrderID":"37000-357","ShipCountry":"ID","ShipAddress":"6 Packers Circle","ShipName":"Beatty, Hansen and Windler","OrderDate":"2/9/2016","TotalPayment":"$86700.84","Status":4,"Type":1},{"OrderID":"59045-1004","ShipCountry":"CN","ShipAddress":"9342 Hauk Pass","ShipName":"Witting-Berge","OrderDate":"12/15/2017","TotalPayment":"$462483.14","Status":6,"Type":1},{"OrderID":"61919-101","ShipCountry":"VN","ShipAddress":"2450 Oak Valley Junction","ShipName":"Muller-Strosin","OrderDate":"7/11/2017","TotalPayment":"$908102.14","Status":1,"Type":3},{"OrderID":"10678-003","ShipCountry":"CN","ShipAddress":"610 Green Circle","ShipName":"O\'Hara and Sons","OrderDate":"4/13/2016","TotalPayment":"$371167.28","Status":6,"Type":3},{"OrderID":"49349-190","ShipCountry":"RU","ShipAddress":"32324 Bluestem Park","ShipName":"Stroman-Cartwright","OrderDate":"9/16/2016","TotalPayment":"$939230.78","Status":3,"Type":1},{"OrderID":"62566-001","ShipCountry":"CN","ShipAddress":"92 Mallard Way","ShipName":"Ziemann, Walter and Witting","OrderDate":"5/28/2016","TotalPayment":"$713802.87","Status":4,"Type":1}]},\n{"RecordID":346,"FirstName":"Aura","LastName":"Pentin","Company":"Abata","Email":"apentin9l@eventbrite.com","Phone":"171-847-5084","Status":3,"Type":3,"Orders":[{"OrderID":"58657-421","ShipCountry":"PH","ShipAddress":"2359 Mendota Road","ShipName":"Armstrong, Kuvalis and Reynolds","OrderDate":"9/5/2016","TotalPayment":"$273450.96","Status":6,"Type":1},{"OrderID":"59746-307","ShipCountry":"MA","ShipAddress":"12582 Kim Pass","ShipName":"Kiehn, Considine and Towne","OrderDate":"1/4/2016","TotalPayment":"$520493.45","Status":5,"Type":2},{"OrderID":"0185-0325","ShipCountry":"HK","ShipAddress":"40322 Spaight Court","ShipName":"Hudson, Kessler and Hayes","OrderDate":"9/26/2016","TotalPayment":"$1024557.96","Status":1,"Type":3},{"OrderID":"36987-2828","ShipCountry":"KP","ShipAddress":"8287 Pawling Crossing","ShipName":"Bruen Inc","OrderDate":"9/28/2016","TotalPayment":"$727154.87","Status":1,"Type":3},{"OrderID":"13734-117","ShipCountry":"CN","ShipAddress":"08 Montana Street","ShipName":"Hoppe Group","OrderDate":"8/29/2016","TotalPayment":"$393648.66","Status":2,"Type":1},{"OrderID":"54738-903","ShipCountry":"PL","ShipAddress":"609 Trailsway Crossing","ShipName":"Watsica-Crooks","OrderDate":"2/26/2016","TotalPayment":"$365955.18","Status":3,"Type":3},{"OrderID":"23155-001","ShipCountry":"CN","ShipAddress":"8939 Forster Trail","ShipName":"D\'Amore Group","OrderDate":"6/5/2017","TotalPayment":"$974164.30","Status":5,"Type":3}]},\n{"RecordID":347,"FirstName":"Bambi","LastName":"Overil","Company":"Jabbersphere","Email":"boveril9m@flickr.com","Phone":"797-280-3131","Status":6,"Type":3,"Orders":[{"OrderID":"36987-2949","ShipCountry":"CN","ShipAddress":"4 School Terrace","ShipName":"Witting-Bogisich","OrderDate":"12/12/2016","TotalPayment":"$605928.90","Status":5,"Type":1},{"OrderID":"68462-104","ShipCountry":"CA","ShipAddress":"5492 Del Sol Point","ShipName":"Predovic, Wunsch and Denesik","OrderDate":"1/26/2017","TotalPayment":"$474222.86","Status":3,"Type":2},{"OrderID":"68016-190","ShipCountry":"AR","ShipAddress":"46380 Shasta Hill","ShipName":"Gleichner, O\'Conner and Hodkiewicz","OrderDate":"12/28/2017","TotalPayment":"$801189.76","Status":1,"Type":2},{"OrderID":"44004-802","ShipCountry":"CN","ShipAddress":"5987 Golf Course Center","ShipName":"Fisher, Rempel and Reinger","OrderDate":"7/25/2016","TotalPayment":"$1066038.27","Status":6,"Type":3},{"OrderID":"54868-6167","ShipCountry":"PT","ShipAddress":"72 Waxwing Street","ShipName":"Buckridge-Corwin","OrderDate":"9/20/2016","TotalPayment":"$548563.91","Status":4,"Type":1},{"OrderID":"60512-6502","ShipCountry":"PH","ShipAddress":"74454 Meadow Vale Avenue","ShipName":"Ratke-Howe","OrderDate":"3/9/2016","TotalPayment":"$194860.68","Status":3,"Type":2},{"OrderID":"23155-028","ShipCountry":"GR","ShipAddress":"88300 Spaight Pass","ShipName":"Larkin-Prosacco","OrderDate":"8/18/2016","TotalPayment":"$1180587.36","Status":4,"Type":1},{"OrderID":"46123-021","ShipCountry":"PH","ShipAddress":"75595 Maywood Terrace","ShipName":"Bernhard-Funk","OrderDate":"7/13/2017","TotalPayment":"$138618.75","Status":2,"Type":2},{"OrderID":"67457-507","ShipCountry":"CZ","ShipAddress":"81 Acker Court","ShipName":"Spencer, Ondricka and Hamill","OrderDate":"7/11/2017","TotalPayment":"$29873.79","Status":6,"Type":2},{"OrderID":"55513-730","ShipCountry":"SE","ShipAddress":"494 Riverside Plaza","ShipName":"Quigley, Jenkins and Muller","OrderDate":"10/25/2017","TotalPayment":"$998897.81","Status":4,"Type":2}]},\n{"RecordID":348,"FirstName":"Ave","LastName":"McEntagart","Company":"Podcat","Email":"amcentagart9n@homestead.com","Phone":"782-598-0729","Status":3,"Type":3,"Orders":[{"OrderID":"53238-001","ShipCountry":"PT","ShipAddress":"68 Mandrake Lane","ShipName":"Lueilwitz, Adams and Kuhlman","OrderDate":"3/18/2016","TotalPayment":"$466148.05","Status":5,"Type":1},{"OrderID":"45802-014","ShipCountry":"MX","ShipAddress":"7 Upham Junction","ShipName":"Simonis and Sons","OrderDate":"8/29/2016","TotalPayment":"$286495.68","Status":2,"Type":2},{"OrderID":"62584-781","ShipCountry":"UA","ShipAddress":"4099 Merry Plaza","ShipName":"Lemke, Balistreri and Windler","OrderDate":"3/22/2017","TotalPayment":"$637212.62","Status":5,"Type":2},{"OrderID":"54569-6121","ShipCountry":"BR","ShipAddress":"780 Manley Parkway","ShipName":"Bailey, Schiller and Kling","OrderDate":"12/24/2017","TotalPayment":"$1058402.05","Status":2,"Type":3},{"OrderID":"0527-1638","ShipCountry":"GR","ShipAddress":"52 Lillian Lane","ShipName":"Hoppe, Sanford and Jacobs","OrderDate":"9/8/2016","TotalPayment":"$601221.51","Status":3,"Type":2},{"OrderID":"49349-549","ShipCountry":"ZA","ShipAddress":"50590 Valley Edge Hill","ShipName":"Borer-Reichel","OrderDate":"11/20/2016","TotalPayment":"$959770.81","Status":2,"Type":2},{"OrderID":"0187-2201","ShipCountry":"PE","ShipAddress":"1 Hintze Lane","ShipName":"Jast, Hodkiewicz and Feest","OrderDate":"2/11/2016","TotalPayment":"$1056217.09","Status":4,"Type":3},{"OrderID":"68472-104","ShipCountry":"IE","ShipAddress":"152 Hoepker Lane","ShipName":"Stehr, Lemke and Johnston","OrderDate":"5/3/2016","TotalPayment":"$194573.19","Status":3,"Type":3},{"OrderID":"49349-561","ShipCountry":"RU","ShipAddress":"68989 Sheridan Pass","ShipName":"Koch, Luettgen and Powlowski","OrderDate":"8/20/2016","TotalPayment":"$887508.70","Status":6,"Type":1},{"OrderID":"21130-463","ShipCountry":"PT","ShipAddress":"22998 Crownhardt Lane","ShipName":"Crist and Sons","OrderDate":"9/22/2017","TotalPayment":"$1075519.13","Status":5,"Type":2},{"OrderID":"10019-510","ShipCountry":"EG","ShipAddress":"6 Vernon Drive","ShipName":"Hodkiewicz LLC","OrderDate":"6/14/2016","TotalPayment":"$1037033.00","Status":1,"Type":3},{"OrderID":"49349-156","ShipCountry":"CZ","ShipAddress":"456 Straubel Lane","ShipName":"Balistreri, Blanda and Heaney","OrderDate":"3/29/2016","TotalPayment":"$663026.23","Status":2,"Type":3},{"OrderID":"30142-839","ShipCountry":"CN","ShipAddress":"5585 Erie Hill","ShipName":"O\'Keefe-Hagenes","OrderDate":"3/31/2016","TotalPayment":"$558067.95","Status":6,"Type":2},{"OrderID":"54482-147","ShipCountry":"BR","ShipAddress":"65 Trailsway Center","ShipName":"Waters-Fritsch","OrderDate":"4/24/2016","TotalPayment":"$299405.61","Status":1,"Type":3},{"OrderID":"50227-3251","ShipCountry":"FR","ShipAddress":"9059 Brickson Park Junction","ShipName":"Kovacek-Tromp","OrderDate":"11/10/2016","TotalPayment":"$654083.49","Status":6,"Type":1},{"OrderID":"10742-8214","ShipCountry":"NL","ShipAddress":"7550 Spenser Place","ShipName":"Mitchell-McDermott","OrderDate":"3/8/2016","TotalPayment":"$86975.70","Status":3,"Type":2},{"OrderID":"0409-0221","ShipCountry":"PL","ShipAddress":"05285 Hanover Parkway","ShipName":"Mitchell, Zemlak and Schroeder","OrderDate":"9/23/2016","TotalPayment":"$1154629.91","Status":4,"Type":2},{"OrderID":"0378-5272","ShipCountry":"CN","ShipAddress":"50 Rockefeller Point","ShipName":"Larkin-Ledner","OrderDate":"8/17/2017","TotalPayment":"$1112197.52","Status":1,"Type":2}]},\n{"RecordID":349,"FirstName":"Nial","LastName":"Beden","Company":"Feedspan","Email":"nbeden9o@hostgator.com","Phone":"465-123-8300","Status":1,"Type":2,"Orders":[{"OrderID":"54868-5649","ShipCountry":"PH","ShipAddress":"594 Anderson Road","ShipName":"Daniel-Huel","OrderDate":"6/24/2016","TotalPayment":"$762496.04","Status":4,"Type":1},{"OrderID":"0078-0327","ShipCountry":"PH","ShipAddress":"2 Lotheville Parkway","ShipName":"Baumbach, Parisian and Ruecker","OrderDate":"2/6/2016","TotalPayment":"$999714.19","Status":2,"Type":1},{"OrderID":"0363-2173","ShipCountry":"CN","ShipAddress":"5921 Becker Terrace","ShipName":"Rohan-Marks","OrderDate":"7/2/2016","TotalPayment":"$44425.99","Status":4,"Type":2},{"OrderID":"14783-105","ShipCountry":"BR","ShipAddress":"9 Waubesa Court","ShipName":"Anderson, Gutkowski and Zieme","OrderDate":"6/15/2016","TotalPayment":"$144439.32","Status":1,"Type":3},{"OrderID":"59779-215","ShipCountry":"PT","ShipAddress":"4 Clarendon Alley","ShipName":"Cremin, Leuschke and Marks","OrderDate":"9/7/2016","TotalPayment":"$158843.95","Status":1,"Type":1},{"OrderID":"49349-655","ShipCountry":"LR","ShipAddress":"3033 Arrowood Park","ShipName":"Boyle, Dicki and Wilderman","OrderDate":"3/17/2016","TotalPayment":"$840995.38","Status":2,"Type":1},{"OrderID":"37000-821","ShipCountry":"DE","ShipAddress":"8 Esch Drive","ShipName":"Bogisich and Sons","OrderDate":"5/11/2016","TotalPayment":"$852346.75","Status":5,"Type":2},{"OrderID":"36987-2794","ShipCountry":"PY","ShipAddress":"94302 Katie Place","ShipName":"Doyle, Boyer and Franecki","OrderDate":"5/1/2016","TotalPayment":"$1086070.09","Status":6,"Type":3},{"OrderID":"52533-172","ShipCountry":"ID","ShipAddress":"93 Parkside Center","ShipName":"King and Sons","OrderDate":"1/22/2017","TotalPayment":"$628455.94","Status":3,"Type":2}]},\n{"RecordID":350,"FirstName":"Teddie","LastName":"Ferneley","Company":"Dabtype","Email":"tferneley9p@oakley.com","Phone":"284-728-5534","Status":6,"Type":2,"Orders":[{"OrderID":"13734-023","ShipCountry":"CN","ShipAddress":"3434 Gulseth Plaza","ShipName":"Hauck LLC","OrderDate":"7/12/2016","TotalPayment":"$707730.01","Status":3,"Type":2},{"OrderID":"64406-008","ShipCountry":"ID","ShipAddress":"4 Boyd Avenue","ShipName":"Dickens-Mann","OrderDate":"7/31/2016","TotalPayment":"$675692.10","Status":1,"Type":3},{"OrderID":"64117-596","ShipCountry":"IR","ShipAddress":"40 Katie Circle","ShipName":"Cremin, D\'Amore and Rowe","OrderDate":"12/4/2017","TotalPayment":"$479956.28","Status":1,"Type":2},{"OrderID":"0591-2784","ShipCountry":"CA","ShipAddress":"42 Sutherland Pass","ShipName":"Hermann-Schroeder","OrderDate":"6/25/2016","TotalPayment":"$242558.93","Status":3,"Type":2},{"OrderID":"55154-4029","ShipCountry":"PT","ShipAddress":"801 Badeau Alley","ShipName":"Cole, King and Crona","OrderDate":"10/12/2017","TotalPayment":"$641687.48","Status":6,"Type":2},{"OrderID":"65862-208","ShipCountry":"ID","ShipAddress":"325 Birchwood Alley","ShipName":"Anderson, Corkery and Gleason","OrderDate":"3/3/2016","TotalPayment":"$1180528.08","Status":5,"Type":3}]}]', + )), + (a = $('.kt-datatable').KTDatatable({ + data: { type: 'local', source: r, pageSize: 10 }, + layout: { scroll: !1, height: null, footer: !1 }, + sortable: !0, + filterable: !1, + pagination: !0, + detail: { title: 'Load sub table', content: e }, + search: { input: $('#generalSearch') }, + columns: [ + { field: 'RecordID', title: '', sortable: !1, width: 30, textAlign: 'center' }, + { field: 'FirstName', title: 'First Name' }, + { field: 'LastName', title: 'Last Name' }, + { field: 'Company', title: 'Company' }, + { field: 'Email', title: 'Email' }, + { + field: 'Status', + title: 'Status', + template: function(e) { + var r = { + 1: { title: 'Pending', class: 'kt-badge--brand' }, + 2: { title: 'Delivered', class: ' kt-badge--danger' }, + 3: { title: 'Canceled', class: ' kt-badge--primary' }, + 4: { title: 'Success', class: ' kt-badge--success' }, + 5: { title: 'Info', class: ' kt-badge--info' }, + 6: { title: 'Danger', class: ' kt-badge--danger' }, + 7: { title: 'Warning', class: ' kt-badge--warning' }, + }; + return ( + '' + + r[e.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Type', + autoHide: !1, + template: function(e) { + var r = { + 1: { title: 'Online', state: 'danger' }, + 2: { title: 'Retail', state: 'primary' }, + 3: { title: 'Direct', state: 'success' }, + }; + return ( + ' ' + + r[e.Type].title + + '' + ); + }, + }, + { + field: 'Actions', + width: 130, + title: 'Actions', + sortable: !1, + overflow: 'visible', + template: function() { + return '\t\t \t\t \t\t \t\t \t\t \t\t \t\t \t\t '; + }, + }, + ], + })), + $('#kt_form_status').on('change', function() { + a.search( + $(this) + .val() + .toLowerCase(), + 'Status', + ); + }), + $('#kt_form_type').on('change', function() { + a.search( + $(this) + .val() + .toLowerCase(), + 'Type', + ); + }), + $('#kt_form_status,#kt_form_type').selectpicker(); + }, + }; +})(); +jQuery(document).ready(function() { + KTDatatableChildDataLocalDemo.init(); +}); diff --git a/src/assets/app/custom/general/dashboard.js b/src/assets/app/custom/general/dashboard.js index a59a555..21fa9e8 100644 --- a/src/assets/app/custom/general/dashboard.js +++ b/src/assets/app/custom/general/dashboard.js @@ -1 +1,1559 @@ -"use strict";var KTDashboard=function(){var t=function(t,e,a,r){if(0!=t.length){var o={type:"line",data:{labels:["January","February","March","April","May","June","July","August","September","October"],datasets:[{label:"",borderColor:a,borderWidth:r,pointHoverRadius:4,pointHoverBorderWidth:12,pointBackgroundColor:Chart.helpers.color("#000000").alpha(0).rgbString(),pointBorderColor:Chart.helpers.color("#000000").alpha(0).rgbString(),pointHoverBackgroundColor:KTApp.getStateColor("danger"),pointHoverBorderColor:Chart.helpers.color("#000000").alpha(.1).rgbString(),fill:!1,data:e}]},options:{title:{display:!1},tooltips:{enabled:!1,intersect:!1,mode:"nearest",xPadding:10,yPadding:10,caretPadding:10},legend:{display:!1,labels:{usePointStyle:!1}},responsive:!0,maintainAspectRatio:!0,hover:{mode:"index"},scales:{xAxes:[{display:!1,gridLines:!1,scaleLabel:{display:!0,labelString:"Month"}}],yAxes:[{display:!1,gridLines:!1,scaleLabel:{display:!0,labelString:"Value"},ticks:{beginAtZero:!0}}]},elements:{point:{radius:4,borderWidth:12}},layout:{padding:{left:0,right:10,top:5,bottom:0}}}};return new Chart(t,o)}};return{init:function(){var e,a;!function(){var t=KTUtil.getByID("kt_chart_daily_sales");if(t){var e={labels:["Label 1","Label 2","Label 3","Label 4","Label 5","Label 6","Label 7","Label 8","Label 9","Label 10","Label 11","Label 12","Label 13","Label 14","Label 15","Label 16"],datasets:[{backgroundColor:KTApp.getStateColor("success"),data:[15,20,25,30,25,20,15,20,25,30,25,20,15,10,15,20]},{backgroundColor:"#f3f3fb",data:[15,20,25,30,25,20,15,20,25,30,25,20,15,10,15,20]}]};new Chart(t,{type:"bar",data:e,options:{title:{display:!1},tooltips:{intersect:!1,mode:"nearest",xPadding:10,yPadding:10,caretPadding:10},legend:{display:!1},responsive:!0,maintainAspectRatio:!1,barRadius:4,scales:{xAxes:[{display:!1,gridLines:!1,stacked:!0}],yAxes:[{display:!1,stacked:!0,gridLines:!1}]},layout:{padding:{left:0,right:0,top:0,bottom:0}}}})}}(),function(){if(KTUtil.getByID("kt_chart_profit_share")){var t={type:"doughnut",data:{datasets:[{data:[35,30,35],backgroundColor:[KTApp.getStateColor("success"),KTApp.getStateColor("danger"),KTApp.getStateColor("brand")]}],labels:["Angular","CSS","HTML"]},options:{cutoutPercentage:75,responsive:!0,maintainAspectRatio:!1,legend:{display:!1,position:"top"},title:{display:!1,text:"Technology"},animation:{animateScale:!0,animateRotate:!0},tooltips:{enabled:!0,intersect:!1,mode:"nearest",bodySpacing:5,yPadding:10,xPadding:10,caretPadding:0,displayColors:!1,backgroundColor:KTApp.getStateColor("brand"),titleFontColor:"#ffffff",cornerRadius:4,footerSpacing:0,titleSpacing:0}}},e=KTUtil.getByID("kt_chart_profit_share").getContext("2d");new Chart(e,t)}}(),function(){if(KTUtil.getByID("kt_chart_sales_stats")){var t={type:"line",data:{labels:["January","February","March","April","May","June","July","August","September","October","November","December","January","February","March","April"],datasets:[{label:"Sales Stats",borderColor:KTApp.getStateColor("brand"),borderWidth:2,backgroundColor:KTApp.getStateColor("brand"),pointBackgroundColor:Chart.helpers.color("#ffffff").alpha(0).rgbString(),pointBorderColor:Chart.helpers.color("#ffffff").alpha(0).rgbString(),pointHoverBackgroundColor:KTApp.getStateColor("danger"),pointHoverBorderColor:Chart.helpers.color(KTApp.getStateColor("danger")).alpha(.2).rgbString(),data:[10,20,16,18,12,40,35,30,33,34,45,40,60,55,70,65,75,62]}]},options:{title:{display:!1},tooltips:{intersect:!1,mode:"nearest",xPadding:10,yPadding:10,caretPadding:10},legend:{display:!1,labels:{usePointStyle:!1}},responsive:!0,maintainAspectRatio:!1,hover:{mode:"index"},scales:{xAxes:[{display:!1,gridLines:!1,scaleLabel:{display:!0,labelString:"Month"}}],yAxes:[{display:!1,gridLines:!1,scaleLabel:{display:!0,labelString:"Value"}}]},elements:{point:{radius:3,borderWidth:0,hoverRadius:8,hoverBorderWidth:2}}}};new Chart(KTUtil.getByID("kt_chart_sales_stats"),t)}}(),t($("#kt_chart_sales_by_apps_1_1"),[10,20,-5,8,-20,-2,-4,15,5,8],KTApp.getStateColor("success"),2),t($("#kt_chart_sales_by_apps_1_2"),[2,16,0,12,22,5,-10,5,15,2],KTApp.getStateColor("danger"),2),t($("#kt_chart_sales_by_apps_1_3"),[15,5,-10,5,16,22,6,-6,-12,5],KTApp.getStateColor("success"),2),t($("#kt_chart_sales_by_apps_1_4"),[8,18,-12,12,22,-2,-14,16,18,2],KTApp.getStateColor("warning"),2),t($("#kt_chart_sales_by_apps_2_1"),[10,20,-5,8,-20,-2,-4,15,5,8],KTApp.getStateColor("danger"),2),t($("#kt_chart_sales_by_apps_2_2"),[2,16,0,12,22,5,-10,5,15,2],KTApp.getStateColor("dark"),2),t($("#kt_chart_sales_by_apps_2_3"),[15,5,-10,5,16,22,6,-6,-12,5],KTApp.getStateColor("brand"),2),t($("#kt_chart_sales_by_apps_2_4"),[8,18,-12,12,22,-2,-14,16,18,2],KTApp.getStateColor("info"),2),function(){if(0!=$("#kt_chart_latest_updates").length){var t=document.getElementById("kt_chart_latest_updates").getContext("2d"),e={type:"line",data:{labels:["January","February","March","April","May","June","July","August","September","October"],datasets:[{label:"Sales Stats",backgroundColor:KTApp.getStateColor("danger"),borderColor:KTApp.getStateColor("danger"),pointBackgroundColor:Chart.helpers.color("#000000").alpha(0).rgbString(),pointBorderColor:Chart.helpers.color("#000000").alpha(0).rgbString(),pointHoverBackgroundColor:KTApp.getStateColor("success"),pointHoverBorderColor:Chart.helpers.color("#000000").alpha(.1).rgbString(),data:[10,14,12,16,9,11,13,9,13,15]}]},options:{title:{display:!1},tooltips:{intersect:!1,mode:"nearest",xPadding:10,yPadding:10,caretPadding:10},legend:{display:!1},responsive:!0,maintainAspectRatio:!1,hover:{mode:"index"},scales:{xAxes:[{display:!1,gridLines:!1,scaleLabel:{display:!0,labelString:"Month"}}],yAxes:[{display:!1,gridLines:!1,scaleLabel:{display:!0,labelString:"Value"},ticks:{beginAtZero:!0}}]},elements:{line:{tension:1e-7},point:{radius:4,borderWidth:12}}}};new Chart(t,e)}}(),function(){if(0!=$("#kt_chart_trends_stats").length){var t=document.getElementById("kt_chart_trends_stats").getContext("2d"),e=t.createLinearGradient(0,0,0,240);e.addColorStop(0,Chart.helpers.color("#00c5dc").alpha(.7).rgbString()),e.addColorStop(1,Chart.helpers.color("#f2feff").alpha(0).rgbString());var a={type:"line",data:{labels:["January","February","March","April","May","June","July","August","September","October","January","February","March","April","May","June","July","August","September","October","January","February","March","April","May","June","July","August","September","October","January","February","March","April"],datasets:[{label:"Sales Stats",backgroundColor:e,borderColor:"#0dc8de",pointBackgroundColor:Chart.helpers.color("#ffffff").alpha(0).rgbString(),pointBorderColor:Chart.helpers.color("#ffffff").alpha(0).rgbString(),pointHoverBackgroundColor:KTApp.getStateColor("danger"),pointHoverBorderColor:Chart.helpers.color("#000000").alpha(.2).rgbString(),data:[20,10,18,15,26,18,15,22,16,12,12,13,10,18,14,24,16,12,19,21,16,14,21,21,13,15,22,24,21,11,14,19,21,17]}]},options:{title:{display:!1},tooltips:{intersect:!1,mode:"nearest",xPadding:10,yPadding:10,caretPadding:10},legend:{display:!1},responsive:!0,maintainAspectRatio:!1,hover:{mode:"index"},scales:{xAxes:[{display:!1,gridLines:!1,scaleLabel:{display:!0,labelString:"Month"}}],yAxes:[{display:!1,gridLines:!1,scaleLabel:{display:!0,labelString:"Value"},ticks:{beginAtZero:!0}}]},elements:{line:{tension:.19},point:{radius:4,borderWidth:12}},layout:{padding:{left:0,right:0,top:5,bottom:0}}}};new Chart(t,a)}}(),function(){if(0!=$("#kt_chart_trends_stats_2").length){var t=document.getElementById("kt_chart_trends_stats_2").getContext("2d"),e={type:"line",data:{labels:["January","February","March","April","May","June","July","August","September","October","January","February","March","April","May","June","July","August","September","October","January","February","March","April","May","June","July","August","September","October","January","February","March","April"],datasets:[{label:"Sales Stats",backgroundColor:"#d2f5f9",borderColor:KTApp.getStateColor("brand"),pointBackgroundColor:Chart.helpers.color("#ffffff").alpha(0).rgbString(),pointBorderColor:Chart.helpers.color("#ffffff").alpha(0).rgbString(),pointHoverBackgroundColor:KTApp.getStateColor("danger"),pointHoverBorderColor:Chart.helpers.color("#000000").alpha(.2).rgbString(),data:[20,10,18,15,32,18,15,22,8,6,12,13,10,18,14,24,16,12,19,21,16,14,24,21,13,15,27,29,21,11,14,19,21,17]}]},options:{title:{display:!1},tooltips:{intersect:!1,mode:"nearest",xPadding:10,yPadding:10,caretPadding:10},legend:{display:!1},responsive:!0,maintainAspectRatio:!1,hover:{mode:"index"},scales:{xAxes:[{display:!1,gridLines:!1,scaleLabel:{display:!0,labelString:"Month"}}],yAxes:[{display:!1,gridLines:!1,scaleLabel:{display:!0,labelString:"Value"},ticks:{beginAtZero:!0}}]},elements:{line:{tension:.19},point:{radius:4,borderWidth:12}},layout:{padding:{left:0,right:0,top:5,bottom:0}}}};new Chart(t,e)}}(),function(){if(0!=$("#kt_chart_latest_trends_map").length)try{new GMaps({div:"#kt_chart_latest_trends_map",lat:-12.043333,lng:-77.028333})}catch(t){console.log(t)}}(),0!=$("#kt_chart_revenue_change").length&&Morris.Donut({element:"kt_chart_revenue_change",data:[{label:"New York",value:10},{label:"London",value:7},{label:"Paris",value:20}],colors:[KTApp.getStateColor("success"),KTApp.getStateColor("danger"),KTApp.getStateColor("brand")]}),0!=$("#kt_chart_support_tickets").length&&Morris.Donut({element:"kt_chart_support_tickets",data:[{label:"Margins",value:20},{label:"Profit",value:70},{label:"Lost",value:10}],labelColor:"#a7a7c2",colors:[KTApp.getStateColor("success"),KTApp.getStateColor("brand"),KTApp.getStateColor("danger")]}),function(){var t=KTUtil.getByID("kt_chart_support_requests");if(t){var e={type:"doughnut",data:{datasets:[{data:[35,30,35],backgroundColor:[KTApp.getStateColor("success"),KTApp.getStateColor("danger"),KTApp.getStateColor("brand")]}],labels:["Angular","CSS","HTML"]},options:{cutoutPercentage:75,responsive:!0,maintainAspectRatio:!1,legend:{display:!1,position:"top"},title:{display:!1,text:"Technology"},animation:{animateScale:!0,animateRotate:!0},tooltips:{enabled:!0,intersect:!1,mode:"nearest",bodySpacing:5,yPadding:10,xPadding:10,caretPadding:0,displayColors:!1,backgroundColor:KTApp.getStateColor("brand"),titleFontColor:"#ffffff",cornerRadius:4,footerSpacing:0,titleSpacing:0}}},a=t.getContext("2d");new Chart(a,e)}}(),function(){if(0!=$("#kt_chart_activities").length){var t=document.getElementById("kt_chart_activities").getContext("2d"),e=t.createLinearGradient(0,0,0,240);e.addColorStop(0,Chart.helpers.color("#e14c86").alpha(1).rgbString()),e.addColorStop(1,Chart.helpers.color("#e14c86").alpha(.3).rgbString());var a={type:"line",data:{labels:["January","February","March","April","May","June","July","August","September","October"],datasets:[{label:"Sales Stats",backgroundColor:Chart.helpers.color("#e14c86").alpha(1).rgbString(),borderColor:"#e13a58",pointBackgroundColor:Chart.helpers.color("#000000").alpha(0).rgbString(),pointBorderColor:Chart.helpers.color("#000000").alpha(0).rgbString(),pointHoverBackgroundColor:KTApp.getStateColor("light"),pointHoverBorderColor:Chart.helpers.color("#ffffff").alpha(.1).rgbString(),data:[10,14,12,16,9,11,13,9,13,15]}]},options:{title:{display:!1},tooltips:{mode:"nearest",intersect:!1,position:"nearest",xPadding:10,yPadding:10,caretPadding:10},legend:{display:!1},responsive:!0,maintainAspectRatio:!1,scales:{xAxes:[{display:!1,gridLines:!1,scaleLabel:{display:!0,labelString:"Month"}}],yAxes:[{display:!1,gridLines:!1,scaleLabel:{display:!0,labelString:"Value"},ticks:{beginAtZero:!0}}]},elements:{line:{tension:1e-7},point:{radius:4,borderWidth:12}},layout:{padding:{left:0,right:0,top:10,bottom:0}}}};new Chart(t,a)}}(),function(){if(0!=$("#kt_chart_bandwidth1").length){var t=document.getElementById("kt_chart_bandwidth1").getContext("2d"),e=t.createLinearGradient(0,0,0,240);e.addColorStop(0,Chart.helpers.color("#d1f1ec").alpha(1).rgbString()),e.addColorStop(1,Chart.helpers.color("#d1f1ec").alpha(.3).rgbString());var a={type:"line",data:{labels:["January","February","March","April","May","June","July","August","September","October"],datasets:[{label:"Bandwidth Stats",backgroundColor:e,borderColor:KTApp.getStateColor("success"),pointBackgroundColor:Chart.helpers.color("#000000").alpha(0).rgbString(),pointBorderColor:Chart.helpers.color("#000000").alpha(0).rgbString(),pointHoverBackgroundColor:KTApp.getStateColor("danger"),pointHoverBorderColor:Chart.helpers.color("#000000").alpha(.1).rgbString(),data:[10,14,12,16,9,11,13,9,13,15]}]},options:{title:{display:!1},tooltips:{mode:"nearest",intersect:!1,position:"nearest",xPadding:10,yPadding:10,caretPadding:10},legend:{display:!1},responsive:!0,maintainAspectRatio:!1,scales:{xAxes:[{display:!1,gridLines:!1,scaleLabel:{display:!0,labelString:"Month"}}],yAxes:[{display:!1,gridLines:!1,scaleLabel:{display:!0,labelString:"Value"},ticks:{beginAtZero:!0}}]},elements:{line:{tension:1e-7},point:{radius:4,borderWidth:12}},layout:{padding:{left:0,right:0,top:10,bottom:0}}}};new Chart(t,a)}}(),function(){if(0!=$("#kt_chart_bandwidth2").length){var t=document.getElementById("kt_chart_bandwidth2").getContext("2d"),e=t.createLinearGradient(0,0,0,240);e.addColorStop(0,Chart.helpers.color("#ffefce").alpha(1).rgbString()),e.addColorStop(1,Chart.helpers.color("#ffefce").alpha(.3).rgbString());var a={type:"line",data:{labels:["January","February","March","April","May","June","July","August","September","October"],datasets:[{label:"Bandwidth Stats",backgroundColor:e,borderColor:KTApp.getStateColor("warning"),pointBackgroundColor:Chart.helpers.color("#000000").alpha(0).rgbString(),pointBorderColor:Chart.helpers.color("#000000").alpha(0).rgbString(),pointHoverBackgroundColor:KTApp.getStateColor("danger"),pointHoverBorderColor:Chart.helpers.color("#000000").alpha(.1).rgbString(),data:[10,14,12,16,9,11,13,9,13,15]}]},options:{title:{display:!1},tooltips:{mode:"nearest",intersect:!1,position:"nearest",xPadding:10,yPadding:10,caretPadding:10},legend:{display:!1},responsive:!0,maintainAspectRatio:!1,scales:{xAxes:[{display:!1,gridLines:!1,scaleLabel:{display:!0,labelString:"Month"}}],yAxes:[{display:!1,gridLines:!1,scaleLabel:{display:!0,labelString:"Value"},ticks:{beginAtZero:!0}}]},elements:{line:{tension:1e-7},point:{radius:4,borderWidth:12}},layout:{padding:{left:0,right:0,top:10,bottom:0}}}};new Chart(t,a)}}(),function(){if(0!=$("#kt_chart_adwords_stats").length){var t=document.getElementById("kt_chart_adwords_stats").getContext("2d"),e=t.createLinearGradient(0,0,0,240);e.addColorStop(0,Chart.helpers.color("#ffefce").alpha(1).rgbString()),e.addColorStop(1,Chart.helpers.color("#ffefce").alpha(.3).rgbString());var a={type:"line",data:{labels:["January","February","March","April","May","June","July","August","September","October"],datasets:[{label:"AdWord Clicks",backgroundColor:KTApp.getStateColor("brand"),borderColor:KTApp.getStateColor("brand"),pointBackgroundColor:Chart.helpers.color("#000000").alpha(0).rgbString(),pointBorderColor:Chart.helpers.color("#000000").alpha(0).rgbString(),pointHoverBackgroundColor:KTApp.getStateColor("danger"),pointHoverBorderColor:Chart.helpers.color("#000000").alpha(.1).rgbString(),data:[12,16,9,18,13,12,18,12,15,17]},{label:"AdWords Views",backgroundColor:KTApp.getStateColor("success"),borderColor:KTApp.getStateColor("success"),pointBackgroundColor:Chart.helpers.color("#000000").alpha(0).rgbString(),pointBorderColor:Chart.helpers.color("#000000").alpha(0).rgbString(),pointHoverBackgroundColor:KTApp.getStateColor("danger"),pointHoverBorderColor:Chart.helpers.color("#000000").alpha(.1).rgbString(),data:[10,14,12,16,9,11,13,9,13,15]}]},options:{title:{display:!1},tooltips:{mode:"nearest",intersect:!1,position:"nearest",xPadding:10,yPadding:10,caretPadding:10},legend:{display:!1},responsive:!0,maintainAspectRatio:!1,scales:{xAxes:[{display:!1,gridLines:!1,scaleLabel:{display:!0,labelString:"Month"}}],yAxes:[{stacked:!0,display:!1,gridLines:!1,scaleLabel:{display:!0,labelString:"Value"},ticks:{beginAtZero:!0}}]},elements:{line:{tension:1e-7},point:{radius:4,borderWidth:12}},layout:{padding:{left:0,right:0,top:10,bottom:0}}}};new Chart(t,a)}}(),function(){if(0!=$("#kt_chart_finance_summary").length){var t=document.getElementById("kt_chart_finance_summary").getContext("2d"),e={type:"line",data:{labels:["January","February","March","April","May","June","July","August","September","October"],datasets:[{label:"AdWords Views",backgroundColor:KTApp.getStateColor("success"),borderColor:KTApp.getStateColor("success"),pointBackgroundColor:Chart.helpers.color("#000000").alpha(0).rgbString(),pointBorderColor:Chart.helpers.color("#000000").alpha(0).rgbString(),pointHoverBackgroundColor:KTApp.getStateColor("danger"),pointHoverBorderColor:Chart.helpers.color("#000000").alpha(.1).rgbString(),data:[10,14,12,16,9,11,13,9,13,15]}]},options:{title:{display:!1},tooltips:{mode:"nearest",intersect:!1,position:"nearest",xPadding:10,yPadding:10,caretPadding:10},legend:{display:!1},responsive:!0,maintainAspectRatio:!1,scales:{xAxes:[{display:!1,gridLines:!1,scaleLabel:{display:!0,labelString:"Month"}}],yAxes:[{display:!1,gridLines:!1,scaleLabel:{display:!0,labelString:"Value"},ticks:{beginAtZero:!0}}]},elements:{line:{tension:1e-7},point:{radius:4,borderWidth:12}},layout:{padding:{left:0,right:0,top:10,bottom:0}}}};new Chart(t,e)}}(),t($("#kt_chart_quick_stats_1"),[10,14,18,11,9,12,14,17,18,14],KTApp.getStateColor("brand"),3),t($("#kt_chart_quick_stats_2"),[11,12,18,13,11,12,15,13,19,15],KTApp.getStateColor("danger"),3),t($("#kt_chart_quick_stats_3"),[12,12,18,11,15,12,13,16,11,18],KTApp.getStateColor("success"),3),t($("#kt_chart_quick_stats_4"),[11,9,13,18,13,15,14,13,18,15],KTApp.getStateColor("success"),3),function(){var t=KTUtil.getByID("kt_chart_order_statistics");if(t){var e=Chart.helpers.color,a={labels:["1 Jan","2 Jan","3 Jan","4 Jan","5 Jan","6 Jan","7 Jan"],datasets:[{fill:!0,backgroundColor:e(KTApp.getStateColor("brand")).alpha(.6).rgbString(),borderColor:e(KTApp.getStateColor("brand")).alpha(0).rgbString(),pointHoverRadius:4,pointHoverBorderWidth:12,pointBackgroundColor:Chart.helpers.color("#000000").alpha(0).rgbString(),pointBorderColor:Chart.helpers.color("#000000").alpha(0).rgbString(),pointHoverBackgroundColor:KTApp.getStateColor("brand"),pointHoverBorderColor:Chart.helpers.color("#000000").alpha(.1).rgbString(),data:[20,30,20,40,30,60,30]},{fill:!0,backgroundColor:e(KTApp.getStateColor("brand")).alpha(.2).rgbString(),borderColor:e(KTApp.getStateColor("brand")).alpha(0).rgbString(),pointHoverRadius:4,pointHoverBorderWidth:12,pointBackgroundColor:Chart.helpers.color("#000000").alpha(0).rgbString(),pointBorderColor:Chart.helpers.color("#000000").alpha(0).rgbString(),pointHoverBackgroundColor:KTApp.getStateColor("brand"),pointHoverBorderColor:Chart.helpers.color("#000000").alpha(.1).rgbString(),data:[15,40,15,30,40,30,50]}]},r=t.getContext("2d");new Chart(r,{type:"line",data:a,options:{responsive:!0,maintainAspectRatio:!1,legend:!1,scales:{xAxes:[{categoryPercentage:.35,barPercentage:.7,display:!0,scaleLabel:{display:!1,labelString:"Month"},gridLines:!1,ticks:{display:!0,beginAtZero:!0,fontColor:KTApp.getBaseColor("shape",3),fontSize:13,padding:10}}],yAxes:[{categoryPercentage:.35,barPercentage:.7,display:!0,scaleLabel:{display:!1,labelString:"Value"},gridLines:{color:KTApp.getBaseColor("shape",2),drawBorder:!1,offsetGridLines:!1,drawTicks:!1,borderDash:[3,4],zeroLineWidth:1,zeroLineColor:KTApp.getBaseColor("shape",2),zeroLineBorderDash:[3,4]},ticks:{max:70,stepSize:10,display:!0,beginAtZero:!0,fontColor:KTApp.getBaseColor("shape",3),fontSize:13,padding:10}}]},title:{display:!1},hover:{mode:"index"},tooltips:{enabled:!0,intersect:!1,mode:"nearest",bodySpacing:5,yPadding:10,xPadding:10,caretPadding:0,displayColors:!1,backgroundColor:KTApp.getStateColor("brand"),titleFontColor:"#ffffff",cornerRadius:4,footerSpacing:0,titleSpacing:0},layout:{padding:{left:0,right:0,top:5,bottom:5}}}})}}(),function(){if(0!=$("#kt_dashboard_daterangepicker").length){var t=$("#kt_dashboard_daterangepicker"),e=moment(),a=moment();t.daterangepicker({direction:KTUtil.isRTL(),startDate:e,endDate:a,opens:"left",ranges:{Today:[moment(),moment()],Yesterday:[moment().subtract(1,"days"),moment().subtract(1,"days")],"Last 7 Days":[moment().subtract(6,"days"),moment()],"Last 30 Days":[moment().subtract(29,"days"),moment()],"This Month":[moment().startOf("month"),moment().endOf("month")],"Last Month":[moment().subtract(1,"month").startOf("month"),moment().subtract(1,"month").endOf("month")]}},r),r(e,a,"")}function r(t,e,a){var r="",o="";e-t<100||"Today"==a?(r="Today:",o=t.format("MMM D")):"Yesterday"==a?(r="Yesterday:",o=t.format("MMM D")):o=t.format("MMM D")+" - "+e.format("MMM D"),$("#kt_dashboard_daterangepicker_date").html(o),$("#kt_dashboard_daterangepicker_title").html(r)}}(),0!==$("#kt_datatable_latest_orders").length&&$(".kt-datatable").KTDatatable({data:{type:"remote",source:{read:{url:"https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php"}},pageSize:10,saveState:{cookie:!1,webstorage:!0},serverPaging:!0,serverFiltering:!0,serverSorting:!0},layout:{theme:"default",class:"",scroll:!0,height:400,footer:!1},sortable:!0,filterable:!1,pagination:!0,columns:[{field:"RecordID",title:"#",sortable:!1,width:40,selector:{class:"kt-checkbox--solid"},textAlign:"center"},{field:"ShipName",title:"Company",width:"auto",autoHide:!1,template:function(t,e){for(var a=e+1;a>5;)a-=3;return'
    photo
    '+t.CompanyName+'
    "}},{field:"ShipDate",title:"Date",width:100,template:function(t){return''+t.ShipDate+""}},{field:"Status",title:"Status",width:100,template:function(t){var e={1:{title:"Pending",class:" btn-label-brand"},2:{title:"Processing",class:" btn-label-danger"},3:{title:"Success",class:" btn-label-success"},4:{title:"Delivered",class:" btn-label-success"},5:{title:"Canceled",class:" btn-label-warning"},6:{title:"Done",class:" btn-label-danger"},7:{title:"On Hold",class:" btn-label-warning"}};return''+e[t.Status].title+""}},{field:"Type",title:"Managed By",width:200,template:function(t,e){for(var a=4+e;a>12;)a-=3;var r="100_"+a+".jpg",o=KTUtil.getRandomInt(0,5),l=["Developer","Designer","CEO","Manager","Architect","Sales"];return a>5?'
    \t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\tphoto\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t'+t.CompanyAgent+'\t\t\t\t\t\t\t\t'+l[o]+"\t\t\t\t\t\t\t
    \t\t\t\t\t\t
    ":'
    \t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t
    '+t.CompanyAgent.substring(0,1)+'
    \t\t\t\t\t\t\t
    \t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t'+t.CompanyAgent+'\t\t\t\t\t\t\t\t'+l[o]+"\t\t\t\t\t\t\t
    \t\t\t\t\t\t
    "}},{field:"Actions",width:80,title:"Actions",sortable:!1,autoHide:!1,overflow:"visible",template:function(){return' '}}]}),function(){if(0!==$("#kt_calendar").length){var t=moment().startOf("day");t.format("YYYY-MM"),t.clone().subtract(1,"day").format("YYYY-MM-DD"),t.format("YYYY-MM-DD"),t.clone().add(1,"day").format("YYYY-MM-DD"),$("#kt_calendar").fullCalendar({isRTL:KTUtil.isRTL(),header:{left:"prev,next today",center:"title",right:"month,agendaWeek,agendaDay,listWeek"},editable:!0,eventLimit:!0,navLinks:!0,defaultDate:moment("2017-09-15"),events:[{title:"Meeting",start:moment("2017-08-28"),description:"Lorem ipsum dolor sit incid idunt ut",className:"fc-event-light fc-event-solid-warning"},{title:"Conference",description:"Lorem ipsum dolor incid idunt ut labore",start:moment("2017-08-29T13:30:00"),end:moment("2017-08-29T17:30:00"),className:"fc-event-success"},{title:"Dinner",start:moment("2017-08-30"),description:"Lorem ipsum dolor sit tempor incid",className:"fc-event-light fc-event-solid-danger"},{title:"All Day Event",start:moment("2017-09-01"),description:"Lorem ipsum dolor sit incid idunt ut",className:"fc-event-danger fc-event-solid-focus"},{title:"Reporting",description:"Lorem ipsum dolor incid idunt ut labore",start:moment("2017-09-03T13:30:00"),end:moment("2017-09-04T17:30:00"),className:"fc-event-success"},{title:"Company Trip",start:moment("2017-09-05"),end:moment("2017-09-07"),description:"Lorem ipsum dolor sit tempor incid",className:"fc-event-primary"},{title:"ICT Expo 2017 - Product Release",start:moment("2017-09-09"),description:"Lorem ipsum dolor sit tempor inci",className:"fc-event-light fc-event-solid-primary"},{title:"Dinner",start:moment("2017-09-12"),description:"Lorem ipsum dolor sit amet, conse ctetur"},{id:999,title:"Repeating Event",start:moment("2017-09-15T16:00:00"),description:"Lorem ipsum dolor sit ncididunt ut labore",className:"fc-event-danger"},{id:1e3,title:"Repeating Event",description:"Lorem ipsum dolor sit amet, labore",start:moment("2017-09-18T19:00:00")},{title:"Conference",start:moment("2017-09-20T13:00:00"),end:moment("2017-09-21T19:00:00"),description:"Lorem ipsum dolor eius mod tempor labore",className:"fc-event-success"},{title:"Meeting",start:moment("2017-09-11"),description:"Lorem ipsum dolor eiu idunt ut labore"},{title:"Lunch",start:moment("2017-09-18"),className:"fc-event-info fc-event-solid-success",description:"Lorem ipsum dolor sit amet, ut labore"},{title:"Meeting",start:moment("2017-09-24"),className:"fc-event-warning",description:"Lorem ipsum conse ctetur adipi scing"},{title:"Happy Hour",start:moment("2017-09-24"),className:"fc-event-light fc-event-solid-focus",description:"Lorem ipsum dolor sit amet, conse ctetur"},{title:"Dinner",start:moment("2017-09-24"),className:"fc-event-solid-focus fc-event-light",description:"Lorem ipsum dolor sit ctetur adipi scing"},{title:"Birthday Party",start:moment("2017-09-24"),className:"fc-event-primary",description:"Lorem ipsum dolor sit amet, scing"},{title:"Company Event",start:moment("2017-09-24"),className:"fc-event-danger",description:"Lorem ipsum dolor sit amet, scing"},{title:"Click for Google",url:"http://google.com/",start:moment("2017-09-26"),className:"fc-event-solid-info fc-event-light",description:"Lorem ipsum dolor sit amet, labore"}],eventRender:function(t,e){e.hasClass("fc-day-grid-event")?(e.data("content",t.description),e.data("placement","top"),KTApp.initPopover(e)):e.hasClass("fc-time-grid-event")?e.find(".fc-title").append('
    '+t.description+"
    "):0!==e.find(".fc-list-item-title").lenght&&e.find(".fc-list-item-title").append('
    '+t.description+"
    ")}})}}(),e=$("#kt_earnings_widget .kt-widget30__head .owl-carousel"),a=$("#kt_earnings_widget .kt-widget30__body .owl-carousel"),e.find(".carousel").each(function(t){$(this).attr("data-position",t)}),e.owlCarousel({rtl:KTUtil.isRTL(),center:!0,loop:!0,items:2}),a.owlCarousel({rtl:KTUtil.isRTL(),items:1,animateIn:"fadeIn(100)",loop:!0}),$(document).on("click",".carousel",function(){var t=$(this).attr("data-position");t&&(e.trigger("to.owl.carousel",t),a.trigger("to.owl.carousel",t))}),e.on("changed.owl.carousel",function(){var t=$(this).find(".owl-item.active.center").find(".carousel").attr("data-position");t&&a.trigger("to.owl.carousel",t)}),a.on("changed.owl.carousel",function(){var t=$(this).find(".owl-item.active.center").find(".carousel").attr("data-position");t&&e.trigger("to.owl.carousel",t)});var r=new KTDialog({type:"loader",placement:"top center",message:"Loading ..."});r.show(),setTimeout(function(){r.hide()},3e3)}}}();jQuery(document).ready(function(){KTDashboard.init()}); \ No newline at end of file +'use strict'; +var KTDashboard = (function() { + var t = function(t, e, a, r) { + if (0 != t.length) { + var o = { + type: 'line', + data: { + labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October'], + datasets: [ + { + label: '', + borderColor: a, + borderWidth: r, + pointHoverRadius: 4, + pointHoverBorderWidth: 12, + pointBackgroundColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointBorderColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointHoverBackgroundColor: KTApp.getStateColor('danger'), + pointHoverBorderColor: Chart.helpers + .color('#000000') + .alpha(0.1) + .rgbString(), + fill: !1, + data: e, + }, + ], + }, + options: { + title: { display: !1 }, + tooltips: { enabled: !1, intersect: !1, mode: 'nearest', xPadding: 10, yPadding: 10, caretPadding: 10 }, + legend: { display: !1, labels: { usePointStyle: !1 } }, + responsive: !0, + maintainAspectRatio: !0, + hover: { mode: 'index' }, + scales: { + xAxes: [{ display: !1, gridLines: !1, scaleLabel: { display: !0, labelString: 'Month' } }], + yAxes: [ + { + display: !1, + gridLines: !1, + scaleLabel: { display: !0, labelString: 'Value' }, + ticks: { beginAtZero: !0 }, + }, + ], + }, + elements: { point: { radius: 4, borderWidth: 12 } }, + layout: { padding: { left: 0, right: 10, top: 5, bottom: 0 } }, + }, + }; + return new Chart(t, o); + } + }; + return { + init: function() { + var e, a; + !(function() { + var t = KTUtil.getByID('kt_chart_daily_sales'); + if (t) { + var e = { + labels: [ + 'Label 1', + 'Label 2', + 'Label 3', + 'Label 4', + 'Label 5', + 'Label 6', + 'Label 7', + 'Label 8', + 'Label 9', + 'Label 10', + 'Label 11', + 'Label 12', + 'Label 13', + 'Label 14', + 'Label 15', + 'Label 16', + ], + datasets: [ + { + backgroundColor: KTApp.getStateColor('success'), + data: [15, 20, 25, 30, 25, 20, 15, 20, 25, 30, 25, 20, 15, 10, 15, 20], + }, + { backgroundColor: '#f3f3fb', data: [15, 20, 25, 30, 25, 20, 15, 20, 25, 30, 25, 20, 15, 10, 15, 20] }, + ], + }; + new Chart(t, { + type: 'bar', + data: e, + options: { + title: { display: !1 }, + tooltips: { intersect: !1, mode: 'nearest', xPadding: 10, yPadding: 10, caretPadding: 10 }, + legend: { display: !1 }, + responsive: !0, + maintainAspectRatio: !1, + barRadius: 4, + scales: { + xAxes: [{ display: !1, gridLines: !1, stacked: !0 }], + yAxes: [{ display: !1, stacked: !0, gridLines: !1 }], + }, + layout: { padding: { left: 0, right: 0, top: 0, bottom: 0 } }, + }, + }); + } + })(), + (function() { + if (KTUtil.getByID('kt_chart_profit_share')) { + var t = { + type: 'doughnut', + data: { + datasets: [ + { + data: [35, 30, 35], + backgroundColor: [ + KTApp.getStateColor('success'), + KTApp.getStateColor('danger'), + KTApp.getStateColor('brand'), + ], + }, + ], + labels: ['Angular', 'CSS', 'HTML'], + }, + options: { + cutoutPercentage: 75, + responsive: !0, + maintainAspectRatio: !1, + legend: { display: !1, position: 'top' }, + title: { display: !1, text: 'Technology' }, + animation: { animateScale: !0, animateRotate: !0 }, + tooltips: { + enabled: !0, + intersect: !1, + mode: 'nearest', + bodySpacing: 5, + yPadding: 10, + xPadding: 10, + caretPadding: 0, + displayColors: !1, + backgroundColor: KTApp.getStateColor('brand'), + titleFontColor: '#ffffff', + cornerRadius: 4, + footerSpacing: 0, + titleSpacing: 0, + }, + }, + }, + e = KTUtil.getByID('kt_chart_profit_share').getContext('2d'); + new Chart(e, t); + } + })(), + (function() { + if (KTUtil.getByID('kt_chart_sales_stats')) { + var t = { + type: 'line', + data: { + labels: [ + 'January', + 'February', + 'March', + 'April', + 'May', + 'June', + 'July', + 'August', + 'September', + 'October', + 'November', + 'December', + 'January', + 'February', + 'March', + 'April', + ], + datasets: [ + { + label: 'Sales Stats', + borderColor: KTApp.getStateColor('brand'), + borderWidth: 2, + backgroundColor: KTApp.getStateColor('brand'), + pointBackgroundColor: Chart.helpers + .color('#ffffff') + .alpha(0) + .rgbString(), + pointBorderColor: Chart.helpers + .color('#ffffff') + .alpha(0) + .rgbString(), + pointHoverBackgroundColor: KTApp.getStateColor('danger'), + pointHoverBorderColor: Chart.helpers + .color(KTApp.getStateColor('danger')) + .alpha(0.2) + .rgbString(), + data: [10, 20, 16, 18, 12, 40, 35, 30, 33, 34, 45, 40, 60, 55, 70, 65, 75, 62], + }, + ], + }, + options: { + title: { display: !1 }, + tooltips: { intersect: !1, mode: 'nearest', xPadding: 10, yPadding: 10, caretPadding: 10 }, + legend: { display: !1, labels: { usePointStyle: !1 } }, + responsive: !0, + maintainAspectRatio: !1, + hover: { mode: 'index' }, + scales: { + xAxes: [{ display: !1, gridLines: !1, scaleLabel: { display: !0, labelString: 'Month' } }], + yAxes: [{ display: !1, gridLines: !1, scaleLabel: { display: !0, labelString: 'Value' } }], + }, + elements: { point: { radius: 3, borderWidth: 0, hoverRadius: 8, hoverBorderWidth: 2 } }, + }, + }; + new Chart(KTUtil.getByID('kt_chart_sales_stats'), t); + } + })(), + t($('#kt_chart_sales_by_apps_1_1'), [10, 20, -5, 8, -20, -2, -4, 15, 5, 8], KTApp.getStateColor('success'), 2), + t($('#kt_chart_sales_by_apps_1_2'), [2, 16, 0, 12, 22, 5, -10, 5, 15, 2], KTApp.getStateColor('danger'), 2), + t($('#kt_chart_sales_by_apps_1_3'), [15, 5, -10, 5, 16, 22, 6, -6, -12, 5], KTApp.getStateColor('success'), 2), + t( + $('#kt_chart_sales_by_apps_1_4'), + [8, 18, -12, 12, 22, -2, -14, 16, 18, 2], + KTApp.getStateColor('warning'), + 2, + ), + t($('#kt_chart_sales_by_apps_2_1'), [10, 20, -5, 8, -20, -2, -4, 15, 5, 8], KTApp.getStateColor('danger'), 2), + t($('#kt_chart_sales_by_apps_2_2'), [2, 16, 0, 12, 22, 5, -10, 5, 15, 2], KTApp.getStateColor('dark'), 2), + t($('#kt_chart_sales_by_apps_2_3'), [15, 5, -10, 5, 16, 22, 6, -6, -12, 5], KTApp.getStateColor('brand'), 2), + t($('#kt_chart_sales_by_apps_2_4'), [8, 18, -12, 12, 22, -2, -14, 16, 18, 2], KTApp.getStateColor('info'), 2), + (function() { + if (0 != $('#kt_chart_latest_updates').length) { + var t = document.getElementById('kt_chart_latest_updates').getContext('2d'), + e = { + type: 'line', + data: { + labels: [ + 'January', + 'February', + 'March', + 'April', + 'May', + 'June', + 'July', + 'August', + 'September', + 'October', + ], + datasets: [ + { + label: 'Sales Stats', + backgroundColor: KTApp.getStateColor('danger'), + borderColor: KTApp.getStateColor('danger'), + pointBackgroundColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointBorderColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointHoverBackgroundColor: KTApp.getStateColor('success'), + pointHoverBorderColor: Chart.helpers + .color('#000000') + .alpha(0.1) + .rgbString(), + data: [10, 14, 12, 16, 9, 11, 13, 9, 13, 15], + }, + ], + }, + options: { + title: { display: !1 }, + tooltips: { intersect: !1, mode: 'nearest', xPadding: 10, yPadding: 10, caretPadding: 10 }, + legend: { display: !1 }, + responsive: !0, + maintainAspectRatio: !1, + hover: { mode: 'index' }, + scales: { + xAxes: [{ display: !1, gridLines: !1, scaleLabel: { display: !0, labelString: 'Month' } }], + yAxes: [ + { + display: !1, + gridLines: !1, + scaleLabel: { display: !0, labelString: 'Value' }, + ticks: { beginAtZero: !0 }, + }, + ], + }, + elements: { line: { tension: 1e-7 }, point: { radius: 4, borderWidth: 12 } }, + }, + }; + new Chart(t, e); + } + })(), + (function() { + if (0 != $('#kt_chart_trends_stats').length) { + var t = document.getElementById('kt_chart_trends_stats').getContext('2d'), + e = t.createLinearGradient(0, 0, 0, 240); + e.addColorStop( + 0, + Chart.helpers + .color('#00c5dc') + .alpha(0.7) + .rgbString(), + ), + e.addColorStop( + 1, + Chart.helpers + .color('#f2feff') + .alpha(0) + .rgbString(), + ); + var a = { + type: 'line', + data: { + labels: [ + 'January', + 'February', + 'March', + 'April', + 'May', + 'June', + 'July', + 'August', + 'September', + 'October', + 'January', + 'February', + 'March', + 'April', + 'May', + 'June', + 'July', + 'August', + 'September', + 'October', + 'January', + 'February', + 'March', + 'April', + 'May', + 'June', + 'July', + 'August', + 'September', + 'October', + 'January', + 'February', + 'March', + 'April', + ], + datasets: [ + { + label: 'Sales Stats', + backgroundColor: e, + borderColor: '#0dc8de', + pointBackgroundColor: Chart.helpers + .color('#ffffff') + .alpha(0) + .rgbString(), + pointBorderColor: Chart.helpers + .color('#ffffff') + .alpha(0) + .rgbString(), + pointHoverBackgroundColor: KTApp.getStateColor('danger'), + pointHoverBorderColor: Chart.helpers + .color('#000000') + .alpha(0.2) + .rgbString(), + data: [ + 20, + 10, + 18, + 15, + 26, + 18, + 15, + 22, + 16, + 12, + 12, + 13, + 10, + 18, + 14, + 24, + 16, + 12, + 19, + 21, + 16, + 14, + 21, + 21, + 13, + 15, + 22, + 24, + 21, + 11, + 14, + 19, + 21, + 17, + ], + }, + ], + }, + options: { + title: { display: !1 }, + tooltips: { intersect: !1, mode: 'nearest', xPadding: 10, yPadding: 10, caretPadding: 10 }, + legend: { display: !1 }, + responsive: !0, + maintainAspectRatio: !1, + hover: { mode: 'index' }, + scales: { + xAxes: [{ display: !1, gridLines: !1, scaleLabel: { display: !0, labelString: 'Month' } }], + yAxes: [ + { + display: !1, + gridLines: !1, + scaleLabel: { display: !0, labelString: 'Value' }, + ticks: { beginAtZero: !0 }, + }, + ], + }, + elements: { line: { tension: 0.19 }, point: { radius: 4, borderWidth: 12 } }, + layout: { padding: { left: 0, right: 0, top: 5, bottom: 0 } }, + }, + }; + new Chart(t, a); + } + })(), + (function() { + if (0 != $('#kt_chart_trends_stats_2').length) { + var t = document.getElementById('kt_chart_trends_stats_2').getContext('2d'), + e = { + type: 'line', + data: { + labels: [ + 'January', + 'February', + 'March', + 'April', + 'May', + 'June', + 'July', + 'August', + 'September', + 'October', + 'January', + 'February', + 'March', + 'April', + 'May', + 'June', + 'July', + 'August', + 'September', + 'October', + 'January', + 'February', + 'March', + 'April', + 'May', + 'June', + 'July', + 'August', + 'September', + 'October', + 'January', + 'February', + 'March', + 'April', + ], + datasets: [ + { + label: 'Sales Stats', + backgroundColor: '#d2f5f9', + borderColor: KTApp.getStateColor('brand'), + pointBackgroundColor: Chart.helpers + .color('#ffffff') + .alpha(0) + .rgbString(), + pointBorderColor: Chart.helpers + .color('#ffffff') + .alpha(0) + .rgbString(), + pointHoverBackgroundColor: KTApp.getStateColor('danger'), + pointHoverBorderColor: Chart.helpers + .color('#000000') + .alpha(0.2) + .rgbString(), + data: [ + 20, + 10, + 18, + 15, + 32, + 18, + 15, + 22, + 8, + 6, + 12, + 13, + 10, + 18, + 14, + 24, + 16, + 12, + 19, + 21, + 16, + 14, + 24, + 21, + 13, + 15, + 27, + 29, + 21, + 11, + 14, + 19, + 21, + 17, + ], + }, + ], + }, + options: { + title: { display: !1 }, + tooltips: { intersect: !1, mode: 'nearest', xPadding: 10, yPadding: 10, caretPadding: 10 }, + legend: { display: !1 }, + responsive: !0, + maintainAspectRatio: !1, + hover: { mode: 'index' }, + scales: { + xAxes: [{ display: !1, gridLines: !1, scaleLabel: { display: !0, labelString: 'Month' } }], + yAxes: [ + { + display: !1, + gridLines: !1, + scaleLabel: { display: !0, labelString: 'Value' }, + ticks: { beginAtZero: !0 }, + }, + ], + }, + elements: { line: { tension: 0.19 }, point: { radius: 4, borderWidth: 12 } }, + layout: { padding: { left: 0, right: 0, top: 5, bottom: 0 } }, + }, + }; + new Chart(t, e); + } + })(), + (function() { + if (0 != $('#kt_chart_latest_trends_map').length) + try { + new GMaps({ div: '#kt_chart_latest_trends_map', lat: -12.043333, lng: -77.028333 }); + } catch (t) { + console.log(t); + } + })(), + 0 != $('#kt_chart_revenue_change').length && + Morris.Donut({ + element: 'kt_chart_revenue_change', + data: [{ label: 'New York', value: 10 }, { label: 'London', value: 7 }, { label: 'Paris', value: 20 }], + colors: [KTApp.getStateColor('success'), KTApp.getStateColor('danger'), KTApp.getStateColor('brand')], + }), + 0 != $('#kt_chart_support_tickets').length && + Morris.Donut({ + element: 'kt_chart_support_tickets', + data: [{ label: 'Margins', value: 20 }, { label: 'Profit', value: 70 }, { label: 'Lost', value: 10 }], + labelColor: '#a7a7c2', + colors: [KTApp.getStateColor('success'), KTApp.getStateColor('brand'), KTApp.getStateColor('danger')], + }), + (function() { + var t = KTUtil.getByID('kt_chart_support_requests'); + if (t) { + var e = { + type: 'doughnut', + data: { + datasets: [ + { + data: [35, 30, 35], + backgroundColor: [ + KTApp.getStateColor('success'), + KTApp.getStateColor('danger'), + KTApp.getStateColor('brand'), + ], + }, + ], + labels: ['Angular', 'CSS', 'HTML'], + }, + options: { + cutoutPercentage: 75, + responsive: !0, + maintainAspectRatio: !1, + legend: { display: !1, position: 'top' }, + title: { display: !1, text: 'Technology' }, + animation: { animateScale: !0, animateRotate: !0 }, + tooltips: { + enabled: !0, + intersect: !1, + mode: 'nearest', + bodySpacing: 5, + yPadding: 10, + xPadding: 10, + caretPadding: 0, + displayColors: !1, + backgroundColor: KTApp.getStateColor('brand'), + titleFontColor: '#ffffff', + cornerRadius: 4, + footerSpacing: 0, + titleSpacing: 0, + }, + }, + }, + a = t.getContext('2d'); + new Chart(a, e); + } + })(), + (function() { + if (0 != $('#kt_chart_activities').length) { + var t = document.getElementById('kt_chart_activities').getContext('2d'), + e = t.createLinearGradient(0, 0, 0, 240); + e.addColorStop( + 0, + Chart.helpers + .color('#e14c86') + .alpha(1) + .rgbString(), + ), + e.addColorStop( + 1, + Chart.helpers + .color('#e14c86') + .alpha(0.3) + .rgbString(), + ); + var a = { + type: 'line', + data: { + labels: [ + 'January', + 'February', + 'March', + 'April', + 'May', + 'June', + 'July', + 'August', + 'September', + 'October', + ], + datasets: [ + { + label: 'Sales Stats', + backgroundColor: Chart.helpers + .color('#e14c86') + .alpha(1) + .rgbString(), + borderColor: '#e13a58', + pointBackgroundColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointBorderColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointHoverBackgroundColor: KTApp.getStateColor('light'), + pointHoverBorderColor: Chart.helpers + .color('#ffffff') + .alpha(0.1) + .rgbString(), + data: [10, 14, 12, 16, 9, 11, 13, 9, 13, 15], + }, + ], + }, + options: { + title: { display: !1 }, + tooltips: { + mode: 'nearest', + intersect: !1, + position: 'nearest', + xPadding: 10, + yPadding: 10, + caretPadding: 10, + }, + legend: { display: !1 }, + responsive: !0, + maintainAspectRatio: !1, + scales: { + xAxes: [{ display: !1, gridLines: !1, scaleLabel: { display: !0, labelString: 'Month' } }], + yAxes: [ + { + display: !1, + gridLines: !1, + scaleLabel: { display: !0, labelString: 'Value' }, + ticks: { beginAtZero: !0 }, + }, + ], + }, + elements: { line: { tension: 1e-7 }, point: { radius: 4, borderWidth: 12 } }, + layout: { padding: { left: 0, right: 0, top: 10, bottom: 0 } }, + }, + }; + new Chart(t, a); + } + })(), + (function() { + if (0 != $('#kt_chart_bandwidth1').length) { + var t = document.getElementById('kt_chart_bandwidth1').getContext('2d'), + e = t.createLinearGradient(0, 0, 0, 240); + e.addColorStop( + 0, + Chart.helpers + .color('#d1f1ec') + .alpha(1) + .rgbString(), + ), + e.addColorStop( + 1, + Chart.helpers + .color('#d1f1ec') + .alpha(0.3) + .rgbString(), + ); + var a = { + type: 'line', + data: { + labels: [ + 'January', + 'February', + 'March', + 'April', + 'May', + 'June', + 'July', + 'August', + 'September', + 'October', + ], + datasets: [ + { + label: 'Bandwidth Stats', + backgroundColor: e, + borderColor: KTApp.getStateColor('success'), + pointBackgroundColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointBorderColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointHoverBackgroundColor: KTApp.getStateColor('danger'), + pointHoverBorderColor: Chart.helpers + .color('#000000') + .alpha(0.1) + .rgbString(), + data: [10, 14, 12, 16, 9, 11, 13, 9, 13, 15], + }, + ], + }, + options: { + title: { display: !1 }, + tooltips: { + mode: 'nearest', + intersect: !1, + position: 'nearest', + xPadding: 10, + yPadding: 10, + caretPadding: 10, + }, + legend: { display: !1 }, + responsive: !0, + maintainAspectRatio: !1, + scales: { + xAxes: [{ display: !1, gridLines: !1, scaleLabel: { display: !0, labelString: 'Month' } }], + yAxes: [ + { + display: !1, + gridLines: !1, + scaleLabel: { display: !0, labelString: 'Value' }, + ticks: { beginAtZero: !0 }, + }, + ], + }, + elements: { line: { tension: 1e-7 }, point: { radius: 4, borderWidth: 12 } }, + layout: { padding: { left: 0, right: 0, top: 10, bottom: 0 } }, + }, + }; + new Chart(t, a); + } + })(), + (function() { + if (0 != $('#kt_chart_bandwidth2').length) { + var t = document.getElementById('kt_chart_bandwidth2').getContext('2d'), + e = t.createLinearGradient(0, 0, 0, 240); + e.addColorStop( + 0, + Chart.helpers + .color('#ffefce') + .alpha(1) + .rgbString(), + ), + e.addColorStop( + 1, + Chart.helpers + .color('#ffefce') + .alpha(0.3) + .rgbString(), + ); + var a = { + type: 'line', + data: { + labels: [ + 'January', + 'February', + 'March', + 'April', + 'May', + 'June', + 'July', + 'August', + 'September', + 'October', + ], + datasets: [ + { + label: 'Bandwidth Stats', + backgroundColor: e, + borderColor: KTApp.getStateColor('warning'), + pointBackgroundColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointBorderColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointHoverBackgroundColor: KTApp.getStateColor('danger'), + pointHoverBorderColor: Chart.helpers + .color('#000000') + .alpha(0.1) + .rgbString(), + data: [10, 14, 12, 16, 9, 11, 13, 9, 13, 15], + }, + ], + }, + options: { + title: { display: !1 }, + tooltips: { + mode: 'nearest', + intersect: !1, + position: 'nearest', + xPadding: 10, + yPadding: 10, + caretPadding: 10, + }, + legend: { display: !1 }, + responsive: !0, + maintainAspectRatio: !1, + scales: { + xAxes: [{ display: !1, gridLines: !1, scaleLabel: { display: !0, labelString: 'Month' } }], + yAxes: [ + { + display: !1, + gridLines: !1, + scaleLabel: { display: !0, labelString: 'Value' }, + ticks: { beginAtZero: !0 }, + }, + ], + }, + elements: { line: { tension: 1e-7 }, point: { radius: 4, borderWidth: 12 } }, + layout: { padding: { left: 0, right: 0, top: 10, bottom: 0 } }, + }, + }; + new Chart(t, a); + } + })(), + (function() { + if (0 != $('#kt_chart_adwords_stats').length) { + var t = document.getElementById('kt_chart_adwords_stats').getContext('2d'), + e = t.createLinearGradient(0, 0, 0, 240); + e.addColorStop( + 0, + Chart.helpers + .color('#ffefce') + .alpha(1) + .rgbString(), + ), + e.addColorStop( + 1, + Chart.helpers + .color('#ffefce') + .alpha(0.3) + .rgbString(), + ); + var a = { + type: 'line', + data: { + labels: [ + 'January', + 'February', + 'March', + 'April', + 'May', + 'June', + 'July', + 'August', + 'September', + 'October', + ], + datasets: [ + { + label: 'AdWord Clicks', + backgroundColor: KTApp.getStateColor('brand'), + borderColor: KTApp.getStateColor('brand'), + pointBackgroundColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointBorderColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointHoverBackgroundColor: KTApp.getStateColor('danger'), + pointHoverBorderColor: Chart.helpers + .color('#000000') + .alpha(0.1) + .rgbString(), + data: [12, 16, 9, 18, 13, 12, 18, 12, 15, 17], + }, + { + label: 'AdWords Views', + backgroundColor: KTApp.getStateColor('success'), + borderColor: KTApp.getStateColor('success'), + pointBackgroundColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointBorderColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointHoverBackgroundColor: KTApp.getStateColor('danger'), + pointHoverBorderColor: Chart.helpers + .color('#000000') + .alpha(0.1) + .rgbString(), + data: [10, 14, 12, 16, 9, 11, 13, 9, 13, 15], + }, + ], + }, + options: { + title: { display: !1 }, + tooltips: { + mode: 'nearest', + intersect: !1, + position: 'nearest', + xPadding: 10, + yPadding: 10, + caretPadding: 10, + }, + legend: { display: !1 }, + responsive: !0, + maintainAspectRatio: !1, + scales: { + xAxes: [{ display: !1, gridLines: !1, scaleLabel: { display: !0, labelString: 'Month' } }], + yAxes: [ + { + stacked: !0, + display: !1, + gridLines: !1, + scaleLabel: { display: !0, labelString: 'Value' }, + ticks: { beginAtZero: !0 }, + }, + ], + }, + elements: { line: { tension: 1e-7 }, point: { radius: 4, borderWidth: 12 } }, + layout: { padding: { left: 0, right: 0, top: 10, bottom: 0 } }, + }, + }; + new Chart(t, a); + } + })(), + (function() { + if (0 != $('#kt_chart_finance_summary').length) { + var t = document.getElementById('kt_chart_finance_summary').getContext('2d'), + e = { + type: 'line', + data: { + labels: [ + 'January', + 'February', + 'March', + 'April', + 'May', + 'June', + 'July', + 'August', + 'September', + 'October', + ], + datasets: [ + { + label: 'AdWords Views', + backgroundColor: KTApp.getStateColor('success'), + borderColor: KTApp.getStateColor('success'), + pointBackgroundColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointBorderColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointHoverBackgroundColor: KTApp.getStateColor('danger'), + pointHoverBorderColor: Chart.helpers + .color('#000000') + .alpha(0.1) + .rgbString(), + data: [10, 14, 12, 16, 9, 11, 13, 9, 13, 15], + }, + ], + }, + options: { + title: { display: !1 }, + tooltips: { + mode: 'nearest', + intersect: !1, + position: 'nearest', + xPadding: 10, + yPadding: 10, + caretPadding: 10, + }, + legend: { display: !1 }, + responsive: !0, + maintainAspectRatio: !1, + scales: { + xAxes: [{ display: !1, gridLines: !1, scaleLabel: { display: !0, labelString: 'Month' } }], + yAxes: [ + { + display: !1, + gridLines: !1, + scaleLabel: { display: !0, labelString: 'Value' }, + ticks: { beginAtZero: !0 }, + }, + ], + }, + elements: { line: { tension: 1e-7 }, point: { radius: 4, borderWidth: 12 } }, + layout: { padding: { left: 0, right: 0, top: 10, bottom: 0 } }, + }, + }; + new Chart(t, e); + } + })(), + t($('#kt_chart_quick_stats_1'), [10, 14, 18, 11, 9, 12, 14, 17, 18, 14], KTApp.getStateColor('brand'), 3), + t($('#kt_chart_quick_stats_2'), [11, 12, 18, 13, 11, 12, 15, 13, 19, 15], KTApp.getStateColor('danger'), 3), + t($('#kt_chart_quick_stats_3'), [12, 12, 18, 11, 15, 12, 13, 16, 11, 18], KTApp.getStateColor('success'), 3), + t($('#kt_chart_quick_stats_4'), [11, 9, 13, 18, 13, 15, 14, 13, 18, 15], KTApp.getStateColor('success'), 3), + (function() { + var t = KTUtil.getByID('kt_chart_order_statistics'); + if (t) { + var e = Chart.helpers.color, + a = { + labels: ['1 Jan', '2 Jan', '3 Jan', '4 Jan', '5 Jan', '6 Jan', '7 Jan'], + datasets: [ + { + fill: !0, + backgroundColor: e(KTApp.getStateColor('brand')) + .alpha(0.6) + .rgbString(), + borderColor: e(KTApp.getStateColor('brand')) + .alpha(0) + .rgbString(), + pointHoverRadius: 4, + pointHoverBorderWidth: 12, + pointBackgroundColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointBorderColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointHoverBackgroundColor: KTApp.getStateColor('brand'), + pointHoverBorderColor: Chart.helpers + .color('#000000') + .alpha(0.1) + .rgbString(), + data: [20, 30, 20, 40, 30, 60, 30], + }, + { + fill: !0, + backgroundColor: e(KTApp.getStateColor('brand')) + .alpha(0.2) + .rgbString(), + borderColor: e(KTApp.getStateColor('brand')) + .alpha(0) + .rgbString(), + pointHoverRadius: 4, + pointHoverBorderWidth: 12, + pointBackgroundColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointBorderColor: Chart.helpers + .color('#000000') + .alpha(0) + .rgbString(), + pointHoverBackgroundColor: KTApp.getStateColor('brand'), + pointHoverBorderColor: Chart.helpers + .color('#000000') + .alpha(0.1) + .rgbString(), + data: [15, 40, 15, 30, 40, 30, 50], + }, + ], + }, + r = t.getContext('2d'); + new Chart(r, { + type: 'line', + data: a, + options: { + responsive: !0, + maintainAspectRatio: !1, + legend: !1, + scales: { + xAxes: [ + { + categoryPercentage: 0.35, + barPercentage: 0.7, + display: !0, + scaleLabel: { display: !1, labelString: 'Month' }, + gridLines: !1, + ticks: { + display: !0, + beginAtZero: !0, + fontColor: KTApp.getBaseColor('shape', 3), + fontSize: 13, + padding: 10, + }, + }, + ], + yAxes: [ + { + categoryPercentage: 0.35, + barPercentage: 0.7, + display: !0, + scaleLabel: { display: !1, labelString: 'Value' }, + gridLines: { + color: KTApp.getBaseColor('shape', 2), + drawBorder: !1, + offsetGridLines: !1, + drawTicks: !1, + borderDash: [3, 4], + zeroLineWidth: 1, + zeroLineColor: KTApp.getBaseColor('shape', 2), + zeroLineBorderDash: [3, 4], + }, + ticks: { + max: 70, + stepSize: 10, + display: !0, + beginAtZero: !0, + fontColor: KTApp.getBaseColor('shape', 3), + fontSize: 13, + padding: 10, + }, + }, + ], + }, + title: { display: !1 }, + hover: { mode: 'index' }, + tooltips: { + enabled: !0, + intersect: !1, + mode: 'nearest', + bodySpacing: 5, + yPadding: 10, + xPadding: 10, + caretPadding: 0, + displayColors: !1, + backgroundColor: KTApp.getStateColor('brand'), + titleFontColor: '#ffffff', + cornerRadius: 4, + footerSpacing: 0, + titleSpacing: 0, + }, + layout: { padding: { left: 0, right: 0, top: 5, bottom: 5 } }, + }, + }); + } + })(), + (function() { + if (0 != $('#kt_dashboard_daterangepicker').length) { + var t = $('#kt_dashboard_daterangepicker'), + e = moment(), + a = moment(); + t.daterangepicker( + { + direction: KTUtil.isRTL(), + startDate: e, + endDate: a, + opens: 'left', + ranges: { + Today: [moment(), moment()], + Yesterday: [moment().subtract(1, 'days'), moment().subtract(1, 'days')], + 'Last 7 Days': [moment().subtract(6, 'days'), moment()], + 'Last 30 Days': [moment().subtract(29, 'days'), moment()], + 'This Month': [moment().startOf('month'), moment().endOf('month')], + 'Last Month': [ + moment() + .subtract(1, 'month') + .startOf('month'), + moment() + .subtract(1, 'month') + .endOf('month'), + ], + }, + }, + r, + ), + r(e, a, ''); + } + function r(t, e, a) { + var r = '', + o = ''; + e - t < 100 || 'Today' == a + ? ((r = 'Today:'), (o = t.format('MMM D'))) + : 'Yesterday' == a + ? ((r = 'Yesterday:'), (o = t.format('MMM D'))) + : (o = t.format('MMM D') + ' - ' + e.format('MMM D')), + $('#kt_dashboard_daterangepicker_date').html(o), + $('#kt_dashboard_daterangepicker_title').html(r); + } + })(), + 0 !== $('#kt_datatable_latest_orders').length && + $('.kt-datatable').KTDatatable({ + data: { + type: 'remote', + source: { + read: { + url: + 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/default.php', + }, + }, + pageSize: 10, + saveState: { cookie: !1, webstorage: !0 }, + serverPaging: !0, + serverFiltering: !0, + serverSorting: !0, + }, + layout: { theme: 'default', class: '', scroll: !0, height: 400, footer: !1 }, + sortable: !0, + filterable: !1, + pagination: !0, + columns: [ + { + field: 'RecordID', + title: '#', + sortable: !1, + width: 40, + selector: { class: 'kt-checkbox--solid' }, + textAlign: 'center', + }, + { + field: 'ShipName', + title: 'Company', + width: 'auto', + autoHide: !1, + template: function(t, e) { + for (var a = e + 1; a > 5; ) a -= 3; + return ( + '
    photo
    ' + + t.CompanyName + + '
    ' + ); + }, + }, + { + field: 'ShipDate', + title: 'Date', + width: 100, + template: function(t) { + return '' + t.ShipDate + ''; + }, + }, + { + field: 'Status', + title: 'Status', + width: 100, + template: function(t) { + var e = { + 1: { title: 'Pending', class: ' btn-label-brand' }, + 2: { title: 'Processing', class: ' btn-label-danger' }, + 3: { title: 'Success', class: ' btn-label-success' }, + 4: { title: 'Delivered', class: ' btn-label-success' }, + 5: { title: 'Canceled', class: ' btn-label-warning' }, + 6: { title: 'Done', class: ' btn-label-danger' }, + 7: { title: 'On Hold', class: ' btn-label-warning' }, + }; + return ( + '' + + e[t.Status].title + + '' + ); + }, + }, + { + field: 'Type', + title: 'Managed By', + width: 200, + template: function(t, e) { + for (var a = 4 + e; a > 12; ) a -= 3; + var r = '100_' + a + '.jpg', + o = KTUtil.getRandomInt(0, 5), + l = ['Developer', 'Designer', 'CEO', 'Manager', 'Architect', 'Sales']; + return a > 5 + ? '
    \t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\tphoto\t\t\t\t\t\t\t
    \t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t' + + t.CompanyAgent + + '\t\t\t\t\t\t\t\t' + + l[o] + + '\t\t\t\t\t\t\t
    \t\t\t\t\t\t
    ' + : '
    \t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t
    ' + + t.CompanyAgent.substring(0, 1) + + '
    \t\t\t\t\t\t\t
    \t\t\t\t\t\t\t
    \t\t\t\t\t\t\t\t' + + t.CompanyAgent + + '\t\t\t\t\t\t\t\t' + + l[o] + + '\t\t\t\t\t\t\t
    \t\t\t\t\t\t
    '; + }, + }, + { + field: 'Actions', + width: 80, + title: 'Actions', + sortable: !1, + autoHide: !1, + overflow: 'visible', + template: function() { + return ' '; + }, + }, + ], + }), + (function() { + if (0 !== $('#kt_calendar').length) { + var t = moment().startOf('day'); + t.format('YYYY-MM'), + t + .clone() + .subtract(1, 'day') + .format('YYYY-MM-DD'), + t.format('YYYY-MM-DD'), + t + .clone() + .add(1, 'day') + .format('YYYY-MM-DD'), + $('#kt_calendar').fullCalendar({ + isRTL: KTUtil.isRTL(), + header: { left: 'prev,next today', center: 'title', right: 'month,agendaWeek,agendaDay,listWeek' }, + editable: !0, + eventLimit: !0, + navLinks: !0, + defaultDate: moment('2017-09-15'), + events: [ + { + title: 'Meeting', + start: moment('2017-08-28'), + description: 'Lorem ipsum dolor sit incid idunt ut', + className: 'fc-event-light fc-event-solid-warning', + }, + { + title: 'Conference', + description: 'Lorem ipsum dolor incid idunt ut labore', + start: moment('2017-08-29T13:30:00'), + end: moment('2017-08-29T17:30:00'), + className: 'fc-event-success', + }, + { + title: 'Dinner', + start: moment('2017-08-30'), + description: 'Lorem ipsum dolor sit tempor incid', + className: 'fc-event-light fc-event-solid-danger', + }, + { + title: 'All Day Event', + start: moment('2017-09-01'), + description: 'Lorem ipsum dolor sit incid idunt ut', + className: 'fc-event-danger fc-event-solid-focus', + }, + { + title: 'Reporting', + description: 'Lorem ipsum dolor incid idunt ut labore', + start: moment('2017-09-03T13:30:00'), + end: moment('2017-09-04T17:30:00'), + className: 'fc-event-success', + }, + { + title: 'Company Trip', + start: moment('2017-09-05'), + end: moment('2017-09-07'), + description: 'Lorem ipsum dolor sit tempor incid', + className: 'fc-event-primary', + }, + { + title: 'ICT Expo 2017 - Product Release', + start: moment('2017-09-09'), + description: 'Lorem ipsum dolor sit tempor inci', + className: 'fc-event-light fc-event-solid-primary', + }, + { + title: 'Dinner', + start: moment('2017-09-12'), + description: 'Lorem ipsum dolor sit amet, conse ctetur', + }, + { + id: 999, + title: 'Repeating Event', + start: moment('2017-09-15T16:00:00'), + description: 'Lorem ipsum dolor sit ncididunt ut labore', + className: 'fc-event-danger', + }, + { + id: 1e3, + title: 'Repeating Event', + description: 'Lorem ipsum dolor sit amet, labore', + start: moment('2017-09-18T19:00:00'), + }, + { + title: 'Conference', + start: moment('2017-09-20T13:00:00'), + end: moment('2017-09-21T19:00:00'), + description: 'Lorem ipsum dolor eius mod tempor labore', + className: 'fc-event-success', + }, + { + title: 'Meeting', + start: moment('2017-09-11'), + description: 'Lorem ipsum dolor eiu idunt ut labore', + }, + { + title: 'Lunch', + start: moment('2017-09-18'), + className: 'fc-event-info fc-event-solid-success', + description: 'Lorem ipsum dolor sit amet, ut labore', + }, + { + title: 'Meeting', + start: moment('2017-09-24'), + className: 'fc-event-warning', + description: 'Lorem ipsum conse ctetur adipi scing', + }, + { + title: 'Happy Hour', + start: moment('2017-09-24'), + className: 'fc-event-light fc-event-solid-focus', + description: 'Lorem ipsum dolor sit amet, conse ctetur', + }, + { + title: 'Dinner', + start: moment('2017-09-24'), + className: 'fc-event-solid-focus fc-event-light', + description: 'Lorem ipsum dolor sit ctetur adipi scing', + }, + { + title: 'Birthday Party', + start: moment('2017-09-24'), + className: 'fc-event-primary', + description: 'Lorem ipsum dolor sit amet, scing', + }, + { + title: 'Company Event', + start: moment('2017-09-24'), + className: 'fc-event-danger', + description: 'Lorem ipsum dolor sit amet, scing', + }, + { + title: 'Click for Google', + url: 'http://google.com/', + start: moment('2017-09-26'), + className: 'fc-event-solid-info fc-event-light', + description: 'Lorem ipsum dolor sit amet, labore', + }, + ], + eventRender: function(t, e) { + e.hasClass('fc-day-grid-event') + ? (e.data('content', t.description), e.data('placement', 'top'), KTApp.initPopover(e)) + : e.hasClass('fc-time-grid-event') + ? e.find('.fc-title').append('
    ' + t.description + '
    ') + : 0 !== e.find('.fc-list-item-title').lenght && + e.find('.fc-list-item-title').append('
    ' + t.description + '
    '); + }, + }); + } + })(), + (e = $('#kt_earnings_widget .kt-widget30__head .owl-carousel')), + (a = $('#kt_earnings_widget .kt-widget30__body .owl-carousel')), + e.find('.carousel').each(function(t) { + $(this).attr('data-position', t); + }), + e.owlCarousel({ rtl: KTUtil.isRTL(), center: !0, loop: !0, items: 2 }), + a.owlCarousel({ rtl: KTUtil.isRTL(), items: 1, animateIn: 'fadeIn(100)', loop: !0 }), + $(document).on('click', '.carousel', function() { + var t = $(this).attr('data-position'); + t && (e.trigger('to.owl.carousel', t), a.trigger('to.owl.carousel', t)); + }), + e.on('changed.owl.carousel', function() { + var t = $(this) + .find('.owl-item.active.center') + .find('.carousel') + .attr('data-position'); + t && a.trigger('to.owl.carousel', t); + }), + a.on('changed.owl.carousel', function() { + var t = $(this) + .find('.owl-item.active.center') + .find('.carousel') + .attr('data-position'); + t && e.trigger('to.owl.carousel', t); + }); + var r = new KTDialog({ type: 'loader', placement: 'top center', message: 'Loading ...' }); + r.show(), + setTimeout(function() { + r.hide(); + }, 3e3); + }, + }; +})(); +jQuery(document).ready(function() { + KTDashboard.init(); +}); diff --git a/src/assets/app/custom/general/layout-builder.js b/src/assets/app/custom/general/layout-builder.js index a7d14e6..ee60643 100644 --- a/src/assets/app/custom/general/layout-builder.js +++ b/src/assets/app/custom/general/layout-builder.js @@ -1 +1,278 @@ -"use strict";var KTLayoutBuilder=function(){var e={init:function(){$("#kt-btn-howto").click(function(e){e.preventDefault(),$("#kt-howto").slideToggle()})},startLoad:function(e){$("#builder_export").addClass("kt-spinner kt-spinner--right kt-spinner--sm kt-spinner--light").find("span").text("Exporting...").closest(".kt-form__actions").find(".btn").attr("disabled",!0),toastr.info(e.title,e.message)},doneLoad:function(){$("#builder_export").removeClass("kt-spinner kt-spinner--right kt-spinner--sm kt-spinner--light").find("span").text("Export").closest(".kt-form__actions").find(".btn").attr("disabled",!1)},exportHtml:function(t){e.startLoad({title:"Generate HTML Partials",message:"Process started and it may take about 1 to 10 minutes."}),$.ajax("index.php",{method:"POST",data:{builder_export:1,export_type:"partial",demo:t,theme:"metronic"}}).done(function(t){var a=JSON.parse(t);if(a.message)e.stopWithNotify(a.message);else{var i=setInterval(function(){$.ajax("index.php",{method:"POST",data:{builder_export:1,builder_check:a.id}}).done(function(t){var a=JSON.parse(t);void 0!==a&&1===a.export_status&&$("