diff --git a/ej2-angular-toc.html b/ej2-angular-toc.html
index 4933d86f6d..7ccb233254 100644
--- a/ej2-angular-toc.html
+++ b/ej2-angular-toc.html
@@ -1918,6 +1918,7 @@
Grouping Bar
Field List
Defer Layout Update
+ Export and import reports as JSON through custom toolbar options
Performance
diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/angular.json b/ej2-angular/code-snippet/pivot-grid/save-and-load/angular.json
new file mode 100644
index 0000000000..98b735ee4b
--- /dev/null
+++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/angular.json
@@ -0,0 +1,70 @@
+{
+ "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
+ "version": 1,
+ "newProjectRoot": "projects",
+ "projects": {
+ "syncfusion-component": {
+ "projectType": "application",
+ "schematics": {},
+ "root": "",
+ "sourceRoot": "src",
+ "prefix": "app",
+ "architect": {
+ "build": {
+ "builder": "@angular-devkit/build-angular:browser",
+ "options": {
+ "outputPath": "dist",
+ "index": "index.html",
+ "main": "src/main.ts",
+ "tsConfig": "tsconfig.json",
+ "styles": [
+ "src/styles.css"
+ ],
+ "assets": []
+ },
+ "configurations": {
+ "production": {
+ "budgets": [
+ {
+ "type": "initial",
+ "maximumWarning": "500kb",
+ "maximumError": "10mb"
+ },
+ {
+ "type": "anyComponentStyle",
+ "maximumWarning": "2kb",
+ "maximumError": "4kb"
+ }
+ ],
+ "outputHashing": "all"
+ },
+ "development": {
+ "buildOptimizer": false,
+ "optimization": false,
+ "vendorChunk": true,
+ "extractLicenses": false,
+ "sourceMap": true,
+ "namedChunks": true
+ }
+ },
+ "defaultConfiguration": "production"
+ },
+ "serve": {
+ "builder": "@angular-devkit/build-angular:dev-server",
+ "configurations": {
+ "production": {
+ "buildTarget": "syncfusion-component:build:production"
+ },
+ "development": {
+ "buildTarget": "syncfusion-component:build:development"
+ }
+ },
+ "defaultConfiguration": "development"
+ }
+ }
+ }
+ },
+ "cli": {
+ "analytics": false
+ }
+}
\ No newline at end of file
diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/index.html b/ej2-angular/code-snippet/pivot-grid/save-and-load/index.html
new file mode 100644
index 0000000000..e5fd1cbf70
--- /dev/null
+++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/index.html
@@ -0,0 +1,164 @@
+
+
+
+
+ Syncfusion Angular Pivot Grid
+
+
+
+
+
+
+
+
+
+
+
+ Loading....
+
+
+
+
\ No newline at end of file
diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/package.json b/ej2-angular/code-snippet/pivot-grid/save-and-load/package.json
new file mode 100644
index 0000000000..9ab3ea2090
--- /dev/null
+++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/package.json
@@ -0,0 +1,51 @@
+{
+ "name": "syncfusion-component",
+ "version": "0.0.0",
+ "scripts": {
+ "ng": "ng",
+ "start": "ng serve",
+ "build": "ng build",
+ "watch": "ng build --watch --configuration development",
+ "test": "ng test"
+ },
+ "private": true,
+ "dependencies": {
+ "@angular/core": "17.1.2",
+ "@angular/platform-browser": "17.1.2",
+ "@angular/platform-browser-dynamic": "17.1.2",
+ "@syncfusion/ej2-angular-pivotview": "*",
+ "@syncfusion/ej2-base": "*",
+ "@syncfusion/ej2-buttons": "*",
+ "@syncfusion/ej2-dropdowns": "*",
+ "@syncfusion/ej2-grids": "*",
+ "@syncfusion/ej2-inputs": "*",
+ "@syncfusion/ej2-lists": "*",
+ "@syncfusion/ej2-navigations": "*",
+ "@syncfusion/ej2-popups": "*",
+ "@syncfusion/ej2-splitbuttons": "*",
+ "@syncfusion/ej2-angular-base": "*",
+ "@angular/animations": "17.1.2",
+ "@angular/common": "17.1.2",
+ "@angular/compiler": "17.1.2",
+ "@angular/forms": "17.1.2",
+ "@angular/router": "17.1.2",
+ "moment": "2.29.4",
+ "rxjs": "7.8.0",
+ "tslib": "2.3.0",
+ "zone.js": "0.14.3",
+ "@syncfusion/ej2-pivotview": "*"
+ },
+ "devDependencies": {
+ "@angular-devkit/build-angular": "17.1.2",
+ "@angular/cli": "17.1.2",
+ "@angular/compiler-cli": "17.1.2",
+ "@types/jasmine": "4.3.0",
+ "jasmine-core": "4.5.0",
+ "karma": "6.4.0",
+ "karma-chrome-launcher": "3.1.0",
+ "karma-coverage": "2.2.0",
+ "karma-jasmine": "5.1.0",
+ "karma-jasmine-html-reporter": "2.0.0",
+ "typescript": "5.3.3"
+ }
+}
\ No newline at end of file
diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/app.component.css b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/app.component.css
new file mode 100644
index 0000000000..5b5c7c645f
--- /dev/null
+++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/app.component.css
@@ -0,0 +1,88 @@
+/* csslint ignore:start */
+#PivotViewFieldList {
+ float: left;
+ width: 58% !important;
+ height: 100%;
+}
+
+#PivotFieldList {
+ float: right;
+ width: 42%;
+ height: 100%;
+}
+
+#PivotFieldList .e-static {
+ width: 100% !important;
+}
+/* csslint ignore:end */
+
+
+.e-pivotview .e-columnsheader .tempwrap {
+ display: none;
+}
+.e-pivotview .e-rowsheader .tempwrap {
+ display: none;
+}
+
+/* csslint ignore:start */
+@font-face {
+ font-family: 'e-pivot';
+ src:
+ url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAAKAIAAAwAgT1MvMjhUSmAAAAEoAAAAVmNtYXCs3q0zAAABkAAAAEpnbHlmdaItOwAAAegAAAE0aGVhZBRYEz0AAADQAAAANmhoZWEHmQNtAAAArAAAACRobXR4D7gAAAAAAYAAAAAQbG9jYQDAAHIAAAHcAAAACm1heHABDwBBAAABCAAAACBuYW1lc0cOBgAAAxwAAAIlcG9zdK9TctUAAAVEAAAARwABAAADUv9qAFoEAAAA//4D6gABAAAAAAAAAAAAAAAAAAAABAABAAAAAQAAT8kba18PPPUACwPoAAAAANin5zgAAAAA2KfnOAAAAAAD6gPoAAAACAACAAAAAAAAAAEAAAAEADUAAQAAAAAAAgAAAAoACgAAAP8AAAAAAAAAAQPuAZAABQAAAnoCvAAAAIwCegK8AAAB4AAxAQIAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA4jToTQNS/2oAWgPoAJYAAAABAAAAAAAABAAAAAPoAAAD6AAAA+gAAAAAAAIAAAADAAAAFAADAAEAAAAUAAQANgAAAAgACAACAADiNOI56E3//wAA4jTiOehN//8AAAAAAAAAAQAIAAgACAAAAAEAAwACAAAAAAAAACYAcgCaAAAAAQAAAAADTAPoABUAAAkBBhY7AREUFjsBMjY1ETMyNicBJiIB3f7KCw4SxxAMqgwQxhIPC/7FCBgD3/6tDyH9wAwQEAwCQCEPAVMJAAEAAAAAA+oDTAA0AAABMx8BAR8DDwMBDwMjLwwhLwE1NzUnPwEhPwQ1PwQCXgIFCQFxBAIEAgEDBAf+ogYKBQUEAwQDAwICAQIBAQYJCf3mAgEDAgEBAh4KCAQCAQICAgIDA0wBBf7VAwQJCQkJCQf+4QQGAgEBAQIDBAQFC50DBAQDAQICCuANAgECBQIDAqcMBQQDAQAAAQAAAAADTAPoABYAAAEGFREjIgYXARYyNwE2JisBETQmKwEiAYsIxhIPDAE5CRgJATUMDhPGEAyqDAPgCAz9wCEP/q0JCQFTDyECQAwQAAAAABIA3gABAAAAAAAAAAEAAAABAAAAAAABAAcAAQABAAAAAAACAAcACAABAAAAAAADAAcADwABAAAAAAAEAAcAFgABAAAAAAAFAAsAHQABAAAAAAAGAAcAKAABAAAAAAAKACwALwABAAAAAAALABIAWwADAAEECQAAAAIAbQADAAEECQABAA4AbwADAAEECQACAA4AfQADAAEECQADAA4AiwADAAEECQAEAA4AmQADAAEECQAFABYApwADAAEECQAGAA4AvQADAAEECQAKAFgAywADAAEECQALACQBIyBlLWljb25zUmVndWxhcmUtaWNvbnNlLWljb25zVmVyc2lvbiAxLjBlLWljb25zRm9udCBnZW5lcmF0ZWQgdXNpbmcgU3luY2Z1c2lvbiBNZXRybyBTdHVkaW93d3cuc3luY2Z1c2lvbi5jb20AIABlAC0AaQBjAG8AbgBzAFIAZQBnAHUAbABhAHIAZQAtAGkAYwBvAG4AcwBlAC0AaQBjAG8AbgBzAFYAZQByAHMAaQBvAG4AIAAxAC4AMABlAC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAHUAcwBpAG4AZwAgAFMAeQBuAGMAZgB1AHMAaQBvAG4AIABNAGUAdAByAG8AIABTAHQAdQBkAGkAbwB3AHcAdwAuAHMAeQBuAGMAZgB1AHMAaQBvAG4ALgBjAG8AbQAAAAACAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQBAgEDAQQBBQADVXAxC2Fycm93LXJpZ2h0CURvd25fU29ydAAAAA==) format('truetype');
+ font-weight: normal;
+ font-style: normal;
+}
+
+.pv-icons {
+ font-family: 'e-pivot';
+ font-style: normal;
+ font-variant: normal;
+ font-weight: normal;
+ text-transform: none;
+ line-height: 1;
+}
+
+.sb-icon-profit::before {
+ content: '\e234';
+ padding-left: 30px;
+ margin: auto !important;
+ color: #219122;
+ size: 20px;
+}
+
+.sb-icon-neutral::before {
+ content: '\e84d';
+ padding-left: 30px;
+ margin: auto !important;
+ color: #82b5e9;
+}
+
+.sb-icon-loss::before {
+ content: '\e239';
+ padding-left: 30px;
+ margin: auto !important;
+ color: #ff2222;
+}
+
+.e-pivotview .e-tool-expand::before {
+ content: '\e702';
+}
+
+.fileUpload {
+ position: relative;
+ overflow: hidden;
+ margin: 10px;
+}
+
+.fileUpload input.upload {
+ position: absolute;
+ top: 0;
+ right: 0;
+ margin: 0;
+ padding: 0;
+ font-size: 20px;
+ cursor: pointer;
+ opacity: 0;
+ filter: alpha(opacity=0);
+}
+/* csslint ignore:end */
\ No newline at end of file
diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/app.component.ts b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/app.component.ts
new file mode 100644
index 0000000000..2839139435
--- /dev/null
+++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/app.component.ts
@@ -0,0 +1,91 @@
+import { NgModule } from '@angular/core';
+import { BrowserModule } from '@angular/platform-browser';
+import { PivotViewAllModule, PivotFieldListAllModule } from '@syncfusion/ej2-angular-pivotview';
+import { Component, ViewChild, OnInit } from '@angular/core';
+import { IDataOptions, PivotView, ToolbarService, IDataSet } from '@syncfusion/ej2-angular-pivotview';
+import { GridSettings } from '@syncfusion/ej2-pivotview/src/pivotview/model/gridsettings';
+import { enableRipple } from '@syncfusion/ej2-base';
+import { Pivot_Data } from './datasource';
+enableRipple(false);
+
+@Component({
+ selector: 'app-container',
+ template: `
+
+
+
+
+ `,
+ providers: [ToolbarService],
+ standalone: true,
+ imports: [
+ PivotViewAllModule,
+ PivotFieldListAllModule
+ ]
+})
+export class AppComponent implements OnInit {
+ public dataSourceSettings?: IDataOptions;
+ public gridSettings?: GridSettings;
+ public toolbarOptions?: any;
+
+ @ViewChild('pivotview')
+ public pivotObj?: PivotView;
+
+ ngOnInit(): void {
+ this.gridSettings = {
+ columnWidth: 140
+ } as GridSettings;
+
+ this.toolbarOptions = `#template`;
+
+ this.dataSourceSettings = {
+ enableSorting: true,
+ columns: [{ name: 'Year' }, { name: 'Order_Source', caption: 'Order Source' }],
+ rows: [{ name: 'Country' }, { name: 'Products' }],
+ formatSettings: [{ name: 'Amount', format: 'C0' }],
+ dataSource: Pivot_Data as IDataSet[],
+ expandAll: false,
+ values: [{ name: 'Sold', caption: 'Units Sold' }, { name: 'Amount', caption: 'Sold Amount' }],
+ filters: [{ name: 'Product_Categories', caption: 'Product Categories' }]
+ };
+ }
+
+ saveData(): void {
+ if(this.pivotObj)
+ {
+ const dataSource = JSON.parse(this.pivotObj?.getPersistData()).dataSourceSettings;
+ const a: HTMLAnchorElement = document.createElement('a');
+ const mime_type = 'application/octet-stream';
+ a.setAttribute('download', 'pivot.JSON');
+ a.href = 'data:' + mime_type + ';base64,' + btoa(JSON.stringify(dataSource) || '');
+ document.body.appendChild(a);
+ a.click();
+ document.body.removeChild(a);
+ }
+ }
+
+ // Read and load data from JSON file
+ readBlob(event: Event): void {
+ const input = event.target as HTMLInputElement;
+ const file = input.files?.[0];
+ if (file) {
+ const reader = new FileReader();
+ reader.onloadend = (evt: ProgressEvent) => {
+ if (evt.target?.readyState === FileReader.DONE) {
+ const result = evt.target.result as string;
+ this.pivotObj!.dataSourceSettings = JSON.parse(result);
+ }
+ };
+ reader.readAsText(file);
+ }
+ input.value = '';
+ }
+}
diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/ca-gregorian.json b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/ca-gregorian.json
new file mode 100644
index 0000000000..025abf4a93
--- /dev/null
+++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/ca-gregorian.json
@@ -0,0 +1,500 @@
+{
+ "main": {
+ "de": {
+ "identity": {
+ "version": {
+ "_number": "$Revision: 12879 $",
+ "_cldrVersion": "30.0.3"
+ },
+ "language": "de"
+ },
+ "dates": {
+ "calendars": {
+ "gregorian": {
+ "months": {
+ "format": {
+ "abbreviated": {
+ "1": "Jan.",
+ "2": "Feb.",
+ "3": "März",
+ "4": "Apr.",
+ "5": "Mai",
+ "6": "Juni",
+ "7": "Juli",
+ "8": "Aug.",
+ "9": "Sep.",
+ "10": "Okt.",
+ "11": "Nov.",
+ "12": "Dez."
+ },
+ "narrow": {
+ "1": "J",
+ "2": "F",
+ "3": "M",
+ "4": "A",
+ "5": "M",
+ "6": "J",
+ "7": "J",
+ "8": "A",
+ "9": "S",
+ "10": "O",
+ "11": "N",
+ "12": "D"
+ },
+ "wide": {
+ "1": "Januar",
+ "2": "Februar",
+ "3": "März",
+ "4": "April",
+ "5": "Mai",
+ "6": "Juni",
+ "7": "Juli",
+ "8": "August",
+ "9": "September",
+ "10": "Oktober",
+ "11": "November",
+ "12": "Dezember"
+ }
+ },
+ "stand-alone": {
+ "abbreviated": {
+ "1": "Jan",
+ "2": "Feb",
+ "3": "Mär",
+ "4": "Apr",
+ "5": "Mai",
+ "6": "Jun",
+ "7": "Jul",
+ "8": "Aug",
+ "9": "Sep",
+ "10": "Okt",
+ "11": "Nov",
+ "12": "Dez"
+ },
+ "narrow": {
+ "1": "J",
+ "2": "F",
+ "3": "M",
+ "4": "A",
+ "5": "M",
+ "6": "J",
+ "7": "J",
+ "8": "A",
+ "9": "S",
+ "10": "O",
+ "11": "N",
+ "12": "D"
+ },
+ "wide": {
+ "1": "Januar",
+ "2": "Februar",
+ "3": "März",
+ "4": "April",
+ "5": "Mai",
+ "6": "Juni",
+ "7": "Juli",
+ "8": "August",
+ "9": "September",
+ "10": "Oktober",
+ "11": "November",
+ "12": "Dezember"
+ }
+ }
+ },
+ "days": {
+ "format": {
+ "abbreviated": {
+ "sun": "So.",
+ "mon": "Mo.",
+ "tue": "Di.",
+ "wed": "Mi.",
+ "thu": "Do.",
+ "fri": "Fr.",
+ "sat": "Sa."
+ },
+ "narrow": {
+ "sun": "S",
+ "mon": "M",
+ "tue": "D",
+ "wed": "M",
+ "thu": "D",
+ "fri": "F",
+ "sat": "S"
+ },
+ "short": {
+ "sun": "So.",
+ "mon": "Mo.",
+ "tue": "Di.",
+ "wed": "Mi.",
+ "thu": "Do.",
+ "fri": "Fr.",
+ "sat": "Sa."
+ },
+ "wide": {
+ "sun": "Sonntag",
+ "mon": "Montag",
+ "tue": "Dienstag",
+ "wed": "Mittwoch",
+ "thu": "Donnerstag",
+ "fri": "Freitag",
+ "sat": "Samstag"
+ }
+ },
+ "stand-alone": {
+ "abbreviated": {
+ "sun": "So",
+ "mon": "Mo",
+ "tue": "Di",
+ "wed": "Mi",
+ "thu": "Do",
+ "fri": "Fr",
+ "sat": "Sa"
+ },
+ "narrow": {
+ "sun": "S",
+ "mon": "M",
+ "tue": "D",
+ "wed": "M",
+ "thu": "D",
+ "fri": "F",
+ "sat": "S"
+ },
+ "short": {
+ "sun": "So.",
+ "mon": "Mo.",
+ "tue": "Di.",
+ "wed": "Mi.",
+ "thu": "Do.",
+ "fri": "Fr.",
+ "sat": "Sa."
+ },
+ "wide": {
+ "sun": "Sonntag",
+ "mon": "Montag",
+ "tue": "Dienstag",
+ "wed": "Mittwoch",
+ "thu": "Donnerstag",
+ "fri": "Freitag",
+ "sat": "Samstag"
+ }
+ }
+ },
+ "quarters": {
+ "format": {
+ "abbreviated": {
+ "1": "Q1",
+ "2": "Q2",
+ "3": "Q3",
+ "4": "Q4"
+ },
+ "narrow": {
+ "1": "1",
+ "2": "2",
+ "3": "3",
+ "4": "4"
+ },
+ "wide": {
+ "1": "1. Quartal",
+ "2": "2. Quartal",
+ "3": "3. Quartal",
+ "4": "4. Quartal"
+ }
+ },
+ "stand-alone": {
+ "abbreviated": {
+ "1": "Q1",
+ "2": "Q2",
+ "3": "Q3",
+ "4": "Q4"
+ },
+ "narrow": {
+ "1": "1",
+ "2": "2",
+ "3": "3",
+ "4": "4"
+ },
+ "wide": {
+ "1": "1. Quartal",
+ "2": "2. Quartal",
+ "3": "3. Quartal",
+ "4": "4. Quartal"
+ }
+ }
+ },
+ "dayPeriods": {
+ "format": {
+ "abbreviated": {
+ "midnight": "Mitternacht",
+ "am": "vorm.",
+ "pm": "nachm.",
+ "morning1": "morgens",
+ "morning2": "vormittags",
+ "afternoon1": "mittags",
+ "afternoon2": "nachmittags",
+ "evening1": "abends",
+ "night1": "nachts"
+ },
+ "narrow": {
+ "midnight": "Mitternacht",
+ "am": "vm.",
+ "pm": "nm.",
+ "morning1": "morgens",
+ "morning2": "vormittags",
+ "afternoon1": "mittags",
+ "afternoon2": "nachmittags",
+ "evening1": "abends",
+ "night1": "nachts"
+ },
+ "wide": {
+ "midnight": "Mitternacht",
+ "am": "vorm.",
+ "pm": "nachm.",
+ "morning1": "morgens",
+ "morning2": "vormittags",
+ "afternoon1": "mittags",
+ "afternoon2": "nachmittags",
+ "evening1": "abends",
+ "night1": "nachts"
+ }
+ },
+ "stand-alone": {
+ "abbreviated": {
+ "midnight": "Mitternacht",
+ "am": "vorm.",
+ "pm": "nachm.",
+ "morning1": "Morgen",
+ "morning2": "Vormittag",
+ "afternoon1": "Mittag",
+ "afternoon2": "Nachmittag",
+ "evening1": "Abend",
+ "night1": "Nacht"
+ },
+ "narrow": {
+ "midnight": "Mitternacht",
+ "am": "vorm.",
+ "pm": "nachm.",
+ "morning1": "Morgen",
+ "morning2": "Vormittag",
+ "afternoon1": "Mittag",
+ "afternoon2": "Nachmittag",
+ "evening1": "Abend",
+ "night1": "Nacht"
+ },
+ "wide": {
+ "midnight": "Mitternacht",
+ "am": "vorm.",
+ "pm": "nachm.",
+ "morning1": "Morgen",
+ "morning2": "Vormittag",
+ "afternoon1": "Mittag",
+ "afternoon2": "Nachmittag",
+ "evening1": "Abend",
+ "night1": "Nacht"
+ }
+ }
+ },
+ "eras": {
+ "eraNames": {
+ "0": "v. Chr.",
+ "0-alt-variant": "vor unserer Zeitrechnung",
+ "1": "n. Chr.",
+ "1-alt-variant": "unserer Zeitrechnung"
+ },
+ "eraAbbr": {
+ "0": "v. Chr.",
+ "0-alt-variant": "v. u. Z.",
+ "1": "n. Chr.",
+ "1-alt-variant": "u. Z."
+ },
+ "eraNarrow": {
+ "0": "v. Chr.",
+ "0-alt-variant": "v. u. Z.",
+ "1": "n. Chr.",
+ "1-alt-variant": "u. Z."
+ }
+ },
+ "dateFormats": {
+ "full": "EEEE, d. MMMM y",
+ "long": "d. MMMM y",
+ "medium": "dd.MM.y",
+ "short": "dd.MM.yy"
+ },
+ "timeFormats": {
+ "full": "HH:mm:ss zzzz",
+ "long": "HH:mm:ss z",
+ "medium": "HH:mm:ss",
+ "short": "HH:mm"
+ },
+ "dateTimeFormats": {
+ "full": "{1} 'um' {0}",
+ "long": "{1} 'um' {0}",
+ "medium": "{1}, {0}",
+ "short": "{1}, {0}",
+ "availableFormats": {
+ "d": "d",
+ "E": "ccc",
+ "Ed": "E, d.",
+ "Ehm": "E h:mm a",
+ "EHm": "E, HH:mm",
+ "Ehms": "E, h:mm:ss a",
+ "EHms": "E, HH:mm:ss",
+ "Gy": "y G",
+ "GyMMM": "MMM y G",
+ "GyMMMd": "d. MMM y G",
+ "GyMMMEd": "E, d. MMM y G",
+ "h": "h 'Uhr' a",
+ "H": "HH 'Uhr'",
+ "hm": "h:mm a",
+ "Hm": "HH:mm",
+ "hms": "h:mm:ss a",
+ "Hms": "HH:mm:ss",
+ "hmsv": "h:mm:ss a v",
+ "Hmsv": "HH:mm:ss v",
+ "hmv": "h:mm a v",
+ "Hmv": "HH:mm v",
+ "M": "L",
+ "Md": "d.M.",
+ "MEd": "E, d.M.",
+ "MMd": "d.MM.",
+ "MMdd": "dd.MM.",
+ "MMM": "LLL",
+ "MMMd": "d. MMM",
+ "MMMEd": "E, d. MMM",
+ "MMMMd": "d. MMMM",
+ "MMMMEd": "E, d. MMMM",
+ "MMMMW": "'Woche' W 'im' MMM",
+ "MMMMW": "'Woche' W 'im' MMM",
+ "ms": "mm:ss",
+ "y": "y",
+ "yM": "M.y",
+ "yMd": "d.M.y",
+ "yMEd": "E, d.M.y",
+ "yMM": "MM.y",
+ "yMMdd": "dd.MM.y",
+ "yMMM": "MMM y",
+ "yMMMd": "d. MMM y",
+ "yMMMEd": "E, d. MMM y",
+ "yMMMM": "MMMM y",
+ "yQQQ": "QQQ y",
+ "yQQQQ": "QQQQ y",
+ "yw": "'Woche' w 'des' 'Jahres' y",
+ "yw": "'Woche' w 'des' 'Jahres' y"
+ },
+ "appendItems": {
+ "Day": "{0} ({2}: {1})",
+ "Day-Of-Week": "{0} {1}",
+ "Era": "{1} {0}",
+ "Hour": "{0} ({2}: {1})",
+ "Minute": "{0} ({2}: {1})",
+ "Month": "{0} ({2}: {1})",
+ "Quarter": "{0} ({2}: {1})",
+ "Second": "{0} ({2}: {1})",
+ "Timezone": "{0} {1}",
+ "Week": "{0} ({2}: {1})",
+ "Year": "{1} {0}"
+ },
+ "intervalFormats": {
+ "intervalFormatFallback": "{0} – {1}",
+ "d": {
+ "d": "d.–d."
+ },
+ "h": {
+ "a": "h 'Uhr' a – h 'Uhr' a",
+ "h": "h – h 'Uhr' a"
+ },
+ "H": {
+ "H": "HH–HH 'Uhr'"
+ },
+ "hm": {
+ "a": "h:mm a – h:mm a",
+ "h": "h:mm–h:mm a",
+ "m": "h:mm–h:mm a"
+ },
+ "Hm": {
+ "H": "HH:mm–HH:mm 'Uhr'",
+ "m": "HH:mm–HH:mm 'Uhr'"
+ },
+ "hmv": {
+ "a": "h:mm a – h:mm a v",
+ "h": "h:mm–h:mm a v",
+ "m": "h:mm–h:mm a v"
+ },
+ "Hmv": {
+ "H": "HH:mm–HH:mm 'Uhr' v",
+ "m": "HH:mm–HH:mm 'Uhr' v"
+ },
+ "hv": {
+ "a": "h a – h a v",
+ "h": "h–h a v"
+ },
+ "Hv": {
+ "H": "HH–HH 'Uhr' v"
+ },
+ "M": {
+ "M": "M.–M."
+ },
+ "Md": {
+ "d": "dd.MM. – dd.MM.",
+ "M": "dd.MM. – dd.MM."
+ },
+ "MEd": {
+ "d": "E, dd.MM. – E, dd.MM.",
+ "M": "E, dd.MM. – E, dd.MM."
+ },
+ "MMM": {
+ "M": "MMM–MMM"
+ },
+ "MMMd": {
+ "d": "d.–d. MMM",
+ "M": "d. MMM – d. MMM"
+ },
+ "MMMEd": {
+ "d": "E, d. – E, d. MMM",
+ "M": "E, d. MMM – E, d. MMM"
+ },
+ "MMMM": {
+ "M": "LLLL–LLLL"
+ },
+ "y": {
+ "y": "y–y"
+ },
+ "yM": {
+ "M": "MM.y – MM.y",
+ "y": "MM.y – MM.y"
+ },
+ "yMd": {
+ "d": "dd.MM.y – dd.MM.y",
+ "M": "dd.MM.y – dd.MM.y",
+ "y": "dd.MM.y – dd.MM.y"
+ },
+ "yMEd": {
+ "d": "E, dd.MM.y – E, dd.MM.y",
+ "M": "E, dd.MM.y – E, dd.MM.y",
+ "y": "E, dd.MM.y – E, dd.MM.y"
+ },
+ "yMMM": {
+ "M": "MMM–MMM y",
+ "y": "MMM y – MMM y"
+ },
+ "yMMMd": {
+ "d": "d.–d. MMM y",
+ "M": "d. MMM – d. MMM y",
+ "y": "d. MMM y – d. MMM y"
+ },
+ "yMMMEd": {
+ "d": "E, d. – E, d. MMM y",
+ "M": "E, d. MMM – E, d. MMM y",
+ "y": "E, d. MMM y – E, d. MMM y"
+ },
+ "yMMMM": {
+ "M": "MMMM–MMMM y",
+ "y": "MMMM y – MMMM y"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/currencies.json b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/currencies.json
new file mode 100644
index 0000000000..7f5935168e
--- /dev/null
+++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/currencies.json
@@ -0,0 +1,1901 @@
+{
+ "main": {
+ "de": {
+ "identity": {
+ "version": {
+ "_number": "$Revision: 13259 $",
+ "_cldrVersion": "31"
+ },
+ "language": "de"
+ },
+ "numbers": {
+ "currencies": {
+ "ADP": {
+ "displayName": "Andorranische Pesete",
+ "displayName-count-one": "Andorranische Pesete",
+ "displayName-count-other": "Andorranische Peseten",
+ "symbol": "ADP"
+ },
+ "AED": {
+ "displayName": "VAE-Dirham",
+ "displayName-count-one": "VAE-Dirham",
+ "displayName-count-other": "VAE-Dirham",
+ "symbol": "AED"
+ },
+ "AFA": {
+ "displayName": "Afghanische Afghani (1927–2002)",
+ "displayName-count-one": "Afghanische Afghani (1927–2002)",
+ "displayName-count-other": "Afghanische Afghani (1927–2002)",
+ "symbol": "AFA"
+ },
+ "AFN": {
+ "displayName": "Afghanischer Afghani",
+ "displayName-count-one": "Afghanischer Afghani",
+ "displayName-count-other": "Afghanische Afghani",
+ "symbol": "AFN"
+ },
+ "ALK": {
+ "displayName": "Albanischer Lek (1946–1965)",
+ "displayName-count-one": "Albanischer Lek (1946–1965)",
+ "displayName-count-other": "Albanische Lek (1946–1965)"
+ },
+ "ALL": {
+ "displayName": "Albanischer Lek",
+ "displayName-count-one": "Albanischer Lek",
+ "displayName-count-other": "Albanische Lek",
+ "symbol": "ALL"
+ },
+ "AMD": {
+ "displayName": "Armenischer Dram",
+ "displayName-count-one": "Armenischer Dram",
+ "displayName-count-other": "Armenische Dram",
+ "symbol": "AMD"
+ },
+ "ANG": {
+ "displayName": "Niederländische-Antillen-Gulden",
+ "displayName-count-one": "Niederländische-Antillen-Gulden",
+ "displayName-count-other": "Niederländische-Antillen-Gulden",
+ "symbol": "ANG"
+ },
+ "AOA": {
+ "displayName": "Angolanischer Kwanza",
+ "displayName-count-one": "Angolanischer Kwanza",
+ "displayName-count-other": "Angolanische Kwanza",
+ "symbol": "AOA",
+ "symbol-alt-narrow": "Kz"
+ },
+ "AOK": {
+ "displayName": "Angolanischer Kwanza (1977–1990)",
+ "displayName-count-one": "Angolanischer Kwanza (1977–1990)",
+ "displayName-count-other": "Angolanische Kwanza (1977–1990)",
+ "symbol": "AOK"
+ },
+ "AON": {
+ "displayName": "Angolanischer Neuer Kwanza (1990–2000)",
+ "displayName-count-one": "Angolanischer Neuer Kwanza (1990–2000)",
+ "displayName-count-other": "Angolanische Neue Kwanza (1990–2000)",
+ "symbol": "AON"
+ },
+ "AOR": {
+ "displayName": "Angolanischer Kwanza Reajustado (1995–1999)",
+ "displayName-count-one": "Angolanischer Kwanza Reajustado (1995–1999)",
+ "displayName-count-other": "Angolanische Kwanza Reajustado (1995–1999)",
+ "symbol": "AOR"
+ },
+ "ARA": {
+ "displayName": "Argentinischer Austral",
+ "displayName-count-one": "Argentinischer Austral",
+ "displayName-count-other": "Argentinische Austral",
+ "symbol": "ARA"
+ },
+ "ARL": {
+ "displayName": "Argentinischer Peso Ley (1970–1983)",
+ "displayName-count-one": "Argentinischer Peso Ley (1970–1983)",
+ "displayName-count-other": "Argentinische Pesos Ley (1970–1983)",
+ "symbol": "ARL"
+ },
+ "ARM": {
+ "displayName": "Argentinischer Peso (1881–1970)",
+ "displayName-count-one": "Argentinischer Peso (1881–1970)",
+ "displayName-count-other": "Argentinische Pesos (1881–1970)",
+ "symbol": "ARM"
+ },
+ "ARP": {
+ "displayName": "Argentinischer Peso (1983–1985)",
+ "displayName-count-one": "Argentinischer Peso (1983–1985)",
+ "displayName-count-other": "Argentinische Peso (1983–1985)",
+ "symbol": "ARP"
+ },
+ "ARS": {
+ "displayName": "Argentinischer Peso",
+ "displayName-count-one": "Argentinischer Peso",
+ "displayName-count-other": "Argentinische Pesos",
+ "symbol": "ARS",
+ "symbol-alt-narrow": "$"
+ },
+ "ATS": {
+ "displayName": "Österreichischer Schilling",
+ "displayName-count-one": "Österreichischer Schilling",
+ "displayName-count-other": "Österreichische Schilling",
+ "symbol": "öS"
+ },
+ "AUD": {
+ "displayName": "Australischer Dollar",
+ "displayName-count-one": "Australischer Dollar",
+ "displayName-count-other": "Australische Dollar",
+ "symbol": "AU$",
+ "symbol-alt-narrow": "$"
+ },
+ "AWG": {
+ "displayName": "Aruba-Florin",
+ "displayName-count-one": "Aruba-Florin",
+ "displayName-count-other": "Aruba-Florin",
+ "symbol": "AWG"
+ },
+ "AZM": {
+ "displayName": "Aserbaidschan-Manat (1993–2006)",
+ "displayName-count-one": "Aserbaidschan-Manat (1993–2006)",
+ "displayName-count-other": "Aserbaidschan-Manat (1993–2006)",
+ "symbol": "AZM"
+ },
+ "AZN": {
+ "displayName": "Aserbaidschan-Manat",
+ "displayName-count-one": "Aserbaidschan-Manat",
+ "displayName-count-other": "Aserbaidschan-Manat",
+ "symbol": "AZN"
+ },
+ "BAD": {
+ "displayName": "Bosnien und Herzegowina Dinar (1992–1994)",
+ "displayName-count-one": "Bosnien und Herzegowina Dinar (1992–1994)",
+ "displayName-count-other": "Bosnien und Herzegowina Dinar (1992–1994)",
+ "symbol": "BAD"
+ },
+ "BAM": {
+ "displayName": "Bosnien und Herzegowina Konvertierbare Mark",
+ "displayName-count-one": "Bosnien und Herzegowina Konvertierbare Mark",
+ "displayName-count-other": "Bosnien und Herzegowina Konvertierbare Mark",
+ "symbol": "BAM",
+ "symbol-alt-narrow": "KM"
+ },
+ "BAN": {
+ "displayName": "Bosnien und Herzegowina Neuer Dinar (1994–1997)",
+ "displayName-count-one": "Bosnien und Herzegowina Neuer Dinar (1994–1997)",
+ "displayName-count-other": "Bosnien und Herzegowina Neue Dinar (1994–1997)",
+ "symbol": "BAN"
+ },
+ "BBD": {
+ "displayName": "Barbados-Dollar",
+ "displayName-count-one": "Barbados-Dollar",
+ "displayName-count-other": "Barbados-Dollar",
+ "symbol": "BBD",
+ "symbol-alt-narrow": "$"
+ },
+ "BDT": {
+ "displayName": "Bangladesch-Taka",
+ "displayName-count-one": "Bangladesch-Taka",
+ "displayName-count-other": "Bangladesch-Taka",
+ "symbol": "BDT",
+ "symbol-alt-narrow": "৳"
+ },
+ "BEC": {
+ "displayName": "Belgischer Franc (konvertibel)",
+ "displayName-count-one": "Belgischer Franc (konvertibel)",
+ "displayName-count-other": "Belgische Franc (konvertibel)",
+ "symbol": "BEC"
+ },
+ "BEF": {
+ "displayName": "Belgischer Franc",
+ "displayName-count-one": "Belgischer Franc",
+ "displayName-count-other": "Belgische Franc",
+ "symbol": "BEF"
+ },
+ "BEL": {
+ "displayName": "Belgischer Finanz-Franc",
+ "displayName-count-one": "Belgischer Finanz-Franc",
+ "displayName-count-other": "Belgische Finanz-Franc",
+ "symbol": "BEL"
+ },
+ "BGL": {
+ "displayName": "Bulgarische Lew (1962–1999)",
+ "displayName-count-one": "Bulgarische Lew (1962–1999)",
+ "displayName-count-other": "Bulgarische Lew (1962–1999)",
+ "symbol": "BGL"
+ },
+ "BGM": {
+ "displayName": "Bulgarischer Lew (1952–1962)",
+ "displayName-count-one": "Bulgarischer Lew (1952–1962)",
+ "displayName-count-other": "Bulgarische Lew (1952–1962)",
+ "symbol": "BGK"
+ },
+ "BGN": {
+ "displayName": "Bulgarischer Lew",
+ "displayName-count-one": "Bulgarischer Lew",
+ "displayName-count-other": "Bulgarische Lew",
+ "symbol": "BGN"
+ },
+ "BGO": {
+ "displayName": "Bulgarischer Lew (1879–1952)",
+ "displayName-count-one": "Bulgarischer Lew (1879–1952)",
+ "displayName-count-other": "Bulgarische Lew (1879–1952)",
+ "symbol": "BGJ"
+ },
+ "BHD": {
+ "displayName": "Bahrain-Dinar",
+ "displayName-count-one": "Bahrain-Dinar",
+ "displayName-count-other": "Bahrain-Dinar",
+ "symbol": "BHD"
+ },
+ "BIF": {
+ "displayName": "Burundi-Franc",
+ "displayName-count-one": "Burundi-Franc",
+ "displayName-count-other": "Burundi-Francs",
+ "symbol": "BIF"
+ },
+ "BMD": {
+ "displayName": "Bermuda-Dollar",
+ "displayName-count-one": "Bermuda-Dollar",
+ "displayName-count-other": "Bermuda-Dollar",
+ "symbol": "BMD",
+ "symbol-alt-narrow": "$"
+ },
+ "BND": {
+ "displayName": "Brunei-Dollar",
+ "displayName-count-one": "Brunei-Dollar",
+ "displayName-count-other": "Brunei-Dollar",
+ "symbol": "BND",
+ "symbol-alt-narrow": "$"
+ },
+ "BOB": {
+ "displayName": "Bolivanischer Boliviano",
+ "displayName-count-one": "Bolivanischer Boliviano",
+ "displayName-count-other": "Bolivianische Bolivianos",
+ "symbol": "BOB",
+ "symbol-alt-narrow": "Bs"
+ },
+ "BOL": {
+ "displayName": "Bolivianischer Boliviano (1863–1963)",
+ "displayName-count-one": "Bolivianischer Boliviano (1863–1963)",
+ "displayName-count-other": "Bolivianische Bolivianos (1863–1963)",
+ "symbol": "BOL"
+ },
+ "BOP": {
+ "displayName": "Bolivianischer Peso",
+ "displayName-count-one": "Bolivianischer Peso",
+ "displayName-count-other": "Bolivianische Peso",
+ "symbol": "BOP"
+ },
+ "BOV": {
+ "displayName": "Boliviansiche Mvdol",
+ "displayName-count-one": "Boliviansiche Mvdol",
+ "displayName-count-other": "Bolivianische Mvdol",
+ "symbol": "BOV"
+ },
+ "BRB": {
+ "displayName": "Brasilianischer Cruzeiro Novo (1967–1986)",
+ "displayName-count-one": "Brasilianischer Cruzeiro Novo (1967–1986)",
+ "displayName-count-other": "Brasilianische Cruzeiro Novo (1967–1986)",
+ "symbol": "BRB"
+ },
+ "BRC": {
+ "displayName": "Brasilianischer Cruzado (1986–1989)",
+ "displayName-count-one": "Brasilianischer Cruzado (1986–1989)",
+ "displayName-count-other": "Brasilianische Cruzado (1986–1989)",
+ "symbol": "BRC"
+ },
+ "BRE": {
+ "displayName": "Brasilianischer Cruzeiro (1990–1993)",
+ "displayName-count-one": "Brasilianischer Cruzeiro (1990–1993)",
+ "displayName-count-other": "Brasilianische Cruzeiro (1990–1993)",
+ "symbol": "BRE"
+ },
+ "BRL": {
+ "displayName": "Brasilianischer Real",
+ "displayName-count-one": "Brasilianischer Real",
+ "displayName-count-other": "Brasilianische Real",
+ "symbol": "R$",
+ "symbol-alt-narrow": "R$"
+ },
+ "BRN": {
+ "displayName": "Brasilianischer Cruzado Novo (1989–1990)",
+ "displayName-count-one": "Brasilianischer Cruzado Novo (1989–1990)",
+ "displayName-count-other": "Brasilianische Cruzado Novo (1989–1990)",
+ "symbol": "BRN"
+ },
+ "BRR": {
+ "displayName": "Brasilianischer Cruzeiro (1993–1994)",
+ "displayName-count-one": "Brasilianischer Cruzeiro (1993–1994)",
+ "displayName-count-other": "Brasilianische Cruzeiro (1993–1994)",
+ "symbol": "BRR"
+ },
+ "BRZ": {
+ "displayName": "Brasilianischer Cruzeiro (1942–1967)",
+ "displayName-count-one": "Brasilianischer Cruzeiro (1942–1967)",
+ "displayName-count-other": "Brasilianischer Cruzeiro (1942–1967)",
+ "symbol": "BRZ"
+ },
+ "BSD": {
+ "displayName": "Bahamas-Dollar",
+ "displayName-count-one": "Bahamas-Dollar",
+ "displayName-count-other": "Bahamas-Dollar",
+ "symbol": "BSD",
+ "symbol-alt-narrow": "$"
+ },
+ "BTN": {
+ "displayName": "Bhutan-Ngultrum",
+ "displayName-count-one": "Bhutan-Ngultrum",
+ "displayName-count-other": "Bhutan-Ngultrum",
+ "symbol": "BTN"
+ },
+ "BUK": {
+ "displayName": "Birmanischer Kyat",
+ "displayName-count-one": "Birmanischer Kyat",
+ "displayName-count-other": "Birmanische Kyat",
+ "symbol": "BUK"
+ },
+ "BWP": {
+ "displayName": "Botswanischer Pula",
+ "displayName-count-one": "Botswanischer Pula",
+ "displayName-count-other": "Botswanische Pula",
+ "symbol": "BWP",
+ "symbol-alt-narrow": "P"
+ },
+ "BYB": {
+ "displayName": "Belarus-Rubel (1994–1999)",
+ "displayName-count-one": "Belarus-Rubel (1994–1999)",
+ "displayName-count-other": "Belarus-Rubel (1994–1999)",
+ "symbol": "BYB"
+ },
+ "BYN": {
+ "displayName": "Weißrussischer Rubel",
+ "displayName-count-one": "Weißrussischer Rubel",
+ "displayName-count-other": "Weißrussische Rubel",
+ "symbol": "BYN",
+ "symbol-alt-narrow": "р."
+ },
+ "BYR": {
+ "displayName": "Weißrussischer Rubel (2000–2016)",
+ "displayName-count-one": "Weißrussischer Rubel (2000–2016)",
+ "displayName-count-other": "Weißrussische Rubel (2000–2016)",
+ "symbol": "BYR"
+ },
+ "BZD": {
+ "displayName": "Belize-Dollar",
+ "displayName-count-one": "Belize-Dollar",
+ "displayName-count-other": "Belize-Dollar",
+ "symbol": "BZD",
+ "symbol-alt-narrow": "$"
+ },
+ "CAD": {
+ "displayName": "Kanadischer Dollar",
+ "displayName-count-one": "Kanadischer Dollar",
+ "displayName-count-other": "Kanadische Dollar",
+ "symbol": "CA$",
+ "symbol-alt-narrow": "$"
+ },
+ "CDF": {
+ "displayName": "Kongo-Franc",
+ "displayName-count-one": "Kongo-Franc",
+ "displayName-count-other": "Kongo-Francs",
+ "symbol": "CDF"
+ },
+ "CHE": {
+ "displayName": "WIR-Euro",
+ "displayName-count-one": "WIR-Euro",
+ "displayName-count-other": "WIR-Euro",
+ "symbol": "CHE"
+ },
+ "CHF": {
+ "displayName": "Schweizer Franken",
+ "displayName-count-one": "Schweizer Franken",
+ "displayName-count-other": "Schweizer Franken",
+ "symbol": "CHF"
+ },
+ "CHW": {
+ "displayName": "WIR Franken",
+ "displayName-count-one": "WIR Franken",
+ "displayName-count-other": "WIR Franken",
+ "symbol": "CHW"
+ },
+ "CLE": {
+ "displayName": "Chilenischer Escudo",
+ "displayName-count-one": "Chilenischer Escudo",
+ "displayName-count-other": "Chilenische Escudo",
+ "symbol": "CLE"
+ },
+ "CLF": {
+ "displayName": "Chilenische Unidades de Fomento",
+ "displayName-count-one": "Chilenische Unidades de Fomento",
+ "displayName-count-other": "Chilenische Unidades de Fomento",
+ "symbol": "CLF"
+ },
+ "CLP": {
+ "displayName": "Chilenischer Peso",
+ "displayName-count-one": "Chilenischer Peso",
+ "displayName-count-other": "Chilenische Pesos",
+ "symbol": "CLP",
+ "symbol-alt-narrow": "$"
+ },
+ "CNX": {
+ "displayName": "Dollar der Chinesischen Volksbank",
+ "displayName-count-one": "Dollar der Chinesischen Volksbank",
+ "displayName-count-other": "Dollar der Chinesischen Volksbank",
+ "symbol": "CNX"
+ },
+ "CNY": {
+ "displayName": "Renminbi Yuan",
+ "displayName-count-one": "Chinesischer Yuan",
+ "displayName-count-other": "Renminbi Yuan",
+ "symbol": "CN¥",
+ "symbol-alt-narrow": "¥"
+ },
+ "COP": {
+ "displayName": "Kolumbianischer Peso",
+ "displayName-count-one": "Kolumbianischer Peso",
+ "displayName-count-other": "Kolumbianische Pesos",
+ "symbol": "COP",
+ "symbol-alt-narrow": "$"
+ },
+ "COU": {
+ "displayName": "Kolumbianische Unidades de valor real",
+ "displayName-count-one": "Kolumbianische Unidad de valor real",
+ "displayName-count-other": "Kolumbianische Unidades de valor real",
+ "symbol": "COU"
+ },
+ "CRC": {
+ "displayName": "Costa-Rica-Colón",
+ "displayName-count-one": "Costa-Rica-Colón",
+ "displayName-count-other": "Costa-Rica-Colón",
+ "symbol": "CRC",
+ "symbol-alt-narrow": "₡"
+ },
+ "CSD": {
+ "displayName": "Serbischer Dinar (2002–2006)",
+ "displayName-count-one": "Serbischer Dinar (2002–2006)",
+ "displayName-count-other": "Serbische Dinar (2002–2006)",
+ "symbol": "CSD"
+ },
+ "CSK": {
+ "displayName": "Tschechoslowakische Krone",
+ "displayName-count-one": "Tschechoslowakische Kronen",
+ "displayName-count-other": "Tschechoslowakische Kronen",
+ "symbol": "CSK"
+ },
+ "CUC": {
+ "displayName": "Kubanischer Peso (konvertibel)",
+ "displayName-count-one": "Kubanischer Peso (konvertibel)",
+ "displayName-count-other": "Kubanische Pesos (konvertibel)",
+ "symbol": "CUC",
+ "symbol-alt-narrow": "Cub$"
+ },
+ "CUP": {
+ "displayName": "Kubanischer Peso",
+ "displayName-count-one": "Kubanischer Peso",
+ "displayName-count-other": "Kubanische Pesos",
+ "symbol": "CUP",
+ "symbol-alt-narrow": "$"
+ },
+ "CVE": {
+ "displayName": "Cabo-Verde-Escudo",
+ "displayName-count-one": "Cabo-Verde-Escudo",
+ "displayName-count-other": "Cabo-Verde-Escudos",
+ "symbol": "CVE"
+ },
+ "CYP": {
+ "displayName": "Zypern-Pfund",
+ "displayName-count-one": "Zypern Pfund",
+ "displayName-count-other": "Zypern Pfund",
+ "symbol": "CYP"
+ },
+ "CZK": {
+ "displayName": "Tschechische Krone",
+ "displayName-count-one": "Tschechische Krone",
+ "displayName-count-other": "Tschechische Kronen",
+ "symbol": "CZK",
+ "symbol-alt-narrow": "Kč"
+ },
+ "DDM": {
+ "displayName": "Mark der DDR",
+ "displayName-count-one": "Mark der DDR",
+ "displayName-count-other": "Mark der DDR",
+ "symbol": "DDM"
+ },
+ "DEM": {
+ "displayName": "Deutsche Mark",
+ "displayName-count-one": "Deutsche Mark",
+ "displayName-count-other": "Deutsche Mark",
+ "symbol": "DM"
+ },
+ "DJF": {
+ "displayName": "Dschibuti-Franc",
+ "displayName-count-one": "Dschibuti-Franc",
+ "displayName-count-other": "Dschibuti-Franc",
+ "symbol": "DJF"
+ },
+ "DKK": {
+ "displayName": "Dänische Krone",
+ "displayName-count-one": "Dänische Krone",
+ "displayName-count-other": "Dänische Kronen",
+ "symbol": "DKK",
+ "symbol-alt-narrow": "kr"
+ },
+ "DOP": {
+ "displayName": "Dominikanischer Peso",
+ "displayName-count-one": "Dominikanischer Peso",
+ "displayName-count-other": "Dominikanische Pesos",
+ "symbol": "DOP",
+ "symbol-alt-narrow": "$"
+ },
+ "DZD": {
+ "displayName": "Algerischer Dinar",
+ "displayName-count-one": "Algerischer Dinar",
+ "displayName-count-other": "Algerische Dinar",
+ "symbol": "DZD"
+ },
+ "ECS": {
+ "displayName": "Ecuadorianischer Sucre",
+ "displayName-count-one": "Ecuadorianischer Sucre",
+ "displayName-count-other": "Ecuadorianische Sucre",
+ "symbol": "ECS"
+ },
+ "ECV": {
+ "displayName": "Verrechnungseinheit für Ecuador",
+ "displayName-count-one": "Verrechnungseinheiten für Ecuador",
+ "displayName-count-other": "Verrechnungseinheiten für Ecuador",
+ "symbol": "ECV"
+ },
+ "EEK": {
+ "displayName": "Estnische Krone",
+ "displayName-count-one": "Estnische Krone",
+ "displayName-count-other": "Estnische Kronen",
+ "symbol": "EEK"
+ },
+ "EGP": {
+ "displayName": "Ägyptisches Pfund",
+ "displayName-count-one": "Ägyptisches Pfund",
+ "displayName-count-other": "Ägyptische Pfund",
+ "symbol": "EGP",
+ "symbol-alt-narrow": "E£"
+ },
+ "ERN": {
+ "displayName": "Eritreischer Nakfa",
+ "displayName-count-one": "Eritreischer Nakfa",
+ "displayName-count-other": "Eritreische Nakfa",
+ "symbol": "ERN"
+ },
+ "ESA": {
+ "displayName": "Spanische Peseta (A–Konten)",
+ "displayName-count-one": "Spanische Peseta (A–Konten)",
+ "displayName-count-other": "Spanische Peseten (A–Konten)",
+ "symbol": "ESA"
+ },
+ "ESB": {
+ "displayName": "Spanische Peseta (konvertibel)",
+ "displayName-count-one": "Spanische Peseta (konvertibel)",
+ "displayName-count-other": "Spanische Peseten (konvertibel)",
+ "symbol": "ESB"
+ },
+ "ESP": {
+ "displayName": "Spanische Peseta",
+ "displayName-count-one": "Spanische Peseta",
+ "displayName-count-other": "Spanische Peseten",
+ "symbol": "ESP",
+ "symbol-alt-narrow": "₧"
+ },
+ "ETB": {
+ "displayName": "Äthiopischer Birr",
+ "displayName-count-one": "Äthiopischer Birr",
+ "displayName-count-other": "Äthiopische Birr",
+ "symbol": "ETB"
+ },
+ "EUR": {
+ "displayName": "Euro",
+ "displayName-count-one": "Euro",
+ "displayName-count-other": "Euro",
+ "symbol": "€",
+ "symbol-alt-narrow": "€"
+ },
+ "FIM": {
+ "displayName": "Finnische Mark",
+ "displayName-count-one": "Finnische Mark",
+ "displayName-count-other": "Finnische Mark",
+ "symbol": "FIM"
+ },
+ "FJD": {
+ "displayName": "Fidschi-Dollar",
+ "displayName-count-one": "Fidschi-Dollar",
+ "displayName-count-other": "Fidschi-Dollar",
+ "symbol": "FJD",
+ "symbol-alt-narrow": "$"
+ },
+ "FKP": {
+ "displayName": "Falkland-Pfund",
+ "displayName-count-one": "Falkland-Pfund",
+ "displayName-count-other": "Falkland-Pfund",
+ "symbol": "FKP",
+ "symbol-alt-narrow": "Fl£"
+ },
+ "FRF": {
+ "displayName": "Französischer Franc",
+ "displayName-count-one": "Französischer Franc",
+ "displayName-count-other": "Französische Franc",
+ "symbol": "FRF"
+ },
+ "GBP": {
+ "displayName": "Britisches Pfund",
+ "displayName-count-one": "Britisches Pfund",
+ "displayName-count-other": "Britische Pfund",
+ "symbol": "£",
+ "symbol-alt-narrow": "£"
+ },
+ "GEK": {
+ "displayName": "Georgischer Kupon Larit",
+ "displayName-count-one": "Georgischer Kupon Larit",
+ "displayName-count-other": "Georgische Kupon Larit",
+ "symbol": "GEK"
+ },
+ "GEL": {
+ "displayName": "Georgischer Lari",
+ "displayName-count-one": "Georgischer Lari",
+ "displayName-count-other": "Georgische Lari",
+ "symbol": "GEL",
+ "symbol-alt-narrow": "₾",
+ "symbol-alt-variant": "₾"
+ },
+ "GHC": {
+ "displayName": "Ghanaischer Cedi (1979–2007)",
+ "displayName-count-one": "Ghanaischer Cedi (1979–2007)",
+ "displayName-count-other": "Ghanaische Cedi (1979–2007)",
+ "symbol": "GHC"
+ },
+ "GHS": {
+ "displayName": "Ghanaischer Cedi",
+ "displayName-count-one": "Ghanaischer Cedi",
+ "displayName-count-other": "Ghanaische Cedi",
+ "symbol": "GHS"
+ },
+ "GIP": {
+ "displayName": "Gibraltar-Pfund",
+ "displayName-count-one": "Gibraltar-Pfund",
+ "displayName-count-other": "Gibraltar Pfund",
+ "symbol": "GIP",
+ "symbol-alt-narrow": "£"
+ },
+ "GMD": {
+ "displayName": "Gambia-Dalasi",
+ "displayName-count-one": "Gambia-Dalasi",
+ "displayName-count-other": "Gambia-Dalasi",
+ "symbol": "GMD"
+ },
+ "GNF": {
+ "displayName": "Guinea-Franc",
+ "displayName-count-one": "Guinea-Franc",
+ "displayName-count-other": "Guinea-Franc",
+ "symbol": "GNF",
+ "symbol-alt-narrow": "F.G."
+ },
+ "GNS": {
+ "displayName": "Guineischer Syli",
+ "displayName-count-one": "Guineischer Syli",
+ "displayName-count-other": "Guineische Syli",
+ "symbol": "GNS"
+ },
+ "GQE": {
+ "displayName": "Äquatorialguinea-Ekwele",
+ "displayName-count-one": "Äquatorialguinea-Ekwele",
+ "displayName-count-other": "Äquatorialguinea-Ekwele",
+ "symbol": "GQE"
+ },
+ "GRD": {
+ "displayName": "Griechische Drachme",
+ "displayName-count-one": "Griechische Drachme",
+ "displayName-count-other": "Griechische Drachmen",
+ "symbol": "GRD"
+ },
+ "GTQ": {
+ "displayName": "Guatemaltekischer Quetzal",
+ "displayName-count-one": "Guatemaltekischer Quetzal",
+ "displayName-count-other": "Guatemaltekische Quetzales",
+ "symbol": "GTQ",
+ "symbol-alt-narrow": "Q"
+ },
+ "GWE": {
+ "displayName": "Portugiesisch Guinea Escudo",
+ "displayName-count-one": "Portugiesisch Guinea Escudo",
+ "displayName-count-other": "Portugiesisch Guinea Escudo",
+ "symbol": "GWE"
+ },
+ "GWP": {
+ "displayName": "Guinea-Bissau Peso",
+ "displayName-count-one": "Guinea-Bissau Peso",
+ "displayName-count-other": "Guinea-Bissau Pesos",
+ "symbol": "GWP"
+ },
+ "GYD": {
+ "displayName": "Guyana-Dollar",
+ "displayName-count-one": "Guyana-Dollar",
+ "displayName-count-other": "Guyana-Dollar",
+ "symbol": "GYD",
+ "symbol-alt-narrow": "$"
+ },
+ "HKD": {
+ "displayName": "Hongkong-Dollar",
+ "displayName-count-one": "Hongkong-Dollar",
+ "displayName-count-other": "Hongkong-Dollar",
+ "symbol": "HK$",
+ "symbol-alt-narrow": "$"
+ },
+ "HNL": {
+ "displayName": "Honduras-Lempira",
+ "displayName-count-one": "Honduras-Lempira",
+ "displayName-count-other": "Honduras-Lempira",
+ "symbol": "HNL",
+ "symbol-alt-narrow": "L"
+ },
+ "HRD": {
+ "displayName": "Kroatischer Dinar",
+ "displayName-count-one": "Kroatischer Dinar",
+ "displayName-count-other": "Kroatische Dinar",
+ "symbol": "HRD"
+ },
+ "HRK": {
+ "displayName": "Kroatischer Kuna",
+ "displayName-count-one": "Kroatischer Kuna",
+ "displayName-count-other": "Kroatische Kuna",
+ "symbol": "HRK",
+ "symbol-alt-narrow": "kn"
+ },
+ "HTG": {
+ "displayName": "Haitianische Gourde",
+ "displayName-count-one": "Haitianische Gourde",
+ "displayName-count-other": "Haitianische Gourdes",
+ "symbol": "HTG"
+ },
+ "HUF": {
+ "displayName": "Ungarischer Forint",
+ "displayName-count-one": "Ungarischer Forint",
+ "displayName-count-other": "Ungarische Forint",
+ "symbol": "HUF",
+ "symbol-alt-narrow": "Ft"
+ },
+ "IDR": {
+ "displayName": "Indonesische Rupiah",
+ "displayName-count-one": "Indonesische Rupiah",
+ "displayName-count-other": "Indonesische Rupiah",
+ "symbol": "IDR",
+ "symbol-alt-narrow": "Rp"
+ },
+ "IEP": {
+ "displayName": "Irisches Pfund",
+ "displayName-count-one": "Irisches Pfund",
+ "displayName-count-other": "Irische Pfund",
+ "symbol": "IEP"
+ },
+ "ILP": {
+ "displayName": "Israelisches Pfund",
+ "displayName-count-one": "Israelisches Pfund",
+ "displayName-count-other": "Israelische Pfund",
+ "symbol": "ILP"
+ },
+ "ILR": {
+ "displayName": "Israelischer Schekel (1980–1985)",
+ "displayName-count-one": "Israelischer Schekel (1980–1985)",
+ "displayName-count-other": "Israelische Schekel (1980–1985)"
+ },
+ "ILS": {
+ "displayName": "Israelischer Neuer Schekel",
+ "displayName-count-one": "Israelischer Neuer Schekel",
+ "displayName-count-other": "Israelische Neue Schekel",
+ "symbol": "₪",
+ "symbol-alt-narrow": "₪"
+ },
+ "INR": {
+ "displayName": "Indische Rupie",
+ "displayName-count-one": "Indische Rupie",
+ "displayName-count-other": "Indische Rupien",
+ "symbol": "₹",
+ "symbol-alt-narrow": "₹"
+ },
+ "IQD": {
+ "displayName": "Irakischer Dinar",
+ "displayName-count-one": "Irakischer Dinar",
+ "displayName-count-other": "Irakische Dinar",
+ "symbol": "IQD"
+ },
+ "IRR": {
+ "displayName": "Iranischer Rial",
+ "displayName-count-one": "Iranischer Rial",
+ "displayName-count-other": "Iranische Rial",
+ "symbol": "IRR"
+ },
+ "ISJ": {
+ "displayName": "Isländische Krone (1918–1981)",
+ "displayName-count-one": "Isländische Krone (1918–1981)",
+ "displayName-count-other": "Isländische Kronen (1918–1981)"
+ },
+ "ISK": {
+ "displayName": "Isländische Krone",
+ "displayName-count-one": "Isländische Krone",
+ "displayName-count-other": "Isländische Kronen",
+ "symbol": "ISK",
+ "symbol-alt-narrow": "kr"
+ },
+ "ITL": {
+ "displayName": "Italienische Lira",
+ "displayName-count-one": "Italienische Lira",
+ "displayName-count-other": "Italienische Lire",
+ "symbol": "ITL"
+ },
+ "JMD": {
+ "displayName": "Jamaika-Dollar",
+ "displayName-count-one": "Jamaika-Dollar",
+ "displayName-count-other": "Jamaika-Dollar",
+ "symbol": "JMD",
+ "symbol-alt-narrow": "$"
+ },
+ "JOD": {
+ "displayName": "Jordanischer Dinar",
+ "displayName-count-one": "Jordanischer Dinar",
+ "displayName-count-other": "Jordanische Dinar",
+ "symbol": "JOD"
+ },
+ "JPY": {
+ "displayName": "Japanischer Yen",
+ "displayName-count-one": "Japanischer Yen",
+ "displayName-count-other": "Japanische Yen",
+ "symbol": "¥",
+ "symbol-alt-narrow": "¥"
+ },
+ "KES": {
+ "displayName": "Kenia-Schilling",
+ "displayName-count-one": "Kenia-Schilling",
+ "displayName-count-other": "Kenia-Schilling",
+ "symbol": "KES"
+ },
+ "KGS": {
+ "displayName": "Kirgisischer Som",
+ "displayName-count-one": "Kirgisischer Som",
+ "displayName-count-other": "Kirgisische Som",
+ "symbol": "KGS"
+ },
+ "KHR": {
+ "displayName": "Kambodschanischer Riel",
+ "displayName-count-one": "Kambodschanischer Riel",
+ "displayName-count-other": "Kambodschanische Riel",
+ "symbol": "KHR",
+ "symbol-alt-narrow": "៛"
+ },
+ "KMF": {
+ "displayName": "Komoren-Franc",
+ "displayName-count-one": "Komoren-Franc",
+ "displayName-count-other": "Komoren-Francs",
+ "symbol": "KMF",
+ "symbol-alt-narrow": "FC"
+ },
+ "KPW": {
+ "displayName": "Nordkoreanischer Won",
+ "displayName-count-one": "Nordkoreanischer Won",
+ "displayName-count-other": "Nordkoreanische Won",
+ "symbol": "KPW",
+ "symbol-alt-narrow": "₩"
+ },
+ "KRH": {
+ "displayName": "Südkoreanischer Hwan (1953–1962)",
+ "displayName-count-one": "Südkoreanischer Hwan (1953–1962)",
+ "displayName-count-other": "Südkoreanischer Hwan (1953–1962)",
+ "symbol": "KRH"
+ },
+ "KRO": {
+ "displayName": "Südkoreanischer Won (1945–1953)",
+ "displayName-count-one": "Südkoreanischer Won (1945–1953)",
+ "displayName-count-other": "Südkoreanischer Won (1945–1953)",
+ "symbol": "KRO"
+ },
+ "KRW": {
+ "displayName": "Südkoreanischer Won",
+ "displayName-count-one": "Südkoreanischer Won",
+ "displayName-count-other": "Südkoreanische Won",
+ "symbol": "₩",
+ "symbol-alt-narrow": "₩"
+ },
+ "KWD": {
+ "displayName": "Kuwait-Dinar",
+ "displayName-count-one": "Kuwait-Dinar",
+ "displayName-count-other": "Kuwait-Dinar",
+ "symbol": "KWD"
+ },
+ "KYD": {
+ "displayName": "Kaiman-Dollar",
+ "displayName-count-one": "Kaiman-Dollar",
+ "displayName-count-other": "Kaiman-Dollar",
+ "symbol": "KYD",
+ "symbol-alt-narrow": "$"
+ },
+ "KZT": {
+ "displayName": "Kasachischer Tenge",
+ "displayName-count-one": "Kasachischer Tenge",
+ "displayName-count-other": "Kasachische Tenge",
+ "symbol": "KZT",
+ "symbol-alt-narrow": "₸"
+ },
+ "LAK": {
+ "displayName": "Laotischer Kip",
+ "displayName-count-one": "Laotischer Kip",
+ "displayName-count-other": "Laotische Kip",
+ "symbol": "LAK",
+ "symbol-alt-narrow": "₭"
+ },
+ "LBP": {
+ "displayName": "Libanesisches Pfund",
+ "displayName-count-one": "Libanesisches Pfund",
+ "displayName-count-other": "Libanesische Pfund",
+ "symbol": "LBP",
+ "symbol-alt-narrow": "L£"
+ },
+ "LKR": {
+ "displayName": "Sri-Lanka-Rupie",
+ "displayName-count-one": "Sri-Lanka-Rupie",
+ "displayName-count-other": "Sri-Lanka-Rupien",
+ "symbol": "LKR",
+ "symbol-alt-narrow": "Rs"
+ },
+ "LRD": {
+ "displayName": "Liberianischer Dollar",
+ "displayName-count-one": "Liberianischer Dollar",
+ "displayName-count-other": "Liberianische Dollar",
+ "symbol": "LRD",
+ "symbol-alt-narrow": "$"
+ },
+ "LSL": {
+ "displayName": "Loti",
+ "displayName-count-one": "Loti",
+ "displayName-count-other": "Loti",
+ "symbol": "LSL"
+ },
+ "LTL": {
+ "displayName": "Litauischer Litas",
+ "displayName-count-one": "Litauischer Litas",
+ "displayName-count-other": "Litauische Litas",
+ "symbol": "LTL",
+ "symbol-alt-narrow": "Lt"
+ },
+ "LTT": {
+ "displayName": "Litauischer Talonas",
+ "displayName-count-one": "Litauische Talonas",
+ "displayName-count-other": "Litauische Talonas",
+ "symbol": "LTT"
+ },
+ "LUC": {
+ "displayName": "Luxemburgischer Franc (konvertibel)",
+ "displayName-count-one": "Luxemburgische Franc (konvertibel)",
+ "displayName-count-other": "Luxemburgische Franc (konvertibel)",
+ "symbol": "LUC"
+ },
+ "LUF": {
+ "displayName": "Luxemburgischer Franc",
+ "displayName-count-one": "Luxemburgische Franc",
+ "displayName-count-other": "Luxemburgische Franc",
+ "symbol": "LUF"
+ },
+ "LUL": {
+ "displayName": "Luxemburgischer Finanz-Franc",
+ "displayName-count-one": "Luxemburgische Finanz-Franc",
+ "displayName-count-other": "Luxemburgische Finanz-Franc",
+ "symbol": "LUL"
+ },
+ "LVL": {
+ "displayName": "Lettischer Lats",
+ "displayName-count-one": "Lettischer Lats",
+ "displayName-count-other": "Lettische Lats",
+ "symbol": "LVL",
+ "symbol-alt-narrow": "Ls"
+ },
+ "LVR": {
+ "displayName": "Lettischer Rubel",
+ "displayName-count-one": "Lettische Rubel",
+ "displayName-count-other": "Lettische Rubel",
+ "symbol": "LVR"
+ },
+ "LYD": {
+ "displayName": "Libyscher Dinar",
+ "displayName-count-one": "Libyscher Dinar",
+ "displayName-count-other": "Libysche Dinar",
+ "symbol": "LYD"
+ },
+ "MAD": {
+ "displayName": "Marokkanischer Dirham",
+ "displayName-count-one": "Marokkanischer Dirham",
+ "displayName-count-other": "Marokkanische Dirham",
+ "symbol": "MAD"
+ },
+ "MAF": {
+ "displayName": "Marokkanischer Franc",
+ "displayName-count-one": "Marokkanische Franc",
+ "displayName-count-other": "Marokkanische Franc",
+ "symbol": "MAF"
+ },
+ "MCF": {
+ "displayName": "Monegassischer Franc",
+ "displayName-count-one": "Monegassischer Franc",
+ "displayName-count-other": "Monegassische Franc",
+ "symbol": "MCF"
+ },
+ "MDC": {
+ "displayName": "Moldau-Cupon",
+ "displayName-count-one": "Moldau-Cupon",
+ "displayName-count-other": "Moldau-Cupon",
+ "symbol": "MDC"
+ },
+ "MDL": {
+ "displayName": "Moldau-Leu",
+ "displayName-count-one": "Moldau-Leu",
+ "displayName-count-other": "Moldau-Leu",
+ "symbol": "MDL"
+ },
+ "MGA": {
+ "displayName": "Madagaskar-Ariary",
+ "displayName-count-one": "Madagaskar-Ariary",
+ "displayName-count-other": "Madagaskar-Ariary",
+ "symbol": "MGA",
+ "symbol-alt-narrow": "Ar"
+ },
+ "MGF": {
+ "displayName": "Madagaskar-Franc",
+ "displayName-count-one": "Madagaskar-Franc",
+ "displayName-count-other": "Madagaskar-Franc",
+ "symbol": "MGF"
+ },
+ "MKD": {
+ "displayName": "Mazedonischer Denar",
+ "displayName-count-one": "Mazedonischer Denar",
+ "displayName-count-other": "Mazedonische Denari",
+ "symbol": "MKD"
+ },
+ "MKN": {
+ "displayName": "Mazedonischer Denar (1992–1993)",
+ "displayName-count-one": "Mazedonischer Denar (1992–1993)",
+ "displayName-count-other": "Mazedonische Denar (1992–1993)",
+ "symbol": "MKN"
+ },
+ "MLF": {
+ "displayName": "Malischer Franc",
+ "displayName-count-one": "Malische Franc",
+ "displayName-count-other": "Malische Franc",
+ "symbol": "MLF"
+ },
+ "MMK": {
+ "displayName": "Myanmarischer Kyat",
+ "displayName-count-one": "Myanmarischer Kyat",
+ "displayName-count-other": "Myanmarische Kyat",
+ "symbol": "MMK",
+ "symbol-alt-narrow": "K"
+ },
+ "MNT": {
+ "displayName": "Mongolischer Tögrög",
+ "displayName-count-one": "Mongolischer Tögrög",
+ "displayName-count-other": "Mongolische Tögrög",
+ "symbol": "MNT",
+ "symbol-alt-narrow": "₮"
+ },
+ "MOP": {
+ "displayName": "Macao-Pataca",
+ "displayName-count-one": "Macao-Pataca",
+ "displayName-count-other": "Macao-Pataca",
+ "symbol": "MOP"
+ },
+ "MRO": {
+ "displayName": "Mauretanischer Ouguiya",
+ "displayName-count-one": "Mauretanischer Ouguiya",
+ "displayName-count-other": "Mauretanische Ouguiya",
+ "symbol": "MRO"
+ },
+ "MTL": {
+ "displayName": "Maltesische Lira",
+ "displayName-count-one": "Maltesische Lira",
+ "displayName-count-other": "Maltesische Lira",
+ "symbol": "MTL"
+ },
+ "MTP": {
+ "displayName": "Maltesisches Pfund",
+ "displayName-count-one": "Maltesische Pfund",
+ "displayName-count-other": "Maltesische Pfund",
+ "symbol": "MTP"
+ },
+ "MUR": {
+ "displayName": "Mauritius-Rupie",
+ "displayName-count-one": "Mauritius-Rupie",
+ "displayName-count-other": "Mauritius-Rupien",
+ "symbol": "MUR",
+ "symbol-alt-narrow": "Rs"
+ },
+ "MVP": {
+ "displayName": "Malediven-Rupie (alt)",
+ "displayName-count-one": "Malediven-Rupie (alt)",
+ "displayName-count-other": "Malediven-Rupien (alt)"
+ },
+ "MVR": {
+ "displayName": "Malediven-Rufiyaa",
+ "displayName-count-one": "Malediven-Rufiyaa",
+ "displayName-count-other": "Malediven-Rupien",
+ "symbol": "MVR"
+ },
+ "MWK": {
+ "displayName": "Malawi-Kwacha",
+ "displayName-count-one": "Malawi-Kwacha",
+ "displayName-count-other": "Malawi-Kwacha",
+ "symbol": "MWK"
+ },
+ "MXN": {
+ "displayName": "Mexikanischer Peso",
+ "displayName-count-one": "Mexikanischer Peso",
+ "displayName-count-other": "Mexikanische Pesos",
+ "symbol": "MX$",
+ "symbol-alt-narrow": "$"
+ },
+ "MXP": {
+ "displayName": "Mexikanischer Silber-Peso (1861–1992)",
+ "displayName-count-one": "Mexikanische Silber-Peso (1861–1992)",
+ "displayName-count-other": "Mexikanische Silber-Pesos (1861–1992)",
+ "symbol": "MXP"
+ },
+ "MXV": {
+ "displayName": "Mexicanischer Unidad de Inversion (UDI)",
+ "displayName-count-one": "Mexicanischer Unidad de Inversion (UDI)",
+ "displayName-count-other": "Mexikanische Unidad de Inversion (UDI)",
+ "symbol": "MXV"
+ },
+ "MYR": {
+ "displayName": "Malaysischer Ringgit",
+ "displayName-count-one": "Malaysischer Ringgit",
+ "displayName-count-other": "Malaysische Ringgit",
+ "symbol": "MYR",
+ "symbol-alt-narrow": "RM"
+ },
+ "MZE": {
+ "displayName": "Mosambikanischer Escudo",
+ "displayName-count-one": "Mozambikanische Escudo",
+ "displayName-count-other": "Mozambikanische Escudo",
+ "symbol": "MZE"
+ },
+ "MZM": {
+ "displayName": "Mosambikanischer Metical (1980–2006)",
+ "displayName-count-one": "Mosambikanischer Metical (1980–2006)",
+ "displayName-count-other": "Mosambikanische Meticais (1980–2006)",
+ "symbol": "MZM"
+ },
+ "MZN": {
+ "displayName": "Mosambikanischer Metical",
+ "displayName-count-one": "Mosambikanischer Metical",
+ "displayName-count-other": "Mosambikanische Meticais",
+ "symbol": "MZN"
+ },
+ "NAD": {
+ "displayName": "Namibia-Dollar",
+ "displayName-count-one": "Namibia-Dollar",
+ "displayName-count-other": "Namibia-Dollar",
+ "symbol": "NAD",
+ "symbol-alt-narrow": "$"
+ },
+ "NGN": {
+ "displayName": "Nigerianischer Naira",
+ "displayName-count-one": "Nigerianischer Naira",
+ "displayName-count-other": "Nigerianische Naira",
+ "symbol": "NGN",
+ "symbol-alt-narrow": "₦"
+ },
+ "NIC": {
+ "displayName": "Nicaraguanischer Córdoba (1988–1991)",
+ "displayName-count-one": "Nicaraguanischer Córdoba (1988–1991)",
+ "displayName-count-other": "Nicaraguanische Córdoba (1988–1991)",
+ "symbol": "NIC"
+ },
+ "NIO": {
+ "displayName": "Nicaragua-Córdoba",
+ "displayName-count-one": "Nicaragua-Córdoba",
+ "displayName-count-other": "Nicaragua-Córdobas",
+ "symbol": "NIO",
+ "symbol-alt-narrow": "C$"
+ },
+ "NLG": {
+ "displayName": "Niederländischer Gulden",
+ "displayName-count-one": "Niederländischer Gulden",
+ "displayName-count-other": "Niederländische Gulden",
+ "symbol": "NLG"
+ },
+ "NOK": {
+ "displayName": "Norwegische Krone",
+ "displayName-count-one": "Norwegische Krone",
+ "displayName-count-other": "Norwegische Kronen",
+ "symbol": "NOK",
+ "symbol-alt-narrow": "kr"
+ },
+ "NPR": {
+ "displayName": "Nepalesische Rupie",
+ "displayName-count-one": "Nepalesische Rupie",
+ "displayName-count-other": "Nepalesische Rupien",
+ "symbol": "NPR",
+ "symbol-alt-narrow": "Rs"
+ },
+ "NZD": {
+ "displayName": "Neuseeland-Dollar",
+ "displayName-count-one": "Neuseeland-Dollar",
+ "displayName-count-other": "Neuseeland-Dollar",
+ "symbol": "NZ$",
+ "symbol-alt-narrow": "$"
+ },
+ "OMR": {
+ "displayName": "Omanischer Rial",
+ "displayName-count-one": "Omanischer Rial",
+ "displayName-count-other": "Omanische Rials",
+ "symbol": "OMR"
+ },
+ "PAB": {
+ "displayName": "Panamaischer Balboa",
+ "displayName-count-one": "Panamaischer Balboa",
+ "displayName-count-other": "Panamaische Balboas",
+ "symbol": "PAB"
+ },
+ "PEI": {
+ "displayName": "Peruanischer Inti",
+ "displayName-count-one": "Peruanische Inti",
+ "displayName-count-other": "Peruanische Inti",
+ "symbol": "PEI"
+ },
+ "PEN": {
+ "displayName": "Peruanischer Sol",
+ "displayName-count-one": "Peruanischer Sol",
+ "displayName-count-other": "Peruanische Sol",
+ "symbol": "PEN"
+ },
+ "PES": {
+ "displayName": "Peruanischer Sol (1863–1965)",
+ "displayName-count-one": "Peruanischer Sol (1863–1965)",
+ "displayName-count-other": "Peruanische Sol (1863–1965)",
+ "symbol": "PES"
+ },
+ "PGK": {
+ "displayName": "Papua-Neuguineischer Kina",
+ "displayName-count-one": "Papua-Neuguineischer Kina",
+ "displayName-count-other": "Papua-Neuguineische Kina",
+ "symbol": "PGK"
+ },
+ "PHP": {
+ "displayName": "Philippinischer Peso",
+ "displayName-count-one": "Philippinischer Peso",
+ "displayName-count-other": "Philippinische Pesos",
+ "symbol": "PHP",
+ "symbol-alt-narrow": "₱"
+ },
+ "PKR": {
+ "displayName": "Pakistanische Rupie",
+ "displayName-count-one": "Pakistanische Rupie",
+ "displayName-count-other": "Pakistanische Rupien",
+ "symbol": "PKR",
+ "symbol-alt-narrow": "Rs"
+ },
+ "PLN": {
+ "displayName": "Polnischer Złoty",
+ "displayName-count-one": "Polnischer Złoty",
+ "displayName-count-other": "Polnische Złoty",
+ "symbol": "PLN",
+ "symbol-alt-narrow": "zł"
+ },
+ "PLZ": {
+ "displayName": "Polnischer Zloty (1950–1995)",
+ "displayName-count-one": "Polnischer Zloty (1950–1995)",
+ "displayName-count-other": "Polnische Zloty (1950–1995)",
+ "symbol": "PLZ"
+ },
+ "PTE": {
+ "displayName": "Portugiesischer Escudo",
+ "displayName-count-one": "Portugiesische Escudo",
+ "displayName-count-other": "Portugiesische Escudo",
+ "symbol": "PTE"
+ },
+ "PYG": {
+ "displayName": "Paraguayischer Guaraní",
+ "displayName-count-one": "Paraguayischer Guaraní",
+ "displayName-count-other": "Paraguayische Guaraníes",
+ "symbol": "PYG",
+ "symbol-alt-narrow": "₲"
+ },
+ "QAR": {
+ "displayName": "Katar-Riyal",
+ "displayName-count-one": "Katar-Riyal",
+ "displayName-count-other": "Katar-Riyal",
+ "symbol": "QAR"
+ },
+ "RHD": {
+ "displayName": "Rhodesischer Dollar",
+ "displayName-count-one": "Rhodesische Dollar",
+ "displayName-count-other": "Rhodesische Dollar",
+ "symbol": "RHD"
+ },
+ "ROL": {
+ "displayName": "Rumänischer Leu (1952–2006)",
+ "displayName-count-one": "Rumänischer Leu (1952–2006)",
+ "displayName-count-other": "Rumänische Leu (1952–2006)",
+ "symbol": "ROL"
+ },
+ "RON": {
+ "displayName": "Rumänischer Leu",
+ "displayName-count-one": "Rumänischer Leu",
+ "displayName-count-other": "Rumänische Leu",
+ "symbol": "RON",
+ "symbol-alt-narrow": "L"
+ },
+ "RSD": {
+ "displayName": "Serbischer Dinar",
+ "displayName-count-one": "Serbischer Dinar",
+ "displayName-count-other": "Serbische Dinaren",
+ "symbol": "RSD"
+ },
+ "RUB": {
+ "displayName": "Russischer Rubel",
+ "displayName-count-one": "Russischer Rubel",
+ "displayName-count-other": "Russische Rubel",
+ "symbol": "RUB",
+ "symbol-alt-narrow": "₽"
+ },
+ "RUR": {
+ "displayName": "Russischer Rubel (1991–1998)",
+ "displayName-count-one": "Russischer Rubel (1991–1998)",
+ "displayName-count-other": "Russische Rubel (1991–1998)",
+ "symbol": "RUR",
+ "symbol-alt-narrow": "р."
+ },
+ "RWF": {
+ "displayName": "Ruanda-Franc",
+ "displayName-count-one": "Ruanda-Franc",
+ "displayName-count-other": "Ruanda-Francs",
+ "symbol": "RWF",
+ "symbol-alt-narrow": "F.Rw"
+ },
+ "SAR": {
+ "displayName": "Saudi-Rial",
+ "displayName-count-one": "Saudi-Rial",
+ "displayName-count-other": "Saudi-Rial",
+ "symbol": "SAR"
+ },
+ "SBD": {
+ "displayName": "Salomonen-Dollar",
+ "displayName-count-one": "Salomonen-Dollar",
+ "displayName-count-other": "Salomonen-Dollar",
+ "symbol": "SBD",
+ "symbol-alt-narrow": "$"
+ },
+ "SCR": {
+ "displayName": "Seychellen-Rupie",
+ "displayName-count-one": "Seychellen-Rupie",
+ "displayName-count-other": "Seychellen-Rupien",
+ "symbol": "SCR"
+ },
+ "SDD": {
+ "displayName": "Sudanesischer Dinar (1992–2007)",
+ "displayName-count-one": "Sudanesischer Dinar (1992–2007)",
+ "displayName-count-other": "Sudanesische Dinar (1992–2007)",
+ "symbol": "SDD"
+ },
+ "SDG": {
+ "displayName": "Sudanesisches Pfund",
+ "displayName-count-one": "Sudanesisches Pfund",
+ "displayName-count-other": "Sudanesische Pfund",
+ "symbol": "SDG"
+ },
+ "SDP": {
+ "displayName": "Sudanesisches Pfund (1957–1998)",
+ "displayName-count-one": "Sudanesisches Pfund (1957–1998)",
+ "displayName-count-other": "Sudanesische Pfund (1957–1998)",
+ "symbol": "SDP"
+ },
+ "SEK": {
+ "displayName": "Schwedische Krone",
+ "displayName-count-one": "Schwedische Krone",
+ "displayName-count-other": "Schwedische Kronen",
+ "symbol": "SEK",
+ "symbol-alt-narrow": "kr"
+ },
+ "SGD": {
+ "displayName": "Singapur-Dollar",
+ "displayName-count-one": "Singapur-Dollar",
+ "displayName-count-other": "Singapur-Dollar",
+ "symbol": "SGD",
+ "symbol-alt-narrow": "$"
+ },
+ "SHP": {
+ "displayName": "St. Helena-Pfund",
+ "displayName-count-one": "St. Helena-Pfund",
+ "displayName-count-other": "St. Helena-Pfund",
+ "symbol": "SHP",
+ "symbol-alt-narrow": "£"
+ },
+ "SIT": {
+ "displayName": "Slowenischer Tolar",
+ "displayName-count-one": "Slowenischer Tolar",
+ "displayName-count-other": "Slowenische Tolar",
+ "symbol": "SIT"
+ },
+ "SKK": {
+ "displayName": "Slowakische Krone",
+ "displayName-count-one": "Slowakische Kronen",
+ "displayName-count-other": "Slowakische Kronen",
+ "symbol": "SKK"
+ },
+ "SLL": {
+ "displayName": "Sierra-leonischer Leone",
+ "displayName-count-one": "Sierra-leonischer Leone",
+ "displayName-count-other": "Sierra-leonische Leones",
+ "symbol": "SLL"
+ },
+ "SOS": {
+ "displayName": "Somalia-Schilling",
+ "displayName-count-one": "Somalia-Schilling",
+ "displayName-count-other": "Somalia-Schilling",
+ "symbol": "SOS"
+ },
+ "SRD": {
+ "displayName": "Suriname-Dollar",
+ "displayName-count-one": "Suriname-Dollar",
+ "displayName-count-other": "Suriname-Dollar",
+ "symbol": "SRD",
+ "symbol-alt-narrow": "$"
+ },
+ "SRG": {
+ "displayName": "Suriname Gulden",
+ "displayName-count-one": "Suriname-Gulden",
+ "displayName-count-other": "Suriname-Gulden",
+ "symbol": "SRG"
+ },
+ "SSP": {
+ "displayName": "Südsudanesisches Pfund",
+ "displayName-count-one": "Südsudanesisches Pfund",
+ "displayName-count-other": "Südsudanesische Pfund",
+ "symbol": "SSP",
+ "symbol-alt-narrow": "£"
+ },
+ "STD": {
+ "displayName": "São-toméischer Dobra",
+ "displayName-count-one": "São-toméischer Dobra",
+ "displayName-count-other": "São-toméische Dobra",
+ "symbol": "STD",
+ "symbol-alt-narrow": "Db"
+ },
+ "SUR": {
+ "displayName": "Sowjetischer Rubel",
+ "displayName-count-one": "Sowjetische Rubel",
+ "displayName-count-other": "Sowjetische Rubel",
+ "symbol": "SUR"
+ },
+ "SVC": {
+ "displayName": "El Salvador Colon",
+ "displayName-count-one": "El Salvador-Colon",
+ "displayName-count-other": "El Salvador-Colon",
+ "symbol": "SVC"
+ },
+ "SYP": {
+ "displayName": "Syrisches Pfund",
+ "displayName-count-one": "Syrisches Pfund",
+ "displayName-count-other": "Syrische Pfund",
+ "symbol": "SYP",
+ "symbol-alt-narrow": "SYP"
+ },
+ "SZL": {
+ "displayName": "Swasiländischer Lilangeni",
+ "displayName-count-one": "Swasiländischer Lilangeni",
+ "displayName-count-other": "Swasiländische Emalangeni",
+ "symbol": "SZL"
+ },
+ "THB": {
+ "displayName": "Thailändischer Baht",
+ "displayName-count-one": "Thailändischer Baht",
+ "displayName-count-other": "Thailändische Baht",
+ "symbol": "฿",
+ "symbol-alt-narrow": "฿"
+ },
+ "TJR": {
+ "displayName": "Tadschikistan Rubel",
+ "displayName-count-one": "Tadschikistan-Rubel",
+ "displayName-count-other": "Tadschikistan-Rubel",
+ "symbol": "TJR"
+ },
+ "TJS": {
+ "displayName": "Tadschikistan-Somoni",
+ "displayName-count-one": "Tadschikistan-Somoni",
+ "displayName-count-other": "Tadschikistan-Somoni",
+ "symbol": "TJS"
+ },
+ "TMM": {
+ "displayName": "Turkmenistan-Manat (1993–2009)",
+ "displayName-count-one": "Turkmenistan-Manat (1993–2009)",
+ "displayName-count-other": "Turkmenistan-Manat (1993–2009)",
+ "symbol": "TMM"
+ },
+ "TMT": {
+ "displayName": "Turkmenistan-Manat",
+ "displayName-count-one": "Turkmenistan-Manat",
+ "displayName-count-other": "Turkmenistan-Manat",
+ "symbol": "TMT"
+ },
+ "TND": {
+ "displayName": "Tunesischer Dinar",
+ "displayName-count-one": "Tunesischer Dinar",
+ "displayName-count-other": "Tunesische Dinar",
+ "symbol": "TND"
+ },
+ "TOP": {
+ "displayName": "Tongaischer Paʻanga",
+ "displayName-count-one": "Tongaischer Paʻanga",
+ "displayName-count-other": "Tongaische Paʻanga",
+ "symbol": "TOP",
+ "symbol-alt-narrow": "T$"
+ },
+ "TPE": {
+ "displayName": "Timor-Escudo",
+ "displayName-count-one": "Timor-Escudo",
+ "displayName-count-other": "Timor-Escudo",
+ "symbol": "TPE"
+ },
+ "TRL": {
+ "displayName": "Türkische Lira (1922–2005)",
+ "displayName-count-one": "Türkische Lira (1922–2005)",
+ "displayName-count-other": "Türkische Lira (1922–2005)",
+ "symbol": "TRL"
+ },
+ "TRY": {
+ "displayName": "Türkische Lira",
+ "displayName-count-one": "Türkische Lira",
+ "displayName-count-other": "Türkische Lira",
+ "symbol": "TRY",
+ "symbol-alt-narrow": "₺",
+ "symbol-alt-variant": "TL"
+ },
+ "TTD": {
+ "displayName": "Trinidad und Tobago-Dollar",
+ "displayName-count-one": "Trinidad und Tobago-Dollar",
+ "displayName-count-other": "Trinidad und Tobago-Dollar",
+ "symbol": "TTD",
+ "symbol-alt-narrow": "$"
+ },
+ "TWD": {
+ "displayName": "Neuer Taiwan-Dollar",
+ "displayName-count-one": "Neuer Taiwan-Dollar",
+ "displayName-count-other": "Neue Taiwan-Dollar",
+ "symbol": "NT$",
+ "symbol-alt-narrow": "NT$"
+ },
+ "TZS": {
+ "displayName": "Tansania-Schilling",
+ "displayName-count-one": "Tansania-Schilling",
+ "displayName-count-other": "Tansania-Schilling",
+ "symbol": "TZS"
+ },
+ "UAH": {
+ "displayName": "Ukrainische Hrywnja",
+ "displayName-count-one": "Ukrainische Hrywnja",
+ "displayName-count-other": "Ukrainische Hrywen",
+ "symbol": "UAH",
+ "symbol-alt-narrow": "₴"
+ },
+ "UAK": {
+ "displayName": "Ukrainischer Karbovanetz",
+ "displayName-count-one": "Ukrainische Karbovanetz",
+ "displayName-count-other": "Ukrainische Karbovanetz",
+ "symbol": "UAK"
+ },
+ "UGS": {
+ "displayName": "Uganda-Schilling (1966–1987)",
+ "displayName-count-one": "Uganda-Schilling (1966–1987)",
+ "displayName-count-other": "Uganda-Schilling (1966–1987)",
+ "symbol": "UGS"
+ },
+ "UGX": {
+ "displayName": "Uganda-Schilling",
+ "displayName-count-one": "Uganda-Schilling",
+ "displayName-count-other": "Uganda-Schilling",
+ "symbol": "UGX"
+ },
+ "USD": {
+ "displayName": "US-Dollar",
+ "displayName-count-one": "US-Dollar",
+ "displayName-count-other": "US-Dollar",
+ "symbol": "$",
+ "symbol-alt-narrow": "$"
+ },
+ "USN": {
+ "displayName": "US Dollar (Nächster Tag)",
+ "displayName-count-one": "US-Dollar (Nächster Tag)",
+ "displayName-count-other": "US-Dollar (Nächster Tag)",
+ "symbol": "USN"
+ },
+ "USS": {
+ "displayName": "US Dollar (Gleicher Tag)",
+ "displayName-count-one": "US-Dollar (Gleicher Tag)",
+ "displayName-count-other": "US-Dollar (Gleicher Tag)",
+ "symbol": "USS"
+ },
+ "UYI": {
+ "displayName": "Uruguayischer Peso (Indexierte Rechnungseinheiten)",
+ "displayName-count-one": "Uruguayischer Peso (Indexierte Rechnungseinheiten)",
+ "displayName-count-other": "Uruguayische Pesos (Indexierte Rechnungseinheiten)",
+ "symbol": "UYI"
+ },
+ "UYP": {
+ "displayName": "Uruguayischer Peso (1975–1993)",
+ "displayName-count-one": "Uruguayischer Peso (1975–1993)",
+ "displayName-count-other": "Uruguayische Pesos (1975–1993)",
+ "symbol": "UYP"
+ },
+ "UYU": {
+ "displayName": "Uruguayischer Peso",
+ "displayName-count-one": "Uruguayischer Peso",
+ "displayName-count-other": "Uruguayische Pesos",
+ "symbol": "UYU",
+ "symbol-alt-narrow": "$"
+ },
+ "UZS": {
+ "displayName": "Usbekistan-Sum",
+ "displayName-count-one": "Usbekistan-Sum",
+ "displayName-count-other": "Usbekistan-Sum",
+ "symbol": "UZS"
+ },
+ "VEB": {
+ "displayName": "Venezolanischer Bolívar (1871–2008)",
+ "displayName-count-one": "Venezolanischer Bolívar (1871–2008)",
+ "displayName-count-other": "Venezolanische Bolívares (1871–2008)",
+ "symbol": "VEB"
+ },
+ "VEF": {
+ "displayName": "Venezolanischer Bolívar",
+ "displayName-count-one": "Venezolanischer Bolívar",
+ "displayName-count-other": "Venezolanische Bolívares",
+ "symbol": "VEF",
+ "symbol-alt-narrow": "Bs"
+ },
+ "VND": {
+ "displayName": "Vietnamesischer Dong",
+ "displayName-count-one": "Vietnamesischer Dong",
+ "displayName-count-other": "Vietnamesische Dong",
+ "symbol": "₫",
+ "symbol-alt-narrow": "₫"
+ },
+ "VNN": {
+ "displayName": "Vietnamesischer Dong(1978–1985)",
+ "displayName-count-one": "Vietnamesischer Dong(1978–1985)",
+ "displayName-count-other": "Vietnamesische Dong(1978–1985)",
+ "symbol": "VNN"
+ },
+ "VUV": {
+ "displayName": "Vanuatu-Vatu",
+ "displayName-count-one": "Vanuatu-Vatu",
+ "displayName-count-other": "Vanuatu-Vatu",
+ "symbol": "VUV"
+ },
+ "WST": {
+ "displayName": "Samoanischer Tala",
+ "displayName-count-one": "Samoanischer Tala",
+ "displayName-count-other": "Samoanische Tala",
+ "symbol": "WST"
+ },
+ "XAF": {
+ "displayName": "CFA-Franc (BEAC)",
+ "displayName-count-one": "CFA-Franc (BEAC)",
+ "displayName-count-other": "CFA-Franc (BEAC)",
+ "symbol": "FCFA"
+ },
+ "XAG": {
+ "displayName": "Unze Silber",
+ "displayName-count-one": "Unze Silber",
+ "displayName-count-other": "Unzen Silber",
+ "symbol": "XAG"
+ },
+ "XAU": {
+ "displayName": "Unze Gold",
+ "displayName-count-one": "Unze Gold",
+ "displayName-count-other": "Unzen Gold",
+ "symbol": "XAU"
+ },
+ "XBA": {
+ "displayName": "Europäische Rechnungseinheit",
+ "displayName-count-one": "Europäische Rechnungseinheiten",
+ "displayName-count-other": "Europäische Rechnungseinheiten",
+ "symbol": "XBA"
+ },
+ "XBB": {
+ "displayName": "Europäische Währungseinheit (XBB)",
+ "displayName-count-one": "Europäische Währungseinheiten (XBB)",
+ "displayName-count-other": "Europäische Währungseinheiten (XBB)",
+ "symbol": "XBB"
+ },
+ "XBC": {
+ "displayName": "Europäische Rechnungseinheit (XBC)",
+ "displayName-count-one": "Europäische Rechnungseinheiten (XBC)",
+ "displayName-count-other": "Europäische Rechnungseinheiten (XBC)",
+ "symbol": "XBC"
+ },
+ "XBD": {
+ "displayName": "Europäische Rechnungseinheit (XBD)",
+ "displayName-count-one": "Europäische Rechnungseinheiten (XBD)",
+ "displayName-count-other": "Europäische Rechnungseinheiten (XBD)",
+ "symbol": "XBD"
+ },
+ "XCD": {
+ "displayName": "Ostkaribischer Dollar",
+ "displayName-count-one": "Ostkaribischer Dollar",
+ "displayName-count-other": "Ostkaribische Dollar",
+ "symbol": "EC$",
+ "symbol-alt-narrow": "$"
+ },
+ "XDR": {
+ "displayName": "Sonderziehungsrechte",
+ "displayName-count-one": "Sonderziehungsrechte",
+ "displayName-count-other": "Sonderziehungsrechte",
+ "symbol": "XDR"
+ },
+ "XEU": {
+ "displayName": "Europäische Währungseinheit (XEU)",
+ "displayName-count-one": "Europäische Währungseinheiten (XEU)",
+ "displayName-count-other": "Europäische Währungseinheiten (XEU)",
+ "symbol": "XEU"
+ },
+ "XFO": {
+ "displayName": "Französischer Gold-Franc",
+ "displayName-count-one": "Französische Gold-Franc",
+ "displayName-count-other": "Französische Gold-Franc",
+ "symbol": "XFO"
+ },
+ "XFU": {
+ "displayName": "Französischer UIC-Franc",
+ "displayName-count-one": "Französische UIC-Franc",
+ "displayName-count-other": "Französische UIC-Franc",
+ "symbol": "XFU"
+ },
+ "XOF": {
+ "displayName": "CFA-Franc (BCEAO)",
+ "displayName-count-one": "CFA-Franc (BCEAO)",
+ "displayName-count-other": "CFA-Francs (BCEAO)",
+ "symbol": "CFA"
+ },
+ "XPD": {
+ "displayName": "Unze Palladium",
+ "displayName-count-one": "Unze Palladium",
+ "displayName-count-other": "Unzen Palladium",
+ "symbol": "XPD"
+ },
+ "XPF": {
+ "displayName": "CFP-Franc",
+ "displayName-count-one": "CFP-Franc",
+ "displayName-count-other": "CFP-Franc",
+ "symbol": "CFPF"
+ },
+ "XPT": {
+ "displayName": "Unze Platin",
+ "displayName-count-one": "Unze Platin",
+ "displayName-count-other": "Unzen Platin",
+ "symbol": "XPT"
+ },
+ "XRE": {
+ "displayName": "RINET Funds",
+ "displayName-count-one": "RINET Funds",
+ "displayName-count-other": "RINET Funds",
+ "symbol": "XRE"
+ },
+ "XSU": {
+ "displayName": "SUCRE",
+ "displayName-count-one": "SUCRE",
+ "displayName-count-other": "SUCRE",
+ "symbol": "XSU"
+ },
+ "XTS": {
+ "displayName": "Testwährung",
+ "displayName-count-one": "Testwährung",
+ "displayName-count-other": "Testwährung",
+ "symbol": "XTS"
+ },
+ "XUA": {
+ "displayName": "Rechnungseinheit der AfEB",
+ "displayName-count-one": "Rechnungseinheit der AfEB",
+ "displayName-count-other": "Rechnungseinheiten der AfEB",
+ "symbol": "XUA"
+ },
+ "XXX": {
+ "displayName": "Unbekannte Währung",
+ "displayName-count-one": "(unbekannte Währung)",
+ "displayName-count-other": "(unbekannte Währung)",
+ "symbol": "XXX"
+ },
+ "YDD": {
+ "displayName": "Jemen-Dinar",
+ "displayName-count-one": "Jemen-Dinar",
+ "displayName-count-other": "Jemen-Dinar",
+ "symbol": "YDD"
+ },
+ "YER": {
+ "displayName": "Jemen-Rial",
+ "displayName-count-one": "Jemen-Rial",
+ "displayName-count-other": "Jemen-Rial",
+ "symbol": "YER"
+ },
+ "YUD": {
+ "displayName": "Jugoslawischer Dinar (1966–1990)",
+ "displayName-count-one": "Jugoslawischer Dinar (1966–1990)",
+ "displayName-count-other": "Jugoslawische Dinar (1966–1990)",
+ "symbol": "YUD"
+ },
+ "YUM": {
+ "displayName": "Jugoslawischer Neuer Dinar (1994–2002)",
+ "displayName-count-one": "Jugoslawischer Neuer Dinar (1994–2002)",
+ "displayName-count-other": "Jugoslawische Neue Dinar (1994–2002)",
+ "symbol": "YUM"
+ },
+ "YUN": {
+ "displayName": "Jugoslawischer Dinar (konvertibel)",
+ "displayName-count-one": "Jugoslawische Dinar (konvertibel)",
+ "displayName-count-other": "Jugoslawische Dinar (konvertibel)",
+ "symbol": "YUN"
+ },
+ "YUR": {
+ "displayName": "Jugoslawischer reformierter Dinar (1992–1993)",
+ "displayName-count-one": "Jugoslawischer reformierter Dinar (1992–1993)",
+ "displayName-count-other": "Jugoslawische reformierte Dinar (1992–1993)",
+ "symbol": "YUR"
+ },
+ "ZAL": {
+ "displayName": "Südafrikanischer Rand (Finanz)",
+ "displayName-count-one": "Südafrikanischer Rand (Finanz)",
+ "displayName-count-other": "Südafrikanischer Rand (Finanz)",
+ "symbol": "ZAL"
+ },
+ "ZAR": {
+ "displayName": "Südafrikanischer Rand",
+ "displayName-count-one": "Südafrikanischer Rand",
+ "displayName-count-other": "Südafrikanische Rand",
+ "symbol": "ZAR",
+ "symbol-alt-narrow": "R"
+ },
+ "ZMK": {
+ "displayName": "Kwacha (1968–2012)",
+ "displayName-count-one": "Kwacha (1968–2012)",
+ "displayName-count-other": "Kwacha (1968–2012)",
+ "symbol": "ZMK"
+ },
+ "ZMW": {
+ "displayName": "Kwacha",
+ "displayName-count-one": "Kwacha",
+ "displayName-count-other": "Kwacha",
+ "symbol": "ZMW",
+ "symbol-alt-narrow": "K"
+ },
+ "ZRN": {
+ "displayName": "Zaire-Neuer Zaïre (1993–1998)",
+ "displayName-count-one": "Zaire-Neuer Zaïre (1993–1998)",
+ "displayName-count-other": "Zaire-Neue Zaïre (1993–1998)",
+ "symbol": "ZRN"
+ },
+ "ZRZ": {
+ "displayName": "Zaire-Zaïre (1971–1993)",
+ "displayName-count-one": "Zaire-Zaïre (1971–1993)",
+ "displayName-count-other": "Zaire-Zaïre (1971–1993)",
+ "symbol": "ZRZ"
+ },
+ "ZWD": {
+ "displayName": "Simbabwe-Dollar (1980–2008)",
+ "displayName-count-one": "Simbabwe-Dollar (1980–2008)",
+ "displayName-count-other": "Simbabwe-Dollar (1980–2008)",
+ "symbol": "ZWD"
+ },
+ "ZWL": {
+ "displayName": "Simbabwe-Dollar (2009)",
+ "displayName-count-one": "Simbabwe-Dollar (2009)",
+ "displayName-count-other": "Simbabwe-Dollar (2009)",
+ "symbol": "ZWL"
+ },
+ "ZWR": {
+ "displayName": "Simbabwe-Dollar (2008)",
+ "displayName-count-one": "Simbabwe-Dollar (2008)",
+ "displayName-count-other": "Simbabwe-Dollar (2008)",
+ "symbol": "ZWR"
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/currencyData.json b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/currencyData.json
new file mode 100644
index 0000000000..a7b54fa802
--- /dev/null
+++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/currencyData.json
@@ -0,0 +1,3509 @@
+{
+ "supplemental": {
+ "version": {
+ "_number": "$Revision: 13254 $",
+ "_unicodeVersion": "9.0.0",
+ "_cldrVersion": "31"
+ },
+ "currencyData": {
+ "fractions": {
+ "ADP": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "AFN": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "ALL": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "AMD": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "BHD": {
+ "_rounding": "0",
+ "_digits": "3"
+ },
+ "BIF": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "BYN": {
+ "_rounding": "0",
+ "_digits": "2"
+ },
+ "BYR": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "CAD": {
+ "_rounding": "0",
+ "_digits": "2",
+ "_cashRounding": "5"
+ },
+ "CHF": {
+ "_rounding": "0",
+ "_digits": "2",
+ "_cashRounding": "5"
+ },
+ "CLF": {
+ "_rounding": "0",
+ "_digits": "4"
+ },
+ "CLP": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "COP": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "CRC": {
+ "_rounding": "0",
+ "_digits": "2",
+ "_cashRounding": "0",
+ "_cashDigits": "0"
+ },
+ "CZK": {
+ "_rounding": "0",
+ "_digits": "2",
+ "_cashRounding": "0",
+ "_cashDigits": "0"
+ },
+ "DEFAULT": {
+ "_rounding": "0",
+ "_digits": "2"
+ },
+ "DJF": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "ESP": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "GNF": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "GYD": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "HUF": {
+ "_rounding": "0",
+ "_digits": "2",
+ "_cashRounding": "0",
+ "_cashDigits": "0"
+ },
+ "IDR": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "IQD": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "IRR": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "ISK": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "ITL": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "JOD": {
+ "_rounding": "0",
+ "_digits": "3"
+ },
+ "JPY": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "KMF": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "KPW": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "KRW": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "KWD": {
+ "_rounding": "0",
+ "_digits": "3"
+ },
+ "LAK": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "LBP": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "LUF": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "LYD": {
+ "_rounding": "0",
+ "_digits": "3"
+ },
+ "MGA": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "MGF": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "MMK": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "MNT": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "MRO": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "MUR": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "OMR": {
+ "_rounding": "0",
+ "_digits": "3"
+ },
+ "PKR": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "PYG": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "RSD": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "RWF": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "SLL": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "SOS": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "STD": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "SYP": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "TMM": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "TND": {
+ "_rounding": "0",
+ "_digits": "3"
+ },
+ "TRL": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "TWD": {
+ "_rounding": "0",
+ "_digits": "2",
+ "_cashRounding": "0",
+ "_cashDigits": "0"
+ },
+ "TZS": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "UGX": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "UYI": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "UZS": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "VND": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "VUV": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "XAF": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "XOF": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "XPF": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "YER": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "ZMK": {
+ "_rounding": "0",
+ "_digits": "0"
+ },
+ "ZWD": {
+ "_rounding": "0",
+ "_digits": "0"
+ }
+ },
+ "region": {
+ "AC": [
+ {
+ "SHP": {
+ "_from": "1976-01-01"
+ }
+ }
+ ],
+ "AD": [
+ {
+ "ESP": {
+ "_from": "1873-01-01",
+ "_to": "2002-02-28"
+ }
+ },
+ {
+ "ADP": {
+ "_from": "1936-01-01",
+ "_to": "2001-12-31"
+ }
+ },
+ {
+ "FRF": {
+ "_from": "1960-01-01",
+ "_to": "2002-02-17"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "AE": [
+ {
+ "AED": {
+ "_from": "1973-05-19"
+ }
+ }
+ ],
+ "AF": [
+ {
+ "AFA": {
+ "_from": "1927-03-14",
+ "_to": "2002-12-31"
+ }
+ },
+ {
+ "AFN": {
+ "_from": "2002-10-07"
+ }
+ }
+ ],
+ "AG": [
+ {
+ "XCD": {
+ "_from": "1965-10-06"
+ }
+ }
+ ],
+ "AI": [
+ {
+ "XCD": {
+ "_from": "1965-10-06"
+ }
+ }
+ ],
+ "AL": [
+ {
+ "ALK": {
+ "_from": "1946-11-01",
+ "_to": "1965-08-16"
+ }
+ },
+ {
+ "ALL": {
+ "_from": "1965-08-16"
+ }
+ }
+ ],
+ "AM": [
+ {
+ "SUR": {
+ "_from": "1961-01-01",
+ "_to": "1991-12-25"
+ }
+ },
+ {
+ "RUR": {
+ "_from": "1991-12-25",
+ "_to": "1993-11-22"
+ }
+ },
+ {
+ "AMD": {
+ "_from": "1993-11-22"
+ }
+ }
+ ],
+ "AO": [
+ {
+ "AOK": {
+ "_from": "1977-01-08",
+ "_to": "1991-03-01"
+ }
+ },
+ {
+ "AON": {
+ "_from": "1990-09-25",
+ "_to": "2000-02-01"
+ }
+ },
+ {
+ "AOR": {
+ "_from": "1995-07-01",
+ "_to": "2000-02-01"
+ }
+ },
+ {
+ "AOA": {
+ "_from": "1999-12-13"
+ }
+ }
+ ],
+ "AQ": [
+ {
+ "XXX": {
+ "_tender": "false"
+ }
+ }
+ ],
+ "AR": [
+ {
+ "ARM": {
+ "_from": "1881-11-05",
+ "_to": "1970-01-01"
+ }
+ },
+ {
+ "ARL": {
+ "_from": "1970-01-01",
+ "_to": "1983-06-01"
+ }
+ },
+ {
+ "ARP": {
+ "_from": "1983-06-01",
+ "_to": "1985-06-14"
+ }
+ },
+ {
+ "ARA": {
+ "_from": "1985-06-14",
+ "_to": "1992-01-01"
+ }
+ },
+ {
+ "ARS": {
+ "_from": "1992-01-01"
+ }
+ }
+ ],
+ "AS": [
+ {
+ "USD": {
+ "_from": "1904-07-16"
+ }
+ }
+ ],
+ "AT": [
+ {
+ "ATS": {
+ "_from": "1947-12-04",
+ "_to": "2002-02-28"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "AU": [
+ {
+ "AUD": {
+ "_from": "1966-02-14"
+ }
+ }
+ ],
+ "AW": [
+ {
+ "ANG": {
+ "_from": "1940-05-10",
+ "_to": "1986-01-01"
+ }
+ },
+ {
+ "AWG": {
+ "_from": "1986-01-01"
+ }
+ }
+ ],
+ "AX": [
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "AZ": [
+ {
+ "SUR": {
+ "_from": "1961-01-01",
+ "_to": "1991-12-25"
+ }
+ },
+ {
+ "RUR": {
+ "_from": "1991-12-25",
+ "_to": "1994-01-01"
+ }
+ },
+ {
+ "AZM": {
+ "_from": "1993-11-22",
+ "_to": "2006-12-31"
+ }
+ },
+ {
+ "AZN": {
+ "_from": "2006-01-01"
+ }
+ }
+ ],
+ "BA": [
+ {
+ "YUD": {
+ "_from": "1966-01-01",
+ "_to": "1990-01-01"
+ }
+ },
+ {
+ "YUN": {
+ "_from": "1990-01-01",
+ "_to": "1992-07-01"
+ }
+ },
+ {
+ "YUR": {
+ "_from": "1992-07-01",
+ "_to": "1993-10-01"
+ }
+ },
+ {
+ "BAD": {
+ "_from": "1992-07-01",
+ "_to": "1994-08-15"
+ }
+ },
+ {
+ "BAN": {
+ "_from": "1994-08-15",
+ "_to": "1997-07-01"
+ }
+ },
+ {
+ "BAM": {
+ "_from": "1995-01-01"
+ }
+ }
+ ],
+ "BB": [
+ {
+ "XCD": {
+ "_from": "1965-10-06",
+ "_to": "1973-12-03"
+ }
+ },
+ {
+ "BBD": {
+ "_from": "1973-12-03"
+ }
+ }
+ ],
+ "BD": [
+ {
+ "INR": {
+ "_from": "1835-08-17",
+ "_to": "1948-04-01"
+ }
+ },
+ {
+ "PKR": {
+ "_from": "1948-04-01",
+ "_to": "1972-01-01"
+ }
+ },
+ {
+ "BDT": {
+ "_from": "1972-01-01"
+ }
+ }
+ ],
+ "BE": [
+ {
+ "NLG": {
+ "_from": "1816-12-15",
+ "_to": "1831-02-07"
+ }
+ },
+ {
+ "BEF": {
+ "_from": "1831-02-07",
+ "_to": "2002-02-28"
+ }
+ },
+ {
+ "BEC": {
+ "_tender": "false",
+ "_from": "1970-01-01",
+ "_to": "1990-03-05"
+ }
+ },
+ {
+ "BEL": {
+ "_tender": "false",
+ "_from": "1970-01-01",
+ "_to": "1990-03-05"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "BF": [
+ {
+ "XOF": {
+ "_from": "1984-08-04"
+ }
+ }
+ ],
+ "BG": [
+ {
+ "BGO": {
+ "_from": "1879-07-08",
+ "_to": "1952-05-12"
+ }
+ },
+ {
+ "BGM": {
+ "_from": "1952-05-12",
+ "_to": "1962-01-01"
+ }
+ },
+ {
+ "BGL": {
+ "_from": "1962-01-01",
+ "_to": "1999-07-05"
+ }
+ },
+ {
+ "BGN": {
+ "_from": "1999-07-05"
+ }
+ }
+ ],
+ "BH": [
+ {
+ "BHD": {
+ "_from": "1965-10-16"
+ }
+ }
+ ],
+ "BI": [
+ {
+ "BIF": {
+ "_from": "1964-05-19"
+ }
+ }
+ ],
+ "BJ": [
+ {
+ "XOF": {
+ "_from": "1975-11-30"
+ }
+ }
+ ],
+ "BL": [
+ {
+ "FRF": {
+ "_from": "1960-01-01",
+ "_to": "2002-02-17"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "BM": [
+ {
+ "BMD": {
+ "_from": "1970-02-06"
+ }
+ }
+ ],
+ "BN": [
+ {
+ "MYR": {
+ "_from": "1963-09-16",
+ "_to": "1967-06-12"
+ }
+ },
+ {
+ "BND": {
+ "_from": "1967-06-12"
+ }
+ }
+ ],
+ "BO": [
+ {
+ "BOV": {
+ "_tender": "false"
+ }
+ },
+ {
+ "BOL": {
+ "_from": "1863-06-23",
+ "_to": "1963-01-01"
+ }
+ },
+ {
+ "BOP": {
+ "_from": "1963-01-01",
+ "_to": "1986-12-31"
+ }
+ },
+ {
+ "BOB": {
+ "_from": "1987-01-01"
+ }
+ }
+ ],
+ "BQ": [
+ {
+ "ANG": {
+ "_from": "2010-10-10",
+ "_to": "2011-01-01"
+ }
+ },
+ {
+ "USD": {
+ "_from": "2011-01-01"
+ }
+ }
+ ],
+ "BR": [
+ {
+ "BRZ": {
+ "_from": "1942-11-01",
+ "_to": "1967-02-13"
+ }
+ },
+ {
+ "BRB": {
+ "_from": "1967-02-13",
+ "_to": "1986-02-28"
+ }
+ },
+ {
+ "BRC": {
+ "_from": "1986-02-28",
+ "_to": "1989-01-15"
+ }
+ },
+ {
+ "BRN": {
+ "_from": "1989-01-15",
+ "_to": "1990-03-16"
+ }
+ },
+ {
+ "BRE": {
+ "_from": "1990-03-16",
+ "_to": "1993-08-01"
+ }
+ },
+ {
+ "BRR": {
+ "_from": "1993-08-01",
+ "_to": "1994-07-01"
+ }
+ },
+ {
+ "BRL": {
+ "_from": "1994-07-01"
+ }
+ }
+ ],
+ "BS": [
+ {
+ "BSD": {
+ "_from": "1966-05-25"
+ }
+ }
+ ],
+ "BT": [
+ {
+ "INR": {
+ "_from": "1907-01-01"
+ }
+ },
+ {
+ "BTN": {
+ "_from": "1974-04-16"
+ }
+ }
+ ],
+ "BU": [
+ {
+ "BUK": {
+ "_from": "1952-07-01",
+ "_to": "1989-06-18"
+ }
+ }
+ ],
+ "BV": [
+ {
+ "NOK": {
+ "_from": "1905-06-07"
+ }
+ }
+ ],
+ "BW": [
+ {
+ "ZAR": {
+ "_from": "1961-02-14",
+ "_to": "1976-08-23"
+ }
+ },
+ {
+ "BWP": {
+ "_from": "1976-08-23"
+ }
+ }
+ ],
+ "BY": [
+ {
+ "SUR": {
+ "_from": "1961-01-01",
+ "_to": "1991-12-25"
+ }
+ },
+ {
+ "RUR": {
+ "_from": "1991-12-25",
+ "_to": "1994-11-08"
+ }
+ },
+ {
+ "BYB": {
+ "_from": "1994-08-01",
+ "_to": "2000-12-31"
+ }
+ },
+ {
+ "BYR": {
+ "_from": "2000-01-01",
+ "_to": "2017-01-01"
+ }
+ },
+ {
+ "BYN": {
+ "_from": "2016-07-01"
+ }
+ }
+ ],
+ "BZ": [
+ {
+ "BZD": {
+ "_from": "1974-01-01"
+ }
+ }
+ ],
+ "CA": [
+ {
+ "CAD": {
+ "_from": "1858-01-01"
+ }
+ }
+ ],
+ "CC": [
+ {
+ "AUD": {
+ "_from": "1966-02-14"
+ }
+ }
+ ],
+ "CD": [
+ {
+ "ZRZ": {
+ "_from": "1971-10-27",
+ "_to": "1993-11-01"
+ }
+ },
+ {
+ "ZRN": {
+ "_from": "1993-11-01",
+ "_to": "1998-07-01"
+ }
+ },
+ {
+ "CDF": {
+ "_from": "1998-07-01"
+ }
+ }
+ ],
+ "CF": [
+ {
+ "XAF": {
+ "_from": "1993-01-01"
+ }
+ }
+ ],
+ "CG": [
+ {
+ "XAF": {
+ "_from": "1993-01-01"
+ }
+ }
+ ],
+ "CH": [
+ {
+ "CHE": {
+ "_tender": "false"
+ }
+ },
+ {
+ "CHW": {
+ "_tender": "false"
+ }
+ },
+ {
+ "CHF": {
+ "_from": "1799-03-17"
+ }
+ }
+ ],
+ "CI": [
+ {
+ "XOF": {
+ "_from": "1958-12-04"
+ }
+ }
+ ],
+ "CK": [
+ {
+ "NZD": {
+ "_from": "1967-07-10"
+ }
+ }
+ ],
+ "CL": [
+ {
+ "CLF": {
+ "_tender": "false"
+ }
+ },
+ {
+ "CLE": {
+ "_from": "1960-01-01",
+ "_to": "1975-09-29"
+ }
+ },
+ {
+ "CLP": {
+ "_from": "1975-09-29"
+ }
+ }
+ ],
+ "CM": [
+ {
+ "XAF": {
+ "_from": "1973-04-01"
+ }
+ }
+ ],
+ "CN": [
+ {
+ "CNY": {
+ "_from": "1953-03-01"
+ }
+ },
+ {
+ "CNX": {
+ "_tender": "false",
+ "_from": "1979-01-01",
+ "_to": "1998-12-31"
+ }
+ }
+ ],
+ "CO": [
+ {
+ "COU": {
+ "_tender": "false"
+ }
+ },
+ {
+ "COP": {
+ "_from": "1905-01-01"
+ }
+ }
+ ],
+ "CP": [
+ {
+ "XXX": {
+ "_tender": "false"
+ }
+ }
+ ],
+ "CR": [
+ {
+ "CRC": {
+ "_from": "1896-10-26"
+ }
+ }
+ ],
+ "CS": [
+ {
+ "YUM": {
+ "_from": "1994-01-24",
+ "_to": "2002-05-15"
+ }
+ },
+ {
+ "CSD": {
+ "_from": "2002-05-15",
+ "_to": "2006-06-03"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "2003-02-04",
+ "_to": "2006-06-03"
+ }
+ }
+ ],
+ "CU": [
+ {
+ "CUP": {
+ "_from": "1859-01-01"
+ }
+ },
+ {
+ "USD": {
+ "_from": "1899-01-01",
+ "_to": "1959-01-01"
+ }
+ },
+ {
+ "CUC": {
+ "_from": "1994-01-01"
+ }
+ }
+ ],
+ "CV": [
+ {
+ "PTE": {
+ "_from": "1911-05-22",
+ "_to": "1975-07-05"
+ }
+ },
+ {
+ "CVE": {
+ "_from": "1914-01-01"
+ }
+ }
+ ],
+ "CW": [
+ {
+ "ANG": {
+ "_from": "2010-10-10"
+ }
+ }
+ ],
+ "CX": [
+ {
+ "AUD": {
+ "_from": "1966-02-14"
+ }
+ }
+ ],
+ "CY": [
+ {
+ "CYP": {
+ "_from": "1914-09-10",
+ "_to": "2008-01-31"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "2008-01-01"
+ }
+ }
+ ],
+ "CZ": [
+ {
+ "CSK": {
+ "_from": "1953-06-01",
+ "_to": "1993-03-01"
+ }
+ },
+ {
+ "CZK": {
+ "_from": "1993-01-01"
+ }
+ }
+ ],
+ "DD": [
+ {
+ "DDM": {
+ "_from": "1948-07-20",
+ "_to": "1990-10-02"
+ }
+ }
+ ],
+ "DE": [
+ {
+ "DEM": {
+ "_from": "1948-06-20",
+ "_to": "2002-02-28"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "DG": [
+ {
+ "USD": {
+ "_from": "1965-11-08"
+ }
+ }
+ ],
+ "DJ": [
+ {
+ "DJF": {
+ "_from": "1977-06-27"
+ }
+ }
+ ],
+ "DK": [
+ {
+ "DKK": {
+ "_from": "1873-05-27"
+ }
+ }
+ ],
+ "DM": [
+ {
+ "XCD": {
+ "_from": "1965-10-06"
+ }
+ }
+ ],
+ "DO": [
+ {
+ "USD": {
+ "_from": "1905-06-21",
+ "_to": "1947-10-01"
+ }
+ },
+ {
+ "DOP": {
+ "_from": "1947-10-01"
+ }
+ }
+ ],
+ "DZ": [
+ {
+ "DZD": {
+ "_from": "1964-04-01"
+ }
+ }
+ ],
+ "EA": [
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "EC": [
+ {
+ "ECS": {
+ "_from": "1884-04-01",
+ "_to": "2000-10-02"
+ }
+ },
+ {
+ "ECV": {
+ "_tender": "false",
+ "_from": "1993-05-23",
+ "_to": "2000-01-09"
+ }
+ },
+ {
+ "USD": {
+ "_from": "2000-10-02"
+ }
+ }
+ ],
+ "EE": [
+ {
+ "SUR": {
+ "_from": "1961-01-01",
+ "_to": "1992-06-20"
+ }
+ },
+ {
+ "EEK": {
+ "_from": "1992-06-21",
+ "_to": "2010-12-31"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "2011-01-01"
+ }
+ }
+ ],
+ "EG": [
+ {
+ "EGP": {
+ "_from": "1885-11-14"
+ }
+ }
+ ],
+ "EH": [
+ {
+ "MAD": {
+ "_from": "1976-02-26"
+ }
+ }
+ ],
+ "ER": [
+ {
+ "ETB": {
+ "_from": "1993-05-24",
+ "_to": "1997-11-08"
+ }
+ },
+ {
+ "ERN": {
+ "_from": "1997-11-08"
+ }
+ }
+ ],
+ "ES": [
+ {
+ "ESP": {
+ "_from": "1868-10-19",
+ "_to": "2002-02-28"
+ }
+ },
+ {
+ "ESB": {
+ "_tender": "false",
+ "_from": "1975-01-01",
+ "_to": "1994-12-31"
+ }
+ },
+ {
+ "ESA": {
+ "_tender": "false",
+ "_from": "1978-01-01",
+ "_to": "1981-12-31"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "ET": [
+ {
+ "ETB": {
+ "_from": "1976-09-15"
+ }
+ }
+ ],
+ "EU": [
+ {
+ "XEU": {
+ "_tender": "false",
+ "_from": "1979-01-01",
+ "_to": "1998-12-31"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "FI": [
+ {
+ "FIM": {
+ "_from": "1963-01-01",
+ "_to": "2002-02-28"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "FJ": [
+ {
+ "FJD": {
+ "_from": "1969-01-13"
+ }
+ }
+ ],
+ "FK": [
+ {
+ "FKP": {
+ "_from": "1901-01-01"
+ }
+ }
+ ],
+ "FM": [
+ {
+ "JPY": {
+ "_from": "1914-10-03",
+ "_to": "1944-01-01"
+ }
+ },
+ {
+ "USD": {
+ "_from": "1944-01-01"
+ }
+ }
+ ],
+ "FO": [
+ {
+ "DKK": {
+ "_from": "1948-01-01"
+ }
+ }
+ ],
+ "FR": [
+ {
+ "FRF": {
+ "_from": "1960-01-01",
+ "_to": "2002-02-17"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "GA": [
+ {
+ "XAF": {
+ "_from": "1993-01-01"
+ }
+ }
+ ],
+ "GB": [
+ {
+ "GBP": {
+ "_from": "1694-07-27"
+ }
+ }
+ ],
+ "GD": [
+ {
+ "XCD": {
+ "_from": "1967-02-27"
+ }
+ }
+ ],
+ "GE": [
+ {
+ "SUR": {
+ "_from": "1961-01-01",
+ "_to": "1991-12-25"
+ }
+ },
+ {
+ "RUR": {
+ "_from": "1991-12-25",
+ "_to": "1993-06-11"
+ }
+ },
+ {
+ "GEK": {
+ "_from": "1993-04-05",
+ "_to": "1995-09-25"
+ }
+ },
+ {
+ "GEL": {
+ "_from": "1995-09-23"
+ }
+ }
+ ],
+ "GF": [
+ {
+ "FRF": {
+ "_from": "1960-01-01",
+ "_to": "2002-02-17"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "GG": [
+ {
+ "GBP": {
+ "_from": "1830-01-01"
+ }
+ }
+ ],
+ "GH": [
+ {
+ "GHC": {
+ "_from": "1979-03-09",
+ "_to": "2007-12-31"
+ }
+ },
+ {
+ "GHS": {
+ "_from": "2007-07-03"
+ }
+ }
+ ],
+ "GI": [
+ {
+ "GIP": {
+ "_from": "1713-01-01"
+ }
+ }
+ ],
+ "GL": [
+ {
+ "DKK": {
+ "_from": "1873-05-27"
+ }
+ }
+ ],
+ "GM": [
+ {
+ "GMD": {
+ "_from": "1971-07-01"
+ }
+ }
+ ],
+ "GN": [
+ {
+ "GNS": {
+ "_from": "1972-10-02",
+ "_to": "1986-01-06"
+ }
+ },
+ {
+ "GNF": {
+ "_from": "1986-01-06"
+ }
+ }
+ ],
+ "GP": [
+ {
+ "FRF": {
+ "_from": "1960-01-01",
+ "_to": "2002-02-17"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "GQ": [
+ {
+ "GQE": {
+ "_from": "1975-07-07",
+ "_to": "1986-06-01"
+ }
+ },
+ {
+ "XAF": {
+ "_from": "1993-01-01"
+ }
+ }
+ ],
+ "GR": [
+ {
+ "GRD": {
+ "_from": "1954-05-01",
+ "_to": "2002-02-28"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "2001-01-01"
+ }
+ }
+ ],
+ "GS": [
+ {
+ "GBP": {
+ "_from": "1908-01-01"
+ }
+ }
+ ],
+ "GT": [
+ {
+ "GTQ": {
+ "_from": "1925-05-27"
+ }
+ }
+ ],
+ "GU": [
+ {
+ "USD": {
+ "_from": "1944-08-21"
+ }
+ }
+ ],
+ "GW": [
+ {
+ "GWE": {
+ "_from": "1914-01-01",
+ "_to": "1976-02-28"
+ }
+ },
+ {
+ "GWP": {
+ "_from": "1976-02-28",
+ "_to": "1997-03-31"
+ }
+ },
+ {
+ "XOF": {
+ "_from": "1997-03-31"
+ }
+ }
+ ],
+ "GY": [
+ {
+ "GYD": {
+ "_from": "1966-05-26"
+ }
+ }
+ ],
+ "HK": [
+ {
+ "HKD": {
+ "_from": "1895-02-02"
+ }
+ }
+ ],
+ "HM": [
+ {
+ "AUD": {
+ "_from": "1967-02-16"
+ }
+ }
+ ],
+ "HN": [
+ {
+ "HNL": {
+ "_from": "1926-04-03"
+ }
+ }
+ ],
+ "HR": [
+ {
+ "YUD": {
+ "_from": "1966-01-01",
+ "_to": "1990-01-01"
+ }
+ },
+ {
+ "YUN": {
+ "_from": "1990-01-01",
+ "_to": "1991-12-23"
+ }
+ },
+ {
+ "HRD": {
+ "_from": "1991-12-23",
+ "_to": "1995-01-01"
+ }
+ },
+ {
+ "HRK": {
+ "_from": "1994-05-30"
+ }
+ }
+ ],
+ "HT": [
+ {
+ "HTG": {
+ "_from": "1872-08-26"
+ }
+ },
+ {
+ "USD": {
+ "_from": "1915-01-01"
+ }
+ }
+ ],
+ "HU": [
+ {
+ "HUF": {
+ "_from": "1946-07-23"
+ }
+ }
+ ],
+ "IC": [
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "ID": [
+ {
+ "IDR": {
+ "_from": "1965-12-13"
+ }
+ }
+ ],
+ "IE": [
+ {
+ "GBP": {
+ "_from": "1800-01-01",
+ "_to": "1922-01-01"
+ }
+ },
+ {
+ "IEP": {
+ "_from": "1922-01-01",
+ "_to": "2002-02-09"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "IL": [
+ {
+ "ILP": {
+ "_from": "1948-08-16",
+ "_to": "1980-02-22"
+ }
+ },
+ {
+ "ILR": {
+ "_from": "1980-02-22",
+ "_to": "1985-09-04"
+ }
+ },
+ {
+ "ILS": {
+ "_from": "1985-09-04"
+ }
+ }
+ ],
+ "IM": [
+ {
+ "GBP": {
+ "_from": "1840-01-03"
+ }
+ }
+ ],
+ "IN": [
+ {
+ "INR": {
+ "_from": "1835-08-17"
+ }
+ }
+ ],
+ "IO": [
+ {
+ "USD": {
+ "_from": "1965-11-08"
+ }
+ }
+ ],
+ "IQ": [
+ {
+ "EGP": {
+ "_from": "1920-11-11",
+ "_to": "1931-04-19"
+ }
+ },
+ {
+ "INR": {
+ "_from": "1920-11-11",
+ "_to": "1931-04-19"
+ }
+ },
+ {
+ "IQD": {
+ "_from": "1931-04-19"
+ }
+ }
+ ],
+ "IR": [
+ {
+ "IRR": {
+ "_from": "1932-05-13"
+ }
+ }
+ ],
+ "IS": [
+ {
+ "DKK": {
+ "_from": "1873-05-27",
+ "_to": "1918-12-01"
+ }
+ },
+ {
+ "ISJ": {
+ "_from": "1918-12-01",
+ "_to": "1981-01-01"
+ }
+ },
+ {
+ "ISK": {
+ "_from": "1981-01-01"
+ }
+ }
+ ],
+ "IT": [
+ {
+ "ITL": {
+ "_from": "1862-08-24",
+ "_to": "2002-02-28"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "JE": [
+ {
+ "GBP": {
+ "_from": "1837-01-01"
+ }
+ }
+ ],
+ "JM": [
+ {
+ "JMD": {
+ "_from": "1969-09-08"
+ }
+ }
+ ],
+ "JO": [
+ {
+ "JOD": {
+ "_from": "1950-07-01"
+ }
+ }
+ ],
+ "JP": [
+ {
+ "JPY": {
+ "_from": "1871-06-01"
+ }
+ }
+ ],
+ "KE": [
+ {
+ "KES": {
+ "_from": "1966-09-14"
+ }
+ }
+ ],
+ "KG": [
+ {
+ "SUR": {
+ "_from": "1961-01-01",
+ "_to": "1991-12-25"
+ }
+ },
+ {
+ "RUR": {
+ "_from": "1991-12-25",
+ "_to": "1993-05-10"
+ }
+ },
+ {
+ "KGS": {
+ "_from": "1993-05-10"
+ }
+ }
+ ],
+ "KH": [
+ {
+ "KHR": {
+ "_from": "1980-03-20"
+ }
+ }
+ ],
+ "KI": [
+ {
+ "AUD": {
+ "_from": "1966-02-14"
+ }
+ }
+ ],
+ "KM": [
+ {
+ "KMF": {
+ "_from": "1975-07-06"
+ }
+ }
+ ],
+ "KN": [
+ {
+ "XCD": {
+ "_from": "1965-10-06"
+ }
+ }
+ ],
+ "KP": [
+ {
+ "KPW": {
+ "_from": "1959-04-17"
+ }
+ }
+ ],
+ "KR": [
+ {
+ "KRO": {
+ "_from": "1945-08-15",
+ "_to": "1953-02-15"
+ }
+ },
+ {
+ "KRH": {
+ "_from": "1953-02-15",
+ "_to": "1962-06-10"
+ }
+ },
+ {
+ "KRW": {
+ "_from": "1962-06-10"
+ }
+ }
+ ],
+ "KW": [
+ {
+ "KWD": {
+ "_from": "1961-04-01"
+ }
+ }
+ ],
+ "KY": [
+ {
+ "JMD": {
+ "_from": "1969-09-08",
+ "_to": "1971-01-01"
+ }
+ },
+ {
+ "KYD": {
+ "_from": "1971-01-01"
+ }
+ }
+ ],
+ "KZ": [
+ {
+ "KZT": {
+ "_from": "1993-11-05"
+ }
+ }
+ ],
+ "LA": [
+ {
+ "LAK": {
+ "_from": "1979-12-10"
+ }
+ }
+ ],
+ "LB": [
+ {
+ "LBP": {
+ "_from": "1948-02-02"
+ }
+ }
+ ],
+ "LC": [
+ {
+ "XCD": {
+ "_from": "1965-10-06"
+ }
+ }
+ ],
+ "LI": [
+ {
+ "CHF": {
+ "_from": "1921-02-01"
+ }
+ }
+ ],
+ "LK": [
+ {
+ "LKR": {
+ "_from": "1978-05-22"
+ }
+ }
+ ],
+ "LR": [
+ {
+ "LRD": {
+ "_from": "1944-01-01"
+ }
+ }
+ ],
+ "LS": [
+ {
+ "ZAR": {
+ "_from": "1961-02-14"
+ }
+ },
+ {
+ "LSL": {
+ "_from": "1980-01-22"
+ }
+ }
+ ],
+ "LT": [
+ {
+ "SUR": {
+ "_from": "1961-01-01",
+ "_to": "1992-10-01"
+ }
+ },
+ {
+ "LTT": {
+ "_from": "1992-10-01",
+ "_to": "1993-06-25"
+ }
+ },
+ {
+ "LTL": {
+ "_from": "1993-06-25",
+ "_to": "2014-12-31"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "2015-01-01"
+ }
+ }
+ ],
+ "LU": [
+ {
+ "LUF": {
+ "_from": "1944-09-04",
+ "_to": "2002-02-28"
+ }
+ },
+ {
+ "LUC": {
+ "_tender": "false",
+ "_from": "1970-01-01",
+ "_to": "1990-03-05"
+ }
+ },
+ {
+ "LUL": {
+ "_tender": "false",
+ "_from": "1970-01-01",
+ "_to": "1990-03-05"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "LV": [
+ {
+ "SUR": {
+ "_from": "1961-01-01",
+ "_to": "1992-07-20"
+ }
+ },
+ {
+ "LVR": {
+ "_from": "1992-05-07",
+ "_to": "1993-10-17"
+ }
+ },
+ {
+ "LVL": {
+ "_from": "1993-06-28",
+ "_to": "2013-12-31"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "2014-01-01"
+ }
+ }
+ ],
+ "LY": [
+ {
+ "LYD": {
+ "_from": "1971-09-01"
+ }
+ }
+ ],
+ "MA": [
+ {
+ "MAF": {
+ "_from": "1881-01-01",
+ "_to": "1959-10-17"
+ }
+ },
+ {
+ "MAD": {
+ "_from": "1959-10-17"
+ }
+ }
+ ],
+ "MC": [
+ {
+ "FRF": {
+ "_from": "1960-01-01",
+ "_to": "2002-02-17"
+ }
+ },
+ {
+ "MCF": {
+ "_from": "1960-01-01",
+ "_to": "2002-02-17"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "MD": [
+ {
+ "MDC": {
+ "_from": "1992-06-01",
+ "_to": "1993-11-29"
+ }
+ },
+ {
+ "MDL": {
+ "_from": "1993-11-29"
+ }
+ }
+ ],
+ "ME": [
+ {
+ "YUM": {
+ "_from": "1994-01-24",
+ "_to": "2002-05-15"
+ }
+ },
+ {
+ "DEM": {
+ "_from": "1999-10-02",
+ "_to": "2002-05-15"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "2002-01-01"
+ }
+ }
+ ],
+ "MF": [
+ {
+ "FRF": {
+ "_from": "1960-01-01",
+ "_to": "2002-02-17"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "MG": [
+ {
+ "MGF": {
+ "_from": "1963-07-01",
+ "_to": "2004-12-31"
+ }
+ },
+ {
+ "MGA": {
+ "_from": "1983-11-01"
+ }
+ }
+ ],
+ "MH": [
+ {
+ "USD": {
+ "_from": "1944-01-01"
+ }
+ }
+ ],
+ "MK": [
+ {
+ "MKN": {
+ "_from": "1992-04-26",
+ "_to": "1993-05-20"
+ }
+ },
+ {
+ "MKD": {
+ "_from": "1993-05-20"
+ }
+ }
+ ],
+ "ML": [
+ {
+ "XOF": {
+ "_from": "1958-11-24",
+ "_to": "1962-07-02"
+ }
+ },
+ {
+ "MLF": {
+ "_from": "1962-07-02",
+ "_to": "1984-08-31"
+ }
+ },
+ {
+ "XOF": {
+ "_from": "1984-06-01"
+ }
+ }
+ ],
+ "MM": [
+ {
+ "BUK": {
+ "_from": "1952-07-01",
+ "_to": "1989-06-18"
+ }
+ },
+ {
+ "MMK": {
+ "_from": "1989-06-18"
+ }
+ }
+ ],
+ "MN": [
+ {
+ "MNT": {
+ "_from": "1915-03-01"
+ }
+ }
+ ],
+ "MO": [
+ {
+ "MOP": {
+ "_from": "1901-01-01"
+ }
+ }
+ ],
+ "MP": [
+ {
+ "USD": {
+ "_from": "1944-01-01"
+ }
+ }
+ ],
+ "MQ": [
+ {
+ "FRF": {
+ "_from": "1960-01-01",
+ "_to": "2002-02-17"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "MR": [
+ {
+ "XOF": {
+ "_from": "1958-11-28",
+ "_to": "1973-06-29"
+ }
+ },
+ {
+ "MRO": {
+ "_from": "1973-06-29"
+ }
+ }
+ ],
+ "MS": [
+ {
+ "XCD": {
+ "_from": "1967-02-27"
+ }
+ }
+ ],
+ "MT": [
+ {
+ "MTP": {
+ "_from": "1914-08-13",
+ "_to": "1968-06-07"
+ }
+ },
+ {
+ "MTL": {
+ "_from": "1968-06-07",
+ "_to": "2008-01-31"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "2008-01-01"
+ }
+ }
+ ],
+ "MU": [
+ {
+ "MUR": {
+ "_from": "1934-04-01"
+ }
+ }
+ ],
+ "MV": [
+ {
+ "MVR": {
+ "_from": "1981-07-01"
+ }
+ }
+ ],
+ "MW": [
+ {
+ "MWK": {
+ "_from": "1971-02-15"
+ }
+ }
+ ],
+ "MX": [
+ {
+ "MXV": {
+ "_tender": "false"
+ }
+ },
+ {
+ "MXP": {
+ "_from": "1822-01-01",
+ "_to": "1992-12-31"
+ }
+ },
+ {
+ "MXN": {
+ "_from": "1993-01-01"
+ }
+ }
+ ],
+ "MY": [
+ {
+ "MYR": {
+ "_from": "1963-09-16"
+ }
+ }
+ ],
+ "MZ": [
+ {
+ "MZE": {
+ "_from": "1975-06-25",
+ "_to": "1980-06-16"
+ }
+ },
+ {
+ "MZM": {
+ "_from": "1980-06-16",
+ "_to": "2006-12-31"
+ }
+ },
+ {
+ "MZN": {
+ "_from": "2006-07-01"
+ }
+ }
+ ],
+ "NA": [
+ {
+ "ZAR": {
+ "_from": "1961-02-14"
+ }
+ },
+ {
+ "NAD": {
+ "_from": "1993-01-01"
+ }
+ }
+ ],
+ "NC": [
+ {
+ "XPF": {
+ "_from": "1985-01-01"
+ }
+ }
+ ],
+ "NE": [
+ {
+ "XOF": {
+ "_from": "1958-12-19"
+ }
+ }
+ ],
+ "NF": [
+ {
+ "AUD": {
+ "_from": "1966-02-14"
+ }
+ }
+ ],
+ "NG": [
+ {
+ "NGN": {
+ "_from": "1973-01-01"
+ }
+ }
+ ],
+ "NI": [
+ {
+ "NIC": {
+ "_from": "1988-02-15",
+ "_to": "1991-04-30"
+ }
+ },
+ {
+ "NIO": {
+ "_from": "1991-04-30"
+ }
+ }
+ ],
+ "NL": [
+ {
+ "NLG": {
+ "_from": "1813-01-01",
+ "_to": "2002-02-28"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "NO": [
+ {
+ "SEK": {
+ "_from": "1873-05-27",
+ "_to": "1905-06-07"
+ }
+ },
+ {
+ "NOK": {
+ "_from": "1905-06-07"
+ }
+ }
+ ],
+ "NP": [
+ {
+ "INR": {
+ "_from": "1870-01-01",
+ "_to": "1966-10-17"
+ }
+ },
+ {
+ "NPR": {
+ "_from": "1933-01-01"
+ }
+ }
+ ],
+ "NR": [
+ {
+ "AUD": {
+ "_from": "1966-02-14"
+ }
+ }
+ ],
+ "NU": [
+ {
+ "NZD": {
+ "_from": "1967-07-10"
+ }
+ }
+ ],
+ "NZ": [
+ {
+ "NZD": {
+ "_from": "1967-07-10"
+ }
+ }
+ ],
+ "OM": [
+ {
+ "OMR": {
+ "_from": "1972-11-11"
+ }
+ }
+ ],
+ "PA": [
+ {
+ "PAB": {
+ "_from": "1903-11-04"
+ }
+ },
+ {
+ "USD": {
+ "_from": "1903-11-18"
+ }
+ }
+ ],
+ "PE": [
+ {
+ "PES": {
+ "_from": "1863-02-14",
+ "_to": "1985-02-01"
+ }
+ },
+ {
+ "PEI": {
+ "_from": "1985-02-01",
+ "_to": "1991-07-01"
+ }
+ },
+ {
+ "PEN": {
+ "_from": "1991-07-01"
+ }
+ }
+ ],
+ "PF": [
+ {
+ "XPF": {
+ "_from": "1945-12-26"
+ }
+ }
+ ],
+ "PG": [
+ {
+ "AUD": {
+ "_from": "1966-02-14",
+ "_to": "1975-09-16"
+ }
+ },
+ {
+ "PGK": {
+ "_from": "1975-09-16"
+ }
+ }
+ ],
+ "PH": [
+ {
+ "PHP": {
+ "_from": "1946-07-04"
+ }
+ }
+ ],
+ "PK": [
+ {
+ "INR": {
+ "_from": "1835-08-17",
+ "_to": "1947-08-15"
+ }
+ },
+ {
+ "PKR": {
+ "_from": "1948-04-01"
+ }
+ }
+ ],
+ "PL": [
+ {
+ "PLZ": {
+ "_from": "1950-10-28",
+ "_to": "1994-12-31"
+ }
+ },
+ {
+ "PLN": {
+ "_from": "1995-01-01"
+ }
+ }
+ ],
+ "PM": [
+ {
+ "FRF": {
+ "_from": "1972-12-21",
+ "_to": "2002-02-17"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "PN": [
+ {
+ "NZD": {
+ "_from": "1969-01-13"
+ }
+ }
+ ],
+ "PR": [
+ {
+ "ESP": {
+ "_from": "1800-01-01",
+ "_to": "1898-12-10"
+ }
+ },
+ {
+ "USD": {
+ "_from": "1898-12-10"
+ }
+ }
+ ],
+ "PS": [
+ {
+ "JOD": {
+ "_from": "1950-07-01",
+ "_to": "1967-06-01"
+ }
+ },
+ {
+ "ILP": {
+ "_from": "1967-06-01",
+ "_to": "1980-02-22"
+ }
+ },
+ {
+ "ILS": {
+ "_from": "1985-09-04"
+ }
+ },
+ {
+ "JOD": {
+ "_from": "1996-02-12"
+ }
+ }
+ ],
+ "PT": [
+ {
+ "PTE": {
+ "_from": "1911-05-22",
+ "_to": "2002-02-28"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "PW": [
+ {
+ "USD": {
+ "_from": "1944-01-01"
+ }
+ }
+ ],
+ "PY": [
+ {
+ "PYG": {
+ "_from": "1943-11-01"
+ }
+ }
+ ],
+ "QA": [
+ {
+ "QAR": {
+ "_from": "1973-05-19"
+ }
+ }
+ ],
+ "RE": [
+ {
+ "FRF": {
+ "_from": "1975-01-01",
+ "_to": "2002-02-17"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "RO": [
+ {
+ "ROL": {
+ "_from": "1952-01-28",
+ "_to": "2006-12-31"
+ }
+ },
+ {
+ "RON": {
+ "_from": "2005-07-01"
+ }
+ }
+ ],
+ "RS": [
+ {
+ "YUM": {
+ "_from": "1994-01-24",
+ "_to": "2002-05-15"
+ }
+ },
+ {
+ "CSD": {
+ "_from": "2002-05-15",
+ "_to": "2006-10-25"
+ }
+ },
+ {
+ "RSD": {
+ "_from": "2006-10-25"
+ }
+ }
+ ],
+ "RU": [
+ {
+ "RUR": {
+ "_from": "1991-12-25",
+ "_to": "1998-12-31"
+ }
+ },
+ {
+ "RUB": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "RW": [
+ {
+ "RWF": {
+ "_from": "1964-05-19"
+ }
+ }
+ ],
+ "SA": [
+ {
+ "SAR": {
+ "_from": "1952-10-22"
+ }
+ }
+ ],
+ "SB": [
+ {
+ "AUD": {
+ "_from": "1966-02-14",
+ "_to": "1978-06-30"
+ }
+ },
+ {
+ "SBD": {
+ "_from": "1977-10-24"
+ }
+ }
+ ],
+ "SC": [
+ {
+ "SCR": {
+ "_from": "1903-11-01"
+ }
+ }
+ ],
+ "SD": [
+ {
+ "EGP": {
+ "_from": "1889-01-19",
+ "_to": "1958-01-01"
+ }
+ },
+ {
+ "GBP": {
+ "_from": "1889-01-19",
+ "_to": "1958-01-01"
+ }
+ },
+ {
+ "SDP": {
+ "_from": "1957-04-08",
+ "_to": "1998-06-01"
+ }
+ },
+ {
+ "SDD": {
+ "_from": "1992-06-08",
+ "_to": "2007-06-30"
+ }
+ },
+ {
+ "SDG": {
+ "_from": "2007-01-10"
+ }
+ }
+ ],
+ "SE": [
+ {
+ "SEK": {
+ "_from": "1873-05-27"
+ }
+ }
+ ],
+ "SG": [
+ {
+ "MYR": {
+ "_from": "1963-09-16",
+ "_to": "1967-06-12"
+ }
+ },
+ {
+ "SGD": {
+ "_from": "1967-06-12"
+ }
+ }
+ ],
+ "SH": [
+ {
+ "SHP": {
+ "_from": "1917-02-15"
+ }
+ }
+ ],
+ "SI": [
+ {
+ "SIT": {
+ "_from": "1992-10-07",
+ "_to": "2007-01-14"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "2007-01-01"
+ }
+ }
+ ],
+ "SJ": [
+ {
+ "NOK": {
+ "_from": "1905-06-07"
+ }
+ }
+ ],
+ "SK": [
+ {
+ "CSK": {
+ "_from": "1953-06-01",
+ "_to": "1992-12-31"
+ }
+ },
+ {
+ "SKK": {
+ "_from": "1992-12-31",
+ "_to": "2009-01-01"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "2009-01-01"
+ }
+ }
+ ],
+ "SL": [
+ {
+ "GBP": {
+ "_from": "1808-11-30",
+ "_to": "1966-02-04"
+ }
+ },
+ {
+ "SLL": {
+ "_from": "1964-08-04"
+ }
+ }
+ ],
+ "SM": [
+ {
+ "ITL": {
+ "_from": "1865-12-23",
+ "_to": "2001-02-28"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "SN": [
+ {
+ "XOF": {
+ "_from": "1959-04-04"
+ }
+ }
+ ],
+ "SO": [
+ {
+ "SOS": {
+ "_from": "1960-07-01"
+ }
+ }
+ ],
+ "SR": [
+ {
+ "NLG": {
+ "_from": "1815-11-20",
+ "_to": "1940-05-10"
+ }
+ },
+ {
+ "SRG": {
+ "_from": "1940-05-10",
+ "_to": "2003-12-31"
+ }
+ },
+ {
+ "SRD": {
+ "_from": "2004-01-01"
+ }
+ }
+ ],
+ "SS": [
+ {
+ "SDG": {
+ "_from": "2007-01-10",
+ "_to": "2011-09-01"
+ }
+ },
+ {
+ "SSP": {
+ "_from": "2011-07-18"
+ }
+ }
+ ],
+ "ST": [
+ {
+ "STD": {
+ "_from": "1977-09-08"
+ }
+ }
+ ],
+ "SU": [
+ {
+ "SUR": {
+ "_from": "1961-01-01",
+ "_to": "1991-12-25"
+ }
+ }
+ ],
+ "SV": [
+ {
+ "SVC": {
+ "_from": "1919-11-11",
+ "_to": "2001-01-01"
+ }
+ },
+ {
+ "USD": {
+ "_from": "2001-01-01"
+ }
+ }
+ ],
+ "SX": [
+ {
+ "ANG": {
+ "_from": "2010-10-10"
+ }
+ }
+ ],
+ "SY": [
+ {
+ "SYP": {
+ "_from": "1948-01-01"
+ }
+ }
+ ],
+ "SZ": [
+ {
+ "SZL": {
+ "_from": "1974-09-06"
+ }
+ }
+ ],
+ "TA": [
+ {
+ "GBP": {
+ "_from": "1938-01-12"
+ }
+ }
+ ],
+ "TC": [
+ {
+ "USD": {
+ "_from": "1969-09-08"
+ }
+ }
+ ],
+ "TD": [
+ {
+ "XAF": {
+ "_from": "1993-01-01"
+ }
+ }
+ ],
+ "TF": [
+ {
+ "FRF": {
+ "_from": "1959-01-01",
+ "_to": "2002-02-17"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "TG": [
+ {
+ "XOF": {
+ "_from": "1958-11-28"
+ }
+ }
+ ],
+ "TH": [
+ {
+ "THB": {
+ "_from": "1928-04-15"
+ }
+ }
+ ],
+ "TJ": [
+ {
+ "RUR": {
+ "_from": "1991-12-25",
+ "_to": "1995-05-10"
+ }
+ },
+ {
+ "TJR": {
+ "_from": "1995-05-10",
+ "_to": "2000-10-25"
+ }
+ },
+ {
+ "TJS": {
+ "_from": "2000-10-26"
+ }
+ }
+ ],
+ "TK": [
+ {
+ "NZD": {
+ "_from": "1967-07-10"
+ }
+ }
+ ],
+ "TL": [
+ {
+ "TPE": {
+ "_from": "1959-01-02",
+ "_to": "2002-05-20"
+ }
+ },
+ {
+ "IDR": {
+ "_from": "1975-12-07",
+ "_to": "2002-05-20"
+ }
+ },
+ {
+ "USD": {
+ "_from": "1999-10-20"
+ }
+ }
+ ],
+ "TM": [
+ {
+ "SUR": {
+ "_from": "1961-01-01",
+ "_to": "1991-12-25"
+ }
+ },
+ {
+ "RUR": {
+ "_from": "1991-12-25",
+ "_to": "1993-11-01"
+ }
+ },
+ {
+ "TMM": {
+ "_from": "1993-11-01",
+ "_to": "2009-01-01"
+ }
+ },
+ {
+ "TMT": {
+ "_from": "2009-01-01"
+ }
+ }
+ ],
+ "TN": [
+ {
+ "TND": {
+ "_from": "1958-11-01"
+ }
+ }
+ ],
+ "TO": [
+ {
+ "TOP": {
+ "_from": "1966-02-14"
+ }
+ }
+ ],
+ "TP": [
+ {
+ "TPE": {
+ "_from": "1959-01-02",
+ "_to": "2002-05-20"
+ }
+ },
+ {
+ "IDR": {
+ "_from": "1975-12-07",
+ "_to": "2002-05-20"
+ }
+ }
+ ],
+ "TR": [
+ {
+ "TRL": {
+ "_from": "1922-11-01",
+ "_to": "2005-12-31"
+ }
+ },
+ {
+ "TRY": {
+ "_from": "2005-01-01"
+ }
+ }
+ ],
+ "TT": [
+ {
+ "TTD": {
+ "_from": "1964-01-01"
+ }
+ }
+ ],
+ "TV": [
+ {
+ "AUD": {
+ "_from": "1966-02-14"
+ }
+ }
+ ],
+ "TW": [
+ {
+ "TWD": {
+ "_from": "1949-06-15"
+ }
+ }
+ ],
+ "TZ": [
+ {
+ "TZS": {
+ "_from": "1966-06-14"
+ }
+ }
+ ],
+ "UA": [
+ {
+ "SUR": {
+ "_from": "1961-01-01",
+ "_to": "1991-12-25"
+ }
+ },
+ {
+ "RUR": {
+ "_from": "1991-12-25",
+ "_to": "1992-11-13"
+ }
+ },
+ {
+ "UAK": {
+ "_from": "1992-11-13",
+ "_to": "1993-10-17"
+ }
+ },
+ {
+ "UAH": {
+ "_from": "1996-09-02"
+ }
+ }
+ ],
+ "UG": [
+ {
+ "UGS": {
+ "_from": "1966-08-15",
+ "_to": "1987-05-15"
+ }
+ },
+ {
+ "UGX": {
+ "_from": "1987-05-15"
+ }
+ }
+ ],
+ "UM": [
+ {
+ "USD": {
+ "_from": "1944-01-01"
+ }
+ }
+ ],
+ "US": [
+ {
+ "USN": {
+ "_tender": "false"
+ }
+ },
+ {
+ "USS": {
+ "_tender": "false",
+ "_to": "2014-03-01"
+ }
+ },
+ {
+ "USD": {
+ "_from": "1792-01-01"
+ }
+ }
+ ],
+ "UY": [
+ {
+ "UYI": {
+ "_tender": "false"
+ }
+ },
+ {
+ "UYP": {
+ "_from": "1975-07-01",
+ "_to": "1993-03-01"
+ }
+ },
+ {
+ "UYU": {
+ "_from": "1993-03-01"
+ }
+ }
+ ],
+ "UZ": [
+ {
+ "UZS": {
+ "_from": "1994-07-01"
+ }
+ }
+ ],
+ "VA": [
+ {
+ "ITL": {
+ "_from": "1870-10-19",
+ "_to": "2002-02-28"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "VC": [
+ {
+ "XCD": {
+ "_from": "1965-10-06"
+ }
+ }
+ ],
+ "VE": [
+ {
+ "VEB": {
+ "_from": "1871-05-11",
+ "_to": "2008-06-30"
+ }
+ },
+ {
+ "VEF": {
+ "_from": "2008-01-01"
+ }
+ }
+ ],
+ "VG": [
+ {
+ "USD": {
+ "_from": "1833-01-01"
+ }
+ },
+ {
+ "GBP": {
+ "_from": "1833-01-01",
+ "_to": "1959-01-01"
+ }
+ }
+ ],
+ "VI": [
+ {
+ "USD": {
+ "_from": "1837-01-01"
+ }
+ }
+ ],
+ "VN": [
+ {
+ "VNN": {
+ "_from": "1978-05-03",
+ "_to": "1985-09-14"
+ }
+ },
+ {
+ "VND": {
+ "_from": "1985-09-14"
+ }
+ }
+ ],
+ "VU": [
+ {
+ "VUV": {
+ "_from": "1981-01-01"
+ }
+ }
+ ],
+ "WF": [
+ {
+ "XPF": {
+ "_from": "1961-07-30"
+ }
+ }
+ ],
+ "WS": [
+ {
+ "WST": {
+ "_from": "1967-07-10"
+ }
+ }
+ ],
+ "XK": [
+ {
+ "YUM": {
+ "_from": "1994-01-24",
+ "_to": "1999-09-30"
+ }
+ },
+ {
+ "DEM": {
+ "_from": "1999-09-01",
+ "_to": "2002-03-09"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "2002-01-01"
+ }
+ }
+ ],
+ "YD": [
+ {
+ "YDD": {
+ "_from": "1965-04-01",
+ "_to": "1996-01-01"
+ }
+ }
+ ],
+ "YE": [
+ {
+ "YER": {
+ "_from": "1990-05-22"
+ }
+ }
+ ],
+ "YT": [
+ {
+ "KMF": {
+ "_from": "1975-01-01",
+ "_to": "1976-02-23"
+ }
+ },
+ {
+ "FRF": {
+ "_from": "1976-02-23",
+ "_to": "2002-02-17"
+ }
+ },
+ {
+ "EUR": {
+ "_from": "1999-01-01"
+ }
+ }
+ ],
+ "YU": [
+ {
+ "YUD": {
+ "_from": "1966-01-01",
+ "_to": "1990-01-01"
+ }
+ },
+ {
+ "YUN": {
+ "_from": "1990-01-01",
+ "_to": "1992-07-24"
+ }
+ },
+ {
+ "YUM": {
+ "_from": "1994-01-24",
+ "_to": "2002-05-15"
+ }
+ }
+ ],
+ "ZA": [
+ {
+ "ZAR": {
+ "_from": "1961-02-14"
+ }
+ },
+ {
+ "ZAL": {
+ "_tender": "false",
+ "_from": "1985-09-01",
+ "_to": "1995-03-13"
+ }
+ }
+ ],
+ "ZM": [
+ {
+ "ZMK": {
+ "_from": "1968-01-16",
+ "_to": "2013-01-01"
+ }
+ },
+ {
+ "ZMW": {
+ "_from": "2013-01-01"
+ }
+ }
+ ],
+ "ZR": [
+ {
+ "ZRZ": {
+ "_from": "1971-10-27",
+ "_to": "1993-11-01"
+ }
+ },
+ {
+ "ZRN": {
+ "_from": "1993-11-01",
+ "_to": "1998-07-31"
+ }
+ }
+ ],
+ "ZW": [
+ {
+ "RHD": {
+ "_from": "1970-02-17",
+ "_to": "1980-04-18"
+ }
+ },
+ {
+ "ZWD": {
+ "_from": "1980-04-18",
+ "_to": "2008-08-01"
+ }
+ },
+ {
+ "ZWR": {
+ "_from": "2008-08-01",
+ "_to": "2009-02-02"
+ }
+ },
+ {
+ "ZWL": {
+ "_from": "2009-02-02",
+ "_to": "2009-04-12"
+ }
+ },
+ {
+ "USD": {
+ "_from": "2009-04-12"
+ }
+ }
+ ],
+ "ZZ": [
+ {
+ "XAG": {
+ "_tender": "false"
+ }
+ },
+ {
+ "XAU": {
+ "_tender": "false"
+ }
+ },
+ {
+ "XBA": {
+ "_tender": "false"
+ }
+ },
+ {
+ "XBB": {
+ "_tender": "false"
+ }
+ },
+ {
+ "XBC": {
+ "_tender": "false"
+ }
+ },
+ {
+ "XBD": {
+ "_tender": "false"
+ }
+ },
+ {
+ "XDR": {
+ "_tender": "false"
+ }
+ },
+ {
+ "XPD": {
+ "_tender": "false"
+ }
+ },
+ {
+ "XPT": {
+ "_tender": "false"
+ }
+ },
+ {
+ "XSU": {
+ "_tender": "false"
+ }
+ },
+ {
+ "XTS": {
+ "_tender": "false"
+ }
+ },
+ {
+ "XUA": {
+ "_tender": "false"
+ }
+ },
+ {
+ "XXX": {
+ "_tender": "false"
+ }
+ },
+ {
+ "XRE": {
+ "_tender": "false",
+ "_to": "1999-11-30"
+ }
+ },
+ {
+ "XFU": {
+ "_tender": "false",
+ "_to": "2013-11-30"
+ }
+ },
+ {
+ "XFO": {
+ "_tender": "false",
+ "_from": "1930-01-01",
+ "_to": "2003-04-01"
+ }
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/datasource.ts b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/datasource.ts
new file mode 100644
index 0000000000..b95bcee4a9
--- /dev/null
+++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/datasource.ts
@@ -0,0 +1,2392 @@
+export let Pivot_Data: Object[] =
+ [{ 'In_Stock': 34, 'Sold': 51, 'Amount': 383, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 4, 'Sold': 423, 'Amount': 3595.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 38, 'Sold': 234, 'Amount': 1813.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 42, 'Sold': 127, 'Amount': 952.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 36, 'Sold': 89, 'Amount': 668, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 17, 'Sold': 340, 'Amount': 2890, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 22, 'Sold': 379, 'Amount': 2937.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 12, 'Sold': 269, 'Amount': 2017.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 28, 'Sold': 15, 'Amount': 113, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 46, 'Sold': 369, 'Amount': 3136.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 16, 'Sold': 410, 'Amount': 3177.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 18, 'Sold': 99, 'Amount': 742.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 50, 'Sold': 50, 'Amount': 375.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 31, 'Sold': 129, 'Amount': 1096.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 23, 'Sold': 404, 'Amount': 3131, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 42, 'Sold': 132, 'Amount': 990, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 42, 'Sold': 56, 'Amount': 420.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 45, 'Sold': 481, 'Amount': 4088.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 3, 'Sold': 71, 'Amount': 550.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 35, 'Sold': 455, 'Amount': 3412.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 44, 'Sold': 25, 'Amount': 188, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 6, 'Sold': 466, 'Amount': 3961, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 47, 'Sold': 198, 'Amount': 1534.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 15, 'Sold': 421, 'Amount': 3157.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 18, 'Sold': 10, 'Amount': 75.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 6, 'Sold': 348, 'Amount': 2958, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 46, 'Sold': 118, 'Amount': 914.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 37, 'Sold': 207, 'Amount': 1552.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 17, 'Sold': 45, 'Amount': 338, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 39, 'Sold': 97, 'Amount': 824.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 3, 'Sold': 271, 'Amount': 2100.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 23, 'Sold': 501, 'Amount': 3757.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 42, 'Sold': 63, 'Amount': 473, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 36, 'Sold': 456, 'Amount': 3876, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 44, 'Sold': 155, 'Amount': 1201.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 12, 'Sold': 140, 'Amount': 1050, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 9, 'Sold': 31, 'Amount': 233, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 49, 'Sold': 402, 'Amount': 3417, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 30, 'Sold': 254, 'Amount': 1968.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 28, 'Sold': 314, 'Amount': 2355, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 43, 'Sold': 91, 'Amount': 683, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 44, 'Sold': 202, 'Amount': 1717, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 11, 'Sold': 298, 'Amount': 2309.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 39, 'Sold': 166, 'Amount': 1245, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 7, 'Sold': 11, 'Amount': 83, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 33, 'Sold': 416, 'Amount': 3536, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 39, 'Sold': 55, 'Amount': 426.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 16, 'Sold': 510, 'Amount': 3825, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 4, 'Sold': 199, 'Amount': 1691.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 4, 'Sold': 103, 'Amount': 798.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 42, 'Sold': 227, 'Amount': 1702.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 36, 'Sold': 16, 'Amount': 72, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 18, 'Sold': 250, 'Amount': 1250, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 19, 'Sold': 386, 'Amount': 1640.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 40, 'Sold': 165, 'Amount': 660, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 45, 'Sold': 83, 'Amount': 373.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 11, 'Sold': 221, 'Amount': 1105, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 17, 'Sold': 249, 'Amount': 1058.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 50, 'Sold': 418, 'Amount': 1672, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 34, 'Sold': 55, 'Amount': 247.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 3, 'Sold': 415, 'Amount': 2075, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 42, 'Sold': 57, 'Amount': 242.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 5, 'Sold': 252, 'Amount': 1008, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 11, 'Sold': 19, 'Amount': 85.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 10, 'Sold': 64, 'Amount': 320, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 42, 'Sold': 66, 'Amount': 280.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 33, 'Sold': 263, 'Amount': 1052, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 41, 'Sold': 61, 'Amount': 274.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 33, 'Sold': 257, 'Amount': 1285, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 16, 'Sold': 386, 'Amount': 1640.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 10, 'Sold': 503, 'Amount': 2012, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 7, 'Sold': 43, 'Amount': 193.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 30, 'Sold': 322, 'Amount': 1610, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 40, 'Sold': 305, 'Amount': 1296.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 46, 'Sold': 171, 'Amount': 684, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 8, 'Sold': 22, 'Amount': 99, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 18, 'Sold': 254, 'Amount': 1270, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 19, 'Sold': 72, 'Amount': 306, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 37, 'Sold': 286, 'Amount': 1144, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 15, 'Sold': 95, 'Amount': 427.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 48, 'Sold': 271, 'Amount': 1355, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 7, 'Sold': 67, 'Amount': 284.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 16, 'Sold': 92, 'Amount': 368, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 18, 'Sold': 86, 'Amount': 387, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 15, 'Sold': 320, 'Amount': 1600, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 5, 'Sold': 244, 'Amount': 1037, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 45, 'Sold': 403, 'Amount': 1612, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 3, 'Sold': 45, 'Amount': 202.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 41, 'Sold': 323, 'Amount': 1615, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 11, 'Sold': 256, 'Amount': 1088, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 24, 'Sold': 361, 'Amount': 1444, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 47, 'Sold': 57, 'Amount': 256.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 2, 'Sold': 269, 'Amount': 1345, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 45, 'Sold': 448, 'Amount': 1904, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 10, 'Sold': 376, 'Amount': 1504, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 41, 'Sold': 15, 'Amount': 67.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 12, 'Sold': 157, 'Amount': 785, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 35, 'Sold': 170, 'Amount': 722.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 32, 'Sold': 542, 'Amount': 2168, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 13, 'Sold': 96, 'Amount': 432, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 212, 'Amount': 1060, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 5, 'Sold': 342, 'Amount': 1453.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 40, 'Sold': 84, 'Amount': 336, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 20, 'Sold': 42, 'Amount': 483, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 15, 'Sold': 287, 'Amount': 3444, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 14, 'Sold': 371, 'Amount': 4173.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 48, 'Sold': 414, 'Amount': 4554, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 43, 'Sold': 14, 'Amount': 161, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 20, 'Sold': 81, 'Amount': 972, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 48, 'Sold': 438, 'Amount': 4927.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 32, 'Sold': 507, 'Amount': 5577, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 45, 'Sold': 65, 'Amount': 747.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 41, 'Sold': 382, 'Amount': 4584, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 31, 'Sold': 322, 'Amount': 3622.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 6, 'Sold': 313, 'Amount': 3443, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 20, 'Sold': 48, 'Amount': 552, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 29, 'Sold': 345, 'Amount': 4140, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 15, 'Sold': 77, 'Amount': 866.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 32, 'Sold': 339, 'Amount': 3729, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 1, 'Sold': 21, 'Amount': 241.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 29, 'Sold': 355, 'Amount': 4260, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 48, 'Sold': 76, 'Amount': 855, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 16, 'Sold': 180, 'Amount': 1980, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 15, 'Sold': 44, 'Amount': 506, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 36, 'Sold': 453, 'Amount': 5436, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 33, 'Sold': 410, 'Amount': 4612.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 3, 'Sold': 163, 'Amount': 1793, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 36, 'Sold': 77, 'Amount': 885.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 9, 'Sold': 489, 'Amount': 5868, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 4, 'Sold': 265, 'Amount': 2981.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 33, 'Sold': 360, 'Amount': 3960, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 16, 'Sold': 47, 'Amount': 540.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 24, 'Sold': 201, 'Amount': 2412, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 41, 'Sold': 383, 'Amount': 4308.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 33, 'Sold': 83, 'Amount': 913, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 14, 'Sold': 24, 'Amount': 276, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 2, 'Sold': 141, 'Amount': 1692, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 30, 'Sold': 332, 'Amount': 3735, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 50, 'Sold': 253, 'Amount': 2783, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 34, 'Sold': 31, 'Amount': 356.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 37, 'Sold': 352, 'Amount': 4224, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 31, 'Sold': 443, 'Amount': 4983.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 50, 'Sold': 185, 'Amount': 2035, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 20, 'Sold': 17, 'Amount': 195.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 49, 'Sold': 165, 'Amount': 1980, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 27, 'Sold': 466, 'Amount': 5242.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 17, 'Sold': 512, 'Amount': 5632, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 29, 'Sold': 42, 'Amount': 483, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 29, 'Sold': 102, 'Amount': 1224, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 14, 'Sold': 133, 'Amount': 1496.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 36, 'Sold': 391, 'Amount': 4301, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 29, 'Sold': 20, 'Amount': 230, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 42, 'Sold': 145, 'Amount': 1740, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 16, 'Sold': 398, 'Amount': 4477.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 2, 'Sold': 472, 'Amount': 5192, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 24, 'Sold': 32, 'Amount': 504.96, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 40, 'Sold': 258, 'Amount': 4200.24, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 26, 'Sold': 442, 'Amount': 6864.26, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 3, 'Sold': 317, 'Amount': 4843.76, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 2, 'Sold': 32, 'Amount': 504.96, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 16, 'Sold': 133, 'Amount': 2165.24, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 40, 'Sold': 117, 'Amount': 1817.01, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 37, 'Sold': 129, 'Amount': 1971.12, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 45, 'Sold': 80, 'Amount': 1262.4, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 36, 'Sold': 139, 'Amount': 2262.92, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 18, 'Sold': 234, 'Amount': 3634.02, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 38, 'Sold': 444, 'Amount': 6784.32, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 36, 'Sold': 60, 'Amount': 946.8, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 15, 'Sold': 470, 'Amount': 7651.6, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 27, 'Sold': 448, 'Amount': 6957.44, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 17, 'Sold': 118, 'Amount': 1803.04, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 7, 'Sold': 15, 'Amount': 236.7, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 45, 'Sold': 95, 'Amount': 1546.6, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 35, 'Sold': 191, 'Amount': 2966.23, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 16, 'Sold': 426, 'Amount': 6509.28, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 35, 'Sold': 78, 'Amount': 1230.84, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 3, 'Sold': 69, 'Amount': 1123.32, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 31, 'Sold': 221, 'Amount': 3432.13, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 13, 'Sold': 285, 'Amount': 4354.8, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 26, 'Sold': 56, 'Amount': 883.68, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 17, 'Sold': 303, 'Amount': 4932.84, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 34, 'Sold': 419, 'Amount': 6507.07, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 26, 'Sold': 397, 'Amount': 6066.16, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 14, 'Sold': 90, 'Amount': 1420.2, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 7, 'Sold': 337, 'Amount': 5486.36, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 47, 'Sold': 74, 'Amount': 1149.22, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 26, 'Sold': 203, 'Amount': 3101.84, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 10, 'Sold': 83, 'Amount': 1309.74, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 29, 'Sold': 152, 'Amount': 2474.56, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 30, 'Sold': 144, 'Amount': 2236.32, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 25, 'Sold': 231, 'Amount': 3529.68, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 31, 'Sold': 47, 'Amount': 741.66, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 29, 'Sold': 464, 'Amount': 7553.92, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 3, 'Sold': 460, 'Amount': 7143.8, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 27, 'Sold': 343, 'Amount': 5241.04, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 6, 'Sold': 22, 'Amount': 347.16, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 20, 'Sold': 161, 'Amount': 2621.08, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 4, 'Sold': 188, 'Amount': 2919.64, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 26, 'Sold': 233, 'Amount': 3560.24, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 26, 'Sold': 17, 'Amount': 268.26, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 39, 'Sold': 121, 'Amount': 1969.88, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 49, 'Sold': 469, 'Amount': 7283.57, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 31, 'Sold': 297, 'Amount': 4538.16, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 4, 'Sold': 30, 'Amount': 473.4, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 11, 'Sold': 288, 'Amount': 4688.64, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 8, 'Sold': 155, 'Amount': 2407.15, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 7, 'Sold': 121, 'Amount': 1848.88, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 16, 'Sold': 46, 'Amount': 1414.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 3, 'Sold': 328, 'Amount': 10250, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 32, 'Sold': 393, 'Amount': 11986.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 49, 'Sold': 415, 'Amount': 12553.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 37, 'Sold': 63, 'Amount': 1937.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 6, 'Sold': 411, 'Amount': 12843.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 19, 'Sold': 106, 'Amount': 3233, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 10, 'Sold': 222, 'Amount': 6715.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 43, 'Sold': 98, 'Amount': 3013.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 27, 'Sold': 59, 'Amount': 1843.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 18, 'Sold': 355, 'Amount': 10827.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 12, 'Sold': 76, 'Amount': 2299, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 16, 'Sold': 38, 'Amount': 1168.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 47, 'Sold': 189, 'Amount': 5906.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 16, 'Sold': 458, 'Amount': 13969, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 19, 'Sold': 436, 'Amount': 13189, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 38, 'Sold': 19, 'Amount': 584.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 2, 'Sold': 444, 'Amount': 13875, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 33, 'Sold': 186, 'Amount': 5673, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 3, 'Sold': 225, 'Amount': 6806.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 26, 'Sold': 11, 'Amount': 338.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 16, 'Sold': 61, 'Amount': 1906.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 24, 'Sold': 272, 'Amount': 8296, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 44, 'Sold': 150, 'Amount': 4537.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 11, 'Sold': 51, 'Amount': 1568.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 32, 'Sold': 490, 'Amount': 15312.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 41, 'Sold': 487, 'Amount': 14853.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 36, 'Sold': 184, 'Amount': 5566, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 9, 'Sold': 24, 'Amount': 738, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 50, 'Sold': 101, 'Amount': 3156.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 39, 'Sold': 301, 'Amount': 9180.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 25, 'Sold': 506, 'Amount': 15306.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 1, 'Sold': 89, 'Amount': 2736.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 1, 'Sold': 80, 'Amount': 2500, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 37, 'Sold': 196, 'Amount': 5978, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 36, 'Sold': 103, 'Amount': 3115.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 20, 'Sold': 35, 'Amount': 1076.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 47, 'Sold': 159, 'Amount': 4968.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 45, 'Sold': 392, 'Amount': 11956, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 30, 'Sold': 438, 'Amount': 13249.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 31, 'Sold': 75, 'Amount': 2306.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 40, 'Sold': 383, 'Amount': 11968.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 43, 'Sold': 160, 'Amount': 4880, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 29, 'Sold': 378, 'Amount': 11434.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 50, 'Sold': 18, 'Amount': 553.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 17, 'Sold': 140, 'Amount': 4375, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 18, 'Sold': 258, 'Amount': 7869, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 19, 'Sold': 508, 'Amount': 15367, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 11, 'Sold': 59, 'Amount': 1814.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 29, 'Sold': 83, 'Amount': 2593.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 37, 'Sold': 414, 'Amount': 12627, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 49, 'Sold': 341, 'Amount': 10315.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 2, 'Sold': 48, 'Amount': 936, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 12, 'Sold': 174, 'Amount': 3480, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 14, 'Sold': 202, 'Amount': 3888.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 9, 'Sold': 469, 'Amount': 8911, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 11, 'Sold': 53, 'Amount': 1033.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 19, 'Sold': 74, 'Amount': 1480, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 5, 'Sold': 467, 'Amount': 8989.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 40, 'Sold': 322, 'Amount': 6118, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 8, 'Sold': 53, 'Amount': 1033.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 22, 'Sold': 468, 'Amount': 9360, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 12, 'Sold': 277, 'Amount': 5332.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 31, 'Sold': 236, 'Amount': 4484, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 7, 'Sold': 49, 'Amount': 955.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 24, 'Sold': 191, 'Amount': 3820, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 32, 'Sold': 165, 'Amount': 3176.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 28, 'Sold': 185, 'Amount': 3515, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 5, 'Sold': 92, 'Amount': 1794, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 44, 'Sold': 128, 'Amount': 2560, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 33, 'Sold': 258, 'Amount': 4966.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 24, 'Sold': 274, 'Amount': 5206, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 25, 'Sold': 58, 'Amount': 1131, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 7, 'Sold': 322, 'Amount': 6440, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 44, 'Sold': 168, 'Amount': 3234, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 7, 'Sold': 120, 'Amount': 2280, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 8, 'Sold': 18, 'Amount': 351, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 23, 'Sold': 142, 'Amount': 2840, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 4, 'Sold': 133, 'Amount': 2560.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 10, 'Sold': 377, 'Amount': 7163, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 1, 'Sold': 56, 'Amount': 1092, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 22, 'Sold': 318, 'Amount': 6360, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 8, 'Sold': 456, 'Amount': 8778, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 21, 'Sold': 408, 'Amount': 7752, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 33, 'Sold': 34, 'Amount': 663, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 226, 'Amount': 4520, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 4, 'Sold': 355, 'Amount': 6833.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 45, 'Sold': 237, 'Amount': 4503, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 34, 'Sold': 94, 'Amount': 1833, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 41, 'Sold': 273, 'Amount': 5460, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 2, 'Sold': 280, 'Amount': 5390, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 31, 'Sold': 146, 'Amount': 2774, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 17, 'Sold': 37, 'Amount': 721.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 40, 'Sold': 219, 'Amount': 4380, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 29, 'Sold': 497, 'Amount': 9567.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 31, 'Sold': 378, 'Amount': 7182, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 15, 'Sold': 83, 'Amount': 1618.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 24, 'Sold': 211, 'Amount': 4220, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 42, 'Sold': 372, 'Amount': 7161, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 8, 'Sold': 537, 'Amount': 10203, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 8, 'Sold': 58, 'Amount': 1131, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 25, 'Sold': 155, 'Amount': 3100, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 17, 'Sold': 211, 'Amount': 4061.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 1, 'Sold': 134, 'Amount': 2546, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 18, 'Sold': 58, 'Amount': 98832, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 8, 'Sold': 474, 'Amount': 810066, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 43, 'Sold': 447, 'Amount': 762582, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 12, 'Sold': 289, 'Amount': 491011, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 43, 'Sold': 60, 'Amount': 102240, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 29, 'Sold': 93, 'Amount': 158937, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 11, 'Sold': 96, 'Amount': 163776, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 29, 'Sold': 401, 'Amount': 681299, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 42, 'Sold': 83, 'Amount': 141432, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 21, 'Sold': 427, 'Amount': 729743, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 33, 'Sold': 396, 'Amount': 675576, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 11, 'Sold': 98, 'Amount': 166502, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 29, 'Sold': 48, 'Amount': 81792, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 31, 'Sold': 288, 'Amount': 492192, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 40, 'Sold': 352, 'Amount': 600512, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 12, 'Sold': 426, 'Amount': 723774, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 19, 'Sold': 85, 'Amount': 144840, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 18, 'Sold': 432, 'Amount': 738288, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 14, 'Sold': 267, 'Amount': 455502, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 33, 'Sold': 434, 'Amount': 737366, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 24, 'Sold': 39, 'Amount': 66456, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 39, 'Sold': 171, 'Amount': 292239, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 20, 'Sold': 304, 'Amount': 518624, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 13, 'Sold': 441, 'Amount': 749259, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 16, 'Sold': 68, 'Amount': 115872, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 2, 'Sold': 406, 'Amount': 693854, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 10, 'Sold': 50, 'Amount': 85300, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 40, 'Sold': 231, 'Amount': 392469, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 31, 'Sold': 31, 'Amount': 52824, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 34, 'Sold': 254, 'Amount': 434086, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 38, 'Sold': 455, 'Amount': 776230, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 39, 'Sold': 304, 'Amount': 516496, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 50, 'Sold': 40, 'Amount': 68160, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 23, 'Sold': 204, 'Amount': 348636, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 26, 'Sold': 231, 'Amount': 394086, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 30, 'Sold': 531, 'Amount': 902169, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 35, 'Sold': 45, 'Amount': 76680, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 8, 'Sold': 275, 'Amount': 469975, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 42, 'Sold': 292, 'Amount': 498152, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 25, 'Sold': 197, 'Amount': 334703, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 8, 'Sold': 35, 'Amount': 59640, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 31, 'Sold': 234, 'Amount': 399906, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 34, 'Sold': 127, 'Amount': 216662, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 44, 'Sold': 377, 'Amount': 640523, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 31, 'Sold': 40, 'Amount': 68160, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 33, 'Sold': 474, 'Amount': 810066, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 49, 'Sold': 168, 'Amount': 286608, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 43, 'Sold': 521, 'Amount': 885179, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 32, 'Sold': 55, 'Amount': 93720, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 39, 'Sold': 309, 'Amount': 528081, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 8, 'Sold': 466, 'Amount': 794996, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 34, 'Sold': 296, 'Amount': 502904, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 14, 'Sold': 76, 'Amount': 113929, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 16, 'Sold': 202, 'Amount': 304818, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 19, 'Sold': 285, 'Amount': 429210, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 1, 'Sold': 345, 'Amount': 571119, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 16, 'Sold': 61, 'Amount': 91444, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 1, 'Sold': 94, 'Amount': 141846, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 27, 'Sold': 241, 'Amount': 362946, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 17, 'Sold': 186, 'Amount': 795969, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 4, 'Sold': 79, 'Amount': 118426, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 16, 'Sold': 341, 'Amount': 514569, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 27, 'Sold': 401, 'Amount': 603906, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 24, 'Sold': 204, 'Amount': 517155, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 37, 'Sold': 71, 'Amount': 106434, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 32, 'Sold': 368, 'Amount': 555312, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 14, 'Sold': 500, 'Amount': 753000, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 44, 'Sold': 275, 'Amount': 278814, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 32, 'Sold': 41, 'Amount': 61464, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 49, 'Sold': 172, 'Amount': 259548, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 8, 'Sold': 432, 'Amount': 650592, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 25, 'Sold': 241, 'Amount': 305796, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 40, 'Sold': 40, 'Amount': 59965, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 50, 'Sold': 350, 'Amount': 528150, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 30, 'Sold': 468, 'Amount': 704808, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 6, 'Sold': 250, 'Amount': 412225, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 30, 'Sold': 98, 'Amount': 146907, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 17, 'Sold': 228, 'Amount': 344052, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 42, 'Sold': 407, 'Amount': 612942, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 18, 'Sold': 217, 'Amount': 361259, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 30, 'Sold': 63, 'Amount': 94442, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 3, 'Sold': 303, 'Amount': 457227, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 23, 'Sold': 364, 'Amount': 548184, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 29, 'Sold': 191, 'Amount': 374750, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 27, 'Sold': 47, 'Amount': 70458, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 325, 'Amount': 490425, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 469, 'Amount': 706314, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 6, 'Sold': 183, 'Amount': 325283, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 25, 'Sold': 84, 'Amount': 125921, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 7, 'Sold': 374, 'Amount': 564366, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 5, 'Sold': 314, 'Amount': 472884, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 24, 'Sold': 427, 'Amount': 286309, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 6, 'Sold': 81, 'Amount': 121424, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 4, 'Sold': 80, 'Amount': 120720, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 24, 'Sold': 314, 'Amount': 472884, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 1, 'Sold': 495, 'Amount': 274317, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 16, 'Sold': 83, 'Amount': 124422, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 48, 'Sold': 380, 'Amount': 573420, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 1, 'Sold': 157, 'Amount': 236442, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 44, 'Sold': 450, 'Amount': 640073, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 14, 'Sold': 10, 'Amount': 14995, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 2, 'Sold': 330, 'Amount': 497970, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 27, 'Sold': 324, 'Amount': 487944, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 25, 'Sold': 346, 'Amount': 742005, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 10, 'Sold': 83, 'Amount': 132426.5, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 45, 'Sold': 51, 'Amount': 81396, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 1, 'Sold': 483, 'Amount': 770505.75, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 17, 'Sold': 233, 'Amount': 371635, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 42, 'Sold': 46, 'Amount': 73393, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 5, 'Sold': 306, 'Amount': 488376, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 22, 'Sold': 124, 'Amount': 197811, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 45, 'Sold': 409, 'Amount': 652355, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 27, 'Sold': 66, 'Amount': 105303, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 27, 'Sold': 172, 'Amount': 274512, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 16, 'Sold': 193, 'Amount': 307883.25, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 11, 'Sold': 510, 'Amount': 813450, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 42, 'Sold': 56, 'Amount': 89348, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 10, 'Sold': 61, 'Amount': 97356, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 16, 'Sold': 51, 'Amount': 81357.75, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 44, 'Sold': 360, 'Amount': 574200, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 38, 'Sold': 51, 'Amount': 81370.5, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 37, 'Sold': 176, 'Amount': 280896, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 16, 'Sold': 372, 'Amount': 593433, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 32, 'Sold': 473, 'Amount': 754435, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 27, 'Sold': 85, 'Amount': 135617.5, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 18, 'Sold': 457, 'Amount': 729372, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 15, 'Sold': 305, 'Amount': 486551.25, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 29, 'Sold': 513, 'Amount': 818235, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 49, 'Sold': 89, 'Amount': 141999.5, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 12, 'Sold': 87, 'Amount': 138852, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 24, 'Sold': 378, 'Amount': 603004.5, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 10, 'Sold': 65, 'Amount': 103675, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 35, 'Sold': 84, 'Amount': 134022, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 41, 'Sold': 118, 'Amount': 188328, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 29, 'Sold': 242, 'Amount': 386050.5, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 5, 'Sold': 396, 'Amount': 631620, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 6, 'Sold': 85, 'Amount': 135617.5, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 14, 'Sold': 98, 'Amount': 156408, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 50, 'Sold': 251, 'Amount': 400407.75, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 16, 'Sold': 144, 'Amount': 229680, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 7, 'Sold': 85, 'Amount': 135617.5, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 14, 'Sold': 465, 'Amount': 742140, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 23, 'Sold': 421, 'Amount': 671600.25, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 3, 'Sold': 355, 'Amount': 566225, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 47, 'Sold': 17, 'Amount': 27123.5, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 48, 'Sold': 125, 'Amount': 199500, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 41, 'Sold': 256, 'Amount': 408384, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 48, 'Sold': 126, 'Amount': 200970, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 30, 'Sold': 77, 'Amount': 122853.5, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 35, 'Sold': 139, 'Amount': 221844, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 4, 'Sold': 371, 'Amount': 591837.75, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 19, 'Sold': 353, 'Amount': 563035, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 43, 'Sold': 80, 'Amount': 127640, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 36, 'Sold': 168, 'Amount': 268128, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 27, 'Sold': 492, 'Amount': 784863, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 11, 'Sold': 320, 'Amount': 510400, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 2, 'Sold': 54, 'Amount': 324.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 22, 'Sold': 107, 'Amount': 856, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 43, 'Sold': 86, 'Amount': 537.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 26, 'Sold': 332, 'Amount': 1992, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 9, 'Sold': 75, 'Amount': 450.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 19, 'Sold': 155, 'Amount': 1240, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 34, 'Sold': 479, 'Amount': 2993.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 18, 'Sold': 227, 'Amount': 1362, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 20, 'Sold': 52, 'Amount': 312.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 24, 'Sold': 107, 'Amount': 856, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 16, 'Sold': 457, 'Amount': 2856.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 38, 'Sold': 122, 'Amount': 732, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 38, 'Sold': 28, 'Amount': 168.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 36, 'Sold': 490, 'Amount': 3920, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 15, 'Sold': 464, 'Amount': 2900, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 18, 'Sold': 329, 'Amount': 1974, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 38, 'Sold': 81, 'Amount': 486.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 19, 'Sold': 94, 'Amount': 752, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 43, 'Sold': 230, 'Amount': 1437.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 404, 'Amount': 2424, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 45, 'Sold': 27, 'Amount': 162.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 42, 'Sold': 106, 'Amount': 848, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 9, 'Sold': 358, 'Amount': 2237.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 25, 'Sold': 140, 'Amount': 840, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 28, 'Sold': 48, 'Amount': 288.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 11, 'Sold': 155, 'Amount': 1240, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 39, 'Sold': 176, 'Amount': 1100, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 22, 'Sold': 501, 'Amount': 3006, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 28, 'Sold': 14, 'Amount': 84.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 45, 'Sold': 98, 'Amount': 784, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 6, 'Sold': 280, 'Amount': 1750, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 36, 'Sold': 285, 'Amount': 1710, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 5, 'Sold': 67, 'Amount': 402.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 1, 'Sold': 103, 'Amount': 824, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 20, 'Sold': 247, 'Amount': 1543.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 3, 'Sold': 153, 'Amount': 918, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 40, 'Sold': 49, 'Amount': 294.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 39, 'Sold': 348, 'Amount': 2784, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 28, 'Sold': 461, 'Amount': 2881.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 23, 'Sold': 536, 'Amount': 3216, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 3, 'Sold': 83, 'Amount': 498.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 4, 'Sold': 68, 'Amount': 544, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 11, 'Sold': 390, 'Amount': 2437.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 49, 'Sold': 154, 'Amount': 924, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 47, 'Sold': 38, 'Amount': 228.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 37, 'Sold': 413, 'Amount': 3304, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 38, 'Sold': 380, 'Amount': 2375, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 46, 'Sold': 226, 'Amount': 1356, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 41, 'Sold': 65, 'Amount': 390.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 29, 'Sold': 176, 'Amount': 1408, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 39, 'Sold': 217, 'Amount': 1356.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 32, 'Sold': 318, 'Amount': 1908, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 21, 'Amount': 598.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 44, 'Sold': 68, 'Amount': 1972, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 38, 'Sold': 277, 'Amount': 7825.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 5, 'Sold': 191, 'Amount': 5348, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 8, 'Sold': 63, 'Amount': 1795.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 31, 'Sold': 84, 'Amount': 2436, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 5, 'Sold': 226, 'Amount': 6384.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 47, 'Sold': 143, 'Amount': 4004, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 35, 'Sold': 78, 'Amount': 2223, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 39, 'Sold': 391, 'Amount': 11339, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 47, 'Sold': 216, 'Amount': 6102, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 14, 'Sold': 269, 'Amount': 7532, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 9, 'Sold': 27, 'Amount': 769.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 17, 'Sold': 495, 'Amount': 14355, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 9, 'Sold': 499, 'Amount': 14096.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 48, 'Sold': 135, 'Amount': 3780, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 20, 'Sold': 32, 'Amount': 912, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 31, 'Sold': 328, 'Amount': 9512, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 43, 'Sold': 230, 'Amount': 6497.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 25, 'Sold': 101, 'Amount': 2828, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 32, 'Sold': 78, 'Amount': 2223, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 31, 'Sold': 76, 'Amount': 2204, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 12, 'Sold': 264, 'Amount': 7458, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 48, 'Sold': 508, 'Amount': 14224, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 24, 'Sold': 29, 'Amount': 826.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 47, 'Sold': 274, 'Amount': 7946, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 40, 'Sold': 357, 'Amount': 10085.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 8, 'Sold': 268, 'Amount': 7504, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 39, 'Sold': 87, 'Amount': 2479.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 43, 'Sold': 288, 'Amount': 8352, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 5, 'Sold': 109, 'Amount': 3079.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 1, 'Sold': 434, 'Amount': 12152, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 6, 'Sold': 13, 'Amount': 370.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 292, 'Amount': 8468, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 9, 'Sold': 439, 'Amount': 12401.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 37, 'Sold': 449, 'Amount': 12572, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 37, 'Sold': 68, 'Amount': 1938, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 4, 'Sold': 274, 'Amount': 7946, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 40, 'Sold': 394, 'Amount': 11130.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 32, 'Sold': 382, 'Amount': 10696, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 7, 'Sold': 36, 'Amount': 1026, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 5, 'Sold': 120, 'Amount': 3480, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 4, 'Sold': 277, 'Amount': 7825.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 34, 'Sold': 439, 'Amount': 12292, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 39, 'Sold': 50, 'Amount': 1425, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 44, 'Sold': 258, 'Amount': 7482, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 2, 'Sold': 269, 'Amount': 7599.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 35, 'Sold': 427, 'Amount': 11956, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 10, 'Sold': 61, 'Amount': 1738.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 46, 'Sold': 192, 'Amount': 5568, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 11, 'Sold': 431, 'Amount': 12175.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 10, 'Sold': 506, 'Amount': 14168, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 19, 'Sold': 79, 'Amount': 1698.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 20, 'Sold': 476, 'Amount': 8092, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 5, 'Sold': 483, 'Amount': 7848.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 39, 'Sold': 541, 'Amount': 8656, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 18, 'Sold': 21, 'Amount': 451.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 17, 'Sold': 251, 'Amount': 4267, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 12, 'Sold': 484, 'Amount': 7865, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 25, 'Sold': 467, 'Amount': 7472, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 15, 'Sold': 75, 'Amount': 1612.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 33, 'Sold': 121, 'Amount': 2057, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 20, 'Sold': 456, 'Amount': 7410, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 40, 'Sold': 193, 'Amount': 3088, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 21, 'Sold': 34, 'Amount': 731, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 44, 'Sold': 416, 'Amount': 7072, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 2, 'Sold': 280, 'Amount': 4550, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 12, 'Sold': 363, 'Amount': 5808, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 18, 'Sold': 92, 'Amount': 1978, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 28, 'Sold': 187, 'Amount': 3179, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 44, 'Sold': 226, 'Amount': 3672.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 40, 'Sold': 243, 'Amount': 3888, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 27, 'Sold': 75, 'Amount': 1612.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 26, 'Sold': 117, 'Amount': 1989, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 2, 'Sold': 326, 'Amount': 5297.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 1, 'Sold': 440, 'Amount': 7040, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 14, 'Sold': 93, 'Amount': 1999.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 10, 'Sold': 123, 'Amount': 2091, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 41, 'Sold': 52, 'Amount': 845, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 24, 'Sold': 91, 'Amount': 1456, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 12, 'Sold': 14, 'Amount': 301, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 49, 'Sold': 458, 'Amount': 7786, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 8, 'Sold': 120, 'Amount': 1950, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 13, 'Sold': 295, 'Amount': 4720, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 27, 'Sold': 60, 'Amount': 1290, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 30, 'Sold': 101, 'Amount': 1717, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 36, 'Sold': 380, 'Amount': 6175, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 266, 'Amount': 4256, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 13, 'Sold': 21, 'Amount': 451.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 50, 'Sold': 296, 'Amount': 5032, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 17, 'Sold': 355, 'Amount': 5768.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 19, 'Sold': 286, 'Amount': 4576, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 41, 'Sold': 58, 'Amount': 1247, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 28, 'Sold': 343, 'Amount': 5831, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 12, 'Sold': 229, 'Amount': 3721.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 46, 'Sold': 146, 'Amount': 2336, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 8, 'Sold': 19, 'Amount': 408.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 8, 'Sold': 395, 'Amount': 6715, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 1, 'Sold': 224, 'Amount': 3640, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 11, 'Sold': 298, 'Amount': 4768, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 15, 'Sold': 100, 'Amount': 2150, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 34, 'Sold': 362, 'Amount': 6154, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 4, 'Sold': 84, 'Amount': 1365, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 13, 'Sold': 244, 'Amount': 3904, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 2, 'Sold': 47, 'Amount': 5217.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 40, 'Sold': 416, 'Amount': 46592, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 23, 'Sold': 459, 'Amount': 51063.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 49, 'Sold': 206, 'Amount': 6660, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 35, 'Sold': 58, 'Amount': 6438.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 1, 'Sold': 317, 'Amount': 35504, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 5, 'Sold': 103, 'Amount': 11458.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 46, 'Sold': 151, 'Amount': 4440, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 30, 'Sold': 69, 'Amount': 7659.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 11, 'Sold': 326, 'Amount': 36512, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 32, 'Sold': 391, 'Amount': 43498.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 17, 'Sold': 104, 'Amount': 5217, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 19, 'Sold': 36, 'Amount': 3996.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 7, 'Sold': 479, 'Amount': 53648, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 37, 'Sold': 77, 'Amount': 8566.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 48, 'Sold': 121, 'Amount': 6438, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 19, 'Sold': 33, 'Amount': 3663.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 6, 'Sold': 407, 'Amount': 45584, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 6, 'Sold': 155, 'Amount': 17243.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 171, 'Amount': 7659, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 23, 'Sold': 13, 'Amount': 1443.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 18, 'Sold': 62, 'Amount': 6944, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 48, 'Sold': 319, 'Amount': 35488.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 40, 'Sold': 141, 'Amount': 3996, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 38, 'Sold': 44, 'Amount': 4884.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 16, 'Sold': 94, 'Amount': 10528, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 31, 'Sold': 304, 'Amount': 33820, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 17, 'Sold': 368, 'Amount': 3663, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 46, 'Sold': 21, 'Amount': 2331.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 30, 'Sold': 120, 'Amount': 13440, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 28, 'Sold': 67, 'Amount': 7453.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 22, 'Sold': 371, 'Amount': 1443, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 36, 'Sold': 49, 'Amount': 5439.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 6, 'Sold': 153, 'Amount': 17136, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 37, 'Sold': 127, 'Amount': 14128.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 25, 'Sold': 99, 'Amount': 4884, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 44, 'Sold': 14, 'Amount': 1554.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 45, 'Sold': 411, 'Amount': 46032, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 35, 'Sold': 434, 'Amount': 48282.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 35, 'Sold': 251, 'Amount': 2331, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 49, 'Sold': 42, 'Amount': 4662.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 35, 'Sold': 495, 'Amount': 55440, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 22, 'Sold': 77, 'Amount': 8566.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 34, 'Sold': 208, 'Amount': 5439, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 43, 'Sold': 22, 'Amount': 2442.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 41, 'Sold': 410, 'Amount': 45920, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 24, 'Sold': 242, 'Amount': 26922.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 46, 'Sold': 323, 'Amount': 1554, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 38, 'Sold': 42, 'Amount': 4662.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 35, 'Sold': 483, 'Amount': 54096, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 40, 'Sold': 159, 'Amount': 17688.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 12, 'Sold': 533, 'Amount': 4662, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 42, 'Sold': 80, 'Amount': 2460, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 19, 'Sold': 16, 'Amount': 184, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 36, 'Sold': 25, 'Amount': 188, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 6, 'Sold': 51, 'Amount': 229.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 3, 'Sold': 83, 'Amount': 1309.74, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 19, 'Sold': 29, 'Amount': 565.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 84, 'Amount': 125921, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 7, 'Sold': 26, 'Amount': 41483, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 48, 'Sold': 54, 'Amount': 92016, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 22, 'Sold': 76, 'Amount': 456.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 10, 'Sold': 34, 'Amount': 969, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 3, 'Sold': 72, 'Amount': 1548, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 10, 'Sold': 44, 'Amount': 4884.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 30, 'Sold': 76, 'Amount': 2375, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 24, 'Sold': 300, 'Amount': 3600, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 28, 'Sold': 148, 'Amount': 1258, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 32, 'Sold': 392, 'Amount': 1960, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 48, 'Sold': 76, 'Amount': 1237.28, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 32, 'Sold': 141, 'Amount': 2820, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 16, 'Sold': 371, 'Amount': 559839, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 220, 'Amount': 351120, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 26, 'Sold': 317, 'Amount': 541753, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 34, 'Sold': 416, 'Amount': 3328, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 43, 'Sold': 346, 'Amount': 10034, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 2, 'Sold': 172, 'Amount': 2924, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 27, 'Sold': 205, 'Amount': 22960, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 10, 'Sold': 291, 'Amount': 8875.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 32, 'Sold': 374, 'Amount': 4207.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 30, 'Sold': 63, 'Amount': 488.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 23, 'Sold': 314, 'Amount': 1334.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 23, 'Sold': 69, 'Amount': 1071.57, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 32, 'Sold': 487, 'Amount': 9374.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 21, 'Sold': 89, 'Amount': 134034, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 39, 'Sold': 69, 'Amount': 110072.25, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 49, 'Sold': 212, 'Amount': 361672, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 19, 'Sold': 239, 'Amount': 1493.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 3, 'Sold': 72, 'Amount': 2034, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 14, 'Sold': 149, 'Amount': 2421.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 50, 'Sold': 180, 'Amount': 20025, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 39, 'Sold': 397, 'Amount': 12009.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 285, 'Amount': 3135, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 11, 'Sold': 481, 'Amount': 3607.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 347, 'Amount': 1388, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 263, 'Amount': 4018.64, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 40, 'Sold': 514, 'Amount': 9766, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 49, 'Sold': 370, 'Amount': 223351, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 11, 'Sold': 251, 'Amount': 400345, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 30, 'Sold': 311, 'Amount': 528389, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 42, 'Sold': 179, 'Amount': 1074, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 48, 'Sold': 452, 'Amount': 12656, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 35, 'Sold': 400, 'Amount': 6400, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 33, 'Sold': 456, 'Amount': 31635, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 5, 'Sold': 60, 'Amount': 1845, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 50, 'Sold': 38, 'Amount': 437, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 35, 'Sold': 78, 'Amount': 585.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 33, 'Sold': 24, 'Amount': 108, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 9, 'Sold': 82, 'Amount': 1293.96, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 3, 'Sold': 16, 'Amount': 312, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 16, 'Sold': 98, 'Amount': 146907, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 29, 'Sold': 61, 'Amount': 97325.5, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 3, 'Sold': 38, 'Amount': 64752, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 8, 'Sold': 59, 'Amount': 354.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 18, 'Sold': 16, 'Amount': 456, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 30, 'Sold': 67, 'Amount': 1440.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 4, 'Sold': 28, 'Amount': 3108.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 20, 'Sold': 468, 'Amount': 14625, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 44, 'Sold': 132, 'Amount': 1584, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 9, 'Sold': 353, 'Amount': 3000.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 32, 'Sold': 269, 'Amount': 1345, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 39, 'Sold': 232, 'Amount': 3776.96, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 21, 'Sold': 252, 'Amount': 5040, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 35, 'Sold': 249, 'Amount': 375741, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 23, 'Sold': 298, 'Amount': 475608, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 14, 'Sold': 216, 'Amount': 369144, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 2, 'Sold': 50, 'Amount': 400, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 28, 'Sold': 433, 'Amount': 12557, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 35, 'Sold': 53, 'Amount': 901, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 46, 'Sold': 320, 'Amount': 35840, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 14, 'Sold': 479, 'Amount': 14609.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 32, 'Sold': 286, 'Amount': 3217.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 33, 'Sold': 398, 'Amount': 3084.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 30, 'Sold': 328, 'Amount': 1394, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 50, 'Sold': 379, 'Amount': 5885.87, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 20, 'Sold': 460, 'Amount': 8855, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 28, 'Sold': 148, 'Amount': 222888, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 62, 'Amount': 98905.5, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 36, 'Sold': 87, 'Amount': 148422, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 48, 'Sold': 400, 'Amount': 2500, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 6, 'Sold': 277, 'Amount': 7825.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 25, 'Sold': 137, 'Amount': 2226.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 12, 'Sold': 221, 'Amount': 24586.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 22, 'Sold': 302, 'Amount': 9135.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 39, 'Sold': 77, 'Amount': 847, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 7, 'Sold': 131, 'Amount': 982.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 21, 'Sold': 425, 'Amount': 1700, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 99, 'Amount': 1512.72, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 31, 'Sold': 73, 'Amount': 1387, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 19, 'Sold': 279, 'Amount': 205363, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 12, 'Sold': 337, 'Amount': 537515, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 43, 'Sold': 399, 'Amount': 677901, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 11, 'Sold': 381, 'Amount': 2286, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 25, 'Sold': 460, 'Amount': 12880, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 17, 'Sold': 119, 'Amount': 1904, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 20, 'Sold': 234, 'Amount': 8547, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 50, 'Sold': 87, 'Amount': 2675.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 5, 'Sold': 85, 'Amount': 977.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 24, 'Sold': 83, 'Amount': 623, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 3, 'Sold': 24, 'Amount': 108, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 7, 'Sold': 27, 'Amount': 426.06, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 46, 'Sold': 52, 'Amount': 1014, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 60, 'Amount': 89945, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 32, 'Amount': 51056, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 37, 'Sold': 12, 'Amount': 20448, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 34, 'Sold': 52, 'Amount': 312.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 15, 'Sold': 96, 'Amount': 2736, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 74, 'Amount': 1591, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 5, 'Sold': 61, 'Amount': 6771.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 44, 'Sold': 487, 'Amount': 15218.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 307, 'Amount': 3684, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 5, 'Sold': 202, 'Amount': 1717, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 29, 'Sold': 212, 'Amount': 1060, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 37, 'Sold': 264, 'Amount': 4297.92, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 35, 'Sold': 451, 'Amount': 9020, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 48, 'Sold': 293, 'Amount': 442137, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 38, 'Sold': 422, 'Amount': 673512, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 50, 'Sold': 205, 'Amount': 350345, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 38, 'Sold': 122, 'Amount': 976, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 39, 'Sold': 121, 'Amount': 3509, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 34, 'Sold': 103, 'Amount': 1751, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 332, 'Amount': 37184, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 1, 'Sold': 464, 'Amount': 14152, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 82, 'Amount': 922.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 15, 'Sold': 188, 'Amount': 1457, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 26, 'Sold': 182, 'Amount': 773.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 31, 'Sold': 398, 'Amount': 6180.94, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 23, 'Sold': 173, 'Amount': 3330.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 28, 'Sold': 118, 'Amount': 177708, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 28, 'Sold': 122, 'Amount': 194620.5, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 49, 'Sold': 458, 'Amount': 781348, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 5, 'Sold': 139, 'Amount': 868.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 415, 'Amount': 11723.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 297, 'Amount': 4826.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 29, 'Sold': 298, 'Amount': 33152.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 43, 'Sold': 183, 'Amount': 5535.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 25, 'Sold': 174, 'Amount': 1914, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 48, 'Sold': 217, 'Amount': 1627.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 32, 'Sold': 175, 'Amount': 700, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 19, 'Sold': 496, 'Amount': 7578.88, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 31, 'Sold': 236, 'Amount': 4484, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 25, 'Sold': 211, 'Amount': 445203, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 4, 'Sold': 351, 'Amount': 559845, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 34, 'Sold': 115, 'Amount': 195385, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 18, 'Sold': 70, 'Amount': 420, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 50, 'Sold': 539, 'Amount': 15092, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 5, 'Sold': 262, 'Amount': 4192, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 19, 'Sold': 472, 'Amount': 19314, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 39, 'Sold': 59, 'Amount': 443, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 29, 'Sold': 371, 'Amount': 3153.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 20, 'Sold': 277, 'Amount': 2146.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 22, 'Sold': 503, 'Amount': 3772.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 2, 'Sold': 27, 'Amount': 203, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 29, 'Sold': 455, 'Amount': 3867.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 38, 'Sold': 195, 'Amount': 1511.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 42, 'Sold': 216, 'Amount': 1620, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 35, 'Sold': 17, 'Amount': 128, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 21, 'Sold': 201, 'Amount': 1708.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 13, 'Sold': 73, 'Amount': 565.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 22, 'Sold': 183, 'Amount': 1372.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 6, 'Sold': 23, 'Amount': 173, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 26, 'Sold': 143, 'Amount': 1215.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 31, 'Sold': 380, 'Amount': 2945, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 2, 'Sold': 289, 'Amount': 2167.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 18, 'Sold': 88, 'Amount': 660.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 16, 'Sold': 365, 'Amount': 3102.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 46, 'Sold': 307, 'Amount': 2379.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 43, 'Sold': 109, 'Amount': 817.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 47, 'Sold': 83, 'Amount': 623, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 48, 'Sold': 70, 'Amount': 595, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 44, 'Sold': 471, 'Amount': 3650.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 31, 'Sold': 493, 'Amount': 3697.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 6, 'Sold': 66, 'Amount': 495.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 17, 'Sold': 54, 'Amount': 459, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 29, 'Sold': 493, 'Amount': 3820.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 8, 'Sold': 519, 'Amount': 3892.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 1, 'Sold': 90, 'Amount': 675.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 23, 'Sold': 121, 'Amount': 1028.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 7, 'Sold': 175, 'Amount': 1356.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 26, 'Sold': 116, 'Amount': 870, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 10, 'Sold': 55, 'Amount': 413, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 5, 'Sold': 369, 'Amount': 3136.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 18, 'Sold': 500, 'Amount': 3875, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 45, 'Sold': 85, 'Amount': 637.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 32, 'Sold': 67, 'Amount': 503, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 46, 'Sold': 66, 'Amount': 561, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 17, 'Sold': 444, 'Amount': 3441, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 23, 'Sold': 429, 'Amount': 3217.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 18, 'Sold': 58, 'Amount': 261, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 4, 'Sold': 134, 'Amount': 670, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 20, 'Sold': 312, 'Amount': 1326, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 30, 'Sold': 428, 'Amount': 1712, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 46, 'Sold': 12, 'Amount': 54, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 10, 'Sold': 372, 'Amount': 1860, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 33, 'Sold': 265, 'Amount': 1126.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 41, 'Sold': 343, 'Amount': 1372, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 25, 'Sold': 59, 'Amount': 265.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 11, 'Sold': 474, 'Amount': 2370, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 3, 'Sold': 400, 'Amount': 1700, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 13, 'Sold': 394, 'Amount': 1576, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 15, 'Sold': 80, 'Amount': 360, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 26, 'Sold': 152, 'Amount': 760, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 30, 'Sold': 185, 'Amount': 786.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 38, 'Sold': 105, 'Amount': 420, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 28, 'Sold': 80, 'Amount': 360, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 33, 'Sold': 171, 'Amount': 855, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 48, 'Sold': 326, 'Amount': 1385.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 42, 'Sold': 429, 'Amount': 1716, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 22, 'Sold': 96, 'Amount': 432, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 35, 'Sold': 78, 'Amount': 390, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 40, 'Sold': 211, 'Amount': 896.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 41, 'Sold': 530, 'Amount': 2120, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 39, 'Sold': 21, 'Amount': 94.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 4, 'Sold': 334, 'Amount': 1670, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 6, 'Sold': 229, 'Amount': 973.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 34, 'Sold': 228, 'Amount': 912, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 50, 'Sold': 13, 'Amount': 58.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 43, 'Sold': 225, 'Amount': 1125, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 24, 'Sold': 246, 'Amount': 1045.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 31, 'Sold': 292, 'Amount': 1168, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 11, 'Sold': 62, 'Amount': 279, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 17, 'Sold': 141, 'Amount': 705, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 9, 'Sold': 389, 'Amount': 1653.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 25, 'Sold': 438, 'Amount': 1752, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 33, 'Sold': 37, 'Amount': 166.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 45, 'Sold': 431, 'Amount': 2155, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 3, 'Sold': 116, 'Amount': 493, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 3, 'Sold': 512, 'Amount': 2048, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 42, 'Sold': 74, 'Amount': 851, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 10, 'Sold': 338, 'Amount': 4056, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 2, 'Sold': 492, 'Amount': 5535, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 18, 'Sold': 332, 'Amount': 3652, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 50, 'Sold': 68, 'Amount': 782, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 43, 'Sold': 96, 'Amount': 1152, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 40, 'Sold': 302, 'Amount': 3397.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 22, 'Sold': 93, 'Amount': 1023, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 17, 'Sold': 98, 'Amount': 1127, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 49, 'Sold': 295, 'Amount': 3540, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 29, 'Sold': 94, 'Amount': 1057.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 23, 'Sold': 201, 'Amount': 2211, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 19, 'Sold': 97, 'Amount': 1115.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 39, 'Sold': 117, 'Amount': 1404, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 26, 'Sold': 145, 'Amount': 1631.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 29, 'Sold': 525, 'Amount': 5775, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 44, 'Sold': 34, 'Amount': 391, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 49, 'Sold': 248, 'Amount': 2976, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 47, 'Sold': 72, 'Amount': 810, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 32, 'Sold': 452, 'Amount': 4972, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 17, 'Sold': 82, 'Amount': 943, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 7, 'Sold': 297, 'Amount': 3564, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 17, 'Sold': 140, 'Amount': 1575, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 43, 'Sold': 447, 'Amount': 4917, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 4, 'Sold': 56, 'Amount': 644, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 30, 'Sold': 218, 'Amount': 2616, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 9, 'Sold': 304, 'Amount': 3420, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 10, 'Sold': 132, 'Amount': 1452, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 47, 'Sold': 29, 'Amount': 333.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 15, 'Sold': 236, 'Amount': 2832, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 35, 'Sold': 102, 'Amount': 1147.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 22, 'Sold': 357, 'Amount': 3927, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 48, 'Sold': 20, 'Amount': 230, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 27, 'Sold': 299, 'Amount': 3588, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 36, 'Sold': 372, 'Amount': 4185, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 17, 'Sold': 190, 'Amount': 2090, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 11, 'Sold': 93, 'Amount': 1069.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 23, 'Sold': 394, 'Amount': 4728, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 27, 'Sold': 452, 'Amount': 5085, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 34, 'Sold': 347, 'Amount': 3817, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 15, 'Sold': 50, 'Amount': 789, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 46, 'Sold': 140, 'Amount': 2279.2, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 49, 'Sold': 338, 'Amount': 5249.14, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 2, 'Sold': 205, 'Amount': 3132.4, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 43, 'Sold': 77, 'Amount': 1215.06, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 9, 'Sold': 377, 'Amount': 6137.56, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 49, 'Sold': 442, 'Amount': 6864.26, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 10, 'Sold': 246, 'Amount': 3758.88, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 15, 'Sold': 59, 'Amount': 931.02, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 27, 'Sold': 430, 'Amount': 7000.4, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 20, 'Sold': 420, 'Amount': 6522.6, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 16, 'Sold': 232, 'Amount': 3544.96, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 8, 'Sold': 17, 'Amount': 268.26, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 3, 'Sold': 323, 'Amount': 5258.44, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 10, 'Sold': 329, 'Amount': 5109.37, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 32, 'Sold': 528, 'Amount': 8067.84, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 25, 'Sold': 61, 'Amount': 962.58, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 28, 'Sold': 413, 'Amount': 6723.64, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 23, 'Sold': 494, 'Amount': 7671.82, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 17, 'Sold': 456, 'Amount': 6967.68, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 5, 'Sold': 39, 'Amount': 615.42, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 48, 'Sold': 255, 'Amount': 4151.4, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 9, 'Sold': 349, 'Amount': 5419.97, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 4, 'Sold': 175, 'Amount': 2674, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 36, 'Sold': 56, 'Amount': 883.68, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 43, 'Sold': 188, 'Amount': 3060.64, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 29, 'Sold': 179, 'Amount': 2779.87, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 47, 'Sold': 247, 'Amount': 3774.16, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 2, 'Sold': 81, 'Amount': 1278.18, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 38, 'Sold': 126, 'Amount': 2051.28, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 8, 'Sold': 500, 'Amount': 7765, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 29, 'Sold': 495, 'Amount': 7563.6, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 45, 'Sold': 67, 'Amount': 1057.26, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 41, 'Sold': 116, 'Amount': 1888.48, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 48, 'Sold': 127, 'Amount': 1972.31, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 4, 'Sold': 416, 'Amount': 6356.48, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 28, 'Sold': 85, 'Amount': 1341.3, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 3, 'Sold': 301, 'Amount': 4900.28, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 33, 'Sold': 360, 'Amount': 5590.8, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 30, 'Sold': 298, 'Amount': 4553.44, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 32, 'Sold': 77, 'Amount': 2367.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 44, 'Sold': 89, 'Amount': 2781.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 21, 'Sold': 179, 'Amount': 5459.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 43, 'Sold': 344, 'Amount': 10406, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 21, 'Sold': 94, 'Amount': 2890.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 2, 'Sold': 481, 'Amount': 15031.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 6, 'Sold': 57, 'Amount': 1738.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 32, 'Sold': 463, 'Amount': 14005.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 36, 'Sold': 17, 'Amount': 522.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 42, 'Sold': 404, 'Amount': 12625, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 42, 'Sold': 402, 'Amount': 12261, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 23, 'Sold': 531, 'Amount': 16062.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 13, 'Sold': 74, 'Amount': 2275.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 45, 'Sold': 210, 'Amount': 6562.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 29, 'Sold': 450, 'Amount': 13725, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 16, 'Sold': 432, 'Amount': 13068, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 10, 'Sold': 29, 'Amount': 891.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 48, 'Sold': 224, 'Amount': 7000, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 8, 'Sold': 63, 'Amount': 1921.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 10, 'Sold': 258, 'Amount': 7804.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 2, 'Sold': 22, 'Amount': 676.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 7, 'Sold': 61, 'Amount': 1906.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 14, 'Sold': 227, 'Amount': 6923.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 39, 'Sold': 263, 'Amount': 7955.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 17, 'Sold': 47, 'Amount': 1445.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 36, 'Sold': 341, 'Amount': 10656.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 10, 'Sold': 144, 'Amount': 4392, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 40, 'Sold': 374, 'Amount': 11313.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 42, 'Sold': 73, 'Amount': 2244.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 37, 'Sold': 496, 'Amount': 15500, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 21, 'Sold': 416, 'Amount': 12688, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 39, 'Sold': 415, 'Amount': 12553.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 17, 'Sold': 48, 'Amount': 1476, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 17, 'Sold': 500, 'Amount': 15625, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 34, 'Sold': 364, 'Amount': 11102, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 34, 'Sold': 310, 'Amount': 9377.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 7, 'Sold': 37, 'Amount': 1137.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 41, 'Sold': 426, 'Amount': 13312.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 44, 'Sold': 258, 'Amount': 7869, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 29, 'Sold': 344, 'Amount': 10406, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 25, 'Sold': 86, 'Amount': 1677, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 26, 'Sold': 318, 'Amount': 6360, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 14, 'Sold': 97, 'Amount': 1867.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 1, 'Sold': 264, 'Amount': 5016, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 12, 'Amount': 234, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 50, 'Sold': 479, 'Amount': 9580, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 44, 'Sold': 478, 'Amount': 9201.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 33, 'Sold': 382, 'Amount': 7258, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 30, 'Sold': 29, 'Amount': 565.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 43, 'Sold': 85, 'Amount': 1700, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 28, 'Sold': 480, 'Amount': 9240, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 25, 'Sold': 142, 'Amount': 2698, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 13, 'Sold': 98, 'Amount': 1911, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 36, 'Sold': 155, 'Amount': 3100, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 21, 'Sold': 432, 'Amount': 8316, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 45, 'Sold': 482, 'Amount': 9158, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 30, 'Sold': 14, 'Amount': 273, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 37, 'Sold': 442, 'Amount': 8840, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 4, 'Sold': 95, 'Amount': 1828.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 21, 'Sold': 191, 'Amount': 3629, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 46, 'Sold': 51, 'Amount': 994.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 1, 'Sold': 403, 'Amount': 8060, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 26, 'Sold': 152, 'Amount': 2926, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 1, 'Sold': 399, 'Amount': 7581, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 45, 'Sold': 14, 'Amount': 273, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 39, 'Sold': 183, 'Amount': 3660, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 45, 'Sold': 124, 'Amount': 2387, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 44, 'Sold': 125, 'Amount': 2375, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 39, 'Sold': 77, 'Amount': 1501.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 6, 'Sold': 313, 'Amount': 6260, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 19, 'Sold': 115, 'Amount': 2213.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 2, 'Sold': 254, 'Amount': 4826, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 46, 'Sold': 100, 'Amount': 1950, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 22, 'Sold': 387, 'Amount': 7740, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 22, 'Sold': 455, 'Amount': 8758.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 19, 'Sold': 377, 'Amount': 7163, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 37, 'Sold': 21, 'Amount': 409.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 33, 'Sold': 292, 'Amount': 5840, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 23, 'Sold': 142, 'Amount': 2733.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 16, 'Sold': 326, 'Amount': 6194, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 22, 'Sold': 60, 'Amount': 102240, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 30, 'Sold': 127, 'Amount': 217043, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 24, 'Sold': 419, 'Amount': 714814, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 31, 'Sold': 264, 'Amount': 448536, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 10, 'Sold': 28, 'Amount': 47712, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 44, 'Sold': 179, 'Amount': 305911, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 19, 'Sold': 407, 'Amount': 694342, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 7, 'Sold': 298, 'Amount': 506302, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 27, 'Sold': 86, 'Amount': 146544, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 41, 'Sold': 318, 'Amount': 543462, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 40, 'Sold': 134, 'Amount': 228604, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 6, 'Sold': 322, 'Amount': 547078, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 11, 'Sold': 76, 'Amount': 129504, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 39, 'Sold': 177, 'Amount': 302493, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 10, 'Sold': 216, 'Amount': 368496, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 45, 'Sold': 172, 'Amount': 292228, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 50, 'Sold': 16, 'Amount': 27264, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 48, 'Sold': 471, 'Amount': 804939, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 35, 'Sold': 468, 'Amount': 798408, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 6, 'Sold': 516, 'Amount': 876684, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 33, 'Sold': 70, 'Amount': 119280, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 9, 'Sold': 383, 'Amount': 654547, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 9, 'Sold': 152, 'Amount': 259312, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 35, 'Sold': 381, 'Amount': 647319, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 45, 'Sold': 46, 'Amount': 78384, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 10, 'Sold': 76, 'Amount': 129884, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 17, 'Sold': 190, 'Amount': 324140, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 22, 'Sold': 481, 'Amount': 817219, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 21, 'Sold': 41, 'Amount': 69864, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 41, 'Sold': 361, 'Amount': 616949, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 26, 'Sold': 60, 'Amount': 102360, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 44, 'Sold': 171, 'Amount': 290529, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 27, 'Sold': 23, 'Amount': 39192, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 18, 'Sold': 305, 'Amount': 521245, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 14, 'Sold': 475, 'Amount': 810350, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 44, 'Sold': 519, 'Amount': 881781, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 45, 'Sold': 70, 'Amount': 119280, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 38, 'Sold': 346, 'Amount': 591314, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 21, 'Sold': 252, 'Amount': 429912, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 9, 'Sold': 524, 'Amount': 890276, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 42, 'Sold': 56, 'Amount': 83949, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 24, 'Sold': 165, 'Amount': 248985, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 48, 'Sold': 409, 'Amount': 615954, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 28, 'Sold': 456, 'Amount': 777981, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 4, 'Sold': 36, 'Amount': 53969, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 34, 'Sold': 329, 'Amount': 496461, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 20, 'Sold': 108, 'Amount': 162648, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 5, 'Sold': 434, 'Amount': 683544, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 34, 'Sold': 41, 'Amount': 61464, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 42, 'Sold': 148, 'Amount': 223332, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 46, 'Sold': 54, 'Amount': 81324, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 15, 'Sold': 313, 'Amount': 739007, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 12, 'Sold': 24, 'Amount': 35981, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 36, 'Sold': 304, 'Amount': 458736, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 19, 'Sold': 346, 'Amount': 521076, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 25, 'Sold': 503, 'Amount': 650566, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 36, 'Sold': 63, 'Amount': 94442, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 38, 'Sold': 136, 'Amount': 205224, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 28, 'Sold': 300, 'Amount': 451800, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 5, 'Sold': 504, 'Amount': 753997, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 10, 'Sold': 92, 'Amount': 137913, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 29, 'Sold': 448, 'Amount': 676032, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 22, 'Sold': 367, 'Amount': 552702, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 26, 'Sold': 288, 'Amount': 469187, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 34, 'Sold': 28, 'Amount': 41977, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 45, 'Sold': 409, 'Amount': 617181, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 9, 'Sold': 204, 'Amount': 307224, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 7, 'Sold': 475, 'Amount': 755496, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 40, 'Sold': 53, 'Amount': 79452, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 4, 'Sold': 365, 'Amount': 550785, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 37, 'Sold': 100, 'Amount': 150600, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 14, 'Sold': 97, 'Amount': 712025, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 35, 'Sold': 57, 'Amount': 85448, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 42, 'Sold': 267, 'Amount': 402903, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 7, 'Sold': 248, 'Amount': 373488, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 36, 'Sold': 454, 'Amount': 496169, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 37, 'Sold': 42, 'Amount': 62963, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 12, 'Sold': 64, 'Amount': 96576, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 45, 'Sold': 302, 'Amount': 454812, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 12, 'Sold': 133, 'Amount': 145403, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 11, 'Sold': 36, 'Amount': 57438, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 16, 'Sold': 240, 'Amount': 383040, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 44, 'Sold': 314, 'Amount': 500908.5, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 1, 'Sold': 442, 'Amount': 704990, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 18, 'Sold': 14, 'Amount': 22337, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 38, 'Sold': 204, 'Amount': 325584, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 26, 'Sold': 179, 'Amount': 285549.75, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 33, 'Sold': 179, 'Amount': 285505, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 41, 'Sold': 76, 'Amount': 121258, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 20, 'Sold': 269, 'Amount': 429324, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 44, 'Sold': 340, 'Amount': 542385, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 47, 'Sold': 435, 'Amount': 693825, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 24, 'Sold': 15, 'Amount': 23932.5, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 26, 'Sold': 98, 'Amount': 156408, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 1, 'Sold': 355, 'Amount': 566313.75, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 23, 'Sold': 439, 'Amount': 700205, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 23, 'Sold': 42, 'Amount': 67011, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 32, 'Sold': 228, 'Amount': 363888, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 20, 'Sold': 123, 'Amount': 196215.75, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 35, 'Sold': 75, 'Amount': 119625, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 39, 'Sold': 11, 'Amount': 17550.5, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 48, 'Sold': 154, 'Amount': 245784, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 3, 'Sold': 145, 'Amount': 231311.25, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 22, 'Sold': 461, 'Amount': 735295, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 30, 'Sold': 35, 'Amount': 55842.5, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 48, 'Sold': 285, 'Amount': 454860, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 26, 'Sold': 493, 'Amount': 786458.25, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 42, 'Sold': 444, 'Amount': 708180, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 13, 'Sold': 10, 'Amount': 15955, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 46, 'Sold': 376, 'Amount': 600096, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 45, 'Sold': 278, 'Amount': 443479.5, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 40, 'Sold': 245, 'Amount': 390775, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 40, 'Sold': 64, 'Amount': 102112, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 34, 'Sold': 301, 'Amount': 480396, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 2, 'Sold': 61, 'Amount': 97310.25, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 7, 'Sold': 294, 'Amount': 468930, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 30, 'Sold': 69, 'Amount': 110089.5, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 9, 'Sold': 216, 'Amount': 344736, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 33, 'Sold': 326, 'Amount': 520051.5, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 17, 'Sold': 368, 'Amount': 586960, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 42, 'Sold': 42, 'Amount': 252.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 37, 'Sold': 298, 'Amount': 2384, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 12, 'Sold': 203, 'Amount': 1268.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 31, 'Sold': 358, 'Amount': 2148, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 24, 'Sold': 89, 'Amount': 534.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 12, 'Sold': 110, 'Amount': 880, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 32, 'Sold': 467, 'Amount': 2918.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 30, 'Sold': 259, 'Amount': 1554, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 49, 'Sold': 21, 'Amount': 126.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 3, 'Sold': 368, 'Amount': 2944, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 38, 'Sold': 56, 'Amount': 350, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 13, 'Sold': 400, 'Amount': 2400, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 26, 'Sold': 82, 'Amount': 492.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 10, 'Sold': 347, 'Amount': 2776, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 31, 'Sold': 278, 'Amount': 1737.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 1, 'Sold': 196, 'Amount': 1176, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 25, 'Sold': 15, 'Amount': 90.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 10, 'Sold': 460, 'Amount': 3680, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 35, 'Sold': 92, 'Amount': 575, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 33, 'Sold': 261, 'Amount': 1566, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 15, 'Sold': 25, 'Amount': 150.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 22, 'Sold': 465, 'Amount': 3720, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 1, 'Sold': 166, 'Amount': 1037.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 41, 'Sold': 340, 'Amount': 2040, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 43, 'Sold': 53, 'Amount': 318.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 19, 'Sold': 365, 'Amount': 2920, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 37, 'Sold': 192, 'Amount': 1200, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 37, 'Sold': 125, 'Amount': 750, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 11, 'Sold': 43, 'Amount': 258.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 50, 'Sold': 196, 'Amount': 1568, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 19, 'Sold': 221, 'Amount': 1381.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 13, 'Sold': 177, 'Amount': 1062, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 42, 'Sold': 11, 'Amount': 66.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 20, 'Sold': 324, 'Amount': 2592, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 18, 'Sold': 269, 'Amount': 1681.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 46, 'Sold': 88, 'Amount': 528, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 22, 'Sold': 93, 'Amount': 558.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 1, 'Sold': 275, 'Amount': 2200, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 20, 'Sold': 84, 'Amount': 525, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 7, 'Sold': 361, 'Amount': 2166, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 37, 'Sold': 10, 'Amount': 285, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 13, 'Sold': 255, 'Amount': 7395, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 87, 'Amount': 2457.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 11, 'Sold': 118, 'Amount': 3304, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 16, 'Sold': 59, 'Amount': 1681.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 5, 'Sold': 433, 'Amount': 12557, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 1, 'Sold': 93, 'Amount': 2627.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 23, 'Sold': 182, 'Amount': 5096, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 8, 'Sold': 75, 'Amount': 2137.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 36, 'Sold': 477, 'Amount': 13833, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 44, 'Sold': 449, 'Amount': 12684.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 45, 'Sold': 125, 'Amount': 3500, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 50, 'Sold': 87, 'Amount': 2479.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 23, 'Sold': 376, 'Amount': 10904, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 12, 'Sold': 382, 'Amount': 10791.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 4, 'Sold': 110, 'Amount': 3080, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 10, 'Sold': 25, 'Amount': 712.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 8, 'Sold': 50, 'Amount': 1450, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 30, 'Sold': 277, 'Amount': 7825.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 30, 'Sold': 143, 'Amount': 4004, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 21, 'Sold': 54, 'Amount': 1539, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 30, 'Sold': 325, 'Amount': 9425, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 18, 'Sold': 379, 'Amount': 10706.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 21, 'Sold': 222, 'Amount': 6216, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 24, 'Sold': 33, 'Amount': 940.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 32, 'Sold': 114, 'Amount': 3306, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 35, 'Sold': 438, 'Amount': 12373.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 20, 'Sold': 460, 'Amount': 12880, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 42, 'Sold': 22, 'Amount': 627, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 34, 'Sold': 137, 'Amount': 3973, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 13, 'Sold': 268, 'Amount': 7571, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 12, 'Sold': 203, 'Amount': 5684, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 7, 'Sold': 27, 'Amount': 769.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 49, 'Sold': 176, 'Amount': 5104, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 21, 'Sold': 233, 'Amount': 6582.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 45, 'Sold': 474, 'Amount': 13272, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 9, 'Sold': 48, 'Amount': 1368, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 32, 'Sold': 358, 'Amount': 10382, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 39, 'Sold': 364, 'Amount': 10283, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 37, 'Sold': 312, 'Amount': 8736, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 36, 'Sold': 82, 'Amount': 1763, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 35, 'Sold': 251, 'Amount': 4267, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 32, 'Sold': 130, 'Amount': 2112.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 15, 'Sold': 248, 'Amount': 3968, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 31, 'Sold': 74, 'Amount': 1591, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 13, 'Sold': 64, 'Amount': 1088, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 12, 'Sold': 53, 'Amount': 861.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 43, 'Sold': 81, 'Amount': 1296, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 45, 'Sold': 20, 'Amount': 430, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 16, 'Sold': 62, 'Amount': 1054, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 15, 'Sold': 437, 'Amount': 7101.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 47, 'Sold': 410, 'Amount': 6560, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 46, 'Sold': 79, 'Amount': 1698.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 45, 'Sold': 362, 'Amount': 6154, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 20, 'Sold': 51, 'Amount': 828.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 41, 'Sold': 527, 'Amount': 8432, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 25, 'Sold': 50, 'Amount': 1075, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 26, 'Sold': 121, 'Amount': 2057, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 1, 'Sold': 308, 'Amount': 5005, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 25, 'Sold': 225, 'Amount': 3600, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 49, 'Sold': 79, 'Amount': 1698.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 8, 'Sold': 119, 'Amount': 2023, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 5, 'Sold': 207, 'Amount': 3363.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 27, 'Sold': 321, 'Amount': 5136, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 17, 'Sold': 16, 'Amount': 344, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 8, 'Sold': 414, 'Amount': 7038, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 48, 'Sold': 237, 'Amount': 3851.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 26, 'Sold': 457, 'Amount': 7312, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 35, 'Sold': 40, 'Amount': 860, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 18, 'Sold': 75, 'Amount': 1275, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 33, 'Sold': 423, 'Amount': 6873.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 17, 'Sold': 73, 'Amount': 1168, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 15, 'Sold': 17, 'Amount': 365.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 25, 'Sold': 226, 'Amount': 3842, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 47, 'Sold': 114, 'Amount': 1852.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 47, 'Sold': 487, 'Amount': 7792, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 24, 'Sold': 73, 'Amount': 1569.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 9, 'Sold': 397, 'Amount': 6749, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 1, 'Sold': 261, 'Amount': 4241.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 16, 'Sold': 288, 'Amount': 4608, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 22, 'Sold': 17, 'Amount': 1887.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 40, 'Sold': 439, 'Amount': 49168, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 43, 'Sold': 247, 'Amount': 27478.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 7, 'Sold': 81, 'Amount': 1887, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 5, 'Sold': 26, 'Amount': 2886.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 10, 'Sold': 453, 'Amount': 50736, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 18, 'Sold': 177, 'Amount': 19691.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 17, 'Sold': 294, 'Amount': 1887, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 49, 'Sold': 28, 'Amount': 3108.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 43, 'Sold': 53, 'Amount': 5936, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 26, 'Sold': 468, 'Amount': 52065, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 48, 'Sold': 407, 'Amount': 2886, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 37, 'Sold': 81, 'Amount': 8991.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 2, 'Sold': 414, 'Amount': 46368, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 7, 'Sold': 235, 'Amount': 26143.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 42, 'Sold': 144, 'Amount': 2886, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 31, 'Sold': 99, 'Amount': 10989.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 37, 'Sold': 489, 'Amount': 54768, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 48, 'Sold': 225, 'Amount': 25031.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 47, 'Sold': 363, 'Amount': 8991, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 32, 'Sold': 19, 'Amount': 2109.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 36, 'Sold': 142, 'Amount': 15904, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 15, 'Sold': 166, 'Amount': 18467.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 48, 'Sold': 81, 'Amount': 1221, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 9, 'Sold': 24, 'Amount': 2664.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 46, 'Sold': 385, 'Amount': 43120, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 15, 'Sold': 277, 'Amount': 30816.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 43, 'Sold': 223, 'Amount': 10989, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 33, 'Sold': 10, 'Amount': 1110.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 3, 'Sold': 91, 'Amount': 10192, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 32, 'Sold': 278, 'Amount': 30927.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 41, 'Sold': 364, 'Amount': 2664, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 24, 'Sold': 28, 'Amount': 3108.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 28, 'Sold': 315, 'Amount': 35280, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 38, 'Sold': 298, 'Amount': 33152.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 30, 'Sold': 514, 'Amount': 9879, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 3, 'Sold': 55, 'Amount': 6105.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 41, 'Sold': 90, 'Amount': 10080, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 17, 'Sold': 281, 'Amount': 31261.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 47, 'Sold': 337, 'Amount': 1110, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 38, 'Sold': 15, 'Amount': 1665.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 39, 'Sold': 332, 'Amount': 37184, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 17, 'Sold': 121, 'Amount': 13461.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 45, 'Sold': 531, 'Amount': 5883, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 39, 'Sold': 24, 'Amount': 2664.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 33, 'Sold': 67, 'Amount': 7504, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 26, 'Sold': 163, 'Amount': 18133.75, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 17, 'Sold': 77, 'Amount': 9768, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 50, 'Sold': 73, 'Amount': 8103.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 49, 'Sold': 169, 'Amount': 18928, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 20, 'Sold': 450, 'Amount': 50062.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 26, 'Sold': 355, 'Amount': 1665, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 39, 'Sold': 13, 'Amount': 1443.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 7, 'Sold': 421, 'Amount': 47152, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 28, 'Sold': 400, 'Amount': 44500, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 38, 'Sold': 80, 'Amount': 2664, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 48, 'Sold': 47, 'Amount': 5217.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 31, 'Sold': 355, 'Amount': 39760, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 35, 'Sold': 152, 'Amount': 16910, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 21, 'Sold': 175, 'Amount': 8103, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 1, 'Sold': 64, 'Amount': 7104.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 19, 'Sold': 56, 'Amount': 6272, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 25, 'Sold': 146, 'Amount': 16242.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 20, 'Sold': 329, 'Amount': 1443, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 37, 'Sold': 18, 'Amount': 1998.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 40, 'Sold': 257, 'Amount': 28784, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 34, 'Sold': 476, 'Amount': 52955, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 14, 'Sold': 167, 'Amount': 5217, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 23, 'Sold': 64, 'Amount': 7104.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 36, 'Sold': 444, 'Amount': 49728, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 35, 'Sold': 272, 'Amount': 30260, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 31, 'Sold': 519, 'Amount': 7104, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 42, 'Sold': 43, 'Amount': 4773.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 1, 'Sold': 317, 'Amount': 35504, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 27, 'Sold': 485, 'Amount': 53956.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 10, 'Sold': 142, 'Amount': 1998, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 21, 'Sold': 81, 'Amount': 8991.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 22, 'Sold': 335, 'Amount': 37520, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 31, 'Sold': 277, 'Amount': 30816.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 31, 'Sold': 411, 'Amount': 7104, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 11, 'Sold': 100, 'Amount': 11100.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 17, 'Sold': 324, 'Amount': 36288, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 36, 'Sold': 265, 'Amount': 29481.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 24, 'Sold': 281, 'Amount': 4773, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 49, 'Sold': 78, 'Amount': 8658.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 11, 'Sold': 295, 'Amount': 33040, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 49, 'Sold': 288, 'Amount': 32040, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 31, 'Sold': 83, 'Amount': 8991, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 23, 'Sold': 58, 'Amount': 6438.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 311, 'Amount': 34832, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 24, 'Sold': 317, 'Amount': 35266.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 43, 'Sold': 192, 'Amount': 11100, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 40, 'Sold': 38, 'Amount': 817, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 27, 'Sold': 488, 'Amount': 8296, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 44, 'Sold': 199, 'Amount': 3233.75, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 44, 'Sold': 404, 'Amount': 6464, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 2, 'Sold': 60, 'Amount': 1290, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 4, 'Sold': 394, 'Amount': 6698, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 49, 'Sold': 249, 'Amount': 4046.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 22, 'Sold': 308, 'Amount': 4928, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 31, 'Sold': 78, 'Amount': 1677, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 46, 'Sold': 393, 'Amount': 6681, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 19, 'Sold': 373, 'Amount': 6061.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 8, 'Sold': 120, 'Amount': 1920, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 20, 'Sold': 92, 'Amount': 1978, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 3, 'Sold': 229, 'Amount': 3893, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 7, 'Sold': 460, 'Amount': 7475, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 26, 'Sold': 299, 'Amount': 4784, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 46, 'Sold': 12, 'Amount': 258, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 7, 'Sold': 199, 'Amount': 3383, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 35, 'Sold': 61, 'Amount': 991.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 34, 'Sold': 271, 'Amount': 4336, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 23, 'Sold': 55, 'Amount': 1182.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 37, 'Sold': 270, 'Amount': 4590, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 36, 'Sold': 62, 'Amount': 1007.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 24, 'Sold': 529, 'Amount': 8464, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 24, 'Sold': 23, 'Amount': 494.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 18, 'Sold': 487, 'Amount': 8279, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 37, 'Sold': 385, 'Amount': 6256.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 20, 'Sold': 191, 'Amount': 3056, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 7, 'Sold': 51, 'Amount': 1096.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 1, 'Sold': 286, 'Amount': 4862, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 45, 'Sold': 350, 'Amount': 5687.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 43, 'Sold': 453, 'Amount': 7248, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 7, 'Sold': 73, 'Amount': 1569.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 14, 'Sold': 251, 'Amount': 4267, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 33, 'Sold': 405, 'Amount': 6581.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 15, 'Sold': 152, 'Amount': 2432, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 37, 'Sold': 100, 'Amount': 2150, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 26, 'Sold': 236, 'Amount': 4012, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 31, 'Sold': 238, 'Amount': 3867.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 29, 'Sold': 170, 'Amount': 2720, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 7, 'Sold': 52, 'Amount': 1118, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 28, 'Sold': 327, 'Amount': 5559, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 4, 'Sold': 220, 'Amount': 3575, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 44, 'Sold': 211, 'Amount': 3376, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 35, 'Sold': 14, 'Amount': 301, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 27, 'Sold': 300, 'Amount': 5100, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 17, 'Sold': 455, 'Amount': 7393.75, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 49, 'Sold': 167, 'Amount': 2672, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 18, 'Sold': 36, 'Amount': 774, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 29, 'Sold': 378, 'Amount': 6426, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 2, 'Sold': 250, 'Amount': 4062.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 34, 'Sold': 322, 'Amount': 5152, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 37, 'Sold': 59, 'Amount': 1681.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 37, 'Sold': 132, 'Amount': 3828, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 37, 'Sold': 128, 'Amount': 3616, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 28, 'Sold': 138, 'Amount': 3864, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 26, 'Sold': 53, 'Amount': 1510.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 7, 'Sold': 490, 'Amount': 14210, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 13, 'Sold': 93, 'Amount': 2627.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 12, 'Sold': 121, 'Amount': 3388, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 31, 'Sold': 20, 'Amount': 570, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 29, 'Sold': 227, 'Amount': 6583, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 49, 'Sold': 414, 'Amount': 11695.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 25, 'Sold': 440, 'Amount': 12320, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 3, 'Sold': 80, 'Amount': 2280, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 39, 'Sold': 221, 'Amount': 6409, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 27, 'Sold': 492, 'Amount': 13899, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 11, 'Sold': 246, 'Amount': 6888, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 28, 'Sold': 37, 'Amount': 1054.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 48, 'Sold': 361, 'Amount': 10469, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 20, 'Sold': 464, 'Amount': 13108, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 20, 'Sold': 387, 'Amount': 10836, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 12, 'Sold': 34, 'Amount': 969, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 30, 'Sold': 152, 'Amount': 4408, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 3, 'Sold': 222, 'Amount': 6271.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 46, 'Sold': 76, 'Amount': 2128, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 11, 'Sold': 76, 'Amount': 2166, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 22, 'Sold': 431, 'Amount': 12499, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 7, 'Sold': 156, 'Amount': 4407, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 22, 'Sold': 345, 'Amount': 9660, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 23, 'Sold': 51, 'Amount': 1453.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 29, 'Sold': 477, 'Amount': 13833, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 22, 'Sold': 485, 'Amount': 13701.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 47, 'Sold': 453, 'Amount': 12684, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 20, 'Sold': 80, 'Amount': 2280, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 45, 'Sold': 366, 'Amount': 10614, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 18, 'Sold': 179, 'Amount': 5056.75, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 10, 'Sold': 96, 'Amount': 2688, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 46, 'Sold': 51, 'Amount': 1453.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 7, 'Sold': 451, 'Amount': 13079, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 18, 'Sold': 458, 'Amount': 12938.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 21, 'Sold': 214, 'Amount': 5992, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 7, 'Sold': 68, 'Amount': 1938, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 7, 'Sold': 442, 'Amount': 12818, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 5, 'Sold': 166, 'Amount': 4689.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 8, 'Sold': 79, 'Amount': 2212, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 49, 'Sold': 27, 'Amount': 769.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 44, 'Sold': 156, 'Amount': 4524, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 22, 'Sold': 447, 'Amount': 12627.75, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 23, 'Sold': 226, 'Amount': 6328, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 23, 'Sold': 61, 'Amount': 1738.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 16, 'Sold': 158, 'Amount': 4582, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 33, 'Sold': 60, 'Amount': 1695, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 36, 'Sold': 166, 'Amount': 4648, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 4, 'Sold': 74, 'Amount': 444.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 4, 'Sold': 296, 'Amount': 2368, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 19, 'Sold': 500, 'Amount': 3125, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 19, 'Sold': 321, 'Amount': 1926, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 10, 'Sold': 58, 'Amount': 348.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 27, 'Sold': 312, 'Amount': 2496, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 12, 'Sold': 236, 'Amount': 1475, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 47, 'Sold': 542, 'Amount': 3252, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 13, 'Sold': 79, 'Amount': 474.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 38, 'Sold': 165, 'Amount': 1320, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 4, 'Sold': 117, 'Amount': 731.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 50, 'Sold': 195, 'Amount': 1170, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 15, 'Sold': 55, 'Amount': 330.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 44, 'Sold': 79, 'Amount': 632, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 11, 'Sold': 171, 'Amount': 1068.75, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 29, 'Sold': 237, 'Amount': 1422, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 33, 'Sold': 17, 'Amount': 102.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 37, 'Sold': 340, 'Amount': 2720, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 15, 'Sold': 62, 'Amount': 387.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 3, 'Sold': 226, 'Amount': 1356, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 38, 'Sold': 85, 'Amount': 510.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 6, 'Sold': 100, 'Amount': 800, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 48, 'Sold': 385, 'Amount': 2406.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 23, 'Sold': 287, 'Amount': 1722, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 21, 'Sold': 91, 'Amount': 546.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 10, 'Sold': 114, 'Amount': 912, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 24, 'Sold': 494, 'Amount': 3087.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 36, 'Sold': 170, 'Amount': 1020, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 50, 'Sold': 45, 'Amount': 270.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 48, 'Sold': 375, 'Amount': 3000, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 39, 'Sold': 113, 'Amount': 706.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 3, 'Sold': 112, 'Amount': 672, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 39, 'Sold': 53, 'Amount': 318.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 21, 'Sold': 336, 'Amount': 2688, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 17, 'Sold': 399, 'Amount': 2493.75, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 11, 'Sold': 281, 'Amount': 1686, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 37, 'Sold': 70, 'Amount': 420.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 19, 'Sold': 445, 'Amount': 3560, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 4, 'Sold': 400, 'Amount': 2500, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 37, 'Sold': 399, 'Amount': 2394, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 47, 'Sold': 78, 'Amount': 468.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 43, 'Sold': 362, 'Amount': 2896, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 2, 'Sold': 228, 'Amount': 1425, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 38, 'Sold': 353, 'Amount': 2118, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 34, 'Sold': 52, 'Amount': 312.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 47, 'Sold': 308, 'Amount': 2464, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 48, 'Sold': 316, 'Amount': 1975, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 11, 'Sold': 465, 'Amount': 2790, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 22, 'Sold': 60, 'Amount': 360.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 22, 'Sold': 371, 'Amount': 2968, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 48, 'Sold': 263, 'Amount': 1643.75, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 22, 'Sold': 293, 'Amount': 1758, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 48, 'Sold': 81, 'Amount': 138024, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 3, 'Sold': 211, 'Amount': 360599, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 28, 'Sold': 170, 'Amount': 290020, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 25, 'Sold': 244, 'Amount': 414556, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 20, 'Sold': 13, 'Amount': 22152, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 22, 'Sold': 78, 'Amount': 133302, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 29, 'Sold': 219, 'Amount': 373614, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 7, 'Sold': 521, 'Amount': 885179, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 5, 'Sold': 21, 'Amount': 35784, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 28, 'Sold': 162, 'Amount': 276858, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 11, 'Sold': 411, 'Amount': 701166, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 20, 'Sold': 331, 'Amount': 562369, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 27, 'Sold': 14, 'Amount': 23856, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 3, 'Sold': 332, 'Amount': 567388, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 18, 'Sold': 166, 'Amount': 283196, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 28, 'Sold': 77, 'Amount': 130823, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 45, 'Sold': 32, 'Amount': 54528, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 34, 'Sold': 257, 'Amount': 439213, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 38, 'Sold': 54, 'Amount': 92124, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 28, 'Sold': 64, 'Amount': 108736, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 35, 'Sold': 17, 'Amount': 28968, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 47, 'Sold': 147, 'Amount': 251223, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 33, 'Sold': 223, 'Amount': 380438, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 24, 'Sold': 93, 'Amount': 158007, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 49, 'Sold': 55, 'Amount': 93720, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 22, 'Sold': 426, 'Amount': 728034, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 36, 'Sold': 317, 'Amount': 540802, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 16, 'Sold': 212, 'Amount': 360188, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 24, 'Sold': 29, 'Amount': 49416, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 29, 'Sold': 148, 'Amount': 252932, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 33, 'Sold': 63, 'Amount': 107478, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 31, 'Sold': 353, 'Amount': 599747, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 21, 'Sold': 10, 'Amount': 17040, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 42, 'Sold': 354, 'Amount': 604986, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 18, 'Sold': 370, 'Amount': 631220, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 28, 'Sold': 242, 'Amount': 411158, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 23, 'Sold': 61, 'Amount': 103944, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 24, 'Sold': 92, 'Amount': 157228, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 38, 'Sold': 302, 'Amount': 515212, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 43, 'Sold': 501, 'Amount': 851199, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 11, 'Sold': 91, 'Amount': 155064, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 44, 'Sold': 280, 'Amount': 478520, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 47, 'Sold': 303, 'Amount': 516918, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 42, 'Sold': 272, 'Amount': 462128, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 26, 'Sold': 34, 'Amount': 57936, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 33, 'Sold': 377, 'Amount': 644293, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 38, 'Sold': 87, 'Amount': 148422, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 7, 'Sold': 232, 'Amount': 394168, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 50, 'Sold': 13, 'Amount': 22152, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 34, 'Sold': 251, 'Amount': 428959, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 23, 'Sold': 273, 'Amount': 465738, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 10, 'Sold': 510, 'Amount': 866490, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 12, 'Sold': 30, 'Amount': 44975, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 14, 'Sold': 184, 'Amount': 277656, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 39, 'Sold': 486, 'Amount': 731916, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 37, 'Sold': 536, 'Amount': 416722, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 14, 'Sold': 86, 'Amount': 128919, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 18, 'Sold': 131, 'Amount': 197679, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 4, 'Sold': 451, 'Amount': 679206, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 27, 'Sold': 380, 'Amount': 337275, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 53, 'Amount': 79452, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 22, 'Sold': 190, 'Amount': 286710, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 29, 'Sold': 280, 'Amount': 421680, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 34, 'Sold': 396, 'Amount': 803464, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 50, 'Sold': 49, 'Amount': 73456, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 44, 'Sold': 172, 'Amount': 259548, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 4, 'Sold': 275, 'Amount': 414150, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 4, 'Sold': 154, 'Amount': 569620, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 14, 'Sold': 99, 'Amount': 148406, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 47, 'Sold': 401, 'Amount': 605109, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 26, 'Sold': 387, 'Amount': 582822, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 38, 'Sold': 397, 'Amount': 593604, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 49, 'Sold': 10, 'Amount': 14995, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 48, 'Sold': 143, 'Amount': 215787, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 27, 'Sold': 178, 'Amount': 268068, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 20, 'Sold': 151, 'Amount': 230846, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 24, 'Sold': 98, 'Amount': 146907, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 40, 'Sold': 376, 'Amount': 567384, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 16, 'Sold': 269, 'Amount': 405114, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 25, 'Sold': 302, 'Amount': 595103, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 16, 'Sold': 20, 'Amount': 29985, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 45, 'Sold': 150, 'Amount': 226350, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 26, 'Sold': 239, 'Amount': 359934, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 49, 'Sold': 141, 'Amount': 226349, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 3, 'Sold': 27, 'Amount': 40478, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 28, 'Sold': 169, 'Amount': 255021, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 13, 'Sold': 448, 'Amount': 674688, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 34, 'Sold': 313, 'Amount': 452698, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 31, 'Sold': 87, 'Amount': 130418, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 27, 'Sold': 76, 'Amount': 114684, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 175, 'Amount': 263550, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 6, 'Sold': 515, 'Amount': 211359, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 24, 'Sold': 18, 'Amount': 26987, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 4, 'Sold': 361, 'Amount': 544749, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 9, 'Sold': 237, 'Amount': 356922, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 48, 'Sold': 206, 'Amount': 469187, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 22, 'Sold': 38, 'Amount': 56967, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 43, 'Sold': 139, 'Amount': 209751, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 49, 'Sold': 50, 'Amount': 75300, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 19, 'Sold': 152, 'Amount': 771985, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 37, 'Sold': 46, 'Amount': 68959, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 50, 'Sold': 229, 'Amount': 345561, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 30, 'Sold': 233, 'Amount': 350898, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 1, 'Sold': 241, 'Amount': 308794, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 7, 'Sold': 58, 'Amount': 86947, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 31, 'Sold': 385, 'Amount': 580965, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 7, 'Sold': 328, 'Amount': 493968, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 29, 'Sold': 470, 'Amount': 227848, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 28, 'Sold': 63, 'Amount': 94442, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 6, 'Sold': 288, 'Amount': 434592, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 5, 'Sold': 304, 'Amount': 457824, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 20, 'Sold': 407, 'Amount': 361259, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 36, 'Sold': 91, 'Amount': 136414, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 50, 'Sold': 154, 'Amount': 232386, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 7, 'Sold': 222, 'Amount': 334332, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 27, 'Sold': 488, 'Amount': 704530, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 34, 'Sold': 24, 'Amount': 35981, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 39, 'Sold': 122, 'Amount': 184098, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 16, 'Sold': 300, 'Amount': 451800, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 26, 'Sold': 62, 'Amount': 610093, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 15, 'Sold': 94, 'Amount': 140911, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 7, 'Sold': 65, 'Amount': 98085, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 19, 'Sold': 286, 'Amount': 430716, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 48, 'Sold': 340, 'Amount': 731512, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 39, 'Sold': 53, 'Amount': 79452, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 38, 'Sold': 322, 'Amount': 485898, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 12, 'Sold': 471, 'Amount': 709326, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 9, 'Sold': 340, 'Amount': 92938, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 39, 'Sold': 88, 'Amount': 131917, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 28, 'Sold': 469, 'Amount': 707721, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 2, 'Sold': 260, 'Amount': 391560, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 6, 'Sold': 83, 'Amount': 509660, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 31, 'Sold': 94, 'Amount': 140911, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 41, 'Sold': 206, 'Amount': 310854, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 36, 'Sold': 98, 'Amount': 147588, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 4, 'Sold': 221, 'Amount': 509660, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 49, 'Sold': 13, 'Amount': 19492, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 8, 'Sold': 115, 'Amount': 173535, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 36, 'Sold': 330, 'Amount': 496980, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 5, 'Sold': 432, 'Amount': 124417, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 28, 'Sold': 59, 'Amount': 88446, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 2, 'Sold': 487, 'Amount': 734883, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 24, 'Sold': 373, 'Amount': 561738, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 16, 'Sold': 269, 'Amount': 331279, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 8, 'Sold': 83, 'Amount': 124422, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 1, 'Sold': 413, 'Amount': 623217, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 21, 'Sold': 422, 'Amount': 635532, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 45, 'Sold': 126, 'Amount': 647568, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 29, 'Sold': 92, 'Amount': 137913, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 43, 'Sold': 449, 'Amount': 677541, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 15, 'Sold': 459, 'Amount': 691254, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 18, 'Sold': 142, 'Amount': 403231, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 31, 'Sold': 43, 'Amount': 64462, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 46, 'Sold': 129, 'Amount': 194661, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 31, 'Sold': 401, 'Amount': 603906, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 4, 'Sold': 397, 'Amount': 188874, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 13, 'Sold': 40, 'Amount': 68160, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 23, 'Sold': 286, 'Amount': 488774, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 36, 'Sold': 429, 'Amount': 731874, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 37, 'Sold': 117, 'Amount': 198783, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 24, 'Sold': 28, 'Amount': 47712, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 8, 'Sold': 408, 'Amount': 697272, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 23, 'Sold': 88, 'Amount': 150128, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 13, 'Sold': 527, 'Amount': 895373, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 8, 'Sold': 11, 'Amount': 18744, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 47, 'Sold': 359, 'Amount': 613531, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 25, 'Sold': 105, 'Amount': 179130, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 36, 'Sold': 377, 'Amount': 640523, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 27, 'Sold': 17, 'Amount': 28968, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 48, 'Sold': 274, 'Amount': 468266, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 8, 'Sold': 314, 'Amount': 535684, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 24, 'Sold': 188, 'Amount': 319412, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 43, 'Sold': 69, 'Amount': 117576, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 142, 'Amount': 242678, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 28, 'Sold': 199, 'Amount': 339494, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 3, 'Sold': 353, 'Amount': 599747, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 54, 'Amount': 92016, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 24, 'Sold': 396, 'Amount': 676764, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 40, 'Sold': 178, 'Amount': 303668, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 26, 'Sold': 509, 'Amount': 864791, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 15, 'Sold': 66, 'Amount': 112464, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 22, 'Sold': 145, 'Amount': 247805, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 33, 'Sold': 352, 'Amount': 600512, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 36, 'Sold': 207, 'Amount': 351693, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 19, 'Sold': 30, 'Amount': 51120, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 11, 'Sold': 417, 'Amount': 712653, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 36, 'Sold': 172, 'Amount': 293432, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 24, 'Sold': 217, 'Amount': 368683, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 2, 'Sold': 83, 'Amount': 141432, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 10, 'Sold': 499, 'Amount': 852791, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 1, 'Sold': 163, 'Amount': 278078, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 44, 'Sold': 402, 'Amount': 682998, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 51, 'Amount': 86904, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 45, 'Sold': 452, 'Amount': 772468, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 40, 'Sold': 55, 'Amount': 93830, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 11, 'Sold': 164, 'Amount': 278636, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 14, 'Sold': 39, 'Amount': 66456, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 21, 'Sold': 390, 'Amount': 666510, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 3, 'Sold': 363, 'Amount': 619278, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 44, 'Sold': 367, 'Amount': 623533, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 28, 'Sold': 33, 'Amount': 56232, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 33, 'Sold': 483, 'Amount': 825447, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 17, 'Sold': 469, 'Amount': 800114, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 39, 'Sold': 252, 'Amount': 428148, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 41, 'Sold': 70, 'Amount': 119280, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 13, 'Sold': 199, 'Amount': 340091, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 13, 'Sold': 351, 'Amount': 598806, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 8, 'Sold': 173, 'Amount': 293927, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 28, 'Sold': 75, 'Amount': 119662.5, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 420, 'Amount': 670320, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 28, 'Sold': 226, 'Amount': 360526.5, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 46, 'Sold': 229, 'Amount': 365255, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 50, 'Sold': 59, 'Amount': 94134.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 42, 'Sold': 109, 'Amount': 173964, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 38, 'Sold': 264, 'Amount': 421146, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 24, 'Sold': 219, 'Amount': 349305, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 29, 'Sold': 52, 'Amount': 82966, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 38, 'Sold': 144, 'Amount': 229824, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 31, 'Sold': 197, 'Amount': 314264.25, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 4, 'Sold': 141, 'Amount': 224895, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 42, 'Sold': 63, 'Amount': 100516.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 30, 'Sold': 492, 'Amount': 785232, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 9, 'Sold': 121, 'Amount': 193025.25, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 41, 'Sold': 268, 'Amount': 427460, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 39, 'Sold': 18, 'Amount': 28719, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 30, 'Sold': 411, 'Amount': 655956, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 1, 'Sold': 56, 'Amount': 89334, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 17, 'Sold': 443, 'Amount': 706585, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 31, 'Sold': 32, 'Amount': 51056, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 41, 'Sold': 88, 'Amount': 140448, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 48, 'Sold': 136, 'Amount': 216954, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 35, 'Sold': 89, 'Amount': 141955, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 8, 'Sold': 41, 'Amount': 65415.5, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 40, 'Sold': 468, 'Amount': 746928, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 7, 'Sold': 316, 'Amount': 504099, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 31, 'Sold': 419, 'Amount': 668305, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 24, 'Sold': 38, 'Amount': 60629, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 29, 'Sold': 485, 'Amount': 774060, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 7, 'Sold': 106, 'Amount': 169096.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 7, 'Sold': 544, 'Amount': 867680, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 22, 'Sold': 42, 'Amount': 67011, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 43, 'Sold': 118, 'Amount': 188328, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 46, 'Sold': 166, 'Amount': 264811.5, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 38, 'Sold': 439, 'Amount': 700205, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 14, 'Sold': 75, 'Amount': 119662.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 16, 'Sold': 284, 'Amount': 453264, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 395, 'Amount': 630123.75, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 5, 'Sold': 286, 'Amount': 456170, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 16, 'Sold': 85, 'Amount': 135617.5, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 7, 'Sold': 330, 'Amount': 526680, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 33, 'Sold': 61, 'Amount': 97310.25, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 18, 'Sold': 370, 'Amount': 590150, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 50, 'Sold': 99, 'Amount': 157954.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 8, 'Sold': 259, 'Amount': 413364, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 30, 'Sold': 295, 'Amount': 470598.75, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 21, 'Sold': 288, 'Amount': 459360, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 22, 'Sold': 34, 'Amount': 54247, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 41, 'Sold': 118, 'Amount': 188328, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 45, 'Sold': 257, 'Amount': 409979.25, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 21, 'Sold': 337, 'Amount': 537515, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 29, 'Sold': 30, 'Amount': 47865, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 14, 'Sold': 293, 'Amount': 467628, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 45, 'Sold': 179, 'Amount': 285549.75, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 14, 'Sold': 463, 'Amount': 738485, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 15, 'Sold': 90, 'Amount': 143595, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 19, 'Sold': 365, 'Amount': 582540, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 17, 'Sold': 313, 'Amount': 499313.25, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 13, 'Sold': 290, 'Amount': 462550, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 39, 'Sold': 95, 'Amount': 151572.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 4, 'Sold': 370, 'Amount': 590520, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 32, 'Sold': 301, 'Amount': 480170.25, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 42, 'Sold': 297, 'Amount': 473715, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 13, 'Sold': 66, 'Amount': 105303, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 42, 'Sold': 153, 'Amount': 244188, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 38, 'Sold': 178, 'Amount': 283954.5, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 7, 'Sold': 414, 'Amount': 660330, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 14, 'Sold': 28, 'Amount': 44674, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 4, 'Sold': 244, 'Amount': 389424, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 9, 'Sold': 90, 'Amount': 143572.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 13, 'Sold': 477, 'Amount': 760815, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 17, 'Sold': 73, 'Amount': 116471.5, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 24, 'Sold': 390, 'Amount': 622440, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 49, 'Sold': 392, 'Amount': 625338, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 5, 'Sold': 412, 'Amount': 657140, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 13, 'Sold': 33, 'Amount': 52651.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 3, 'Sold': 423, 'Amount': 675108, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 14, 'Sold': 188, 'Amount': 299907, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 21, 'Sold': 465, 'Amount': 741675, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 17, 'Sold': 26, 'Amount': 41483, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 14, 'Sold': 50, 'Amount': 79800, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 39, 'Sold': 313, 'Amount': 499313.25, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 38, 'Sold': 287, 'Amount': 457765, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 29, 'Sold': 92, 'Amount': 146786, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 32, 'Sold': 356, 'Amount': 568176, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 19, 'Sold': 445, 'Amount': 709886.25, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 34, 'Sold': 204, 'Amount': 325380, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 31, 'Sold': 83, 'Amount': 132426.5, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 20, 'Sold': 88, 'Amount': 140448, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 20, 'Sold': 313, 'Amount': 499313.25, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 49, 'Sold': 262, 'Amount': 417890, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 32, 'Sold': 59, 'Amount': 94134.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 3, 'Sold': 109, 'Amount': 173964, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 48, 'Sold': 394, 'Amount': 628528.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 12, 'Sold': 199, 'Amount': 317405, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 46, 'Sold': 94, 'Amount': 149977, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 48, 'Sold': 202, 'Amount': 322392, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 12, 'Sold': 342, 'Amount': 545575.5, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 252, 'Amount': 401940, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 7, 'Sold': 79, 'Amount': 126044.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 32, 'Sold': 219, 'Amount': 349524, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 17, 'Sold': 412, 'Amount': 657243, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 15, 'Sold': 359, 'Amount': 572605, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 2, 'Sold': 59, 'Amount': 354.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 33, 'Sold': 24, 'Amount': 684, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 45, 'Sold': 64, 'Amount': 1376, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 25, 'Sold': 34, 'Amount': 3774.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 10, 'Sold': 345, 'Amount': 2760, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 9, 'Sold': 128, 'Amount': 3712, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 4, 'Sold': 294, 'Amount': 4998, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 288, 'Amount': 32256, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 8, 'Sold': 362, 'Amount': 2262.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 5, 'Sold': 250, 'Amount': 7062.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 15, 'Sold': 386, 'Amount': 6272.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 42, 'Sold': 83, 'Amount': 9233.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 25, 'Sold': 447, 'Amount': 2682, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 10, 'Sold': 174, 'Amount': 4872, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 11, 'Sold': 375, 'Amount': 6000, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 25, 'Sold': 434, 'Amount': 38295, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 24, 'Sold': 42, 'Amount': 252.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 13, 'Sold': 72, 'Amount': 2052, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 45, 'Sold': 84, 'Amount': 1806, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 3, 'Sold': 64, 'Amount': 7104.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 6, 'Sold': 181, 'Amount': 1448, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 18, 'Sold': 364, 'Amount': 10556, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 18, 'Sold': 72, 'Amount': 1224, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 43, 'Sold': 407, 'Amount': 45584, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 49, 'Sold': 342, 'Amount': 2137.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 43, 'Sold': 291, 'Amount': 8220.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 20, 'Sold': 242, 'Amount': 3932.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 18, 'Sold': 398, 'Amount': 44277.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 10, 'Sold': 321, 'Amount': 1926, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 25, 'Sold': 356, 'Amount': 9968, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 11, 'Sold': 61, 'Amount': 976, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 39, 'Sold': 520, 'Amount': 20091, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 30, 'Sold': 62, 'Amount': 372.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 37, 'Sold': 46, 'Amount': 1311, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 26, 'Sold': 21, 'Amount': 451.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 40, 'Sold': 15, 'Amount': 1665.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 6, 'Sold': 232, 'Amount': 1856, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 14, 'Sold': 141, 'Amount': 4089, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 25, 'Sold': 407, 'Amount': 6919, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 5, 'Sold': 381, 'Amount': 42672, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 35, 'Sold': 204, 'Amount': 1275, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 5, 'Sold': 194, 'Amount': 5480.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 23, 'Sold': 344, 'Amount': 5590, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 15, 'Sold': 479, 'Amount': 53288.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 12, 'Sold': 139, 'Amount': 834, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 14, 'Sold': 407, 'Amount': 11396, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 18, 'Sold': 370, 'Amount': 5920, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 22, 'Sold': 336, 'Amount': 25752, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 23, 'Sold': 37, 'Amount': 222.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 33, 'Sold': 37, 'Amount': 1054.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 14, 'Sold': 14, 'Amount': 301, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 2, 'Sold': 10, 'Amount': 1110.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 13, 'Sold': 342, 'Amount': 2736, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 46, 'Sold': 456, 'Amount': 13224, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 48, 'Sold': 455, 'Amount': 7735, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 45, 'Sold': 257, 'Amount': 28784, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 5, 'Sold': 333, 'Amount': 2081.25, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 6, 'Sold': 261, 'Amount': 7373.25, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 31, 'Sold': 212, 'Amount': 3445, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 39, 'Sold': 236, 'Amount': 26255, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 29, 'Sold': 311, 'Amount': 1866, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 23, 'Sold': 348, 'Amount': 9744, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 49, 'Sold': 161, 'Amount': 2576, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 9, 'Sold': 517, 'Amount': 37962, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 35, 'Sold': 50, 'Amount': 300.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 36, 'Amount': 1026, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 13, 'Sold': 71, 'Amount': 1526.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 2, 'Sold': 76, 'Amount': 8436.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 11, 'Sold': 314, 'Amount': 2512, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 30, 'Sold': 493, 'Amount': 14297, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 29, 'Sold': 105, 'Amount': 1785, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 2, 'Sold': 112, 'Amount': 12544, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 29, 'Sold': 382, 'Amount': 2387.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 48, 'Sold': 164, 'Amount': 4633, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 22, 'Sold': 195, 'Amount': 3168.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 42, 'Sold': 146, 'Amount': 16242.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 340, 'Amount': 2040, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 50, 'Sold': 201, 'Amount': 5628, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 20, 'Sold': 509, 'Amount': 8144, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 14, 'Sold': 151, 'Amount': 34854, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 50, 'Sold': 11, 'Amount': 66.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 48, 'Sold': 18, 'Amount': 513, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 4, 'Sold': 55, 'Amount': 1182.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 42, 'Sold': 22, 'Amount': 2442.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 15, 'Sold': 281, 'Amount': 2248, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 23, 'Sold': 344, 'Amount': 9976, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 38, 'Sold': 213, 'Amount': 3621, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 21, 'Sold': 423, 'Amount': 47376, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 15, 'Sold': 255, 'Amount': 1593.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 44, 'Sold': 267, 'Amount': 7542.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 30, 'Sold': 159, 'Amount': 2583.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 11, 'Sold': 325, 'Amount': 36156.25, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 21, 'Sold': 489, 'Amount': 2934, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 44, 'Sold': 423, 'Amount': 11844, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 1, 'Sold': 181, 'Amount': 2896, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 48, 'Sold': 437, 'Amount': 31191, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 43, 'Sold': 81, 'Amount': 486.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 22, 'Sold': 86, 'Amount': 2451, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 1, 'Sold': 90, 'Amount': 1935, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 12, 'Sold': 66, 'Amount': 7326.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 30, 'Sold': 253, 'Amount': 2024, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 32, 'Sold': 471, 'Amount': 13659, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 45, 'Sold': 441, 'Amount': 7497, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 24, 'Sold': 255, 'Amount': 28560, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 23, 'Sold': 66, 'Amount': 412.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 12, 'Sold': 187, 'Amount': 5282.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 11, 'Sold': 324, 'Amount': 5265, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 41, 'Sold': 348, 'Amount': 38715, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 39, 'Sold': 208, 'Amount': 1248, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 17, 'Sold': 293, 'Amount': 8204, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 30, 'Sold': 80, 'Amount': 1280, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 35, 'Sold': 447, 'Amount': 28083, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 6, 'Sold': 10, 'Amount': 60.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 2, 'Sold': 45, 'Amount': 1282.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 48, 'Sold': 86, 'Amount': 1849, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 31, 'Sold': 14, 'Amount': 1554.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 16, 'Sold': 373, 'Amount': 2984, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 3, 'Sold': 151, 'Amount': 4379, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 15, 'Sold': 107, 'Amount': 1819, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 8, 'Sold': 227, 'Amount': 25424, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 43, 'Sold': 382, 'Amount': 2387.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 32, 'Sold': 233, 'Amount': 6582.25, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 23, 'Sold': 139, 'Amount': 2258.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 12, 'Sold': 410, 'Amount': 45612.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 21, 'Sold': 540, 'Amount': 3240, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 41, 'Sold': 265, 'Amount': 7420, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 8, 'Sold': 206, 'Amount': 3296, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 47, 'Sold': 392, 'Amount': 41403, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 9, 'Sold': 21, 'Amount': 126.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 9, 'Sold': 35, 'Amount': 997.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 23, 'Sold': 79, 'Amount': 1698.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 33, 'Sold': 31, 'Amount': 3441.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 16, 'Sold': 106, 'Amount': 848, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 32, 'Sold': 148, 'Amount': 4292, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 24, 'Sold': 437, 'Amount': 7429, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 31, 'Sold': 355, 'Amount': 39760, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 21, 'Sold': 280, 'Amount': 1750, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 13, 'Sold': 308, 'Amount': 8701, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 1, 'Sold': 252, 'Amount': 4095, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 24, 'Sold': 239, 'Amount': 26588.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 439, 'Amount': 2634, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 34, 'Sold': 260, 'Amount': 7280, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 22, 'Sold': 294, 'Amount': 4704, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 27, 'Sold': 340, 'Amount': 11766, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 24, 'Sold': 62, 'Amount': 372.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 23, 'Sold': 30, 'Amount': 855, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 37, 'Sold': 54, 'Amount': 1161, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 5, 'Sold': 17, 'Amount': 1887.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 26, 'Sold': 80, 'Amount': 640, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 12, 'Sold': 86, 'Amount': 2494, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 1, 'Sold': 63, 'Amount': 1071, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 37, 'Sold': 75, 'Amount': 8400, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 29, 'Sold': 123, 'Amount': 768.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 35, 'Sold': 219, 'Amount': 6186.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 7, 'Sold': 274, 'Amount': 4452.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 47, 'Sold': 57, 'Amount': 6341.25, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 31, 'Sold': 259, 'Amount': 1554, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 2, 'Sold': 266, 'Amount': 7448, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 20, 'Sold': 246, 'Amount': 3936, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 7, 'Sold': 70, 'Amount': 8880, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 26, 'Sold': 34, 'Amount': 204.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 29, 'Sold': 40, 'Amount': 1140, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 44, 'Sold': 47, 'Amount': 1010.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 13, 'Sold': 49, 'Amount': 5439.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 22, 'Sold': 206, 'Amount': 1648, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 1, 'Sold': 169, 'Amount': 4901, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 19, 'Sold': 385, 'Amount': 6545, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 38, 'Sold': 358, 'Amount': 40096, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 36, 'Sold': 148, 'Amount': 925, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 24, 'Sold': 128, 'Amount': 3616, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 17, 'Sold': 376, 'Amount': 6110, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 5, 'Sold': 64, 'Amount': 7120, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 3, 'Sold': 399, 'Amount': 2394, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 6, 'Sold': 145, 'Amount': 4060, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 21, 'Sold': 199, 'Amount': 3184, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 2, 'Sold': 366, 'Amount': 22866, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 37, 'Sold': 13, 'Amount': 78.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 39, 'Sold': 82, 'Amount': 2337, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 25, 'Sold': 15, 'Amount': 322.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 4, 'Sold': 50, 'Amount': 5550.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 27, 'Sold': 462, 'Amount': 3696, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 35, 'Sold': 165, 'Amount': 4785, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 14, 'Sold': 228, 'Amount': 3876, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 46, 'Sold': 89, 'Amount': 9968, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 10, 'Sold': 157, 'Amount': 981.25, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 4, 'Sold': 115, 'Amount': 3248.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 15, 'Sold': 420, 'Amount': 6825, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 20, 'Sold': 490, 'Amount': 54512.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 44, 'Sold': 459, 'Amount': 2754, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 23, 'Sold': 332, 'Amount': 9296, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 6, 'Sold': 93, 'Amount': 1488, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 16, 'Sold': 61, 'Amount': 51282, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 9, 'Sold': 81, 'Amount': 486.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 19, 'Sold': 81, 'Amount': 2308.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 29, 'Sold': 73, 'Amount': 1569.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 3, 'Sold': 62, 'Amount': 6882.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 38, 'Sold': 125, 'Amount': 1000, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 14, 'Sold': 274, 'Amount': 7946, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 26, 'Sold': 348, 'Amount': 5916, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 22, 'Sold': 489, 'Amount': 54768, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 5, 'Sold': 144, 'Amount': 900, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 42, 'Sold': 155, 'Amount': 4378.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 6, 'Sold': 134, 'Amount': 2177.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 31, 'Sold': 393, 'Amount': 43721.25, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 44, 'Sold': 423, 'Amount': 2538, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 11, 'Sold': 178, 'Amount': 4984, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 26, 'Sold': 439, 'Amount': 7024, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 23, 'Sold': 220, 'Amount': 13875, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 53, 'Amount': 1033.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 33, 'Sold': 70, 'Amount': 525.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 45, 'Sold': 61, 'Amount': 1875.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 46, 'Sold': 61, 'Amount': 458, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 81, 'Amount': 1278.18, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 1, 'Sold': 94, 'Amount': 1081, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 12, 'Sold': 395, 'Amount': 7900, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 29, 'Sold': 400, 'Amount': 3400, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 25, 'Sold': 306, 'Amount': 9562.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 49, 'Sold': 200, 'Amount': 1000, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 2, 'Sold': 477, 'Amount': 7765.56, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 31, 'Sold': 339, 'Amount': 4068, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 46, 'Sold': 111, 'Amount': 2136.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 1, 'Sold': 384, 'Amount': 2976, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 23, 'Sold': 384, 'Amount': 11712, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 32, 'Sold': 228, 'Amount': 969, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 50, 'Sold': 355, 'Amount': 5513.15, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 11, 'Sold': 150, 'Amount': 1687.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 37, 'Sold': 459, 'Amount': 8721, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 44, 'Sold': 481, 'Amount': 3607.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 17, 'Sold': 243, 'Amount': 7350.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 26, 'Sold': 520, 'Amount': 2080, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 9, 'Sold': 250, 'Amount': 3820, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 25, 'Sold': 141, 'Amount': 1551, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' },
+ { 'In_Stock': 23, 'Sold': 85, 'Amount': 1657.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 2, 'Sold': 14, 'Amount': 105.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 11, 'Sold': 96, 'Amount': 2952, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 11, 'Sold': 76, 'Amount': 342, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 6, 'Sold': 93, 'Amount': 1467.54, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 13, 'Sold': 75, 'Amount': 862.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 18, 'Sold': 181, 'Amount': 3620, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 34, 'Sold': 63, 'Amount': 535.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 31, 'Sold': 94, 'Amount': 2937.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 290, 'Amount': 1450, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 28, 'Sold': 495, 'Amount': 8058.6, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 34, 'Sold': 455, 'Amount': 5460, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 39, 'Sold': 487, 'Amount': 9374.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 45, 'Sold': 446, 'Amount': 3456.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 298, 'Amount': 9089, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 45, 'Sold': 291, 'Amount': 1236.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 6, 'Sold': 291, 'Amount': 4519.23, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 49, 'Sold': 128, 'Amount': 1440, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 6, 'Sold': 321, 'Amount': 6099, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 45, 'Sold': 515, 'Amount': 3862.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 35, 'Sold': 534, 'Amount': 16153.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 7, 'Sold': 467, 'Amount': 1868, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 36, 'Sold': 322, 'Amount': 4920.16, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 22, 'Sold': 258, 'Amount': 2838, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' },
+ { 'In_Stock': 20, 'Sold': 59, 'Amount': 1150.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 22, 'Sold': 57, 'Amount': 428, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 27, 'Sold': 27, 'Amount': 830.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 76, 'Amount': 342, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 11, 'Sold': 16, 'Amount': 252.48, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 14, 'Sold': 87, 'Amount': 1000.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 31, 'Sold': 388, 'Amount': 7760, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 48, 'Sold': 327, 'Amount': 2779.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 15, 'Sold': 149, 'Amount': 4656.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 34, 'Sold': 386, 'Amount': 1930, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 19, 'Sold': 325, 'Amount': 5291, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 25, 'Sold': 273, 'Amount': 3276, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 31, 'Sold': 52, 'Amount': 1001, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 398, 'Amount': 3084.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 47, 'Sold': 242, 'Amount': 7381, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 32, 'Sold': 319, 'Amount': 1355.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 28, 'Sold': 300, 'Amount': 4659, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 318, 'Amount': 3577.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 42, 'Sold': 217, 'Amount': 4123, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 9, 'Sold': 277, 'Amount': 2077.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 9, 'Sold': 450, 'Amount': 13612.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 15, 'Sold': 267, 'Amount': 1068, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 17, 'Sold': 498, 'Amount': 7609.44, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 42, 'Sold': 246, 'Amount': 2706, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' },
+ { 'In_Stock': 8, 'Sold': 70, 'Amount': 1365, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 31, 'Sold': 62, 'Amount': 465.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 38, 'Sold': 75, 'Amount': 2306.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 22, 'Sold': 39, 'Amount': 175.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 36, 'Sold': 52, 'Amount': 820.56, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 9, 'Sold': 96, 'Amount': 1104, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 46, 'Sold': 351, 'Amount': 7020, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 50, 'Sold': 437, 'Amount': 3714.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 17, 'Sold': 260, 'Amount': 8125, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 1, 'Sold': 321, 'Amount': 1605, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 13, 'Sold': 66, 'Amount': 1074.48, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 6, 'Sold': 125, 'Amount': 1500, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 11, 'Sold': 237, 'Amount': 4562.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 34, 'Sold': 208, 'Amount': 1612, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 37, 'Sold': 471, 'Amount': 14365.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 10, 'Sold': 453, 'Amount': 1925.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 44, 'Sold': 234, 'Amount': 3634.02, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 5, 'Sold': 199, 'Amount': 2238.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 41, 'Sold': 542, 'Amount': 10298, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 25, 'Sold': 109, 'Amount': 817.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 46, 'Sold': 191, 'Amount': 5777.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 5, 'Sold': 124, 'Amount': 496, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 49, 'Sold': 343, 'Amount': 5241.04, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 9, 'Sold': 199, 'Amount': 2189, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' },
+ { 'In_Stock': 6, 'Sold': 65, 'Amount': 1267.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 38, 'Sold': 75, 'Amount': 563, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 45, 'Sold': 75, 'Amount': 2306.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 22, 'Sold': 66, 'Amount': 297, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 37, 'Sold': 29, 'Amount': 457.62, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 22, 'Sold': 43, 'Amount': 494.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 13, 'Sold': 314, 'Amount': 6280, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 29, 'Sold': 498, 'Amount': 4233, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 15, 'Sold': 494, 'Amount': 15437.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 16, 'Sold': 164, 'Amount': 820, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 38, 'Sold': 447, 'Amount': 7277.16, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 11, 'Sold': 154, 'Amount': 1848, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 4, 'Sold': 388, 'Amount': 7469, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 20, 'Sold': 498, 'Amount': 3859.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 7, 'Sold': 400, 'Amount': 12200, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 21, 'Sold': 500, 'Amount': 2125, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 49, 'Sold': 457, 'Amount': 7097.21, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 18, 'Sold': 216, 'Amount': 2430, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 3, 'Sold': 90, 'Amount': 1710, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 7, 'Sold': 344, 'Amount': 2580, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 49, 'Sold': 188, 'Amount': 5687, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 49, 'Sold': 488, 'Amount': 1952, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 35, 'Sold': 468, 'Amount': 7151.04, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 20, 'Sold': 454, 'Amount': 4994, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' },
+ { 'In_Stock': 12, 'Sold': 42, 'Amount': 819, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 45, 'Sold': 89, 'Amount': 668, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 16, 'Sold': 84, 'Amount': 2583, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 5, 'Sold': 41, 'Amount': 184.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 10, 'Sold': 77, 'Amount': 1215.06, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 25, 'Sold': 97, 'Amount': 1115.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 27, 'Sold': 169, 'Amount': 3380, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 17, 'Sold': 494, 'Amount': 4199, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 1, 'Sold': 127, 'Amount': 3968.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 34, 'Sold': 459, 'Amount': 2295, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 9, 'Sold': 466, 'Amount': 7586.48, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 31, 'Sold': 64, 'Amount': 768, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 18, 'Sold': 417, 'Amount': 8027.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 24, 'Sold': 73, 'Amount': 565.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 42, 'Sold': 482, 'Amount': 14701, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 30, 'Sold': 367, 'Amount': 1559.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 8, 'Sold': 303, 'Amount': 4705.59, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 25, 'Sold': 176, 'Amount': 1980, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 34, 'Sold': 436, 'Amount': 8284, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 36, 'Sold': 203, 'Amount': 1522.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 39, 'Sold': 95, 'Amount': 2873.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 10, 'Sold': 381, 'Amount': 1524, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 16, 'Sold': 85, 'Amount': 1298.8, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 4, 'Sold': 74, 'Amount': 814, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' },
+ { 'In_Stock': 9, 'Sold': 13, 'Amount': 253.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 1, 'Sold': 15, 'Amount': 113, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 13, 'Sold': 46, 'Amount': 1414.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 18, 'Sold': 69, 'Amount': 310.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 47, 'Sold': 34, 'Amount': 536.52, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 41, 'Sold': 38, 'Amount': 437, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 45, 'Sold': 480, 'Amount': 9600, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 32, 'Sold': 434, 'Amount': 3689, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 27, 'Sold': 181, 'Amount': 5656.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 25, 'Sold': 500, 'Amount': 2500, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 46, 'Sold': 63, 'Amount': 1025.64, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 28, 'Sold': 238, 'Amount': 2856, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 38, 'Sold': 257, 'Amount': 4947.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 13, 'Sold': 178, 'Amount': 1379.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 41, 'Sold': 264, 'Amount': 8052, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 16, 'Sold': 441, 'Amount': 1874.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 48, 'Sold': 243, 'Amount': 3773.79, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 30, 'Sold': 131, 'Amount': 1473.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 47, 'Sold': 402, 'Amount': 7638, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 14, 'Sold': 488, 'Amount': 3660, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 31, 'Sold': 237, 'Amount': 7169.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 36, 'Sold': 251, 'Amount': 1004, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 9, 'Sold': 151, 'Amount': 2307.28, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 44, 'Sold': 387, 'Amount': 4257, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' },
+ { 'In_Stock': 13, 'Sold': 10, 'Amount': 195, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 49, 'Sold': 77, 'Amount': 578, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 13, 'Sold': 70, 'Amount': 2152.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 23, 'Sold': 90, 'Amount': 405, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 37, 'Sold': 58, 'Amount': 915.24, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 31, 'Sold': 91, 'Amount': 1046.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 42, 'Sold': 497, 'Amount': 9940, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 31, 'Sold': 411, 'Amount': 3493.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 34, 'Sold': 285, 'Amount': 8906.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 38, 'Sold': 62, 'Amount': 310, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 18, 'Sold': 109, 'Amount': 1774.52, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 10, 'Sold': 172, 'Amount': 2064, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 23, 'Sold': 408, 'Amount': 7854, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 34, 'Sold': 78, 'Amount': 604.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 41, 'Sold': 149, 'Amount': 4544.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 28, 'Sold': 387, 'Amount': 1644.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 6, 'Sold': 269, 'Amount': 4177.57, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 34, 'Sold': 291, 'Amount': 3273.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 3, 'Sold': 292, 'Amount': 5548, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 8, 'Sold': 124, 'Amount': 930, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 5, 'Sold': 265, 'Amount': 8016.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 31, 'Sold': 175, 'Amount': 700, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 45, 'Sold': 144, 'Amount': 2200.32, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 17, 'Sold': 411, 'Amount': 4521, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' },
+ { 'In_Stock': 34, 'Sold': 75, 'Amount': 1462.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 29, 'Sold': 30, 'Amount': 225.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 31, 'Sold': 15, 'Amount': 461.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 19, 'Sold': 30, 'Amount': 135, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 4, 'Sold': 63, 'Amount': 994.14, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 47, 'Sold': 55, 'Amount': 632.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 37, 'Sold': 58, 'Amount': 1160, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 35, 'Sold': 308, 'Amount': 2618, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 29, 'Sold': 331, 'Amount': 10343.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 39, 'Sold': 312, 'Amount': 1560, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 50, 'Sold': 186, 'Amount': 3028.08, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 4, 'Sold': 261, 'Amount': 3132, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 43, 'Sold': 87, 'Amount': 1674.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 42, 'Sold': 197, 'Amount': 1526.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 27, 'Sold': 124, 'Amount': 3782, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 44, 'Sold': 178, 'Amount': 756.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 5, 'Sold': 274, 'Amount': 4255.22, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 18, 'Sold': 388, 'Amount': 4365, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 39, 'Sold': 528, 'Amount': 10032, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 33, 'Sold': 285, 'Amount': 2137.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 37, 'Sold': 306, 'Amount': 9256.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 43, 'Sold': 548, 'Amount': 2192, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 35, 'Sold': 265, 'Amount': 4049.2, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 48, 'Sold': 261, 'Amount': 2871, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' },
+ { 'In_Stock': 4, 'Sold': 57, 'Amount': 1111.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 14, 'Sold': 12, 'Amount': 90.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 2, 'Sold': 48, 'Amount': 1476, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 1, 'Sold': 68, 'Amount': 306, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 26, 'Sold': 42, 'Amount': 662.76, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 41, 'Sold': 82, 'Amount': 943, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 50, 'Sold': 312, 'Amount': 6240, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 9, 'Sold': 206, 'Amount': 1751, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 9, 'Sold': 393, 'Amount': 12281.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 48, 'Sold': 354, 'Amount': 1770, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 45, 'Sold': 160, 'Amount': 2604.8, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 36, 'Sold': 243, 'Amount': 2916, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 9, 'Sold': 430, 'Amount': 8277.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 12, 'Sold': 56, 'Amount': 434, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 37, 'Sold': 101, 'Amount': 3080.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 1, 'Sold': 202, 'Amount': 858.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 30, 'Sold': 472, 'Amount': 7330.16, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 28, 'Sold': 385, 'Amount': 4331.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 5, 'Sold': 287, 'Amount': 5453, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 24, 'Sold': 129, 'Amount': 967.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 49, 'Sold': 547, 'Amount': 16546.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 47, 'Sold': 276, 'Amount': 1104, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 8, 'Sold': 518, 'Amount': 7915.04, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 35, 'Sold': 158, 'Amount': 1738, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' },
+ { 'In_Stock': 2, 'Sold': 46, 'Amount': 897, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 44, 'Sold': 47, 'Amount': 353, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 19, 'Sold': 17, 'Amount': 522.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 22, 'Sold': 31, 'Amount': 139.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 40, 'Sold': 77, 'Amount': 1215.06, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 7, 'Sold': 100, 'Amount': 1150, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 3, 'Sold': 356, 'Amount': 7120, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 41, 'Sold': 418, 'Amount': 3553, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 16, 'Sold': 261, 'Amount': 8156.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 6, 'Sold': 306, 'Amount': 1530, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 6, 'Sold': 361, 'Amount': 5877.08, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 29, 'Sold': 193, 'Amount': 2316, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 13, 'Sold': 420, 'Amount': 8085, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 40, 'Sold': 197, 'Amount': 1526.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 32, 'Sold': 247, 'Amount': 7533.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 18, 'Sold': 175, 'Amount': 743.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 31, 'Sold': 436, 'Amount': 6771.08, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 5, 'Sold': 91, 'Amount': 1023.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 17, 'Sold': 135, 'Amount': 2565, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 17, 'Sold': 102, 'Amount': 765, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 3, 'Sold': 88, 'Amount': 2662, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 39, 'Sold': 406, 'Amount': 1624, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 44, 'Sold': 275, 'Amount': 4202, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 21, 'Sold': 116, 'Amount': 1276, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' },
+ { 'In_Stock': 14, 'Sold': 66, 'Amount': 1287, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 3, 'Sold': 86, 'Amount': 645.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 50, 'Sold': 68, 'Amount': 2091, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 40, 'Sold': 96, 'Amount': 432, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 22, 'Sold': 79, 'Amount': 1246.62, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 21, 'Sold': 69, 'Amount': 793.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 35, 'Sold': 269, 'Amount': 5380, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 38, 'Sold': 152, 'Amount': 1292, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 19, 'Sold': 213, 'Amount': 6656.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 2, 'Sold': 212, 'Amount': 1060, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 19, 'Sold': 454, 'Amount': 7391.12, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 38, 'Sold': 197, 'Amount': 2364, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 7, 'Sold': 76, 'Amount': 1463, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 32, 'Sold': 242, 'Amount': 1875.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 37, 'Sold': 211, 'Amount': 6435.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 12, 'Sold': 149, 'Amount': 633.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 4, 'Sold': 104, 'Amount': 1615.12, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 36, 'Sold': 371, 'Amount': 4173.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 10, 'Sold': 545, 'Amount': 10355, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 39, 'Sold': 547, 'Amount': 4102.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 2, 'Sold': 386, 'Amount': 11676.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 34, 'Sold': 199, 'Amount': 796, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 38, 'Sold': 454, 'Amount': 6937.12, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 19, 'Sold': 138, 'Amount': 1518, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' },
+ { 'In_Stock': 6, 'Sold': 32, 'Amount': 624, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 19, 'Sold': 80, 'Amount': 600.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 25, 'Sold': 33, 'Amount': 1014.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 38, 'Sold': 48, 'Amount': 216, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 8, 'Sold': 36, 'Amount': 568.08, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 4, 'Sold': 18, 'Amount': 207, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 32, 'Sold': 125, 'Amount': 2500, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 28, 'Sold': 481, 'Amount': 4088.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 22, 'Sold': 287, 'Amount': 8968.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 10, 'Sold': 302, 'Amount': 1510, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 20, 'Sold': 264, 'Amount': 4297.92, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 23, 'Sold': 107, 'Amount': 1284, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 17, 'Sold': 219, 'Amount': 4215.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 20, 'Sold': 384, 'Amount': 2976, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 27, 'Sold': 231, 'Amount': 7045.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 24, 'Sold': 409, 'Amount': 1738.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 24, 'Sold': 204, 'Amount': 3168.12, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 22, 'Sold': 301, 'Amount': 3386.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 14, 'Sold': 535, 'Amount': 10165, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 47, 'Sold': 405, 'Amount': 3037.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 14, 'Sold': 385, 'Amount': 11646.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 11, 'Sold': 426, 'Amount': 1704, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 13, 'Sold': 392, 'Amount': 5989.76, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' },
+ { 'In_Stock': 9, 'Sold': 426, 'Amount': 4686, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }];
diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/main.ts b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/main.ts
new file mode 100644
index 0000000000..3607237bd6
--- /dev/null
+++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/main.ts
@@ -0,0 +1,4 @@
+import { bootstrapApplication } from '@angular/platform-browser';
+import { AppComponent } from './app.component';
+import 'zone.js';
+bootstrapApplication(AppComponent).catch((err) => console.error(err));
\ No newline at end of file
diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/numberingSystems.json b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/numberingSystems.json
new file mode 100644
index 0000000000..3425a257f6
--- /dev/null
+++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/numberingSystems.json
@@ -0,0 +1,319 @@
+{
+ "supplemental": {
+ "version": {
+ "_number": "$Revision: 12732 $",
+ "_unicodeVersion": "9.0.0",
+ "_cldrVersion": "31"
+ },
+ "numberingSystems": {
+ "adlm": {
+ "_digits": "𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙",
+ "_type": "numeric"
+ },
+ "ahom": {
+ "_digits": "𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹",
+ "_type": "numeric"
+ },
+ "arab": {
+ "_digits": "٠١٢٣٤٥٦٧٨٩",
+ "_type": "numeric"
+ },
+ "arabext": {
+ "_digits": "۰۱۲۳۴۵۶۷۸۹",
+ "_type": "numeric"
+ },
+ "armn": {
+ "_rules": "armenian-upper",
+ "_type": "algorithmic"
+ },
+ "armnlow": {
+ "_rules": "armenian-lower",
+ "_type": "algorithmic"
+ },
+ "bali": {
+ "_digits": "᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙",
+ "_type": "numeric"
+ },
+ "beng": {
+ "_digits": "০১২৩৪৫৬৭৮৯",
+ "_type": "numeric"
+ },
+ "bhks": {
+ "_digits": "𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙",
+ "_type": "numeric"
+ },
+ "brah": {
+ "_digits": "𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯",
+ "_type": "numeric"
+ },
+ "cakm": {
+ "_digits": "𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿",
+ "_type": "numeric"
+ },
+ "cham": {
+ "_digits": "꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙",
+ "_type": "numeric"
+ },
+ "cyrl": {
+ "_rules": "cyrillic-lower",
+ "_type": "algorithmic"
+ },
+ "deva": {
+ "_digits": "०१२३४५६७८९",
+ "_type": "numeric"
+ },
+ "ethi": {
+ "_rules": "ethiopic",
+ "_type": "algorithmic"
+ },
+ "fullwide": {
+ "_digits": "0123456789",
+ "_type": "numeric"
+ },
+ "geor": {
+ "_rules": "georgian",
+ "_type": "algorithmic"
+ },
+ "grek": {
+ "_rules": "greek-upper",
+ "_type": "algorithmic"
+ },
+ "greklow": {
+ "_rules": "greek-lower",
+ "_type": "algorithmic"
+ },
+ "gujr": {
+ "_digits": "૦૧૨૩૪૫૬૭૮૯",
+ "_type": "numeric"
+ },
+ "guru": {
+ "_digits": "੦੧੨੩੪੫੬੭੮੯",
+ "_type": "numeric"
+ },
+ "hanidays": {
+ "_rules": "zh/SpelloutRules/spellout-numbering-days",
+ "_type": "algorithmic"
+ },
+ "hanidec": {
+ "_digits": "〇一二三四五六七八九",
+ "_type": "numeric"
+ },
+ "hans": {
+ "_rules": "zh/SpelloutRules/spellout-cardinal",
+ "_type": "algorithmic"
+ },
+ "hansfin": {
+ "_rules": "zh/SpelloutRules/spellout-cardinal-financial",
+ "_type": "algorithmic"
+ },
+ "hant": {
+ "_rules": "zh_Hant/SpelloutRules/spellout-cardinal",
+ "_type": "algorithmic"
+ },
+ "hantfin": {
+ "_rules": "zh_Hant/SpelloutRules/spellout-cardinal-financial",
+ "_type": "algorithmic"
+ },
+ "hebr": {
+ "_rules": "hebrew",
+ "_type": "algorithmic"
+ },
+ "hmng": {
+ "_digits": "𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙",
+ "_type": "numeric"
+ },
+ "java": {
+ "_digits": "꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙",
+ "_type": "numeric"
+ },
+ "jpan": {
+ "_rules": "ja/SpelloutRules/spellout-cardinal",
+ "_type": "algorithmic"
+ },
+ "jpanfin": {
+ "_rules": "ja/SpelloutRules/spellout-cardinal-financial",
+ "_type": "algorithmic"
+ },
+ "kali": {
+ "_digits": "꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉",
+ "_type": "numeric"
+ },
+ "khmr": {
+ "_digits": "០១២៣៤៥៦៧៨៩",
+ "_type": "numeric"
+ },
+ "knda": {
+ "_digits": "೦೧೨೩೪೫೬೭೮೯",
+ "_type": "numeric"
+ },
+ "lana": {
+ "_digits": "᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉",
+ "_type": "numeric"
+ },
+ "lanatham": {
+ "_digits": "᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙",
+ "_type": "numeric"
+ },
+ "laoo": {
+ "_digits": "໐໑໒໓໔໕໖໗໘໙",
+ "_type": "numeric"
+ },
+ "latn": {
+ "_digits": "0123456789",
+ "_type": "numeric"
+ },
+ "lepc": {
+ "_digits": "᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉",
+ "_type": "numeric"
+ },
+ "limb": {
+ "_digits": "᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏",
+ "_type": "numeric"
+ },
+ "mathbold": {
+ "_digits": "𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗",
+ "_type": "numeric"
+ },
+ "mathdbl": {
+ "_digits": "𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡",
+ "_type": "numeric"
+ },
+ "mathmono": {
+ "_digits": "𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿",
+ "_type": "numeric"
+ },
+ "mathsanb": {
+ "_digits": "𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵",
+ "_type": "numeric"
+ },
+ "mathsans": {
+ "_digits": "𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫",
+ "_type": "numeric"
+ },
+ "mlym": {
+ "_digits": "൦൧൨൩൪൫൬൭൮൯",
+ "_type": "numeric"
+ },
+ "modi": {
+ "_digits": "𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙",
+ "_type": "numeric"
+ },
+ "mong": {
+ "_digits": "᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙",
+ "_type": "numeric"
+ },
+ "mroo": {
+ "_digits": "𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩",
+ "_type": "numeric"
+ },
+ "mtei": {
+ "_digits": "꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹",
+ "_type": "numeric"
+ },
+ "mymr": {
+ "_digits": "၀၁၂၃၄၅၆၇၈၉",
+ "_type": "numeric"
+ },
+ "mymrshan": {
+ "_digits": "႐႑႒႓႔႕႖႗႘႙",
+ "_type": "numeric"
+ },
+ "mymrtlng": {
+ "_digits": "꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹",
+ "_type": "numeric"
+ },
+ "newa": {
+ "_digits": "𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙",
+ "_type": "numeric"
+ },
+ "nkoo": {
+ "_digits": "߀߁߂߃߄߅߆߇߈߉",
+ "_type": "numeric"
+ },
+ "olck": {
+ "_digits": "᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙",
+ "_type": "numeric"
+ },
+ "orya": {
+ "_digits": "୦୧୨୩୪୫୬୭୮୯",
+ "_type": "numeric"
+ },
+ "osma": {
+ "_digits": "𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩",
+ "_type": "numeric"
+ },
+ "roman": {
+ "_rules": "roman-upper",
+ "_type": "algorithmic"
+ },
+ "romanlow": {
+ "_rules": "roman-lower",
+ "_type": "algorithmic"
+ },
+ "saur": {
+ "_digits": "꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙",
+ "_type": "numeric"
+ },
+ "shrd": {
+ "_digits": "𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙",
+ "_type": "numeric"
+ },
+ "sind": {
+ "_digits": "𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹",
+ "_type": "numeric"
+ },
+ "sinh": {
+ "_digits": "෦෧෨෩෪෫෬෭෮෯",
+ "_type": "numeric"
+ },
+ "sora": {
+ "_digits": "𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹",
+ "_type": "numeric"
+ },
+ "sund": {
+ "_digits": "᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹",
+ "_type": "numeric"
+ },
+ "takr": {
+ "_digits": "𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉",
+ "_type": "numeric"
+ },
+ "talu": {
+ "_digits": "᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙",
+ "_type": "numeric"
+ },
+ "taml": {
+ "_rules": "tamil",
+ "_type": "algorithmic"
+ },
+ "tamldec": {
+ "_digits": "௦௧௨௩௪௫௬௭௮௯",
+ "_type": "numeric"
+ },
+ "telu": {
+ "_digits": "౦౧౨౩౪౫౬౭౮౯",
+ "_type": "numeric"
+ },
+ "thai": {
+ "_digits": "๐๑๒๓๔๕๖๗๘๙",
+ "_type": "numeric"
+ },
+ "tibt": {
+ "_digits": "༠༡༢༣༤༥༦༧༨༩",
+ "_type": "numeric"
+ },
+ "tirh": {
+ "_digits": "𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙",
+ "_type": "numeric"
+ },
+ "vaii": {
+ "_digits": "꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩",
+ "_type": "numeric"
+ },
+ "wara": {
+ "_digits": "𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩",
+ "_type": "numeric"
+ }
+ }
+ }
+}
diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/numbers.json b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/numbers.json
new file mode 100644
index 0000000000..cb6b997d5f
--- /dev/null
+++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/numbers.json
@@ -0,0 +1,154 @@
+{
+ "main": {
+ "de": {
+ "identity": {
+ "version": {
+ "_number": "$Revision: 13259 $",
+ "_cldrVersion": "31"
+ },
+ "language": "de"
+ },
+ "numbers": {
+ "defaultNumberingSystem": "latn",
+ "otherNumberingSystems": {
+ "native": "latn"
+ },
+ "minimumGroupingDigits": "1",
+ "symbols-numberSystem-latn": {
+ "decimal": ",",
+ "group": ".",
+ "list": ";",
+ "percentSign": "%",
+ "plusSign": "+",
+ "minusSign": "-",
+ "exponential": "E",
+ "superscriptingExponent": "·",
+ "perMille": "‰",
+ "infinity": "∞",
+ "nan": "NaN",
+ "timeSeparator": ":"
+ },
+ "decimalFormats-numberSystem-latn": {
+ "standard": "#,##0.###",
+ "long": {
+ "decimalFormat": {
+ "1000-count-one": "0 Tausend",
+ "1000-count-other": "0 Tausend",
+ "10000-count-one": "00 Tausend",
+ "10000-count-other": "00 Tausend",
+ "100000-count-one": "000 Tausend",
+ "100000-count-other": "000 Tausend",
+ "1000000-count-one": "0 Million",
+ "1000000-count-other": "0 Millionen",
+ "10000000-count-one": "00 Millionen",
+ "10000000-count-other": "00 Millionen",
+ "100000000-count-one": "000 Millionen",
+ "100000000-count-other": "000 Millionen",
+ "1000000000-count-one": "0 Milliarde",
+ "1000000000-count-other": "0 Milliarden",
+ "10000000000-count-one": "00 Milliarden",
+ "10000000000-count-other": "00 Milliarden",
+ "100000000000-count-one": "000 Milliarden",
+ "100000000000-count-other": "000 Milliarden",
+ "1000000000000-count-one": "0 Billion",
+ "1000000000000-count-other": "0 Billionen",
+ "10000000000000-count-one": "00 Billionen",
+ "10000000000000-count-other": "00 Billionen",
+ "100000000000000-count-one": "000 Billionen",
+ "100000000000000-count-other": "000 Billionen"
+ }
+ },
+ "short": {
+ "decimalFormat": {
+ "1000-count-one": "0",
+ "1000-count-other": "0",
+ "10000-count-one": "0",
+ "10000-count-other": "0",
+ "100000-count-one": "0",
+ "100000-count-other": "0",
+ "1000000-count-one": "0 Mio'.'",
+ "1000000-count-other": "0 Mio'.'",
+ "10000000-count-one": "00 Mio'.'",
+ "10000000-count-other": "00 Mio'.'",
+ "100000000-count-one": "000 Mio'.'",
+ "100000000-count-other": "000 Mio'.'",
+ "1000000000-count-one": "0 Mrd'.'",
+ "1000000000-count-other": "0 Mrd'.'",
+ "10000000000-count-one": "00 Mrd'.'",
+ "10000000000-count-other": "00 Mrd'.'",
+ "100000000000-count-one": "000 Mrd'.'",
+ "100000000000-count-other": "000 Mrd'.'",
+ "1000000000000-count-one": "0 Bio'.'",
+ "1000000000000-count-other": "0 Bio'.'",
+ "10000000000000-count-one": "00 Bio'.'",
+ "10000000000000-count-other": "00 Bio'.'",
+ "100000000000000-count-one": "000 Bio'.'",
+ "100000000000000-count-other": "000 Bio'.'"
+ }
+ }
+ },
+ "scientificFormats-numberSystem-latn": {
+ "standard": "#E0"
+ },
+ "percentFormats-numberSystem-latn": {
+ "standard": "#,##0 %"
+ },
+ "currencyFormats-numberSystem-latn": {
+ "currencySpacing": {
+ "beforeCurrency": {
+ "currencyMatch": "[:^S:]",
+ "surroundingMatch": "[:digit:]",
+ "insertBetween": " "
+ },
+ "afterCurrency": {
+ "currencyMatch": "[:^S:]",
+ "surroundingMatch": "[:digit:]",
+ "insertBetween": " "
+ }
+ },
+ "standard": "#,##0.00 ¤",
+ "accounting": "#,##0.00 ¤",
+ "short": {
+ "standard": {
+ "1000-count-one": "0 Tsd'.' ¤",
+ "1000-count-other": "0 Tsd'.' ¤",
+ "10000-count-one": "00 Tsd'.' ¤",
+ "10000-count-other": "00 Tsd'.' ¤",
+ "100000-count-one": "000 Tsd'.' ¤",
+ "100000-count-other": "000 Tsd'.' ¤",
+ "1000000-count-one": "0 Mio'.' ¤",
+ "1000000-count-other": "0 Mio'.' ¤",
+ "10000000-count-one": "00 Mio'.' ¤",
+ "10000000-count-other": "00 Mio'.' ¤",
+ "100000000-count-one": "000 Mio'.' ¤",
+ "100000000-count-other": "000 Mio'.' ¤",
+ "1000000000-count-one": "0 Mrd'.' ¤",
+ "1000000000-count-other": "0 Mrd'.' ¤",
+ "10000000000-count-one": "00 Mrd'.' ¤",
+ "10000000000-count-other": "00 Mrd'.' ¤",
+ "100000000000-count-one": "000 Mrd'.' ¤",
+ "100000000000-count-other": "000 Mrd'.' ¤",
+ "1000000000000-count-one": "0 Bio'.' ¤",
+ "1000000000000-count-other": "0 Bio'.' ¤",
+ "10000000000000-count-one": "00 Bio'.' ¤",
+ "10000000000000-count-other": "00 Bio'.' ¤",
+ "100000000000000-count-one": "000 Bio'.' ¤",
+ "100000000000000-count-other": "000 Bio'.' ¤"
+ }
+ },
+ "unitPattern-count-one": "{0} {1}",
+ "unitPattern-count-other": "{0} {1}"
+ },
+ "miscPatterns-numberSystem-latn": {
+ "atLeast": "{0}+",
+ "range": "{0}–{1}"
+ },
+ "minimalPairs": {
+ "pluralMinimalPairs": "{0} Tag",
+ "pluralMinimalPairs": "{0} Tage",
+ "other": "{0}. Abzweigung nach rechts nehmen"
+ }
+ }
+ }
+ }
+}
diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/styles.css b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/styles.css
new file mode 100644
index 0000000000..a6fdf5d873
--- /dev/null
+++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/styles.css
@@ -0,0 +1,12 @@
+
+@import 'node_modules/@syncfusion/ej2-base/styles/material.css';
+@import 'node_modules/@syncfusion/ej2-buttons/styles/material.css';
+@import 'node_modules/@syncfusion/ej2-dropdowns/styles/material.css';
+@import 'node_modules/@syncfusion/ej2-grids/styles/material.css';
+@import 'node_modules/@syncfusion/ej2-inputs/styles/material.css';
+@import 'node_modules/@syncfusion/ej2-lists/styles/material.css';
+@import 'node_modules/@syncfusion/ej2-navigations/styles/material.css';
+@import 'node_modules/@syncfusion/ej2-popups/styles/material.css';
+@import 'node_modules/@syncfusion/ej2-splitbuttons/styles/material.css';
+@import 'node_modules/@syncfusion/ej2-angular-pivotview/styles/material.css';
+@import 'node_modules/@syncfusion/ej2-angular-base/styles/material.css';
diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/timeZoneNames.json b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/timeZoneNames.json
new file mode 100644
index 0000000000..05fec091c1
--- /dev/null
+++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/timeZoneNames.json
@@ -0,0 +1,2391 @@
+{
+ "main": {
+ "de": {
+ "identity": {
+ "version": {
+ "_number": "$Revision: 12879 $",
+ "_cldrVersion": "30.0.3"
+ },
+ "language": "de"
+ },
+ "dates": {
+ "timeZoneNames": {
+ "hourFormat": "+HH:mm;-HH:mm",
+ "gmtFormat": "GMT{0}",
+ "gmtZeroFormat": "GMT",
+ "regionFormat": "{0} Zeit",
+ "regionFormat-type-daylight": "{0} Sommerzeit",
+ "regionFormat-type-standard": "{0} Normalzeit",
+ "fallbackFormat": "{1} ({0})",
+ "zone": {
+ "America": {
+ "Adak": {
+ "exemplarCity": "Adak"
+ },
+ "Anchorage": {
+ "exemplarCity": "Anchorage"
+ },
+ "Anguilla": {
+ "exemplarCity": "Anguilla"
+ },
+ "Antigua": {
+ "exemplarCity": "Antigua"
+ },
+ "Araguaina": {
+ "exemplarCity": "Araguaina"
+ },
+ "Argentina": {
+ "Rio_Gallegos": {
+ "exemplarCity": "Rio Gallegos"
+ },
+ "San_Juan": {
+ "exemplarCity": "San Juan"
+ },
+ "Ushuaia": {
+ "exemplarCity": "Ushuaia"
+ },
+ "La_Rioja": {
+ "exemplarCity": "La Rioja"
+ },
+ "San_Luis": {
+ "exemplarCity": "San Luis"
+ },
+ "Salta": {
+ "exemplarCity": "Salta"
+ },
+ "Tucuman": {
+ "exemplarCity": "Tucuman"
+ }
+ },
+ "Aruba": {
+ "exemplarCity": "Aruba"
+ },
+ "Asuncion": {
+ "exemplarCity": "Asunción"
+ },
+ "Bahia": {
+ "exemplarCity": "Bahia"
+ },
+ "Bahia_Banderas": {
+ "exemplarCity": "Bahia Banderas"
+ },
+ "Barbados": {
+ "exemplarCity": "Barbados"
+ },
+ "Belem": {
+ "exemplarCity": "Belem"
+ },
+ "Belize": {
+ "exemplarCity": "Belize"
+ },
+ "Blanc-Sablon": {
+ "exemplarCity": "Blanc-Sablon"
+ },
+ "Boa_Vista": {
+ "exemplarCity": "Boa Vista"
+ },
+ "Bogota": {
+ "exemplarCity": "Bogotá"
+ },
+ "Boise": {
+ "exemplarCity": "Boise"
+ },
+ "Buenos_Aires": {
+ "exemplarCity": "Buenos Aires"
+ },
+ "Cambridge_Bay": {
+ "exemplarCity": "Cambridge Bay"
+ },
+ "Campo_Grande": {
+ "exemplarCity": "Campo Grande"
+ },
+ "Cancun": {
+ "exemplarCity": "Cancún"
+ },
+ "Caracas": {
+ "exemplarCity": "Caracas"
+ },
+ "Catamarca": {
+ "exemplarCity": "Catamarca"
+ },
+ "Cayenne": {
+ "exemplarCity": "Cayenne"
+ },
+ "Cayman": {
+ "exemplarCity": "Kaimaninseln"
+ },
+ "Chicago": {
+ "exemplarCity": "Chicago"
+ },
+ "Chihuahua": {
+ "exemplarCity": "Chihuahua"
+ },
+ "Coral_Harbour": {
+ "exemplarCity": "Atikokan"
+ },
+ "Cordoba": {
+ "exemplarCity": "Córdoba"
+ },
+ "Costa_Rica": {
+ "exemplarCity": "Costa Rica"
+ },
+ "Creston": {
+ "exemplarCity": "Creston"
+ },
+ "Cuiaba": {
+ "exemplarCity": "Cuiaba"
+ },
+ "Curacao": {
+ "exemplarCity": "Curaçao"
+ },
+ "Danmarkshavn": {
+ "exemplarCity": "Danmarkshavn"
+ },
+ "Dawson": {
+ "exemplarCity": "Dawson"
+ },
+ "Dawson_Creek": {
+ "exemplarCity": "Dawson Creek"
+ },
+ "Denver": {
+ "exemplarCity": "Denver"
+ },
+ "Detroit": {
+ "exemplarCity": "Detroit"
+ },
+ "Dominica": {
+ "exemplarCity": "Dominica"
+ },
+ "Edmonton": {
+ "exemplarCity": "Edmonton"
+ },
+ "Eirunepe": {
+ "exemplarCity": "Eirunepe"
+ },
+ "El_Salvador": {
+ "exemplarCity": "El Salvador"
+ },
+ "Fort_Nelson": {
+ "exemplarCity": "Fort Nelson"
+ },
+ "Fortaleza": {
+ "exemplarCity": "Fortaleza"
+ },
+ "Glace_Bay": {
+ "exemplarCity": "Glace Bay"
+ },
+ "Godthab": {
+ "exemplarCity": "Nuuk"
+ },
+ "Goose_Bay": {
+ "exemplarCity": "Goose Bay"
+ },
+ "Grand_Turk": {
+ "exemplarCity": "Grand Turk"
+ },
+ "Grenada": {
+ "exemplarCity": "Grenada"
+ },
+ "Guadeloupe": {
+ "exemplarCity": "Guadeloupe"
+ },
+ "Guatemala": {
+ "exemplarCity": "Guatemala"
+ },
+ "Guayaquil": {
+ "exemplarCity": "Guayaquil"
+ },
+ "Guyana": {
+ "exemplarCity": "Guyana"
+ },
+ "Halifax": {
+ "exemplarCity": "Halifax"
+ },
+ "Havana": {
+ "exemplarCity": "Havanna"
+ },
+ "Hermosillo": {
+ "exemplarCity": "Hermosillo"
+ },
+ "Indiana": {
+ "Vincennes": {
+ "exemplarCity": "Vincennes, Indiana"
+ },
+ "Petersburg": {
+ "exemplarCity": "Petersburg, Indiana"
+ },
+ "Tell_City": {
+ "exemplarCity": "Tell City, Indiana"
+ },
+ "Knox": {
+ "exemplarCity": "Knox, Indiana"
+ },
+ "Winamac": {
+ "exemplarCity": "Winamac, Indiana"
+ },
+ "Marengo": {
+ "exemplarCity": "Marengo, Indiana"
+ },
+ "Vevay": {
+ "exemplarCity": "Vevay, Indiana"
+ }
+ },
+ "Indianapolis": {
+ "exemplarCity": "Indianapolis"
+ },
+ "Inuvik": {
+ "exemplarCity": "Inuvik"
+ },
+ "Iqaluit": {
+ "exemplarCity": "Iqaluit"
+ },
+ "Jamaica": {
+ "exemplarCity": "Jamaika"
+ },
+ "Jujuy": {
+ "exemplarCity": "Jujuy"
+ },
+ "Juneau": {
+ "exemplarCity": "Juneau"
+ },
+ "Kentucky": {
+ "Monticello": {
+ "exemplarCity": "Monticello, Kentucky"
+ }
+ },
+ "Kralendijk": {
+ "exemplarCity": "Kralendijk"
+ },
+ "La_Paz": {
+ "exemplarCity": "La Paz"
+ },
+ "Lima": {
+ "exemplarCity": "Lima"
+ },
+ "Los_Angeles": {
+ "exemplarCity": "Los Angeles"
+ },
+ "Louisville": {
+ "exemplarCity": "Louisville"
+ },
+ "Lower_Princes": {
+ "exemplarCity": "Lower Prince’s Quarter"
+ },
+ "Maceio": {
+ "exemplarCity": "Maceio"
+ },
+ "Managua": {
+ "exemplarCity": "Managua"
+ },
+ "Manaus": {
+ "exemplarCity": "Manaus"
+ },
+ "Marigot": {
+ "exemplarCity": "Marigot"
+ },
+ "Martinique": {
+ "exemplarCity": "Martinique"
+ },
+ "Matamoros": {
+ "exemplarCity": "Matamoros"
+ },
+ "Mazatlan": {
+ "exemplarCity": "Mazatlan"
+ },
+ "Mendoza": {
+ "exemplarCity": "Mendoza"
+ },
+ "Menominee": {
+ "exemplarCity": "Menominee"
+ },
+ "Merida": {
+ "exemplarCity": "Merida"
+ },
+ "Metlakatla": {
+ "exemplarCity": "Metlakatla"
+ },
+ "Mexico_City": {
+ "exemplarCity": "Mexiko-Stadt"
+ },
+ "Miquelon": {
+ "exemplarCity": "Miquelon"
+ },
+ "Moncton": {
+ "exemplarCity": "Moncton"
+ },
+ "Monterrey": {
+ "exemplarCity": "Monterrey"
+ },
+ "Montevideo": {
+ "exemplarCity": "Montevideo"
+ },
+ "Montserrat": {
+ "exemplarCity": "Montserrat"
+ },
+ "Nassau": {
+ "exemplarCity": "Nassau"
+ },
+ "New_York": {
+ "exemplarCity": "New York"
+ },
+ "Nipigon": {
+ "exemplarCity": "Nipigon"
+ },
+ "Nome": {
+ "exemplarCity": "Nome"
+ },
+ "Noronha": {
+ "exemplarCity": "Noronha"
+ },
+ "North_Dakota": {
+ "Beulah": {
+ "exemplarCity": "Beulah, North Dakota"
+ },
+ "New_Salem": {
+ "exemplarCity": "New Salem, North Dakota"
+ },
+ "Center": {
+ "exemplarCity": "Center, North Dakota"
+ }
+ },
+ "Ojinaga": {
+ "exemplarCity": "Ojinaga"
+ },
+ "Panama": {
+ "exemplarCity": "Panama"
+ },
+ "Pangnirtung": {
+ "exemplarCity": "Pangnirtung"
+ },
+ "Paramaribo": {
+ "exemplarCity": "Paramaribo"
+ },
+ "Phoenix": {
+ "exemplarCity": "Phoenix"
+ },
+ "Port-au-Prince": {
+ "exemplarCity": "Port-au-Prince"
+ },
+ "Port_of_Spain": {
+ "exemplarCity": "Port of Spain"
+ },
+ "Porto_Velho": {
+ "exemplarCity": "Porto Velho"
+ },
+ "Puerto_Rico": {
+ "exemplarCity": "Puerto Rico"
+ },
+ "Rainy_River": {
+ "exemplarCity": "Rainy River"
+ },
+ "Rankin_Inlet": {
+ "exemplarCity": "Rankin Inlet"
+ },
+ "Recife": {
+ "exemplarCity": "Recife"
+ },
+ "Regina": {
+ "exemplarCity": "Regina"
+ },
+ "Resolute": {
+ "exemplarCity": "Resolute"
+ },
+ "Rio_Branco": {
+ "exemplarCity": "Rio Branco"
+ },
+ "Santa_Isabel": {
+ "exemplarCity": "Santa Isabel"
+ },
+ "Santarem": {
+ "exemplarCity": "Santarem"
+ },
+ "Santiago": {
+ "exemplarCity": "Santiago"
+ },
+ "Santo_Domingo": {
+ "exemplarCity": "Santo Domingo"
+ },
+ "Sao_Paulo": {
+ "exemplarCity": "São Paulo"
+ },
+ "Scoresbysund": {
+ "exemplarCity": "Ittoqqortoormiit"
+ },
+ "Sitka": {
+ "exemplarCity": "Sitka"
+ },
+ "St_Barthelemy": {
+ "exemplarCity": "Saint-Barthélemy"
+ },
+ "St_Johns": {
+ "exemplarCity": "St. John’s"
+ },
+ "St_Kitts": {
+ "exemplarCity": "St. Kitts"
+ },
+ "St_Lucia": {
+ "exemplarCity": "St. Lucia"
+ },
+ "St_Thomas": {
+ "exemplarCity": "St. Thomas"
+ },
+ "St_Vincent": {
+ "exemplarCity": "St. Vincent"
+ },
+ "Swift_Current": {
+ "exemplarCity": "Swift Current"
+ },
+ "Tegucigalpa": {
+ "exemplarCity": "Tegucigalpa"
+ },
+ "Thule": {
+ "exemplarCity": "Thule"
+ },
+ "Thunder_Bay": {
+ "exemplarCity": "Thunder Bay"
+ },
+ "Tijuana": {
+ "exemplarCity": "Tijuana"
+ },
+ "Toronto": {
+ "exemplarCity": "Toronto"
+ },
+ "Tortola": {
+ "exemplarCity": "Tortola"
+ },
+ "Vancouver": {
+ "exemplarCity": "Vancouver"
+ },
+ "Whitehorse": {
+ "exemplarCity": "Whitehorse"
+ },
+ "Winnipeg": {
+ "exemplarCity": "Winnipeg"
+ },
+ "Yakutat": {
+ "exemplarCity": "Yakutat"
+ },
+ "Yellowknife": {
+ "exemplarCity": "Yellowknife"
+ }
+ },
+ "Atlantic": {
+ "Azores": {
+ "exemplarCity": "Azoren"
+ },
+ "Bermuda": {
+ "exemplarCity": "Bermudas"
+ },
+ "Canary": {
+ "exemplarCity": "Kanaren"
+ },
+ "Cape_Verde": {
+ "exemplarCity": "Cabo Verde"
+ },
+ "Faeroe": {
+ "exemplarCity": "Färöer"
+ },
+ "Madeira": {
+ "exemplarCity": "Madeira"
+ },
+ "Reykjavik": {
+ "exemplarCity": "Reykjavík"
+ },
+ "South_Georgia": {
+ "exemplarCity": "Südgeorgien"
+ },
+ "St_Helena": {
+ "exemplarCity": "St. Helena"
+ },
+ "Stanley": {
+ "exemplarCity": "Stanley"
+ }
+ },
+ "Europe": {
+ "Amsterdam": {
+ "exemplarCity": "Amsterdam"
+ },
+ "Andorra": {
+ "exemplarCity": "Andorra"
+ },
+ "Astrakhan": {
+ "exemplarCity": "Astrachan"
+ },
+ "Athens": {
+ "exemplarCity": "Athen"
+ },
+ "Belgrade": {
+ "exemplarCity": "Belgrad"
+ },
+ "Berlin": {
+ "exemplarCity": "Berlin"
+ },
+ "Bratislava": {
+ "exemplarCity": "Bratislava"
+ },
+ "Brussels": {
+ "exemplarCity": "Brüssel"
+ },
+ "Bucharest": {
+ "exemplarCity": "Bukarest"
+ },
+ "Budapest": {
+ "exemplarCity": "Budapest"
+ },
+ "Busingen": {
+ "exemplarCity": "Büsingen"
+ },
+ "Chisinau": {
+ "exemplarCity": "Kischinau"
+ },
+ "Copenhagen": {
+ "exemplarCity": "Kopenhagen"
+ },
+ "Dublin": {
+ "long": {
+ "daylight": "Irische Sommerzeit"
+ },
+ "exemplarCity": "Dublin"
+ },
+ "Gibraltar": {
+ "exemplarCity": "Gibraltar"
+ },
+ "Guernsey": {
+ "exemplarCity": "Guernsey"
+ },
+ "Helsinki": {
+ "exemplarCity": "Helsinki"
+ },
+ "Isle_of_Man": {
+ "exemplarCity": "Isle of Man"
+ },
+ "Istanbul": {
+ "exemplarCity": "Istanbul"
+ },
+ "Jersey": {
+ "exemplarCity": "Jersey"
+ },
+ "Kaliningrad": {
+ "exemplarCity": "Kaliningrad"
+ },
+ "Kiev": {
+ "exemplarCity": "Kiew"
+ },
+ "Kirov": {
+ "exemplarCity": "Kirow"
+ },
+ "Lisbon": {
+ "exemplarCity": "Lissabon"
+ },
+ "Ljubljana": {
+ "exemplarCity": "Ljubljana"
+ },
+ "London": {
+ "long": {
+ "daylight": "Britische Sommerzeit"
+ },
+ "exemplarCity": "London"
+ },
+ "Luxembourg": {
+ "exemplarCity": "Luxemburg"
+ },
+ "Madrid": {
+ "exemplarCity": "Madrid"
+ },
+ "Malta": {
+ "exemplarCity": "Malta"
+ },
+ "Mariehamn": {
+ "exemplarCity": "Mariehamn"
+ },
+ "Minsk": {
+ "exemplarCity": "Minsk"
+ },
+ "Monaco": {
+ "exemplarCity": "Monaco"
+ },
+ "Moscow": {
+ "exemplarCity": "Moskau"
+ },
+ "Oslo": {
+ "exemplarCity": "Oslo"
+ },
+ "Paris": {
+ "exemplarCity": "Paris"
+ },
+ "Podgorica": {
+ "exemplarCity": "Podgorica"
+ },
+ "Prague": {
+ "exemplarCity": "Prag"
+ },
+ "Riga": {
+ "exemplarCity": "Riga"
+ },
+ "Rome": {
+ "exemplarCity": "Rom"
+ },
+ "Samara": {
+ "exemplarCity": "Samara"
+ },
+ "San_Marino": {
+ "exemplarCity": "San Marino"
+ },
+ "Sarajevo": {
+ "exemplarCity": "Sarajevo"
+ },
+ "Simferopol": {
+ "exemplarCity": "Simferopol"
+ },
+ "Skopje": {
+ "exemplarCity": "Skopje"
+ },
+ "Sofia": {
+ "exemplarCity": "Sofia"
+ },
+ "Stockholm": {
+ "exemplarCity": "Stockholm"
+ },
+ "Tallinn": {
+ "exemplarCity": "Tallinn"
+ },
+ "Tirane": {
+ "exemplarCity": "Tirana"
+ },
+ "Ulyanovsk": {
+ "exemplarCity": "Uljanowsk"
+ },
+ "Uzhgorod": {
+ "exemplarCity": "Uschgorod"
+ },
+ "Vaduz": {
+ "exemplarCity": "Vaduz"
+ },
+ "Vatican": {
+ "exemplarCity": "Vatikan"
+ },
+ "Vienna": {
+ "exemplarCity": "Wien"
+ },
+ "Vilnius": {
+ "exemplarCity": "Vilnius"
+ },
+ "Volgograd": {
+ "exemplarCity": "Wolgograd"
+ },
+ "Warsaw": {
+ "exemplarCity": "Warschau"
+ },
+ "Zagreb": {
+ "exemplarCity": "Zagreb"
+ },
+ "Zaporozhye": {
+ "exemplarCity": "Saporischja"
+ },
+ "Zurich": {
+ "exemplarCity": "Zürich"
+ }
+ },
+ "Africa": {
+ "Abidjan": {
+ "exemplarCity": "Abidjan"
+ },
+ "Accra": {
+ "exemplarCity": "Accra"
+ },
+ "Addis_Ababa": {
+ "exemplarCity": "Addis Abeba"
+ },
+ "Algiers": {
+ "exemplarCity": "Algier"
+ },
+ "Asmera": {
+ "exemplarCity": "Asmara"
+ },
+ "Bamako": {
+ "exemplarCity": "Bamako"
+ },
+ "Bangui": {
+ "exemplarCity": "Bangui"
+ },
+ "Banjul": {
+ "exemplarCity": "Banjul"
+ },
+ "Bissau": {
+ "exemplarCity": "Bissau"
+ },
+ "Blantyre": {
+ "exemplarCity": "Blantyre"
+ },
+ "Brazzaville": {
+ "exemplarCity": "Brazzaville"
+ },
+ "Bujumbura": {
+ "exemplarCity": "Bujumbura"
+ },
+ "Cairo": {
+ "exemplarCity": "Kairo"
+ },
+ "Casablanca": {
+ "exemplarCity": "Casablanca"
+ },
+ "Ceuta": {
+ "exemplarCity": "Ceuta"
+ },
+ "Conakry": {
+ "exemplarCity": "Conakry"
+ },
+ "Dakar": {
+ "exemplarCity": "Dakar"
+ },
+ "Dar_es_Salaam": {
+ "exemplarCity": "Daressalam"
+ },
+ "Djibouti": {
+ "exemplarCity": "Dschibuti"
+ },
+ "Douala": {
+ "exemplarCity": "Douala"
+ },
+ "El_Aaiun": {
+ "exemplarCity": "El Aaiún"
+ },
+ "Freetown": {
+ "exemplarCity": "Freetown"
+ },
+ "Gaborone": {
+ "exemplarCity": "Gaborone"
+ },
+ "Harare": {
+ "exemplarCity": "Harare"
+ },
+ "Johannesburg": {
+ "exemplarCity": "Johannesburg"
+ },
+ "Juba": {
+ "exemplarCity": "Juba"
+ },
+ "Kampala": {
+ "exemplarCity": "Kampala"
+ },
+ "Khartoum": {
+ "exemplarCity": "Khartum"
+ },
+ "Kigali": {
+ "exemplarCity": "Kigali"
+ },
+ "Kinshasa": {
+ "exemplarCity": "Kinshasa"
+ },
+ "Lagos": {
+ "exemplarCity": "Lagos"
+ },
+ "Libreville": {
+ "exemplarCity": "Libreville"
+ },
+ "Lome": {
+ "exemplarCity": "Lomé"
+ },
+ "Luanda": {
+ "exemplarCity": "Luanda"
+ },
+ "Lubumbashi": {
+ "exemplarCity": "Lubumbashi"
+ },
+ "Lusaka": {
+ "exemplarCity": "Lusaka"
+ },
+ "Malabo": {
+ "exemplarCity": "Malabo"
+ },
+ "Maputo": {
+ "exemplarCity": "Maputo"
+ },
+ "Maseru": {
+ "exemplarCity": "Maseru"
+ },
+ "Mbabane": {
+ "exemplarCity": "Mbabane"
+ },
+ "Mogadishu": {
+ "exemplarCity": "Mogadischu"
+ },
+ "Monrovia": {
+ "exemplarCity": "Monrovia"
+ },
+ "Nairobi": {
+ "exemplarCity": "Nairobi"
+ },
+ "Ndjamena": {
+ "exemplarCity": "N’Djamena"
+ },
+ "Niamey": {
+ "exemplarCity": "Niamey"
+ },
+ "Nouakchott": {
+ "exemplarCity": "Nouakchott"
+ },
+ "Ouagadougou": {
+ "exemplarCity": "Ouagadougou"
+ },
+ "Porto-Novo": {
+ "exemplarCity": "Porto Novo"
+ },
+ "Sao_Tome": {
+ "exemplarCity": "São Tomé"
+ },
+ "Tripoli": {
+ "exemplarCity": "Tripolis"
+ },
+ "Tunis": {
+ "exemplarCity": "Tunis"
+ },
+ "Windhoek": {
+ "exemplarCity": "Windhoek"
+ }
+ },
+ "Asia": {
+ "Aden": {
+ "exemplarCity": "Aden"
+ },
+ "Almaty": {
+ "exemplarCity": "Almaty"
+ },
+ "Amman": {
+ "exemplarCity": "Amman"
+ },
+ "Anadyr": {
+ "exemplarCity": "Anadyr"
+ },
+ "Aqtau": {
+ "exemplarCity": "Aqtau"
+ },
+ "Aqtobe": {
+ "exemplarCity": "Aktobe"
+ },
+ "Ashgabat": {
+ "exemplarCity": "Aşgabat"
+ },
+ "Baghdad": {
+ "exemplarCity": "Bagdad"
+ },
+ "Bahrain": {
+ "exemplarCity": "Bahrain"
+ },
+ "Baku": {
+ "exemplarCity": "Baku"
+ },
+ "Bangkok": {
+ "exemplarCity": "Bangkok"
+ },
+ "Barnaul": {
+ "exemplarCity": "Barnaul"
+ },
+ "Beirut": {
+ "exemplarCity": "Beirut"
+ },
+ "Bishkek": {
+ "exemplarCity": "Bischkek"
+ },
+ "Brunei": {
+ "exemplarCity": "Brunei"
+ },
+ "Calcutta": {
+ "exemplarCity": "Kalkutta"
+ },
+ "Chita": {
+ "exemplarCity": "Tschita"
+ },
+ "Choibalsan": {
+ "exemplarCity": "Tschoibalsan"
+ },
+ "Colombo": {
+ "exemplarCity": "Colombo"
+ },
+ "Damascus": {
+ "exemplarCity": "Damaskus"
+ },
+ "Dhaka": {
+ "exemplarCity": "Dhaka"
+ },
+ "Dili": {
+ "exemplarCity": "Dili"
+ },
+ "Dubai": {
+ "exemplarCity": "Dubai"
+ },
+ "Dushanbe": {
+ "exemplarCity": "Duschanbe"
+ },
+ "Gaza": {
+ "exemplarCity": "Gaza"
+ },
+ "Hebron": {
+ "exemplarCity": "Hebron"
+ },
+ "Hong_Kong": {
+ "exemplarCity": "Hongkong"
+ },
+ "Hovd": {
+ "exemplarCity": "Chowd"
+ },
+ "Irkutsk": {
+ "exemplarCity": "Irkutsk"
+ },
+ "Jakarta": {
+ "exemplarCity": "Jakarta"
+ },
+ "Jayapura": {
+ "exemplarCity": "Jayapura"
+ },
+ "Jerusalem": {
+ "exemplarCity": "Jerusalem"
+ },
+ "Kabul": {
+ "exemplarCity": "Kabul"
+ },
+ "Kamchatka": {
+ "exemplarCity": "Kamtschatka"
+ },
+ "Karachi": {
+ "exemplarCity": "Karatschi"
+ },
+ "Katmandu": {
+ "exemplarCity": "Kathmandu"
+ },
+ "Khandyga": {
+ "exemplarCity": "Chandyga"
+ },
+ "Krasnoyarsk": {
+ "exemplarCity": "Krasnojarsk"
+ },
+ "Kuala_Lumpur": {
+ "exemplarCity": "Kuala Lumpur"
+ },
+ "Kuching": {
+ "exemplarCity": "Kuching"
+ },
+ "Kuwait": {
+ "exemplarCity": "Kuwait"
+ },
+ "Macau": {
+ "exemplarCity": "Macao"
+ },
+ "Magadan": {
+ "exemplarCity": "Magadan"
+ },
+ "Makassar": {
+ "exemplarCity": "Makassar"
+ },
+ "Manila": {
+ "exemplarCity": "Manila"
+ },
+ "Muscat": {
+ "exemplarCity": "Maskat"
+ },
+ "Nicosia": {
+ "exemplarCity": "Nikosia"
+ },
+ "Novokuznetsk": {
+ "exemplarCity": "Nowokuznetsk"
+ },
+ "Novosibirsk": {
+ "exemplarCity": "Nowosibirsk"
+ },
+ "Omsk": {
+ "exemplarCity": "Omsk"
+ },
+ "Oral": {
+ "exemplarCity": "Oral"
+ },
+ "Phnom_Penh": {
+ "exemplarCity": "Phnom Penh"
+ },
+ "Pontianak": {
+ "exemplarCity": "Pontianak"
+ },
+ "Pyongyang": {
+ "exemplarCity": "Pjöngjang"
+ },
+ "Qatar": {
+ "exemplarCity": "Katar"
+ },
+ "Qyzylorda": {
+ "exemplarCity": "Qysylorda"
+ },
+ "Rangoon": {
+ "exemplarCity": "Rangun"
+ },
+ "Riyadh": {
+ "exemplarCity": "Riad"
+ },
+ "Saigon": {
+ "exemplarCity": "Ho-Chi-Minh-Stadt"
+ },
+ "Sakhalin": {
+ "exemplarCity": "Sachalin"
+ },
+ "Samarkand": {
+ "exemplarCity": "Samarkand"
+ },
+ "Seoul": {
+ "exemplarCity": "Seoul"
+ },
+ "Shanghai": {
+ "exemplarCity": "Shanghai"
+ },
+ "Singapore": {
+ "exemplarCity": "Singapur"
+ },
+ "Srednekolymsk": {
+ "exemplarCity": "Srednekolymsk"
+ },
+ "Taipei": {
+ "exemplarCity": "Taipeh"
+ },
+ "Tashkent": {
+ "exemplarCity": "Taschkent"
+ },
+ "Tbilisi": {
+ "exemplarCity": "Tiflis"
+ },
+ "Tehran": {
+ "exemplarCity": "Teheran"
+ },
+ "Thimphu": {
+ "exemplarCity": "Thimphu"
+ },
+ "Tokyo": {
+ "exemplarCity": "Tokio"
+ },
+ "Tomsk": {
+ "exemplarCity": "Tomsk"
+ },
+ "Ulaanbaatar": {
+ "exemplarCity": "Ulaanbaatar"
+ },
+ "Urumqi": {
+ "exemplarCity": "Ürümqi"
+ },
+ "Ust-Nera": {
+ "exemplarCity": "Ust-Nera"
+ },
+ "Vientiane": {
+ "exemplarCity": "Vientiane"
+ },
+ "Vladivostok": {
+ "exemplarCity": "Wladiwostok"
+ },
+ "Yakutsk": {
+ "exemplarCity": "Jakutsk"
+ },
+ "Yekaterinburg": {
+ "exemplarCity": "Jekaterinburg"
+ },
+ "Yerevan": {
+ "exemplarCity": "Eriwan"
+ }
+ },
+ "Indian": {
+ "Antananarivo": {
+ "exemplarCity": "Antananarivo"
+ },
+ "Chagos": {
+ "exemplarCity": "Chagos"
+ },
+ "Christmas": {
+ "exemplarCity": "Weihnachtsinsel"
+ },
+ "Cocos": {
+ "exemplarCity": "Cocos"
+ },
+ "Comoro": {
+ "exemplarCity": "Komoren"
+ },
+ "Kerguelen": {
+ "exemplarCity": "Kerguelen"
+ },
+ "Mahe": {
+ "exemplarCity": "Mahe"
+ },
+ "Maldives": {
+ "exemplarCity": "Malediven"
+ },
+ "Mauritius": {
+ "exemplarCity": "Mauritius"
+ },
+ "Mayotte": {
+ "exemplarCity": "Mayotte"
+ },
+ "Reunion": {
+ "exemplarCity": "Réunion"
+ }
+ },
+ "Australia": {
+ "Adelaide": {
+ "exemplarCity": "Adelaide"
+ },
+ "Brisbane": {
+ "exemplarCity": "Brisbane"
+ },
+ "Broken_Hill": {
+ "exemplarCity": "Broken Hill"
+ },
+ "Currie": {
+ "exemplarCity": "Currie"
+ },
+ "Darwin": {
+ "exemplarCity": "Darwin"
+ },
+ "Eucla": {
+ "exemplarCity": "Eucla"
+ },
+ "Hobart": {
+ "exemplarCity": "Hobart"
+ },
+ "Lindeman": {
+ "exemplarCity": "Lindeman"
+ },
+ "Lord_Howe": {
+ "exemplarCity": "Lord Howe"
+ },
+ "Melbourne": {
+ "exemplarCity": "Melbourne"
+ },
+ "Perth": {
+ "exemplarCity": "Perth"
+ },
+ "Sydney": {
+ "exemplarCity": "Sydney"
+ }
+ },
+ "Pacific": {
+ "Apia": {
+ "exemplarCity": "Apia"
+ },
+ "Auckland": {
+ "exemplarCity": "Auckland"
+ },
+ "Bougainville": {
+ "exemplarCity": "Bougainville"
+ },
+ "Chatham": {
+ "exemplarCity": "Chatham"
+ },
+ "Easter": {
+ "exemplarCity": "Osterinsel"
+ },
+ "Efate": {
+ "exemplarCity": "Efate"
+ },
+ "Enderbury": {
+ "exemplarCity": "Enderbury"
+ },
+ "Fakaofo": {
+ "exemplarCity": "Fakaofo"
+ },
+ "Fiji": {
+ "exemplarCity": "Fidschi"
+ },
+ "Funafuti": {
+ "exemplarCity": "Funafuti"
+ },
+ "Galapagos": {
+ "exemplarCity": "Galapagos"
+ },
+ "Gambier": {
+ "exemplarCity": "Gambier"
+ },
+ "Guadalcanal": {
+ "exemplarCity": "Guadalcanal"
+ },
+ "Guam": {
+ "exemplarCity": "Guam"
+ },
+ "Honolulu": {
+ "exemplarCity": "Honolulu"
+ },
+ "Johnston": {
+ "exemplarCity": "Johnston"
+ },
+ "Kiritimati": {
+ "exemplarCity": "Kiritimati"
+ },
+ "Kosrae": {
+ "exemplarCity": "Kosrae"
+ },
+ "Kwajalein": {
+ "exemplarCity": "Kwajalein"
+ },
+ "Majuro": {
+ "exemplarCity": "Majuro"
+ },
+ "Marquesas": {
+ "exemplarCity": "Marquesas"
+ },
+ "Midway": {
+ "exemplarCity": "Midway"
+ },
+ "Nauru": {
+ "exemplarCity": "Nauru"
+ },
+ "Niue": {
+ "exemplarCity": "Niue"
+ },
+ "Norfolk": {
+ "exemplarCity": "Norfolk"
+ },
+ "Noumea": {
+ "exemplarCity": "Noumea"
+ },
+ "Pago_Pago": {
+ "exemplarCity": "Pago Pago"
+ },
+ "Palau": {
+ "exemplarCity": "Palau"
+ },
+ "Pitcairn": {
+ "exemplarCity": "Pitcairn"
+ },
+ "Ponape": {
+ "exemplarCity": "Pohnpei"
+ },
+ "Port_Moresby": {
+ "exemplarCity": "Port Moresby"
+ },
+ "Rarotonga": {
+ "exemplarCity": "Rarotonga"
+ },
+ "Saipan": {
+ "exemplarCity": "Saipan"
+ },
+ "Tahiti": {
+ "exemplarCity": "Tahiti"
+ },
+ "Tarawa": {
+ "exemplarCity": "Tarawa"
+ },
+ "Tongatapu": {
+ "exemplarCity": "Tongatapu"
+ },
+ "Truk": {
+ "exemplarCity": "Chuuk"
+ },
+ "Wake": {
+ "exemplarCity": "Wake"
+ },
+ "Wallis": {
+ "exemplarCity": "Wallis"
+ }
+ },
+ "Arctic": {
+ "Longyearbyen": {
+ "exemplarCity": "Longyearbyen"
+ }
+ },
+ "Antarctica": {
+ "Casey": {
+ "exemplarCity": "Casey"
+ },
+ "Davis": {
+ "exemplarCity": "Davis"
+ },
+ "DumontDUrville": {
+ "exemplarCity": "Dumont d’Urville"
+ },
+ "Macquarie": {
+ "exemplarCity": "Macquarie"
+ },
+ "Mawson": {
+ "exemplarCity": "Mawson"
+ },
+ "McMurdo": {
+ "exemplarCity": "McMurdo"
+ },
+ "Palmer": {
+ "exemplarCity": "Palmer"
+ },
+ "Rothera": {
+ "exemplarCity": "Rothera"
+ },
+ "Syowa": {
+ "exemplarCity": "Syowa"
+ },
+ "Troll": {
+ "exemplarCity": "Troll"
+ },
+ "Vostok": {
+ "exemplarCity": "Wostok"
+ }
+ },
+ "Etc": {
+ "GMT": {
+ "exemplarCity": "GMT"
+ },
+ "GMT1": {
+ "exemplarCity": "GMT+1"
+ },
+ "GMT10": {
+ "exemplarCity": "GMT+10"
+ },
+ "GMT11": {
+ "exemplarCity": "GMT+11"
+ },
+ "GMT12": {
+ "exemplarCity": "GMT+12"
+ },
+ "GMT2": {
+ "exemplarCity": "GMT+2"
+ },
+ "GMT3": {
+ "exemplarCity": "GMT+3"
+ },
+ "GMT4": {
+ "exemplarCity": "GMT+4"
+ },
+ "GMT5": {
+ "exemplarCity": "GMT+5"
+ },
+ "GMT6": {
+ "exemplarCity": "GMT+6"
+ },
+ "GMT7": {
+ "exemplarCity": "GMT+7"
+ },
+ "GMT8": {
+ "exemplarCity": "GMT+8"
+ },
+ "GMT9": {
+ "exemplarCity": "GMT+9"
+ },
+ "GMT-1": {
+ "exemplarCity": "GMT-1"
+ },
+ "GMT-10": {
+ "exemplarCity": "GMT-10"
+ },
+ "GMT-11": {
+ "exemplarCity": "GMT-11"
+ },
+ "GMT-12": {
+ "exemplarCity": "GMT-12"
+ },
+ "GMT-13": {
+ "exemplarCity": "GMT-13"
+ },
+ "GMT-14": {
+ "exemplarCity": "GMT-14"
+ },
+ "GMT-2": {
+ "exemplarCity": "GMT-2"
+ },
+ "GMT-3": {
+ "exemplarCity": "GMT-3"
+ },
+ "GMT-4": {
+ "exemplarCity": "GMT-4"
+ },
+ "GMT-5": {
+ "exemplarCity": "GMT-5"
+ },
+ "GMT-6": {
+ "exemplarCity": "GMT-6"
+ },
+ "GMT-7": {
+ "exemplarCity": "GMT-7"
+ },
+ "GMT-8": {
+ "exemplarCity": "GMT-8"
+ },
+ "GMT-9": {
+ "exemplarCity": "GMT-9"
+ },
+ "Unknown": {
+ "exemplarCity": "Unbekannt"
+ }
+ }
+ },
+ "metazone": {
+ "Acre": {
+ "long": {
+ "generic": "Acre-Zeit",
+ "standard": "Acre-Normalzeit",
+ "daylight": "Acre-Sommerzeit"
+ }
+ },
+ "Afghanistan": {
+ "long": {
+ "standard": "Afghanistan-Zeit"
+ }
+ },
+ "Africa_Central": {
+ "long": {
+ "standard": "Zentralafrikanische Zeit"
+ }
+ },
+ "Africa_Eastern": {
+ "long": {
+ "standard": "Ostafrikanische Zeit"
+ }
+ },
+ "Africa_Southern": {
+ "long": {
+ "standard": "Südafrikanische Zeit"
+ }
+ },
+ "Africa_Western": {
+ "long": {
+ "generic": "Westafrikanische Zeit",
+ "standard": "Westafrikanische Normalzeit",
+ "daylight": "Westafrikanische Sommerzeit"
+ }
+ },
+ "Alaska": {
+ "long": {
+ "generic": "Alaska-Zeit",
+ "standard": "Alaska-Normalzeit",
+ "daylight": "Alaska-Sommerzeit"
+ }
+ },
+ "Almaty": {
+ "long": {
+ "generic": "Almaty-Zeit",
+ "standard": "Almaty-Normalzeit",
+ "daylight": "Almaty-Sommerzeit"
+ }
+ },
+ "Amazon": {
+ "long": {
+ "generic": "Amazonas-Zeit",
+ "standard": "Amazonas-Normalzeit",
+ "daylight": "Amazonas-Sommerzeit"
+ }
+ },
+ "America_Central": {
+ "long": {
+ "generic": "Nordamerikanische Inlandzeit",
+ "standard": "Nordamerikanische Inland-Normalzeit",
+ "daylight": "Nordamerikanische Inland-Sommerzeit"
+ }
+ },
+ "America_Eastern": {
+ "long": {
+ "generic": "Nordamerikanische Ostküstenzeit",
+ "standard": "Nordamerikanische Ostküsten-Normalzeit",
+ "daylight": "Nordamerikanische Ostküsten-Sommerzeit"
+ }
+ },
+ "America_Mountain": {
+ "long": {
+ "generic": "Rocky-Mountain-Zeit",
+ "standard": "Rocky Mountain-Normalzeit",
+ "daylight": "Rocky-Mountain-Sommerzeit"
+ }
+ },
+ "America_Pacific": {
+ "long": {
+ "generic": "Nordamerikanische Westküstenzeit",
+ "standard": "Nordamerikanische Westküsten-Normalzeit",
+ "daylight": "Nordamerikanische Westküsten-Sommerzeit"
+ }
+ },
+ "Anadyr": {
+ "long": {
+ "generic": "Anadyr Zeit",
+ "standard": "Anadyr Normalzeit",
+ "daylight": "Anadyr Sommerzeit"
+ }
+ },
+ "Apia": {
+ "long": {
+ "generic": "Apia-Zeit",
+ "standard": "Apia-Normalzeit",
+ "daylight": "Apia-Sommerzeit"
+ }
+ },
+ "Aqtau": {
+ "long": {
+ "generic": "Aqtau-Zeit",
+ "standard": "Aqtau-Normalzeit",
+ "daylight": "Aqtau-Sommerzeit"
+ }
+ },
+ "Aqtobe": {
+ "long": {
+ "generic": "Aqtöbe-Zeit",
+ "standard": "Aqtöbe-Normalzeit",
+ "daylight": "Aqtöbe-Sommerzeit"
+ }
+ },
+ "Arabian": {
+ "long": {
+ "generic": "Arabische Zeit",
+ "standard": "Arabische Normalzeit",
+ "daylight": "Arabische Sommerzeit"
+ }
+ },
+ "Argentina": {
+ "long": {
+ "generic": "Argentinische Zeit",
+ "standard": "Argentinische Normalzeit",
+ "daylight": "Argentinische Sommerzeit"
+ }
+ },
+ "Argentina_Western": {
+ "long": {
+ "generic": "Westargentinische Zeit",
+ "standard": "Westargentinische Normalzeit",
+ "daylight": "Westargentinische Sommerzeit"
+ }
+ },
+ "Armenia": {
+ "long": {
+ "generic": "Armenische Zeit",
+ "standard": "Armenische Normalzeit",
+ "daylight": "Armenische Sommerzeit"
+ }
+ },
+ "Atlantic": {
+ "long": {
+ "generic": "Atlantik-Zeit",
+ "standard": "Atlantik-Normalzeit",
+ "daylight": "Atlantik-Sommerzeit"
+ }
+ },
+ "Australia_Central": {
+ "long": {
+ "generic": "Zentralaustralische Zeit",
+ "standard": "Zentralaustralische Normalzeit",
+ "daylight": "Zentralaustralische Sommerzeit"
+ }
+ },
+ "Australia_CentralWestern": {
+ "long": {
+ "generic": "Zentral-/Westaustralische Zeit",
+ "standard": "Zentral-/Westaustralische Normalzeit",
+ "daylight": "Zentral-/Westaustralische Sommerzeit"
+ }
+ },
+ "Australia_Eastern": {
+ "long": {
+ "generic": "Ostaustralische Zeit",
+ "standard": "Ostaustralische Normalzeit",
+ "daylight": "Ostaustralische Sommerzeit"
+ }
+ },
+ "Australia_Western": {
+ "long": {
+ "generic": "Westaustralische Zeit",
+ "standard": "Westaustralische Normalzeit",
+ "daylight": "Westaustralische Sommerzeit"
+ }
+ },
+ "Azerbaijan": {
+ "long": {
+ "generic": "Aserbaidschanische Zeit",
+ "standard": "Aserbeidschanische Normalzeit",
+ "daylight": "Aserbaidschanische Sommerzeit"
+ }
+ },
+ "Azores": {
+ "long": {
+ "generic": "Azoren-Zeit",
+ "standard": "Azoren-Normalzeit",
+ "daylight": "Azoren-Sommerzeit"
+ }
+ },
+ "Bangladesh": {
+ "long": {
+ "generic": "Bangladesch-Zeit",
+ "standard": "Bangladesch-Normalzeit",
+ "daylight": "Bangladesch-Sommerzeit"
+ }
+ },
+ "Bhutan": {
+ "long": {
+ "standard": "Bhutan-Zeit"
+ }
+ },
+ "Bolivia": {
+ "long": {
+ "standard": "Bolivianische Zeit"
+ }
+ },
+ "Brasilia": {
+ "long": {
+ "generic": "Brasília-Zeit",
+ "standard": "Brasília-Normalzeit",
+ "daylight": "Brasília-Sommerzeit"
+ }
+ },
+ "Brunei": {
+ "long": {
+ "standard": "Brunei-Zeit"
+ }
+ },
+ "Cape_Verde": {
+ "long": {
+ "generic": "Cabo-Verde-Zeit",
+ "standard": "Cabo-Verde-Normalzeit",
+ "daylight": "Cabo-Verde-Sommerzeit"
+ }
+ },
+ "Casey": {
+ "long": {
+ "standard": "Casey-Zeit"
+ }
+ },
+ "Chamorro": {
+ "long": {
+ "standard": "Chamorro-Zeit"
+ }
+ },
+ "Chatham": {
+ "long": {
+ "generic": "Chatham-Zeit",
+ "standard": "Chatham-Normalzeit",
+ "daylight": "Chatham-Sommerzeit"
+ }
+ },
+ "Chile": {
+ "long": {
+ "generic": "Chilenische Zeit",
+ "standard": "Chilenische Normalzeit",
+ "daylight": "Chilenische Sommerzeit"
+ }
+ },
+ "China": {
+ "long": {
+ "generic": "Chinesische Zeit",
+ "standard": "Chinesische Normalzeit",
+ "daylight": "Chinesische Sommerzeit"
+ }
+ },
+ "Choibalsan": {
+ "long": {
+ "generic": "Tschoibalsan-Zeit",
+ "standard": "Tschoibalsan-Normalzeit",
+ "daylight": "Tschoibalsan-Sommerzeit"
+ }
+ },
+ "Christmas": {
+ "long": {
+ "standard": "Weihnachtsinsel-Zeit"
+ }
+ },
+ "Cocos": {
+ "long": {
+ "standard": "Kokosinseln-Zeit"
+ }
+ },
+ "Colombia": {
+ "long": {
+ "generic": "Kolumbianische Zeit",
+ "standard": "Kolumbianische Normalzeit",
+ "daylight": "Kolumbianische Sommerzeit"
+ }
+ },
+ "Cook": {
+ "long": {
+ "generic": "Cookinseln-Zeit",
+ "standard": "Cookinseln-Normalzeit",
+ "daylight": "Cookinseln-Sommerzeit"
+ }
+ },
+ "Cuba": {
+ "long": {
+ "generic": "Kubanische Zeit",
+ "standard": "Kubanische Normalzeit",
+ "daylight": "Kubanische Sommerzeit"
+ }
+ },
+ "Davis": {
+ "long": {
+ "standard": "Davis-Zeit"
+ }
+ },
+ "DumontDUrville": {
+ "long": {
+ "standard": "Dumont-d’Urville-Zeit"
+ }
+ },
+ "East_Timor": {
+ "long": {
+ "standard": "Osttimor-Zeit"
+ }
+ },
+ "Easter": {
+ "long": {
+ "generic": "Osterinsel-Zeit",
+ "standard": "Osterinsel-Normalzeit",
+ "daylight": "Osterinsel-Sommerzeit"
+ }
+ },
+ "Ecuador": {
+ "long": {
+ "standard": "Ecuadorianische Zeit"
+ }
+ },
+ "Europe_Central": {
+ "long": {
+ "generic": "Mitteleuropäische Zeit",
+ "standard": "Mitteleuropäische Normalzeit",
+ "daylight": "Mitteleuropäische Sommerzeit"
+ },
+ "short": {
+ "generic": "MEZ",
+ "standard": "MEZ",
+ "daylight": "MESZ"
+ }
+ },
+ "Europe_Eastern": {
+ "long": {
+ "generic": "Osteuropäische Zeit",
+ "standard": "Osteuropäische Normalzeit",
+ "daylight": "Osteuropäische Sommerzeit"
+ },
+ "short": {
+ "generic": "OEZ",
+ "standard": "OEZ",
+ "daylight": "OESZ"
+ }
+ },
+ "Europe_Further_Eastern": {
+ "long": {
+ "standard": "Kaliningrader Zeit"
+ }
+ },
+ "Europe_Western": {
+ "long": {
+ "generic": "Westeuropäische Zeit",
+ "standard": "Westeuropäische Normalzeit",
+ "daylight": "Westeuropäische Sommerzeit"
+ },
+ "short": {
+ "generic": "WEZ",
+ "standard": "WEZ",
+ "daylight": "WESZ"
+ }
+ },
+ "Falkland": {
+ "long": {
+ "generic": "Falklandinseln-Zeit",
+ "standard": "Falklandinseln-Normalzeit",
+ "daylight": "Falklandinseln-Sommerzeit"
+ }
+ },
+ "Fiji": {
+ "long": {
+ "generic": "Fidschi-Zeit",
+ "standard": "Fidschi-Normalzeit",
+ "daylight": "Fidschi-Sommerzeit"
+ }
+ },
+ "French_Guiana": {
+ "long": {
+ "standard": "Französisch-Guayana-Zeit"
+ }
+ },
+ "French_Southern": {
+ "long": {
+ "standard": "Französische Süd- und Antarktisgebiete-Zeit"
+ }
+ },
+ "Galapagos": {
+ "long": {
+ "standard": "Galapagos-Zeit"
+ }
+ },
+ "Gambier": {
+ "long": {
+ "standard": "Gambier-Zeit"
+ }
+ },
+ "Georgia": {
+ "long": {
+ "generic": "Georgische Zeit",
+ "standard": "Georgische Normalzeit",
+ "daylight": "Georgische Sommerzeit"
+ }
+ },
+ "Gilbert_Islands": {
+ "long": {
+ "standard": "Gilbert-Inseln-Zeit"
+ }
+ },
+ "GMT": {
+ "long": {
+ "standard": "Mittlere Greenwich-Zeit"
+ }
+ },
+ "Greenland_Eastern": {
+ "long": {
+ "generic": "Ostgrönland-Zeit",
+ "standard": "Ostgrönland-Normalzeit",
+ "daylight": "Ostgrönland-Sommerzeit"
+ }
+ },
+ "Greenland_Western": {
+ "long": {
+ "generic": "Westgrönland-Zeit",
+ "standard": "Westgrönland-Normalzeit",
+ "daylight": "Westgrönland-Sommerzeit"
+ }
+ },
+ "Guam": {
+ "long": {
+ "standard": "Guam-Zeit"
+ }
+ },
+ "Gulf": {
+ "long": {
+ "standard": "Golf-Zeit"
+ }
+ },
+ "Guyana": {
+ "long": {
+ "standard": "Guyana-Zeit"
+ }
+ },
+ "Hawaii_Aleutian": {
+ "long": {
+ "generic": "Hawaii-Aleuten-Zeit",
+ "standard": "Hawaii-Aleuten-Normalzeit",
+ "daylight": "Hawaii-Aleuten-Sommerzeit"
+ }
+ },
+ "Hong_Kong": {
+ "long": {
+ "generic": "Hongkong-Zeit",
+ "standard": "Hongkong-Normalzeit",
+ "daylight": "Hongkong-Sommerzeit"
+ }
+ },
+ "Hovd": {
+ "long": {
+ "generic": "Chowd-Zeit",
+ "standard": "Chowd-Normalzeit",
+ "daylight": "Chowd-Sommerzeit"
+ }
+ },
+ "India": {
+ "long": {
+ "standard": "Indische Zeit"
+ }
+ },
+ "Indian_Ocean": {
+ "long": {
+ "standard": "Indischer Ozean-Zeit"
+ }
+ },
+ "Indochina": {
+ "long": {
+ "standard": "Indochina-Zeit"
+ }
+ },
+ "Indonesia_Central": {
+ "long": {
+ "standard": "Zentralindonesische Zeit"
+ }
+ },
+ "Indonesia_Eastern": {
+ "long": {
+ "standard": "Ostindonesische Zeit"
+ }
+ },
+ "Indonesia_Western": {
+ "long": {
+ "standard": "Westindonesische Zeit"
+ }
+ },
+ "Iran": {
+ "long": {
+ "generic": "Iranische Zeit",
+ "standard": "Iranische Normalzeit",
+ "daylight": "Iranische Sommerzeit"
+ }
+ },
+ "Irkutsk": {
+ "long": {
+ "generic": "Irkutsk-Zeit",
+ "standard": "Irkutsk-Normalzeit",
+ "daylight": "Irkutsk-Sommerzeit"
+ }
+ },
+ "Israel": {
+ "long": {
+ "generic": "Israelische Zeit",
+ "standard": "Israelische Normalzeit",
+ "daylight": "Israelische Sommerzeit"
+ }
+ },
+ "Japan": {
+ "long": {
+ "generic": "Japanische Zeit",
+ "standard": "Japanische Normalzeit",
+ "daylight": "Japanische Sommerzeit"
+ }
+ },
+ "Kamchatka": {
+ "long": {
+ "generic": "Kamtschatka-Zeit",
+ "standard": "Kamtschatka-Normalzeit",
+ "daylight": "Kamtschatka-Sommerzeit"
+ }
+ },
+ "Kazakhstan_Eastern": {
+ "long": {
+ "standard": "Ostkasachische Zeit"
+ }
+ },
+ "Kazakhstan_Western": {
+ "long": {
+ "standard": "Westkasachische Zeit"
+ }
+ },
+ "Korea": {
+ "long": {
+ "generic": "Koreanische Zeit",
+ "standard": "Koreanische Normalzeit",
+ "daylight": "Koreanische Sommerzeit"
+ }
+ },
+ "Kosrae": {
+ "long": {
+ "standard": "Kosrae-Zeit"
+ }
+ },
+ "Krasnoyarsk": {
+ "long": {
+ "generic": "Krasnojarsk-Zeit",
+ "standard": "Krasnojarsk-Normalzeit",
+ "daylight": "Krasnojarsk-Sommerzeit"
+ }
+ },
+ "Kyrgystan": {
+ "long": {
+ "standard": "Kirgisistan-Zeit"
+ }
+ },
+ "Lanka": {
+ "long": {
+ "standard": "Sri-Lanka-Zeit"
+ }
+ },
+ "Line_Islands": {
+ "long": {
+ "standard": "Linieninseln-Zeit"
+ }
+ },
+ "Lord_Howe": {
+ "long": {
+ "generic": "Lord-Howe-Zeit",
+ "standard": "Lord-Howe-Normalzeit",
+ "daylight": "Lord-Howe-Sommerzeit"
+ }
+ },
+ "Macau": {
+ "long": {
+ "generic": "Macau-Zeit",
+ "standard": "Macau-Normalzeit",
+ "daylight": "Macau-Sommerzeit"
+ }
+ },
+ "Macquarie": {
+ "long": {
+ "standard": "Macquarieinsel-Zeit"
+ }
+ },
+ "Magadan": {
+ "long": {
+ "generic": "Magadan-Zeit",
+ "standard": "Magadan-Normalzeit",
+ "daylight": "Magadan-Sommerzeit"
+ }
+ },
+ "Malaysia": {
+ "long": {
+ "standard": "Malaysische Zeit"
+ }
+ },
+ "Maldives": {
+ "long": {
+ "standard": "Malediven-Zeit"
+ }
+ },
+ "Marquesas": {
+ "long": {
+ "standard": "Marquesas-Zeit"
+ }
+ },
+ "Marshall_Islands": {
+ "long": {
+ "standard": "Marshallinseln-Zeit"
+ }
+ },
+ "Mauritius": {
+ "long": {
+ "generic": "Mauritius-Zeit",
+ "standard": "Mauritius-Normalzeit",
+ "daylight": "Mauritius-Sommerzeit"
+ }
+ },
+ "Mawson": {
+ "long": {
+ "standard": "Mawson-Zeit"
+ }
+ },
+ "Mexico_Northwest": {
+ "long": {
+ "generic": "Mexiko Nordwestliche Zone-Zeit",
+ "standard": "Mexiko Nordwestliche Zone-Normalzeit",
+ "daylight": "Mexiko Nordwestliche Zone-Sommerzeit"
+ }
+ },
+ "Mexico_Pacific": {
+ "long": {
+ "generic": "Mexiko Pazifikzone-Zeit",
+ "standard": "Mexiko Pazifikzone-Normalzeit",
+ "daylight": "Mexiko Pazifikzone-Sommerzeit"
+ }
+ },
+ "Mongolia": {
+ "long": {
+ "generic": "Ulaanbaatar-Zeit",
+ "standard": "Ulaanbaatar-Normalzeit",
+ "daylight": "Ulaanbaatar-Sommerzeit"
+ }
+ },
+ "Moscow": {
+ "long": {
+ "generic": "Moskauer Zeit",
+ "standard": "Moskauer Normalzeit",
+ "daylight": "Moskauer Sommerzeit"
+ }
+ },
+ "Myanmar": {
+ "long": {
+ "standard": "Myanmar-Zeit"
+ }
+ },
+ "Nauru": {
+ "long": {
+ "standard": "Nauru-Zeit"
+ }
+ },
+ "Nepal": {
+ "long": {
+ "standard": "Nepalesische Zeit"
+ }
+ },
+ "New_Caledonia": {
+ "long": {
+ "generic": "Neukaledonische Zeit",
+ "standard": "Neukaledonische Normalzeit",
+ "daylight": "Neukaledonische Sommerzeit"
+ }
+ },
+ "New_Zealand": {
+ "long": {
+ "generic": "Neuseeland-Zeit",
+ "standard": "Neuseeland-Normalzeit",
+ "daylight": "Neuseeland-Sommerzeit"
+ }
+ },
+ "Newfoundland": {
+ "long": {
+ "generic": "Neufundland-Zeit",
+ "standard": "Neufundland-Normalzeit",
+ "daylight": "Neufundland-Sommerzeit"
+ }
+ },
+ "Niue": {
+ "long": {
+ "standard": "Niue-Zeit"
+ }
+ },
+ "Norfolk": {
+ "long": {
+ "standard": "Norfolkinsel-Zeit"
+ }
+ },
+ "Noronha": {
+ "long": {
+ "generic": "Fernando de Noronha-Zeit",
+ "standard": "Fernando de Noronha-Normalzeit",
+ "daylight": "Fernando de Noronha-Sommerzeit"
+ }
+ },
+ "North_Mariana": {
+ "long": {
+ "standard": "Nördliche-Marianen-Zeit"
+ }
+ },
+ "Novosibirsk": {
+ "long": {
+ "generic": "Nowosibirsk-Zeit",
+ "standard": "Nowosibirsk-Normalzeit",
+ "daylight": "Nowosibirsk-Sommerzeit"
+ }
+ },
+ "Omsk": {
+ "long": {
+ "generic": "Omsk-Zeit",
+ "standard": "Omsk-Normalzeit",
+ "daylight": "Omsk-Sommerzeit"
+ }
+ },
+ "Pakistan": {
+ "long": {
+ "generic": "Pakistanische Zeit",
+ "standard": "Pakistanische Normalzeit",
+ "daylight": "Pakistanische Sommerzeit"
+ }
+ },
+ "Palau": {
+ "long": {
+ "standard": "Palau-Zeit"
+ }
+ },
+ "Papua_New_Guinea": {
+ "long": {
+ "standard": "Papua-Neuguinea-Zeit"
+ }
+ },
+ "Paraguay": {
+ "long": {
+ "generic": "Paraguayanische Zeit",
+ "standard": "Paraguayanische Normalzeit",
+ "daylight": "Paraguayanische Sommerzeit"
+ }
+ },
+ "Peru": {
+ "long": {
+ "generic": "Peruanische Zeit",
+ "standard": "Peruanische Normalzeit",
+ "daylight": "Peruanische Sommerzeit"
+ }
+ },
+ "Philippines": {
+ "long": {
+ "generic": "Philippinische Zeit",
+ "standard": "Philippinische Normalzeit",
+ "daylight": "Philippinische Sommerzeit"
+ }
+ },
+ "Phoenix_Islands": {
+ "long": {
+ "standard": "Phoenixinseln-Zeit"
+ }
+ },
+ "Pierre_Miquelon": {
+ "long": {
+ "generic": "Saint-Pierre-und-Miquelon-Zeit",
+ "standard": "Saint-Pierre-und-Miquelon-Normalzeit",
+ "daylight": "Saint-Pierre-und-Miquelon-Sommerzeit"
+ }
+ },
+ "Pitcairn": {
+ "long": {
+ "standard": "Pitcairninseln-Zeit"
+ }
+ },
+ "Ponape": {
+ "long": {
+ "standard": "Ponape-Zeit"
+ }
+ },
+ "Pyongyang": {
+ "long": {
+ "standard": "Pjöngjang-Zeit"
+ }
+ },
+ "Qyzylorda": {
+ "long": {
+ "generic": "Quysylorda-Zeit",
+ "standard": "Quysylorda-Normalzeit",
+ "daylight": "Qysylorda-Sommerzeit"
+ }
+ },
+ "Reunion": {
+ "long": {
+ "standard": "Réunion-Zeit"
+ }
+ },
+ "Rothera": {
+ "long": {
+ "standard": "Rothera-Zeit"
+ }
+ },
+ "Sakhalin": {
+ "long": {
+ "generic": "Sachalin-Zeit",
+ "standard": "Sachalin-Normalzeit",
+ "daylight": "Sachalin-Sommerzeit"
+ }
+ },
+ "Samara": {
+ "long": {
+ "generic": "Samara-Zeit",
+ "standard": "Samara-Normalzeit",
+ "daylight": "Samara-Sommerzeit"
+ }
+ },
+ "Samoa": {
+ "long": {
+ "generic": "Samoa-Zeit",
+ "standard": "Samoa-Normalzeit",
+ "daylight": "Samoa-Sommerzeit"
+ }
+ },
+ "Seychelles": {
+ "long": {
+ "standard": "Seychellen-Zeit"
+ }
+ },
+ "Singapore": {
+ "long": {
+ "standard": "Singapur-Zeit"
+ }
+ },
+ "Solomon": {
+ "long": {
+ "standard": "Salomoninseln-Zeit"
+ }
+ },
+ "South_Georgia": {
+ "long": {
+ "standard": "Südgeorgische Zeit"
+ }
+ },
+ "Suriname": {
+ "long": {
+ "standard": "Suriname-Zeit"
+ }
+ },
+ "Syowa": {
+ "long": {
+ "standard": "Syowa-Zeit"
+ }
+ },
+ "Tahiti": {
+ "long": {
+ "standard": "Tahiti-Zeit"
+ }
+ },
+ "Taipei": {
+ "long": {
+ "generic": "Taipeh-Zeit",
+ "standard": "Taipeh-Normalzeit",
+ "daylight": "Taipeh-Sommerzeit"
+ }
+ },
+ "Tajikistan": {
+ "long": {
+ "standard": "Tadschikistan-Zeit"
+ }
+ },
+ "Tokelau": {
+ "long": {
+ "standard": "Tokelau-Zeit"
+ }
+ },
+ "Tonga": {
+ "long": {
+ "generic": "Tonganische Zeit",
+ "standard": "Tonganische Normalzeit",
+ "daylight": "Tonganische Sommerzeit"
+ }
+ },
+ "Truk": {
+ "long": {
+ "standard": "Chuuk-Zeit"
+ }
+ },
+ "Turkmenistan": {
+ "long": {
+ "generic": "Turkmenistan-Zeit",
+ "standard": "Turkmenistan-Normalzeit",
+ "daylight": "Turkmenistan-Sommerzeit"
+ }
+ },
+ "Tuvalu": {
+ "long": {
+ "standard": "Tuvalu-Zeit"
+ }
+ },
+ "Uruguay": {
+ "long": {
+ "generic": "Uruguayanische Zeit",
+ "standard": "Uruguyanische Normalzeit",
+ "daylight": "Uruguayanische Sommerzeit"
+ }
+ },
+ "Uzbekistan": {
+ "long": {
+ "generic": "Usbekistan-Zeit",
+ "standard": "Usbekistan-Normalzeit",
+ "daylight": "Usbekistan-Sommerzeit"
+ }
+ },
+ "Vanuatu": {
+ "long": {
+ "generic": "Vanuatu-Zeit",
+ "standard": "Vanuatu-Normalzeit",
+ "daylight": "Vanuatu-Sommerzeit"
+ }
+ },
+ "Venezuela": {
+ "long": {
+ "standard": "Venezuela-Zeit"
+ }
+ },
+ "Vladivostok": {
+ "long": {
+ "generic": "Wladiwostok-Zeit",
+ "standard": "Wladiwostok-Normalzeit",
+ "daylight": "Wladiwostok-Sommerzeit"
+ }
+ },
+ "Volgograd": {
+ "long": {
+ "generic": "Wolgograd-Zeit",
+ "standard": "Wolgograd-Normalzeit",
+ "daylight": "Wolgograd-Sommerzeit"
+ }
+ },
+ "Vostok": {
+ "long": {
+ "standard": "Wostok-Zeit"
+ }
+ },
+ "Wake": {
+ "long": {
+ "standard": "Wake-Insel-Zeit"
+ }
+ },
+ "Wallis": {
+ "long": {
+ "standard": "Wallis-und-Futuna-Zeit"
+ }
+ },
+ "Yakutsk": {
+ "long": {
+ "generic": "Jakutsk-Zeit",
+ "standard": "Jakutsk-Normalzeit",
+ "daylight": "Jakutsk-Sommerzeit"
+ }
+ },
+ "Yekaterinburg": {
+ "long": {
+ "generic": "Jekaterinburg-Zeit",
+ "standard": "Jekaterinburg-Normalzeit",
+ "daylight": "Jekaterinburg-Sommerzeit"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/tsconfig.json b/ej2-angular/code-snippet/pivot-grid/save-and-load/tsconfig.json
new file mode 100644
index 0000000000..9fa16d6333
--- /dev/null
+++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/tsconfig.json
@@ -0,0 +1,32 @@
+{
+ "compileOnSave": false,
+ "compilerOptions": {
+ "baseUrl": "./",
+ "outDir": "./dist/out-tsc",
+ "forceConsistentCasingInFileNames": true,
+ "strict": true,
+ "noImplicitOverride": true,
+ "noPropertyAccessFromIndexSignature": true,
+ "noImplicitReturns": true,
+ "noFallthroughCasesInSwitch": true,
+ "sourceMap": true,
+ "declaration": false,
+ "downlevelIteration": true,
+ "experimentalDecorators": true,
+ "moduleResolution": "node",
+ "importHelpers": true,
+ "target": "ES2022",
+ "module": "ES2022",
+ "useDefineForClassFields": false,
+ "lib": [
+ "ES2022",
+ "dom"
+ ]
+ },
+ "angularCompilerOptions": {
+ "enableI18nLegacyMessageIdFormat": false,
+ "strictInjectionParameters": true,
+ "strictInputAccessModifiers": true,
+ "strictTemplates": true
+ }
+}
\ No newline at end of file
diff --git a/ej2-angular/pivotview/getting-started.md b/ej2-angular/pivotview/getting-started.md
index 1758d3af33..bb742fcf1f 100644
--- a/ej2-angular/pivotview/getting-started.md
+++ b/ej2-angular/pivotview/getting-started.md
@@ -31,9 +31,21 @@ Start a new Angular application using below Angular CLI command.
```bash
ng new my-app
+```
+
+This command will prompt you for a few settings for the new project, such as whether to add Angular routing and which stylesheet format to use.
+
+
+
+By default, it will create a CSS-based application.
+
+Next, navigate to the created project folder:
+
+```
cd my-app
```
+
## Dependencies
The following list of dependencies are required to use the pivot table component in your application.
diff --git a/ej2-angular/pivotview/images/Initial-setup.png b/ej2-angular/pivotview/images/Initial-setup.png
new file mode 100644
index 0000000000..fbbf8b0498
Binary files /dev/null and b/ej2-angular/pivotview/images/Initial-setup.png differ
diff --git a/ej2-angular/pivotview/pdf-export.md b/ej2-angular/pivotview/pdf-export.md
index 74ac32ddc7..598e9b71e0 100644
--- a/ej2-angular/pivotview/pdf-export.md
+++ b/ej2-angular/pivotview/pdf-export.md
@@ -508,3 +508,5 @@ The event [`exportComplete`](https://ej2.syncfusion.com/angular/documentation/ap
## See Also
* [Excel Exporting](./excel-export)
+
+* [Pdf Exporting](https://www.syncfusion.com/blogs/post/pdf-exporting-angular-pivot-table)
diff --git a/ej2-angular/pivotview/save-and-load.md b/ej2-angular/pivotview/save-and-load.md
new file mode 100644
index 0000000000..2b52f474d8
--- /dev/null
+++ b/ej2-angular/pivotview/save-and-load.md
@@ -0,0 +1,47 @@
+---
+layout: post
+title: Save and Load Report through the Toolbar in Angular | Syncfusion
+description: Learn how to save and load reports through custom toolbar options in the Syncfusion Angular Pivotview component.
+control: Tool bar
+platform: ej2-angular
+documentation: ug
+domainurl: ##DomainURL##
+---
+
+# Export and import reports as JSON through custom toolbar options
+
+The Syncfusion Pivot Table component allows users to save and restore report settings (also known as [dataSourceSettings](https://ej2.syncfusion.com/angular/documentation/api/pivotview/#datasourcesettings)) through custom toolbar options. This function simplifies report configuration by allowing options to be exported and imported as JSON files.
+
+## Customizing the Toolbar
+
+To enable the export and import functionality, you can customize the Pivot Table's toolbar using the [toolbarTemplate](https://ej2.syncfusion.com/angular/documentation/api/pivotview/#toolbartemplate) property. Here's how you can add **Save** and **Open** buttons to the toolbar:
+
+### Save Button
+
+The **Save** button, which rendered as an anchor element, it allows users to download the current report (also known as [dataSourceSettings](https://ej2.syncfusion.com/angular/documentation/api/pivotview/#datasourcesettings)) as a JSON file. Each time the Pivot Table component is rendered or refreshed, the [dataBound](https://ej2.syncfusion.com/angular/documentation/api/pivotview/#databound) event is triggered. During this event, the current **dataSourceSettings** are serialized into JSON format and set to the **href** attribute of the anchor element. Clicking the **Save** button initiates the download of the current report configuration as a JSON file.
+
+### Open Button
+
+The **Open** button, which rendered as an input file element, it allows users to select a JSON file containing report settings (also known as [dataSourceSettings](https://ej2.syncfusion.com/angular/documentation/api/pivotview/#datasourcesettings)) from their file system. When a file is selected, the [change](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/change_event) event retrieves the report settings from the JSON file and assigns them to the Syncfusion Pivot Table component.
+
+Here is an example demonstrating how to add **Save** and **Open** buttons to the toolbar and handle exporting and importing report configurations in the Syncfusion Pivot Table component:
+
+{% tabs %}
+{% highlight ts tabtitle="app.component.ts" %}
+{% include code-snippet/pivot-grid/save-and-load/src/app.component.ts %}
+{% endhighlight %}
+
+{% highlight ts tabtitle="main.ts" %}
+{% include code-snippet/pivot-grid/save-and-load/src/main.ts %}
+{% endhighlight %}
+{% endtabs %}
+
+{% previewsample "page.domainurl/samples/pivot-grid/save-and-load" %}
+
+ For more information and to access the quick start project, visit: [GitHub Repository](https://github.com/SyncfusionExamples/save-and-load-report-through-the-toolbar-in-angular-pivotview-component)
+
+## See Also
+
+* [Pivotview Toolbar](https://ej2.syncfusion.com/angular/documentation/pivotview/tool-bar#see-also)
+
+* [Toolbar Component](https://ej2.syncfusion.com/angular/documentation/toolbar/getting-started)
\ No newline at end of file