@progress/kendo-cli 1.1.1 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +624 -66
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -389,9 +389,20 @@ class CreatejQueryAdminApp extends scaffolding_1.ProjectTemplate {
|
|
|
389
389
|
}
|
|
390
390
|
else {}
|
|
391
391
|
}
|
|
392
|
+
async getCdnVersion() {
|
|
393
|
+
if (this.options.cdn == undefined) {
|
|
394
|
+
let jsonSchema = await CreatejQueryAdminApp.schema();
|
|
395
|
+
let cdnVersion = jsonSchema.properties.cdn.default;
|
|
396
|
+
return cdnVersion;
|
|
397
|
+
}
|
|
398
|
+
else {
|
|
399
|
+
let cdnVersion = this.options.cdn;
|
|
400
|
+
return cdnVersion;
|
|
401
|
+
}
|
|
402
|
+
}
|
|
392
403
|
async applyKendoTheme(file, content) {
|
|
393
404
|
const filePaths = [`pages/index.html`, `pages/Signin.html`, `pages/Signup.html`];
|
|
394
|
-
const cdnVersion = this.
|
|
405
|
+
const cdnVersion = await this.getCdnVersion();
|
|
395
406
|
const theme = this.options.theme;
|
|
396
407
|
const regex = "https://kendo.cdn.telerik.com/themes/8.0.1/default/default-main.css";
|
|
397
408
|
const replacementRegex = `https://kendo.cdn.telerik.com/themes/${cdnVersion}/${theme}/${theme}-main.css`;
|
|
@@ -17577,7 +17588,7 @@ module.exports = "[\n\t{\n\t\t\"Year\": \"2020\",\n\t\t\"Month\": \"January\",\n
|
|
|
17577
17588
|
\*********************************************************************************************************************************/
|
|
17578
17589
|
/***/ ((module) => {
|
|
17579
17590
|
|
|
17580
|
-
module.exports = "\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.CreatejQueryAdminApp = void 0;\nconst scaffolding_1 = require(\"@telerik/scaffolding\");\nconst fs = require(\"fs/promises\");\nconst path = require(\"path\");\nconst glob_1 = require(\"glob\");\nclass CreatejQueryAdminApp extends scaffolding_1.ProjectTemplate {\n static async schema() {\n if (process.env.WEBPACK_MODE) {\n return require(\"./schema.json\");\n }\n else {\n return JSON.parse((await fs.readFile(path.join(__dirname, \"schema.json\"))).toString());\n }\n }\n async applyKendoTheme(file, content) {\n const filePaths = [`pages/index.html`, `pages/Signin.html`, `pages/Signup.html`];\n const cdnVersion = this.
|
|
17591
|
+
module.exports = "\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.CreatejQueryAdminApp = void 0;\nconst scaffolding_1 = require(\"@telerik/scaffolding\");\nconst fs = require(\"fs/promises\");\nconst path = require(\"path\");\nconst glob_1 = require(\"glob\");\nclass CreatejQueryAdminApp extends scaffolding_1.ProjectTemplate {\n static async schema() {\n if (process.env.WEBPACK_MODE) {\n return require(\"./schema.json\");\n }\n else {\n return JSON.parse((await fs.readFile(path.join(__dirname, \"schema.json\"))).toString());\n }\n }\n async getCdnVersion() {\n if (this.options.cdn == undefined) {\n let jsonSchema = await CreatejQueryAdminApp.schema();\n let cdnVersion = jsonSchema.properties.cdn.default;\n return cdnVersion;\n }\n else {\n let cdnVersion = this.options.cdn;\n return cdnVersion;\n }\n }\n async applyKendoTheme(file, content) {\n const filePaths = [`pages/index.html`, `pages/Signin.html`, `pages/Signup.html`];\n const cdnVersion = await this.getCdnVersion();\n const theme = this.options.theme;\n const regex = \"https://kendo.cdn.telerik.com/themes/8.0.1/default/default-main.css\";\n const replacementRegex = `https://kendo.cdn.telerik.com/themes/${cdnVersion}/${theme}/${theme}-main.css`;\n for (const filePath of filePaths) {\n if (file.includes(filePath)) {\n let updatedContent = content.replace(regex, replacementRegex);\n return updatedContent;\n }\n }\n return content;\n }\n async templateTree(template) {\n if (process.env.WEBPACK_MODE) {\n const textFilesTree = require.context(\"!!raw-loader?esModule=false!../kendo-jquery-admin\", true, /\\.(css|js|html|json|svg|md)$/, \"sync\");\n const binaryFilesTree = require.context(\"!!binary-base64-loader?esModule=false!../kendo-jquery-admin\", true, /\\.(png|jpg)$/, \"sync\");\n const files = [...new Set([\n ...textFilesTree.keys(),\n ...binaryFilesTree.keys(),\n ])]\n .map(f => template + \"/\" + f.substring(\"./\".length))\n .filter(f => f.startsWith(template + \"/\"))\n .map(f => f.substring((template + \"/\").length))\n .filter(f => !f.startsWith(\"index.js\") && !f.startsWith(\"schema.json\"))\n .sort();\n return {\n files,\n async readString(file) {\n const text = textFilesTree(\"./\" + file);\n return text;\n },\n async readBase64(file) {\n let base64Text = binaryFilesTree(\"./\" + file);\n return base64Text;\n }\n };\n }\n else {\n // Shim WebPack context for CLI usage outside WebPack\n const cwd = path.join(__dirname, template);\n const files = await (0, glob_1.glob)(\"**/*.*\", { dot: true, cwd, ignore: [\".DS_Store\"] });\n return {\n files,\n async readString(file) {\n return await fs.readFile(path.join(cwd, file), { encoding: \"utf8\" });\n },\n async readBase64(file) {\n const base64Text = await fs.readFile(path.join(cwd, file), { encoding: \"base64\" });\n return base64Text;\n }\n };\n }\n }\n textFileExtensions = new Set([\".js\", \".css\", \".svg\", \".json\", \".html\", \".md\"]);\n binaryFileExtensions = new Set([\".png\", \".jpg\"]);\n async apply(project) {\n await this.createAppSourceFiles(project);\n }\n /**\n * Process each of the files in the {@link template} and create it in the {@link destination}.\n */\n async applyTemplate(project, template, destination) {\n for (const file of template.files) {\n const ext = path.extname(file);\n if (this.textFileExtensions.has(ext)) {\n await template.readString(file);\n let sourceFile = await project.source(destination, file);\n let fileContent = await template.readString(file);\n let applyTheme = await this.applyKendoTheme(file, fileContent);\n await sourceFile.setContent(applyTheme);\n }\n else if (this.binaryFileExtensions.has(ext)) {\n await project\n .source(destination, file)\n .setBase64Content(await template.readBase64(file));\n }\n else {\n throw new Error(`Couldn't determine if file type '${file}' is text or binary. Extension '${ext}'.`);\n }\n }\n }\n async createAppSourceFiles(project) {\n const template = `kendo-jquery-admin`;\n const templateFiles = await this.templateTree(`${template}`);\n await this.applyTemplate(project, templateFiles, \"\");\n }\n}\nexports.CreatejQueryAdminApp = CreatejQueryAdminApp;\n";
|
|
17581
17592
|
|
|
17582
17593
|
/***/ }),
|
|
17583
17594
|
|
|
@@ -17927,7 +17938,7 @@ module.exports = "export const sampleProducts = [{\n ProductID : 1,\n Prod
|
|
|
17927
17938
|
\*********************************************************************************************************************************/
|
|
17928
17939
|
/***/ ((module) => {
|
|
17929
17940
|
|
|
17930
|
-
module.exports = "\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.CreatejQueryBlankApp = void 0;\nconst scaffolding_1 = require(\"@telerik/scaffolding\");\nconst fs = require(\"fs/promises\");\nconst path = require(\"path\");\nconst glob_1 = require(\"glob\");\nclass CreatejQueryBlankApp extends scaffolding_1.ProjectTemplate {\n static async schema() {\n if (process.env.WEBPACK_MODE) {\n return require(\"./schema.json\");\n }\n else {\n return JSON.parse((await fs.readFile(path.join(__dirname, \"schema.json\"))).toString());\n }\n }\n async applyKendoTheme(file, content) {\n const filePaths = [`pages/index.html`];\n const
|
|
17941
|
+
module.exports = "\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.CreatejQueryBlankApp = void 0;\nconst scaffolding_1 = require(\"@telerik/scaffolding\");\nconst fs = require(\"fs/promises\");\nconst path = require(\"path\");\nconst glob_1 = require(\"glob\");\nclass CreatejQueryBlankApp extends scaffolding_1.ProjectTemplate {\n static async schema() {\n if (process.env.WEBPACK_MODE) {\n return require(\"./schema.json\");\n }\n else {\n return JSON.parse((await fs.readFile(path.join(__dirname, \"schema.json\"))).toString());\n }\n }\n async getCdnVersion() {\n if (this.options.cdn == undefined) {\n let jsonSchema = await CreatejQueryBlankApp.schema();\n let cdnVersion = jsonSchema.properties.cdn.default;\n return cdnVersion;\n }\n else {\n let cdnVersion = this.options.cdn;\n return cdnVersion;\n }\n }\n async applyKendoTheme(file, content) {\n const filePaths = [`pages/index.html`];\n const cdnVersion = await this.getCdnVersion();\n const theme = this.options.theme;\n const regex = \"https://kendo.cdn.telerik.com/themes/8.0.1/default/default-main.css\";\n const replacementRegex = `https://kendo.cdn.telerik.com/themes/${cdnVersion}/${theme}/${theme}-main.css`;\n for (const filePath of filePaths) {\n if (file.includes(filePath)) {\n let updatedContent = content.replace(regex, replacementRegex);\n return updatedContent;\n }\n }\n return content;\n }\n async templateTree(template) {\n if (process.env.WEBPACK_MODE) {\n const textFilesTree = require.context(\"!!raw-loader?esModule=false!../kendo-jquery-blank\", true, /\\.(css|js|html|json|svg|md)$/, \"sync\");\n const binaryFilesTree = require.context(\"!!binary-base64-loader?esModule=false!../kendo-jquery-admin\", true, /\\.(png|jpg)$/, \"sync\");\n const files = [...new Set([\n ...textFilesTree.keys(),\n ...binaryFilesTree.keys(),\n ])]\n .map(f => template + \"/\" + f.substring(\"./\".length))\n .filter(f => f.startsWith(template + \"/\"))\n .map(f => f.substring((template + \"/\").length))\n .filter(f => !f.startsWith(\"index.js\") && !f.startsWith(\"schema.json\"))\n .sort();\n return {\n files,\n async readString(file) {\n console.log(\"===File:\" + file);\n const text = textFilesTree(\"./\" + file);\n return text;\n },\n async readBase64(file) {\n let base64Text = binaryFilesTree(\"./\" + file);\n return base64Text;\n }\n };\n }\n else {\n // Shim WebPack context for CLI usage outside WebPack\n const cwd = path.join(__dirname, template);\n const files = await (0, glob_1.glob)(\"**/*.*\", { dot: true, cwd, ignore: [\".DS_Store\"] });\n return {\n files,\n async readString(file) {\n return await fs.readFile(path.join(cwd, file), { encoding: \"utf8\" });\n },\n async readBase64(file) {\n const base64Text = await fs.readFile(path.join(cwd, file), { encoding: \"base64\" });\n return base64Text;\n }\n };\n }\n }\n textFileExtensions = new Set([\".js\", \".css\", \".svg\", \".json\", \".html\", \".md\"]);\n binaryFileExtensions = new Set([\".png\", \".jpg\"]);\n async apply(project) {\n await this.createAppSourceFiles(project);\n }\n /**\n * Process each of the files in the {@link template} and create it in the {@link destination}.\n */\n async applyTemplate(project, template, destination) {\n for (const file of template.files) {\n const ext = path.extname(file);\n if (this.textFileExtensions.has(ext)) {\n await template.readString(file);\n let sourceFile = await project.source(destination, file);\n let fileContent = await template.readString(file);\n let applyTheme = await this.applyKendoTheme(file, fileContent);\n await sourceFile.setContent(applyTheme);\n }\n else if (this.binaryFileExtensions.has(ext)) {\n await project\n .source(destination, file)\n .setBase64Content(await template.readBase64(file));\n }\n else {\n throw new Error(`Couldn't determine if file type '${file}' is text or binary. Extension '${ext}'.`);\n }\n }\n }\n async createAppSourceFiles(project) {\n const template = `kendo-jquery-blank`;\n const templateFiles = await this.templateTree(`${template}`);\n await this.applyTemplate(project, templateFiles, \"\");\n }\n}\nexports.CreatejQueryBlankApp = CreatejQueryBlankApp;\n";
|
|
17931
17942
|
|
|
17932
17943
|
/***/ }),
|
|
17933
17944
|
|
|
@@ -18067,7 +18078,7 @@ module.exports = "export const sampleProducts = [{\n ProductID : 1,\n Prod
|
|
|
18067
18078
|
\********************************************************************************************************************************************/
|
|
18068
18079
|
/***/ ((module) => {
|
|
18069
18080
|
|
|
18070
|
-
module.exports = "\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.CreatejQueryDashboardLayoutApp = void 0;\nconst scaffolding_1 = require(\"@telerik/scaffolding\");\nconst fs = require(\"fs/promises\");\nconst path = require(\"path\");\nconst glob_1 = require(\"glob\");\nclass CreatejQueryDashboardLayoutApp extends scaffolding_1.ProjectTemplate {\n static async schema() {\n if (process.env.WEBPACK_MODE) {\n return require(\"./schema.json\");\n }\n else {\n return JSON.parse((await fs.readFile(path.join(__dirname, \"schema.json\"))).toString());\n }\n }\n async applyKendoTheme(file, content) {\n const filePaths = [`pages/index.html`];\n const
|
|
18081
|
+
module.exports = "\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.CreatejQueryDashboardLayoutApp = void 0;\nconst scaffolding_1 = require(\"@telerik/scaffolding\");\nconst fs = require(\"fs/promises\");\nconst path = require(\"path\");\nconst glob_1 = require(\"glob\");\nclass CreatejQueryDashboardLayoutApp extends scaffolding_1.ProjectTemplate {\n static async schema() {\n if (process.env.WEBPACK_MODE) {\n return require(\"./schema.json\");\n }\n else {\n return JSON.parse((await fs.readFile(path.join(__dirname, \"schema.json\"))).toString());\n }\n }\n async getCdnVersion() {\n if (this.options.cdn == undefined) {\n let jsonSchema = await CreatejQueryDashboardLayoutApp.schema();\n let cdnVersion = jsonSchema.properties.cdn.default;\n return cdnVersion;\n }\n else {\n let cdnVersion = this.options.cdn;\n return cdnVersion;\n }\n }\n async applyKendoTheme(file, content) {\n const filePaths = [`pages/index.html`];\n const cdnVersion = await this.getCdnVersion();\n const theme = this.options.theme;\n const regex = \"https://kendo.cdn.telerik.com/themes/8.0.1/default/default-main.css\";\n const replacementRegex = `https://kendo.cdn.telerik.com/themes/${cdnVersion}/${theme}/${theme}-main.css`;\n for (const filePath of filePaths) {\n if (file.includes(filePath)) {\n let updatedContent = content.replace(regex, replacementRegex);\n return updatedContent;\n }\n }\n return content;\n }\n async templateTree(template) {\n if (process.env.WEBPACK_MODE) {\n const textFilesTree = require.context(\"!!raw-loader?esModule=false!../kendo-jquery-dashboard-layout\", true, /\\.(css|js|html|json|svg|md)$/, \"sync\");\n const binaryFilesTree = require.context(\"!!binary-base64-loader?esModule=false!../kendo-jquery-admin\", true, /\\.(png|jpg)$/, \"sync\");\n const files = [...new Set([\n ...textFilesTree.keys(),\n ...binaryFilesTree.keys(),\n ])]\n .map(f => template + \"/\" + f.substring(\"./\".length))\n .filter(f => f.startsWith(template + \"/\"))\n .map(f => f.substring((template + \"/\").length))\n .filter(f => !f.startsWith(\"index.js\") && !f.startsWith(\"schema.json\"))\n .sort();\n return {\n files,\n async readString(file) {\n const text = textFilesTree(\"./\" + file);\n return text;\n },\n async readBase64(file) {\n let base64Text = binaryFilesTree(\"./\" + file);\n return base64Text;\n }\n };\n }\n else {\n // Shim WebPack context for CLI usage outside WebPack\n const cwd = path.join(__dirname, template);\n const files = await (0, glob_1.glob)(\"**/*.*\", { dot: true, cwd, ignore: [\".DS_Store\"] });\n return {\n files,\n async readString(file) {\n return await fs.readFile(path.join(cwd, file), { encoding: \"utf8\" });\n },\n async readBase64(file) {\n const base64Text = await fs.readFile(path.join(cwd, file), { encoding: \"base64\" });\n return base64Text;\n }\n };\n }\n }\n textFileExtensions = new Set([\".js\", \".css\", \".svg\", \".json\", \".html\", \".md\"]);\n binaryFileExtensions = new Set([\".png\", \".jpg\"]);\n async apply(project) {\n await this.createAppSourceFiles(project);\n }\n /**\n * Process each of the files in the {@link template} and create it in the {@link destination}.\n */\n async applyTemplate(project, template, destination) {\n for (const file of template.files) {\n const ext = path.extname(file);\n if (this.textFileExtensions.has(ext)) {\n await template.readString(file);\n let sourceFile = await project.source(destination, file);\n let fileContent = await template.readString(file);\n let applyTheme = await this.applyKendoTheme(file, fileContent);\n await sourceFile.setContent(applyTheme);\n }\n else if (this.binaryFileExtensions.has(ext)) {\n await project\n .source(destination, file)\n .setBase64Content(await template.readBase64(file));\n }\n else {\n throw new Error(`Couldn't determine if file type '${file}' is text or binary. Extension '${ext}'.`);\n }\n }\n }\n async createAppSourceFiles(project) {\n const template = `kendo-jquery-dashboard-layout`;\n const templateFiles = await this.templateTree(`${template}`);\n await this.applyTemplate(project, templateFiles, \"\");\n }\n}\nexports.CreatejQueryDashboardLayoutApp = CreatejQueryDashboardLayoutApp;\n";
|
|
18071
18082
|
|
|
18072
18083
|
/***/ }),
|
|
18073
18084
|
|
|
@@ -18237,7 +18248,7 @@ module.exports = "export const sampleProducts = [{\n ProductID : 1,\n Prod
|
|
|
18237
18248
|
\*************************************************************************************************************************************/
|
|
18238
18249
|
/***/ ((module) => {
|
|
18239
18250
|
|
|
18240
|
-
module.exports = "\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.CreatejQueryDashboardApp = void 0;\nconst scaffolding_1 = require(\"@telerik/scaffolding\");\nconst fs = require(\"fs/promises\");\nconst path = require(\"path\");\nconst glob_1 = require(\"glob\");\nclass CreatejQueryDashboardApp extends scaffolding_1.ProjectTemplate {\n static async schema() {\n if (process.env.WEBPACK_MODE) {\n return require(\"./schema.json\");\n }\n else {\n return JSON.parse((await fs.readFile(path.join(__dirname, \"schema.json\"))).toString());\n }\n }\n async applyKendoTheme(file, content) {\n const filePaths = [`pages/index.html`];\n const
|
|
18251
|
+
module.exports = "\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.CreatejQueryDashboardApp = void 0;\nconst scaffolding_1 = require(\"@telerik/scaffolding\");\nconst fs = require(\"fs/promises\");\nconst path = require(\"path\");\nconst glob_1 = require(\"glob\");\nclass CreatejQueryDashboardApp extends scaffolding_1.ProjectTemplate {\n static async schema() {\n if (process.env.WEBPACK_MODE) {\n return require(\"./schema.json\");\n }\n else {\n return JSON.parse((await fs.readFile(path.join(__dirname, \"schema.json\"))).toString());\n }\n }\n async getCdnVersion() {\n if (this.options.cdn == undefined) {\n let jsonSchema = await CreatejQueryDashboardApp.schema();\n let cdnVersion = jsonSchema.properties.cdn.default;\n return cdnVersion;\n }\n else {\n let cdnVersion = this.options.cdn;\n return cdnVersion;\n }\n }\n async applyKendoTheme(file, content) {\n const filePaths = [`pages/index.html`];\n const cdnVersion = await this.getCdnVersion();\n const theme = this.options.theme;\n const regex = \"https://kendo.cdn.telerik.com/themes/8.0.1/default/default-main.css\";\n const replacementRegex = `https://kendo.cdn.telerik.com/themes/${cdnVersion}/${theme}/${theme}-main.css`;\n for (const filePath of filePaths) {\n if (file.includes(filePath)) {\n let updatedContent = content.replace(regex, replacementRegex);\n return updatedContent;\n }\n }\n return content;\n }\n async templateTree(template) {\n if (process.env.WEBPACK_MODE) {\n const textFilesTree = require.context(\"!!raw-loader?esModule=false!../kendo-jquery-dashboard\", true, /\\.(css|js|html|json|svg|md)$/, \"sync\");\n const binaryFilesTree = require.context(\"!!binary-base64-loader?esModule=false!../kendo-jquery-dashboard\", true, /\\.(png|jpg)$/, \"sync\");\n const files = [...new Set([\n ...textFilesTree.keys(),\n ...binaryFilesTree.keys(),\n ])]\n .map(f => template + \"/\" + f.substring(\"./\".length))\n .filter(f => f.startsWith(template + \"/\"))\n .map(f => f.substring((template + \"/\").length))\n .filter(f => !f.startsWith(\"index.js\") && !f.startsWith(\"schema.json\"))\n .sort();\n return {\n files,\n async readString(file) {\n const text = textFilesTree(\"./\" + file);\n return text;\n },\n async readBase64(file) {\n let base64Text = binaryFilesTree(\"./\" + file);\n return base64Text;\n }\n };\n }\n else {\n // Shim WebPack context for CLI usage outside WebPack\n const cwd = path.join(__dirname, template);\n const files = await (0, glob_1.glob)(\"**/*.*\", { dot: true, cwd, ignore: [\".DS_Store\"] });\n return {\n files,\n async readString(file) {\n return await fs.readFile(path.join(cwd, file), { encoding: \"utf8\" });\n },\n async readBase64(file) {\n const base64Text = await fs.readFile(path.join(cwd, file), { encoding: \"base64\" });\n return base64Text;\n }\n };\n }\n }\n textFileExtensions = new Set([\".js\", \".css\", \".svg\", \".json\", \".html\", \".md\"]);\n binaryFileExtensions = new Set([\".png\", \".jpg\"]);\n async apply(project) {\n await this.createAppSourceFiles(project);\n }\n /**\n * Process each of the files in the {@link template} and create it in the {@link destination}.\n */\n async applyTemplate(project, template, destination) {\n for (const file of template.files) {\n const ext = path.extname(file);\n if (this.textFileExtensions.has(ext)) {\n await template.readString(file);\n let sourceFile = await project.source(destination, file);\n let fileContent = await template.readString(file);\n let applyTheme = await this.applyKendoTheme(file, fileContent);\n await sourceFile.setContent(applyTheme);\n }\n else if (this.binaryFileExtensions.has(ext)) {\n await project\n .source(destination, file)\n .setBase64Content(await template.readBase64(file));\n }\n else {\n throw new Error(`Couldn't determine if file type '${file}' is text or binary. Extension '${ext}'.`);\n }\n }\n }\n async createAppSourceFiles(project) {\n const template = `kendo-jquery-dashboard`;\n const templateFiles = await this.templateTree(`${template}`);\n await this.applyTemplate(project, templateFiles, \"\");\n }\n}\nexports.CreatejQueryDashboardApp = CreatejQueryDashboardApp;\n";
|
|
18241
18252
|
|
|
18242
18253
|
/***/ }),
|
|
18243
18254
|
|
|
@@ -18347,7 +18358,7 @@ module.exports = "export const sampleProducts = [{\n ProductID : 1,\n Prod
|
|
|
18347
18358
|
\********************************************************************************************************************************/
|
|
18348
18359
|
/***/ ((module) => {
|
|
18349
18360
|
|
|
18350
|
-
module.exports = "\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.CreatejQueryGridApp = void 0;\nconst scaffolding_1 = require(\"@telerik/scaffolding\");\nconst fs = require(\"fs/promises\");\nconst path = require(\"path\");\nconst glob_1 = require(\"glob\");\nclass CreatejQueryGridApp extends scaffolding_1.ProjectTemplate {\n static async schema() {\n if (process.env.WEBPACK_MODE) {\n return require(\"./schema.json\");\n }\n else {\n return JSON.parse((await fs.readFile(path.join(__dirname, \"schema.json\"))).toString());\n }\n }\n async applyKendoTheme(file, content) {\n const filePaths = [`pages/index.html`];\n const
|
|
18361
|
+
module.exports = "\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.CreatejQueryGridApp = void 0;\nconst scaffolding_1 = require(\"@telerik/scaffolding\");\nconst fs = require(\"fs/promises\");\nconst path = require(\"path\");\nconst glob_1 = require(\"glob\");\nclass CreatejQueryGridApp extends scaffolding_1.ProjectTemplate {\n static async schema() {\n if (process.env.WEBPACK_MODE) {\n return require(\"./schema.json\");\n }\n else {\n return JSON.parse((await fs.readFile(path.join(__dirname, \"schema.json\"))).toString());\n }\n }\n async getCdnVersion() {\n if (this.options.cdn == undefined) {\n let jsonSchema = await CreatejQueryGridApp.schema();\n let cdnVersion = jsonSchema.properties.cdn.default;\n return cdnVersion;\n }\n else {\n let cdnVersion = this.options.cdn;\n return cdnVersion;\n }\n }\n async applyKendoTheme(file, content) {\n const filePaths = [`pages/index.html`];\n const cdnVersion = await this.getCdnVersion();\n const theme = this.options.theme;\n const regex = \"https://kendo.cdn.telerik.com/themes/8.0.1/default/default-main.css\";\n const replacementRegex = `https://kendo.cdn.telerik.com/themes/${cdnVersion}/${theme}/${theme}-main.css`;\n for (const filePath of filePaths) {\n if (file.includes(filePath)) {\n let updatedContent = content.replace(regex, replacementRegex);\n return updatedContent;\n }\n }\n return content;\n }\n async templateTree(template) {\n if (process.env.WEBPACK_MODE) {\n const textFilesTree = require.context(\"!!raw-loader?esModule=false!../kendo-jquery-grid\", true, /\\.(css|js|html|json|svg|md)$/, \"sync\");\n const binaryFilesTree = require.context(\"!!binary-base64-loader?esModule=false!../kendo-jquery-grid\", true, /\\.(png|jpg)$/, \"sync\");\n const files = [...new Set([\n ...textFilesTree.keys(),\n ...binaryFilesTree.keys(),\n ])]\n .map(f => template + \"/\" + f.substring(\"./\".length))\n .filter(f => f.startsWith(template + \"/\"))\n .map(f => f.substring((template + \"/\").length))\n .filter(f => !f.startsWith(\"index.js\") && !f.startsWith(\"schema.json\"))\n .sort();\n return {\n files,\n async readString(file) {\n const text = textFilesTree(\"./\" + file);\n return text;\n },\n async readBase64(file) {\n let base64Text = binaryFilesTree(\"./\" + file);\n return base64Text;\n }\n };\n }\n else {\n // Shim WebPack context for CLI usage outside WebPack\n const cwd = path.join(__dirname, template);\n const files = await (0, glob_1.glob)(\"**/*.*\", { dot: true, cwd, ignore: [\".DS_Store\"] });\n return {\n files,\n async readString(file) {\n return await fs.readFile(path.join(cwd, file), { encoding: \"utf8\" });\n },\n async readBase64(file) {\n const base64Text = await fs.readFile(path.join(cwd, file), { encoding: \"base64\" });\n return base64Text;\n }\n };\n }\n }\n textFileExtensions = new Set([\".js\", \".css\", \".svg\", \".json\", \".html\", \".md\"]);\n binaryFileExtensions = new Set([\".png\", \".jpg\"]);\n async apply(project) {\n await this.createAppSourceFiles(project);\n }\n /**\n * Process each of the files in the {@link template} and create it in the {@link destination}.\n */\n async applyTemplate(project, template, destination) {\n for (const file of template.files) {\n const ext = path.extname(file);\n if (this.textFileExtensions.has(ext)) {\n await template.readString(file);\n let sourceFile = await project.source(destination, file);\n let fileContent = await template.readString(file);\n let applyTheme = await this.applyKendoTheme(file, fileContent);\n await sourceFile.setContent(applyTheme);\n }\n else if (this.binaryFileExtensions.has(ext)) {\n await project\n .source(destination, file)\n .setBase64Content(await template.readBase64(file));\n }\n else {\n throw new Error(`Couldn't determine if file type '${file}' is text or binary. Extension '${ext}'.`);\n }\n }\n }\n async createAppSourceFiles(project) {\n const template = `kendo-jquery-grid`;\n const templateFiles = await this.templateTree(`${template}`);\n await this.applyTemplate(project, templateFiles, \"\");\n }\n}\nexports.CreatejQueryGridApp = CreatejQueryGridApp;\n";
|
|
18351
18362
|
|
|
18352
18363
|
/***/ }),
|
|
18353
18364
|
|
|
@@ -18557,7 +18568,7 @@ module.exports = "export const sampleProducts = [{\n ProductID : 1,\n Prod
|
|
|
18557
18568
|
\************************************************************************************************************************************/
|
|
18558
18569
|
/***/ ((module) => {
|
|
18559
18570
|
|
|
18560
|
-
module.exports = "\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.CreatejQueryStandardApp = void 0;\nconst scaffolding_1 = require(\"@telerik/scaffolding\");\nconst fs = require(\"fs/promises\");\nconst path = require(\"path\");\nconst glob_1 = require(\"glob\");\nclass CreatejQueryStandardApp extends scaffolding_1.ProjectTemplate {\n static async schema() {\n if (process.env.WEBPACK_MODE) {\n return require(\"./schema.json\");\n }\n else {\n return JSON.parse((await fs.readFile(path.join(__dirname, \"schema.json\"))).toString());\n }\n }\n async applyKendoTheme(file, content) {\n const filePaths = [`pages/about.html`, `pages/contact.html`, `pages/index.html`];\n const
|
|
18571
|
+
module.exports = "\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.CreatejQueryStandardApp = void 0;\nconst scaffolding_1 = require(\"@telerik/scaffolding\");\nconst fs = require(\"fs/promises\");\nconst path = require(\"path\");\nconst glob_1 = require(\"glob\");\nclass CreatejQueryStandardApp extends scaffolding_1.ProjectTemplate {\n static async schema() {\n if (process.env.WEBPACK_MODE) {\n return require(\"./schema.json\");\n }\n else {\n return JSON.parse((await fs.readFile(path.join(__dirname, \"schema.json\"))).toString());\n }\n }\n async getCdnVersion() {\n if (this.options.cdn == undefined) {\n let jsonSchema = await CreatejQueryStandardApp.schema();\n let cdnVersion = jsonSchema.properties.cdn.default;\n return cdnVersion;\n }\n else {\n let cdnVersion = this.options.cdn;\n return cdnVersion;\n }\n }\n async applyKendoTheme(file, content) {\n const filePaths = [`pages/about.html`, `pages/contact.html`, `pages/index.html`];\n const cdnVersion = await this.getCdnVersion();\n const theme = this.options.theme;\n const regex = \"https://kendo.cdn.telerik.com/themes/8.0.1/default/default-main.css\";\n const replacementRegex = `https://kendo.cdn.telerik.com/themes/${cdnVersion}/${theme}/${theme}-main.css`;\n const regex2 = \"https://kendo.cdn.telerik.com/themes/8.0.1/default/default-ocean-blue-a11y.css\";\n const replacementRegex2 = `https://kendo.cdn.telerik.com/themes/${cdnVersion}/default/default-ocean-blue-a11y.css`;\n for (const filePath of filePaths) {\n if (file.includes(filePath)) {\n content = content.replace(regex, replacementRegex);\n content = content.replace(regex2, replacementRegex2);\n break;\n }\n }\n return content;\n }\n async templateTree(template) {\n if (process.env.WEBPACK_MODE) {\n const textFilesTree = require.context(\"!!raw-loader?esModule=false!../kendo-jquery-standard\", true, /\\.(css|js|html|json|svg|md)$/, \"sync\");\n const binaryFilesTree = require.context(\"!!binary-base64-loader?esModule=false!../kendo-jquery-admin\", true, /\\.(png|jpg)$/, \"sync\");\n const files = [...new Set([\n ...textFilesTree.keys(),\n ...binaryFilesTree.keys(),\n ])]\n .map(f => template + \"/\" + f.substring(\"./\".length))\n .filter(f => f.startsWith(template + \"/\"))\n .map(f => f.substring((template + \"/\").length))\n .filter(f => !f.startsWith(\"index.js\") && !f.startsWith(\"schema.json\"))\n .sort();\n return {\n files,\n async readString(file) {\n const text = textFilesTree(\"./\" + file);\n return text;\n },\n async readBase64(file) {\n let base64Text = binaryFilesTree(\"./\" + file);\n return base64Text;\n }\n };\n }\n else {\n // Shim WebPack context for CLI usage outside WebPack\n const cwd = path.join(__dirname, template);\n const files = await (0, glob_1.glob)(\"**/*.*\", { dot: true, cwd, ignore: [\".DS_Store\"] });\n return {\n files,\n async readString(file) {\n return await fs.readFile(path.join(cwd, file), { encoding: \"utf8\" });\n },\n async readBase64(file) {\n const base64Text = await fs.readFile(path.join(cwd, file), { encoding: \"base64\" });\n return base64Text;\n }\n };\n }\n }\n textFileExtensions = new Set([\".js\", \".css\", \".svg\", \".json\", \".html\", \".md\"]);\n binaryFileExtensions = new Set([\".png\", \".jpg\"]);\n async apply(project) {\n await this.createAppSourceFiles(project);\n }\n /**\n * Process each of the files in the {@link template} and create it in the {@link destination}.\n */\n async applyTemplate(project, template, destination) {\n for (const file of template.files) {\n const ext = path.extname(file);\n if (this.textFileExtensions.has(ext)) {\n await template.readString(file);\n let sourceFile = await project.source(destination, file);\n let fileContent = await template.readString(file);\n let applyTheme = await this.applyKendoTheme(file, fileContent);\n await sourceFile.setContent(applyTheme);\n }\n else if (this.binaryFileExtensions.has(ext)) {\n await project\n .source(destination, file)\n .setBase64Content(await template.readBase64(file));\n }\n else {\n throw new Error(`Couldn't determine if file type '${file}' is text or binary. Extension '${ext}'.`);\n }\n }\n }\n async createAppSourceFiles(project) {\n const template = `kendo-jquery-standard`;\n const templateFiles = await this.templateTree(`${template}`);\n await this.applyTemplate(project, templateFiles, \"\");\n }\n}\nexports.CreatejQueryStandardApp = CreatejQueryStandardApp;\n";
|
|
18561
18572
|
|
|
18562
18573
|
/***/ }),
|
|
18563
18574
|
|
|
@@ -18927,7 +18938,7 @@ module.exports = "[\n\t{\n\t\t\"orderID\": 10271,\n\t\t\"customerID\": \"SPLIR\"
|
|
|
18927
18938
|
\***********************************************************************************************************************************************************/
|
|
18928
18939
|
/***/ ((module) => {
|
|
18929
18940
|
|
|
18930
|
-
module.exports = "\"use client\"\n\nimport * as React from \"react\";\n\nimport {\n Grid,\n GridColumn,\n GridToolbar,\n GridDetailRowProps,\n GridDataStateChangeEvent,\n GridExpandChangeEvent\n} from \"@progress/kendo-react-grid\";\n\nimport { GridPDFExport } from \"@progress/kendo-react-pdf\";\nimport { ExcelExport } from \"@progress/kendo-react-excel-export\";\n\nimport { DataResult, process, State } from \"@progress/kendo-data-query\";\nimport orders from \"./orders.json\";\nimport { Order } from \"./interfaces\";\nimport { Button } from \"@progress/kendo-react-buttons\";\n\nconst DetailComponent = (props: GridDetailRowProps) => {\n const dataItem = props.dataItem;\n return (\n <div>\n <section style={{ width: \"200px\", float: \"left\" }}>\n <p>\n <strong>Street:</strong> {dataItem.shipAddress.street}\n </p>\n <p>\n <strong>City:</strong> {dataItem.shipAddress.city}\n </p>\n <p>\n <strong>Country:</strong> {dataItem.shipAddress.country}\n </p>\n <p>\n <strong>Postal Code:</strong> {dataItem.shipAddress.postalCode}\n </p>\n </section>\n <Grid style={{ width: \"500px\" }} data={dataItem.details} />\n </div>\n );\n};\n\nexport default function GridNextjs() {\n const [dataState, setDataState] = React.useState<State>({\n skip: 0,\n take: 20,\n sort: [{ field: \"orderDate\", dir: \"desc\" }],\n group: [{ field: \"customerID\" }]\n });\n const [dataResult, setDataResult] = React.useState<DataResult>(\n process(orders, dataState)\n );\n\n const dataStateChange = (event: GridDataStateChangeEvent) => {\n setDataResult(process(orders, event.dataState));\n setDataState(event.dataState);\n };\n\n const expandChange = (event: GridExpandChangeEvent) => {\n const isExpanded =\n event.dataItem.expanded === undefined\n ? event.dataItem.aggregates\n : event.dataItem.expanded;\n event.dataItem.expanded = !isExpanded;\n\n setDataResult({ ...dataResult, data: [...dataResult.data] });\n };\n\n let
|
|
18941
|
+
module.exports = "\"use client\"\n\nimport * as React from \"react\";\n\nimport {\n Grid,\n GridColumn,\n GridToolbar,\n GridDetailRowProps,\n GridDataStateChangeEvent,\n GridExpandChangeEvent\n} from \"@progress/kendo-react-grid\";\n\nimport { GridPDFExport } from \"@progress/kendo-react-pdf\";\nimport { ExcelExport } from \"@progress/kendo-react-excel-export\";\n\nimport { DataResult, process, State } from \"@progress/kendo-data-query\";\nimport orders from \"./orders.json\";\nimport { Order } from \"./interfaces\";\nimport { Button } from \"@progress/kendo-react-buttons\";\n\nconst DetailComponent = (props: GridDetailRowProps) => {\n const dataItem = props.dataItem;\n return (\n <div>\n <section style={{ width: \"200px\", float: \"left\" }}>\n <p>\n <strong>Street:</strong> {dataItem.shipAddress.street}\n </p>\n <p>\n <strong>City:</strong> {dataItem.shipAddress.city}\n </p>\n <p>\n <strong>Country:</strong> {dataItem.shipAddress.country}\n </p>\n <p>\n <strong>Postal Code:</strong> {dataItem.shipAddress.postalCode}\n </p>\n </section>\n <Grid style={{ width: \"500px\" }} data={dataItem.details} />\n </div>\n );\n};\n\nexport default function GridNextjs() {\n const [dataState, setDataState] = React.useState<State>({\n skip: 0,\n take: 20,\n sort: [{ field: \"orderDate\", dir: \"desc\" }],\n group: [{ field: \"customerID\" }]\n });\n const [dataResult, setDataResult] = React.useState<DataResult>(\n process(orders, dataState)\n );\n\n const dataStateChange = (event: GridDataStateChangeEvent) => {\n setDataResult(process(orders, event.dataState));\n setDataState(event.dataState);\n };\n\n const expandChange = (event: GridExpandChangeEvent) => {\n const isExpanded =\n event.dataItem.expanded === undefined\n ? event.dataItem.aggregates\n : event.dataItem.expanded;\n event.dataItem.expanded = !isExpanded;\n\n setDataResult({ ...dataResult, data: [...dataResult.data] });\n };\n\n let _export: ExcelExport | null;\n const exportExcel = () => {\n _export && _export.save();\n };\n \n let _pdfExport: GridPDFExport | null;\n const exportPDF = () => {\n _pdfExport && _pdfExport.save();\n };\n\n return (\n <div>\n <ExcelExport\n data={orders}\n ref={(exporter) => {\n _export = exporter;\n }}\n >\n <Grid\n id=\"test\"\n style={{ height: \"700px\" }}\n sortable={true}\n filterable={true}\n groupable={true}\n reorderable={true}\n pageable={{ buttonCount: 4, pageSizes: true }}\n data={dataResult}\n {...dataState}\n onDataStateChange={dataStateChange}\n detail={DetailComponent}\n expandField=\"expanded\"\n onExpandChange={expandChange}\n >\n <GridToolbar>\n <Button\n title=\"Export to Excel\"\n onClick={exportExcel}\n >\n Export to Excel\n </Button>\n \n <Button\n onClick={exportPDF}\n >\n Export to PDF\n </Button>\n </GridToolbar>\n <GridColumn field=\"customerID\" width=\"200px\" />\n <GridColumn\n field=\"orderDate\"\n filter=\"date\"\n format=\"{0:D}\"\n width=\"300px\"\n />\n <GridColumn field=\"shipName\" width=\"280px\" />\n <GridColumn field=\"freight\" filter=\"numeric\" width=\"200px\" />\n <GridColumn\n field=\"shippedDate\"\n filter=\"date\"\n format=\"{0:D}\"\n width=\"300px\"\n />\n <GridColumn field=\"employeeID\" filter=\"numeric\" width=\"200px\" />\n <GridColumn\n locked={true}\n field=\"orderID\"\n filterable={false}\n title=\"ID\"\n width=\"90px\"\n />\n </Grid>\n </ExcelExport>\n <GridPDFExport\n ref={(element) => {\n _pdfExport = element;\n }}\n margin=\"1cm\"\n >\n {\n <Grid\n data={process(orders, {\n skip: dataState.skip,\n take: dataState.take\n })}\n >\n <GridColumn field=\"customerID\" width=\"200px\" />\n <GridColumn\n field=\"orderDate\"\n filter=\"date\"\n format=\"{0:D}\"\n width=\"300px\"\n />\n <GridColumn field=\"shipName\" width=\"280px\" />\n <GridColumn field=\"freight\" filter=\"numeric\" width=\"200px\" />\n <GridColumn\n field=\"shippedDate\"\n filter=\"date\"\n format=\"{0:D}\"\n width=\"300px\"\n />\n <GridColumn field=\"employeeID\" filter=\"numeric\" width=\"200px\" />\n <GridColumn\n locked={true}\n field=\"orderID\"\n filterable={false}\n title=\"ID\"\n width=\"90px\"\n />\n </Grid>\n }\n </GridPDFExport>\n </div>\n );\n}";
|
|
18931
18942
|
|
|
18932
18943
|
/***/ }),
|
|
18933
18944
|
|
|
@@ -19017,7 +19028,7 @@ module.exports = "<svg width=\"886\" height=\"366\" viewBox=\"0 0 886 366\" fill
|
|
|
19017
19028
|
\**********************************************************************************************************************************************************/
|
|
19018
19029
|
/***/ ((module) => {
|
|
19019
19030
|
|
|
19020
|
-
module.exports = "import * as React from \"react\";\n\nimport {\n Grid,\n GridColumn,\n GridToolbar,\n GridDetailRowProps,\n GridDataStateChangeEvent,\n GridExpandChangeEvent\n} from \"@progress/kendo-react-grid\";\n\nimport { GridPDFExport } from \"@progress/kendo-react-pdf\";\nimport { ExcelExport } from \"@progress/kendo-react-excel-export\";\n\nimport { DataResult, process, State } from \"@progress/kendo-data-query\";\nimport orders from \"./orders.json\";\nimport { Order } from \"./interfaces\";\nimport { Button } from \"@progress/kendo-react-buttons\";\n\nconst DetailComponent = (props: GridDetailRowProps) => {\n const dataItem = props.dataItem;\n return (\n <div>\n <section style={{ width: \"200px\", float: \"left\" }}>\n <p>\n <strong>Street:</strong> {dataItem.shipAddress.street}\n </p>\n <p>\n <strong>City:</strong> {dataItem.shipAddress.city}\n </p>\n <p>\n <strong>Country:</strong> {dataItem.shipAddress.country}\n </p>\n <p>\n <strong>Postal Code:</strong> {dataItem.shipAddress.postalCode}\n </p>\n </section>\n <Grid style={{ width: \"500px\" }} data={dataItem.details} />\n </div>\n );\n};\n\nexport default function GridNextjs() {\n const [dataState, setDataState] = React.useState<State>({\n skip: 0,\n take: 20,\n sort: [{ field: \"orderDate\", dir: \"desc\" }],\n group: [{ field: \"customerID\" }]\n });\n const [dataResult, setDataResult] = React.useState<DataResult>(\n process(orders, dataState)\n );\n\n const dataStateChange = (event: GridDataStateChangeEvent) => {\n setDataResult(process(orders, event.dataState));\n setDataState(event.dataState);\n };\n\n const expandChange = (event: GridExpandChangeEvent) => {\n const isExpanded =\n event.dataItem.expanded === undefined\n ? event.dataItem.aggregates\n : event.dataItem.expanded;\n event.dataItem.expanded = !isExpanded;\n\n setDataResult({ ...dataResult, data: [...dataResult.data] });\n };\n\n let
|
|
19031
|
+
module.exports = "import * as React from \"react\";\n\nimport {\n Grid,\n GridColumn,\n GridToolbar,\n GridDetailRowProps,\n GridDataStateChangeEvent,\n GridExpandChangeEvent\n} from \"@progress/kendo-react-grid\";\n\nimport { GridPDFExport } from \"@progress/kendo-react-pdf\";\nimport { ExcelExport } from \"@progress/kendo-react-excel-export\";\n\nimport { DataResult, process, State } from \"@progress/kendo-data-query\";\nimport orders from \"./orders.json\";\nimport { Order } from \"./interfaces\";\nimport { Button } from \"@progress/kendo-react-buttons\";\n\nconst DetailComponent = (props: GridDetailRowProps) => {\n const dataItem = props.dataItem;\n return (\n <div>\n <section style={{ width: \"200px\", float: \"left\" }}>\n <p>\n <strong>Street:</strong> {dataItem.shipAddress.street}\n </p>\n <p>\n <strong>City:</strong> {dataItem.shipAddress.city}\n </p>\n <p>\n <strong>Country:</strong> {dataItem.shipAddress.country}\n </p>\n <p>\n <strong>Postal Code:</strong> {dataItem.shipAddress.postalCode}\n </p>\n </section>\n <Grid style={{ width: \"500px\" }} data={dataItem.details} />\n </div>\n );\n};\n\nexport default function GridNextjs() {\n const [dataState, setDataState] = React.useState<State>({\n skip: 0,\n take: 20,\n sort: [{ field: \"orderDate\", dir: \"desc\" }],\n group: [{ field: \"customerID\" }]\n });\n const [dataResult, setDataResult] = React.useState<DataResult>(\n process(orders, dataState)\n );\n\n const dataStateChange = (event: GridDataStateChangeEvent) => {\n setDataResult(process(orders, event.dataState));\n setDataState(event.dataState);\n };\n\n const expandChange = (event: GridExpandChangeEvent) => {\n const isExpanded =\n event.dataItem.expanded === undefined\n ? event.dataItem.aggregates\n : event.dataItem.expanded;\n event.dataItem.expanded = !isExpanded;\n\n setDataResult({ ...dataResult, data: [...dataResult.data] });\n };\n\n let _export: ExcelExport | null;\n const exportExcel = () => {\n _export && _export.save();\n };\n \n let _pdfExport: GridPDFExport | null;\n const exportPDF = () => {\n _pdfExport && _pdfExport.save();\n };\n\n return (\n <div>\n <ExcelExport\n data={orders}\n ref={(exporter) => {\n _export = exporter;\n }}\n >\n <Grid\n id=\"test\"\n style={{ height: \"700px\" }}\n sortable={true}\n filterable={true}\n groupable={true}\n reorderable={true}\n pageable={{ buttonCount: 4, pageSizes: true }}\n data={dataResult}\n {...dataState}\n onDataStateChange={dataStateChange}\n detail={DetailComponent}\n expandField=\"expanded\"\n onExpandChange={expandChange}\n >\n <GridToolbar>\n <Button\n title=\"Export to Excel\"\n onClick={exportExcel}\n >\n Export to Excel\n </Button>\n \n <Button\n onClick={exportPDF}\n >\n Export to PDF\n </Button>\n </GridToolbar>\n <GridColumn field=\"customerID\" width=\"200px\" />\n <GridColumn\n field=\"orderDate\"\n filter=\"date\"\n format=\"{0:D}\"\n width=\"300px\"\n />\n <GridColumn field=\"shipName\" width=\"280px\" />\n <GridColumn field=\"freight\" filter=\"numeric\" width=\"200px\" />\n <GridColumn\n field=\"shippedDate\"\n filter=\"date\"\n format=\"{0:D}\"\n width=\"300px\"\n />\n <GridColumn field=\"employeeID\" filter=\"numeric\" width=\"200px\" />\n <GridColumn\n locked={true}\n field=\"orderID\"\n filterable={false}\n title=\"ID\"\n width=\"90px\"\n />\n </Grid>\n </ExcelExport>\n <GridPDFExport\n ref={(element) => {\n _pdfExport = element;\n }}\n margin=\"1cm\"\n >\n {\n <Grid\n data={process(orders, {\n skip: dataState.skip,\n take: dataState.take\n })}\n >\n <GridColumn field=\"customerID\" width=\"200px\" />\n <GridColumn\n field=\"orderDate\"\n filter=\"date\"\n format=\"{0:D}\"\n width=\"300px\"\n />\n <GridColumn field=\"shipName\" width=\"280px\" />\n <GridColumn field=\"freight\" filter=\"numeric\" width=\"200px\" />\n <GridColumn\n field=\"shippedDate\"\n filter=\"date\"\n format=\"{0:D}\"\n width=\"300px\"\n />\n <GridColumn field=\"employeeID\" filter=\"numeric\" width=\"200px\" />\n <GridColumn\n locked={true}\n field=\"orderID\"\n filterable={false}\n title=\"ID\"\n width=\"90px\"\n />\n </Grid>\n }\n </GridPDFExport>\n </div>\n );\n}";
|
|
19021
19032
|
|
|
19022
19033
|
/***/ }),
|
|
19023
19034
|
|
|
@@ -19047,7 +19058,7 @@ module.exports = "[\n\t{\n\t\t\"orderID\": 10271,\n\t\t\"customerID\": \"SPLIR\"
|
|
|
19047
19058
|
\*****************************************************************************************************************************************************/
|
|
19048
19059
|
/***/ ((module) => {
|
|
19049
19060
|
|
|
19050
|
-
module.exports = "import Image from \"next/image\"\n\nimport { Button } from \"@progress/kendo-react-buttons\";\n\nimport { \n Card, \n CardActions,\n CardBody, \n CardHeader, \n CardTitle \n} from \"@progress/kendo-react-layout\";\n\nimport '@progress/kendo-theme-default/dist/all.css';\nimport styles from '@/styles/Home.module.css';\n\nexport default function Home() {\n return (\n <>\n <Head>\n <title>Create Next App</title>\n <meta name=\"description\" content=\"Generated by create next app\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n <link rel=\"icon\" href=\"/favicon.ico\" />\n </Head>\n <main className={`${styles.main}`}>\n <div className={styles.page}>\n <header className={styles.header}>\n <h2>KendoReact ❤️ Next.js</h2>\n <div>\n <Button themeColor=\"primary\" fillMode=\"flat\" className=\"k-mr-1\">Home</Button>\n <Button themeColor=\"primary\" fillMode=\"flat\" onClick={() => window.location.pathname = \"./grid\"}>Grid</Button>\n </div>\n </header>\n <div className={styles.container}>\n <Image\n className={styles.reactLogo}\n src=\"/react.svg\"\n alt=\"React Logo\"\n width={886}\n height={788}\n priority\n />\n <div className=\"k-d-flex k-flex-col\">\n <h1 className={styles.title}>Welcome to KendoReact</h1>\n <h3 className={styles.subtitle}>Comprehensive React UI Component Library</h3>\n <div className=\"k-mt-3\">\n <Button themeColor=\"primary\" className=\"k-mr-2\">\n <a href=\"https://www.telerik.com/kendo-react-ui\" target=\"_blank\">Try KendoReact</a>\n </Button>\n <Button themeColor=\"secondary\" fillMode=\"solid\">\n <a href=\"https://vercel.com/\" target=\"_blank\">More about Next.js</a>\n </Button>\n </div>\n </div>\n </div>\n\n <section className={styles.section}>\n <div className={styles.container}>\n <div className=\"k-pl-8\">\n <h5 className={styles.sectionTitle}>Get started</h5>\n <p>Edit index page at or set up data source at <code>pages/index.jsx</code> or set up data source at <code>kendo/data.json</code></p>\n </div>\n </div>\n </section>\n\n <section className={styles.cardsSection}>\n <div className={styles.cardsWrapper}>\n <h5 className={styles.sectionTitle}>Highlights</h5>\n <div className={styles.cardsContainer}>\n <Card className={styles.card}>\n <CardHeader className={styles.cardHeader}>\n <Image\n src=\"/documentation.svg\"\n alt=\"Documentation Logo\"\n width={64}\n height={64}\n priority\n />\n <CardTitle className={styles.cardTitle}>Documentation</CardTitle>\n </CardHeader>\n <CardBody>\n <p className={styles.cardBody}>\n Unlock the full potential of our features! Check KendoReact Documentation for step-by-step guides and insights.\n </p>\n </CardBody>\n <CardActions>\n <Button themeColor=\"primary\" fillMode=\"flat\">\n <a href=\"https://www.telerik.com/kendo-react-ui/components/\" target=\"_blank\">Learn more</a>\n </Button>\n </CardActions>\n </Card>\n\n <Card className={styles.card}>\n <CardHeader className={styles.cardHeader}>\n <Image\n src=\"/classroom.svg\"\n alt=\"Virtual Classroom Logo\"\n width={64}\n height={64}\n priority\n />\n <CardTitle className={styles.cardTitle}>Virtual Classroom</CardTitle>\n </CardHeader>\n <CardBody>\n <p className={styles.cardBody}>\n Need to quickly get started with KendoReact or just prefer video on-boarding materials we have Virtual Classroom for you.\n </p>\n </CardBody>\n <CardActions>\n <Button themeColor=\"primary\" fillMode=\"flat\">\n <a href=\"https://rb.gy/w21cc8\" target=\"_blank\">Get Started</a>\n </Button>\n </CardActions>\n </Card>\n\n <Card className={styles.card}>\n <CardHeader className={styles.cardHeader}>\n <Image\n src=\"/design.svg\"\n alt=\"Design System Logo\"\n width={64}\n height={64}\n priority\n />\n <CardTitle className={styles.cardTitle}>Design System</CardTitle>\n </CardHeader>\n <CardBody>\n <p className={styles.cardBody}>\n Quickly apply harmonious and consistent styles to the components in your app with the Progress Design System.\n </p>\n </CardBody>\n <CardActions>\n <Button themeColor=\"primary\" fillMode=\"flat\">\n <a href=\"https://www.telerik.com/design-system\" target=\"_blank\">Find your style</a>\n </Button>\n </CardActions>\n </Card>\n\n <Card className={styles.card}>\n <CardHeader className={styles.cardHeader}>\n <Image\n src=\"/license.svg\"\n alt=\"License Logo\"\n width={64}\n height={64}\n priority\n />\n <CardTitle className={styles.cardTitle}>Activate your license</CardTitle>\n </CardHeader>\n <CardBody>\n <ul className={styles.cardBodyList}>\n <li>Flexible Licensing Policy</li>\n <li>Maintenance & Support</li>\n <li>Total Cost of Ownership</li>\n <li>Enterprise-Ready Offerings</li>\n </ul>\n </CardBody>\n <CardActions>\n <Button themeColor=\"primary\" fillMode=\"flat\">\n <a href=\"https://www.telerik.com/purchase.aspx?filter=web#individual-products\" target=\"_blank\">Buy now</a>\n </Button>\n </CardActions>\n </Card>\n </div>\n </div>\n </section>\n\n <footer className={styles.footer}>\n <p>Copyright © 2023 Progress Software. All rights reserved.</p>\n </footer>\n </div>\n </main>\n </>\n )\n}\n";
|
|
19061
|
+
module.exports = "import Head from 'next/head'\nimport Image from \"next/image\"\n\nimport { Button } from \"@progress/kendo-react-buttons\";\n\nimport { \n Card, \n CardActions,\n CardBody, \n CardHeader, \n CardTitle \n} from \"@progress/kendo-react-layout\";\n\nimport '@progress/kendo-theme-default/dist/all.css';\nimport styles from '@/styles/Home.module.css';\n\nexport default function Home() {\n return (\n <>\n <Head>\n <title>Create Next App</title>\n <meta name=\"description\" content=\"Generated by create next app\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n <link rel=\"icon\" href=\"/favicon.ico\" />\n </Head>\n <main className={`${styles.main}`}>\n <div className={styles.page}>\n <header className={styles.header}>\n <h2>KendoReact ❤️ Next.js</h2>\n <div>\n <Button themeColor=\"primary\" fillMode=\"flat\" className=\"k-mr-1\">Home</Button>\n <Button themeColor=\"primary\" fillMode=\"flat\" onClick={() => window.location.pathname = \"./grid\"}>Grid</Button>\n </div>\n </header>\n <div className={styles.container}>\n <Image\n className={styles.reactLogo}\n src=\"/react.svg\"\n alt=\"React Logo\"\n width={886}\n height={788}\n priority\n />\n <div className=\"k-d-flex k-flex-col\">\n <h1 className={styles.title}>Welcome to KendoReact</h1>\n <h3 className={styles.subtitle}>Comprehensive React UI Component Library</h3>\n <div className=\"k-mt-3\">\n <Button themeColor=\"primary\" className=\"k-mr-2\">\n <a href=\"https://www.telerik.com/kendo-react-ui\" target=\"_blank\">Try KendoReact</a>\n </Button>\n <Button themeColor=\"secondary\" fillMode=\"solid\">\n <a href=\"https://vercel.com/\" target=\"_blank\">More about Next.js</a>\n </Button>\n </div>\n </div>\n </div>\n\n <section className={styles.section}>\n <div className={styles.container}>\n <div className=\"k-pl-8\">\n <h5 className={styles.sectionTitle}>Get started</h5>\n <p>Edit index page at or set up data source at <code>pages/index.jsx</code> or set up data source at <code>kendo/data.json</code></p>\n </div>\n </div>\n </section>\n\n <section className={styles.cardsSection}>\n <div className={styles.cardsWrapper}>\n <h5 className={styles.sectionTitle}>Highlights</h5>\n <div className={styles.cardsContainer}>\n <Card className={styles.card}>\n <CardHeader className={styles.cardHeader}>\n <Image\n src=\"/documentation.svg\"\n alt=\"Documentation Logo\"\n width={64}\n height={64}\n priority\n />\n <CardTitle className={styles.cardTitle}>Documentation</CardTitle>\n </CardHeader>\n <CardBody>\n <p className={styles.cardBody}>\n Unlock the full potential of our features! Check KendoReact Documentation for step-by-step guides and insights.\n </p>\n </CardBody>\n <CardActions>\n <Button themeColor=\"primary\" fillMode=\"flat\">\n <a href=\"https://www.telerik.com/kendo-react-ui/components/\" target=\"_blank\">Learn more</a>\n </Button>\n </CardActions>\n </Card>\n\n <Card className={styles.card}>\n <CardHeader className={styles.cardHeader}>\n <Image\n src=\"/classroom.svg\"\n alt=\"Virtual Classroom Logo\"\n width={64}\n height={64}\n priority\n />\n <CardTitle className={styles.cardTitle}>Virtual Classroom</CardTitle>\n </CardHeader>\n <CardBody>\n <p className={styles.cardBody}>\n Need to quickly get started with KendoReact or just prefer video on-boarding materials we have Virtual Classroom for you.\n </p>\n </CardBody>\n <CardActions>\n <Button themeColor=\"primary\" fillMode=\"flat\">\n <a href=\"https://rb.gy/w21cc8\" target=\"_blank\">Get Started</a>\n </Button>\n </CardActions>\n </Card>\n\n <Card className={styles.card}>\n <CardHeader className={styles.cardHeader}>\n <Image\n src=\"/design.svg\"\n alt=\"Design System Logo\"\n width={64}\n height={64}\n priority\n />\n <CardTitle className={styles.cardTitle}>Design System</CardTitle>\n </CardHeader>\n <CardBody>\n <p className={styles.cardBody}>\n Quickly apply harmonious and consistent styles to the components in your app with the Progress Design System.\n </p>\n </CardBody>\n <CardActions>\n <Button themeColor=\"primary\" fillMode=\"flat\">\n <a href=\"https://www.telerik.com/design-system\" target=\"_blank\">Find your style</a>\n </Button>\n </CardActions>\n </Card>\n\n <Card className={styles.card}>\n <CardHeader className={styles.cardHeader}>\n <Image\n src=\"/license.svg\"\n alt=\"License Logo\"\n width={64}\n height={64}\n priority\n />\n <CardTitle className={styles.cardTitle}>Activate your license</CardTitle>\n </CardHeader>\n <CardBody>\n <ul className={styles.cardBodyList}>\n <li>Flexible Licensing Policy</li>\n <li>Maintenance & Support</li>\n <li>Total Cost of Ownership</li>\n <li>Enterprise-Ready Offerings</li>\n </ul>\n </CardBody>\n <CardActions>\n <Button themeColor=\"primary\" fillMode=\"flat\">\n <a href=\"https://www.telerik.com/purchase.aspx?filter=web#individual-products\" target=\"_blank\">Buy now</a>\n </Button>\n </CardActions>\n </Card>\n </div>\n </div>\n </section>\n\n <footer className={styles.footer}>\n <p>Copyright © 2023 Progress Software. All rights reserved.</p>\n </footer>\n </div>\n </main>\n </>\n )\n}\n";
|
|
19051
19062
|
|
|
19052
19063
|
/***/ }),
|
|
19053
19064
|
|
|
@@ -19401,6 +19412,206 @@ module.exports = ":root {\n --max-width: 1100px;\n --border-radius: 12px;\n -
|
|
|
19401
19412
|
|
|
19402
19413
|
/***/ }),
|
|
19403
19414
|
|
|
19415
|
+
/***/ "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/README.md":
|
|
19416
|
+
/*!****************************************************************************************************************************!*\
|
|
19417
|
+
!*** ../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/README.md ***!
|
|
19418
|
+
\****************************************************************************************************************************/
|
|
19419
|
+
/***/ ((module) => {
|
|
19420
|
+
|
|
19421
|
+
module.exports = "# React + TypeScript + Vite\n\nThis template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.\n\nCurrently, two official plugins are available:\n\n- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh\n- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh\n\n## Expanding the ESLint configuration\n\nIf you are developing a production application, we recommend updating the configuration to enable type aware lint rules:\n\n- Configure the top-level `parserOptions` property like this:\n\n```js\nexport default tseslint.config({\n languageOptions: {\n // other options...\n parserOptions: {\n project: ['./tsconfig.node.json', './tsconfig.app.json'],\n tsconfigRootDir: import.meta.dirname,\n },\n },\n})\n```\n\n- Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`\n- Optionally add `...tseslint.configs.stylisticTypeChecked`\n- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and update the config:\n\n```js\n// eslint.config.js\nimport react from 'eslint-plugin-react'\n\nexport default tseslint.config({\n // Set the react version\n settings: { react: { version: '18.3' } },\n plugins: {\n // Add the react plugin\n react,\n },\n rules: {\n // other rules...\n // Enable its recommended rules\n ...react.configs.recommended.rules,\n ...react.configs['jsx-runtime'].rules,\n },\n})\n```\n";
|
|
19422
|
+
|
|
19423
|
+
/***/ }),
|
|
19424
|
+
|
|
19425
|
+
/***/ "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/index.html":
|
|
19426
|
+
/*!*****************************************************************************************************************************!*\
|
|
19427
|
+
!*** ../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/index.html ***!
|
|
19428
|
+
\*****************************************************************************************************************************/
|
|
19429
|
+
/***/ ((module) => {
|
|
19430
|
+
|
|
19431
|
+
module.exports = "<!doctype html>\n<html lang=\"en\">\n <head>\n <meta charset=\"UTF-8\" />\n <link rel=\"icon\" type=\"image/svg+xml\" href=\"/vite.svg\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n <link rel=\"preconnect\" href=\"https://fonts.googleapis.com\">\n <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin>\n <link href=\"https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\" rel=\"stylesheet\">\n <title>Vite + KendoReact</title>\n </head>\n <body>\n <div id=\"root\"></div>\n <script type=\"module\" src=\"/src/main.tsx\"></script>\n </body>\n</html>";
|
|
19432
|
+
|
|
19433
|
+
/***/ }),
|
|
19434
|
+
|
|
19435
|
+
/***/ "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/package.json":
|
|
19436
|
+
/*!*******************************************************************************************************************************!*\
|
|
19437
|
+
!*** ../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/package.json ***!
|
|
19438
|
+
\*******************************************************************************************************************************/
|
|
19439
|
+
/***/ ((module) => {
|
|
19440
|
+
|
|
19441
|
+
module.exports = "{\n \"name\": \"vite-integration\",\n \"private\": true,\n \"version\": \"0.0.0\",\n \"type\": \"module\",\n \"scripts\": {\n \"dev\": \"vite\",\n \"build\": \"tsc -b && vite build\",\n \"preview\": \"vite preview\"\n },\n \"dependencies\": {\n \"@progress/kendo-data-query\": \"^1.7.0\",\n \"@progress/kendo-react-buttons\": \"^8.3.0\",\n \"@progress/kendo-react-excel-export\": \"^8.3.0\",\n \"@progress/kendo-react-grid\": \"^8.3.0\",\n \"@progress/kendo-react-layout\": \"^8.3.0\",\n \"@progress/kendo-react-pdf\": \"^8.3.0\",\n \"@progress/kendo-svg-icons\": \"^3.1.0\",\n \"@progress/kendo-theme-default\": \"^9.0.0\",\n \"react\": \"^18.3.1\",\n \"react-dom\": \"^18.3.1\"\n },\n \"devDependencies\": {\n \"@types/react\": \"^18.3.3\",\n \"@types/react-dom\": \"^18.3.0\",\n \"@vitejs/plugin-react\": \"^4.3.1\",\n \"globals\": \"^15.9.0\",\n \"react-router-dom\": \"^6.26.2\",\n \"typescript\": \"^5.5.3\",\n \"vite\": \"^5.4.1\"\n }\n}\n";
|
|
19442
|
+
|
|
19443
|
+
/***/ }),
|
|
19444
|
+
|
|
19445
|
+
/***/ "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/public/vite.svg":
|
|
19446
|
+
/*!**********************************************************************************************************************************!*\
|
|
19447
|
+
!*** ../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/public/vite.svg ***!
|
|
19448
|
+
\**********************************************************************************************************************************/
|
|
19449
|
+
/***/ ((module) => {
|
|
19450
|
+
|
|
19451
|
+
module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--logos\" width=\"31.88\" height=\"32\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 256 257\"><defs><linearGradient id=\"IconifyId1813088fe1fbc01fb466\" x1=\"-.828%\" x2=\"57.636%\" y1=\"7.652%\" y2=\"78.411%\"><stop offset=\"0%\" stop-color=\"#41D1FF\"></stop><stop offset=\"100%\" stop-color=\"#BD34FE\"></stop></linearGradient><linearGradient id=\"IconifyId1813088fe1fbc01fb467\" x1=\"43.376%\" x2=\"50.316%\" y1=\"2.242%\" y2=\"89.03%\"><stop offset=\"0%\" stop-color=\"#FFEA83\"></stop><stop offset=\"8.333%\" stop-color=\"#FFDD35\"></stop><stop offset=\"100%\" stop-color=\"#FFA800\"></stop></linearGradient></defs><path fill=\"url(#IconifyId1813088fe1fbc01fb466)\" d=\"M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z\"></path><path fill=\"url(#IconifyId1813088fe1fbc01fb467)\" d=\"M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z\"></path></svg>";
|
|
19452
|
+
|
|
19453
|
+
/***/ }),
|
|
19454
|
+
|
|
19455
|
+
/***/ "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/Home.css":
|
|
19456
|
+
/*!*******************************************************************************************************************************!*\
|
|
19457
|
+
!*** ../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/Home.css ***!
|
|
19458
|
+
\*******************************************************************************************************************************/
|
|
19459
|
+
/***/ ((module) => {
|
|
19460
|
+
|
|
19461
|
+
module.exports = ".react-logo {\n width: 889px;\n position: absolute;\n right: 0px;\n top: -205px;\n z-index: -1;\n height: 788px;\n}\n\n.section-container {\n padding: var(--kendo-spacing-8);\n margin: 0 auto;\n}\n\n.center-section, .cards {\n margin: 0 auto;\n max-width: 1154px;\n}\n\n.center-section .section-title {\n margin: var(--kendo-spacing-2);\n}\n\n.section-container.bg-color {\n margin: 0 auto;\n text-align: left;\n background-color: #FAFAFA;\n padding: 24px 24px 24px 48px;\n}\n\n.section-container.bg-color code {\n background-color: #FF635829;\n padding: 0 4px;\n}\n\n.welcome-title, .welcome-subtitle {\n margin: 0;\n font-weight: 300;\n}\n\n.welcome-title {\n font-size: 84px;\n line-height: 100px;\n}\n\n.welcome-subtitle {\n font-size: 42px;\n line-height: 50px\n}\n\n.section-title {\n color: var(--light-theme-text-colors-kendo-component-text, #424242);\n font-size: 28px;\n font-weight: 400;\n line-height: 42px;\n margin: 0;\n}\n\n.cards .section-title {\n text-align: left;\n margin-left: var(--kendo-spacing-6);\n}\n\n.cards-container {\n display: flex;\n flex-wrap: wrap;\n}\n\n.k-card {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n gap: var(--kendo-spacing-0, 0px);\n align-items: center;\n margin: var(--kendo-spacing-6);\n padding: var(--kendo-spacing-0, 0px);\n height: 310px;\n width: 240px;\n box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.04), 0px 4px 16px 0px rgba(0, 0, 0, 0.12);\n}\n\n.k-card-header {\n border: none;\n}\n\n.k-card-body {\n text-align: left;\n}\n\n.card-list {\n padding: var(--kendo-spacing-0, 0px);\n margin: 0;\n list-style-type: disc;\n text-align: left;\n}\n\nfooter {\n padding: var(--kendo-spacing-4, 16px) 0px;\n border: 1px solid;\n border-color: var(--kendo-color-border, rgba(0, 0, 0, 0.08));\n color: var(--light-theme-text-colors-kendo-subtle-text, #666666);\n font-size: 14px;\n}\n\n@media (max-width: 900px) {\n .section-container .welcome-title {\n font-size: 64px;\n line-height: 84px;\n }\n}\n\n@media (max-width: 480px) {\n .section-container .welcome-title {\n font-size: 42px;\n line-height: 48px;\n }\n\n .section-container .welcome-subtitle {\n font-size: 24px;\n line-height: 32px;\n }\n}";
|
|
19462
|
+
|
|
19463
|
+
/***/ }),
|
|
19464
|
+
|
|
19465
|
+
/***/ "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/Home.tsx":
|
|
19466
|
+
/*!*******************************************************************************************************************************!*\
|
|
19467
|
+
!*** ../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/Home.tsx ***!
|
|
19468
|
+
\*******************************************************************************************************************************/
|
|
19469
|
+
/***/ ((module) => {
|
|
19470
|
+
|
|
19471
|
+
module.exports = "import { Link } from \"react-router-dom\";\n\nimport reactUrl from \"./assets/react.svg\";\nimport docsUrl from \"./assets/documentation.svg\";\nimport classroomUrl from \"./assets/classroom.svg\";\nimport designUrl from \"./assets/design.svg\";\nimport licenseUrl from \"./assets/license.svg\";\n\nimport { \n AppBar,\n AppBarSection,\n AppBarSpacer,\n Card, \n CardActions,\n CardBody, \n CardHeader, \n CardTitle \n} from \"@progress/kendo-react-layout\";\nimport { Button } from \"@progress/kendo-react-buttons\";\n\nimport \"./Home.css\";\n\nexport default function Home() {\n return (\n <>\n <AppBar position=\"top\">\n <AppBarSection>KendoReact ❤️ Vite</AppBarSection>\n <AppBarSpacer />\n <AppBarSection>\n <Link to=\"/\">\n <Button themeColor=\"primary\" fillMode=\"flat\" className=\"k-mr-1\">Home</Button>\n </Link>\n <Link to=\"/grid/\">\n <Button themeColor=\"primary\" fillMode=\"flat\">Grid</Button>\n </Link>\n </AppBarSection>\n </AppBar>\n\n <section className=\"section-container\">\n <img src={reactUrl} alt=\"React Logo\" className=\"react-logo\" />\n <div className=\"k-d-flex k-flex-col k-my-12\">\n <h1 className=\"welcome-title\">Welcome to KendoReact</h1>\n <h3 className=\"welcome-subtitle\">Comprehensive React UI Component Library</h3>\n\n <div className=\"k-mt-3\">\n <Button themeColor=\"primary\" className=\"k-mr-2\">\n <a href=\"https://www.telerik.com/kendo-react-ui\" target=\"_blank\">Try KendoReact</a>\n </Button>\n <Button themeColor=\"secondary\" fillMode=\"solid\">\n <a href=\"https://vitejs.dev/\" target=\"_blank\">More about Vite</a>\n </Button>\n </div>\n </div>\n </section>\n <section className=\"section-container bg-color\">\n <div className=\"center-section\">\n <h5 className=\"section-title\">Get started</h5>\n <div className=\"k-ml-2\">Edit home page at <code>src/Home.tsx</code> or set up data source at <code>src/grid/data.json</code></div>\n </div>\n </section>\n <section className=\"section-container\">\n <div className=\"cards\">\n <h5 className=\"section-title\">Highlights</h5>\n <div className=\"cards-container\">\n <Card>\n <CardHeader>\n <img src={docsUrl} alt=\"Documentation Logo\" width={64} height={64} />\n <CardTitle>Documentation</CardTitle>\n </CardHeader>\n <CardBody>\n <p>\n Unlock the full potential of our features! Check KendoReact Documentation for step-by-step guides and insights.\n </p>\n </CardBody>\n <CardActions>\n <Button themeColor=\"primary\" fillMode=\"flat\">\n <a href=\"https://www.telerik.com/kendo-react-ui/components/\" target=\"_blank\">Learn more</a>\n </Button>\n </CardActions>\n </Card>\n\n <Card>\n <CardHeader>\n <img src={classroomUrl} alt=\"Virtual Classroom Logo\" width={64} height={64} />\n <CardTitle>Virtual Classroom</CardTitle>\n </CardHeader>\n <CardBody>\n <p>\n Need to quickly get started with KendoReact or just prefer video on-boarding materials we have Virtual Classroom for you.\n </p>\n </CardBody>\n <CardActions>\n <Button themeColor=\"primary\" fillMode=\"flat\">\n <a href=\"https://rb.gy/w21cc8\" target=\"_blank\">Get Started</a>\n </Button>\n </CardActions>\n </Card>\n\n <Card>\n <CardHeader>\n <img src={designUrl} alt=\"Design System Logo\" width={64} height={64} />\n <CardTitle>Design System</CardTitle>\n </CardHeader>\n <CardBody>\n <p>\n Quickly apply harmonious and consistent styles to the components in your app with the Progress Design System.\n </p>\n </CardBody>\n <CardActions>\n <Button themeColor=\"primary\" fillMode=\"flat\">\n <a href=\"https://www.telerik.com/design-system/docs/\" target=\"_blank\">Find your style</a>\n </Button>\n </CardActions>\n </Card>\n\n <Card>\n <CardHeader>\n <img src={licenseUrl} alt=\"License Logo\" width={64} height={64} />\n\n <CardTitle>Activate your license</CardTitle>\n </CardHeader>\n <CardBody>\n <ul className=\"card-list\">\n <li>Flexible Licensing Policy</li>\n <li>Maintenance & Support</li>\n <li>Total Cost of Ownership</li>\n <li>Enterprise-Ready Offerings</li>\n </ul>\n </CardBody>\n <CardActions>\n <Button themeColor=\"primary\" fillMode=\"flat\">\n <a href=\"https://www.telerik.com/purchase.aspx?filter=web#individual-products\" target=\"_blank\">Learn more</a>\n </Button>\n </CardActions>\n </Card>\n </div>\n </div>\n </section>\n\n <footer className=\"footer\">\n <div>Copyright © 2024 Progress Software. All rights reserved.</div>\n </footer>\n </>\n )\n}\n";
|
|
19472
|
+
|
|
19473
|
+
/***/ }),
|
|
19474
|
+
|
|
19475
|
+
/***/ "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/assets/classroom.svg":
|
|
19476
|
+
/*!*******************************************************************************************************************************************!*\
|
|
19477
|
+
!*** ../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/assets/classroom.svg ***!
|
|
19478
|
+
\*******************************************************************************************************************************************/
|
|
19479
|
+
/***/ ((module) => {
|
|
19480
|
+
|
|
19481
|
+
module.exports = "<svg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n <rect width=\"64\" height=\"64\" fill=\"url(#pattern0)\"/>\n <defs>\n <pattern id=\"pattern0\" patternContentUnits=\"objectBoundingBox\" width=\"1\" height=\"1\">\n <use xlink:href=\"#image0_17906_79018\" transform=\"scale(0.00769231)\"/>\n </pattern>\n <image id=\"image0_17906_79018\" width=\"130\" height=\"130\" xlink:href=\"data:image/png;base64,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\"/>\n </defs>\n</svg>\n";
|
|
19482
|
+
|
|
19483
|
+
/***/ }),
|
|
19484
|
+
|
|
19485
|
+
/***/ "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/assets/design.svg":
|
|
19486
|
+
/*!****************************************************************************************************************************************!*\
|
|
19487
|
+
!*** ../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/assets/design.svg ***!
|
|
19488
|
+
\****************************************************************************************************************************************/
|
|
19489
|
+
/***/ ((module) => {
|
|
19490
|
+
|
|
19491
|
+
module.exports = "<svg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n <rect width=\"64\" height=\"64\" fill=\"url(#pattern0)\"/>\n <defs>\n <pattern id=\"pattern0\" patternContentUnits=\"objectBoundingBox\" width=\"1\" height=\"1\">\n <use xlink:href=\"#image0_17906_79026\" transform=\"scale(0.00769231)\"/>\n </pattern>\n <image id=\"image0_17906_79026\" width=\"130\" height=\"130\" xlink:href=\"data:image/png;base64,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\"/>\n </defs>\n</svg>\n";
|
|
19492
|
+
|
|
19493
|
+
/***/ }),
|
|
19494
|
+
|
|
19495
|
+
/***/ "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/assets/documentation.svg":
|
|
19496
|
+
/*!***********************************************************************************************************************************************!*\
|
|
19497
|
+
!*** ../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/assets/documentation.svg ***!
|
|
19498
|
+
\***********************************************************************************************************************************************/
|
|
19499
|
+
/***/ ((module) => {
|
|
19500
|
+
|
|
19501
|
+
module.exports = "<svg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n<rect width=\"64\" height=\"64\" fill=\"url(#pattern0)\"/>\n<defs>\n<pattern id=\"pattern0\" patternContentUnits=\"objectBoundingBox\" width=\"1\" height=\"1\">\n<use xlink:href=\"#image0_17906_79010\" transform=\"translate(0 0.0245902) scale(0.00819672)\"/>\n</pattern>\n<image id=\"image0_17906_79010\" width=\"122\" height=\"116\" xlink:href=\"data:image/png;base64,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\"/>\n</defs>\n</svg>\n";
|
|
19502
|
+
|
|
19503
|
+
/***/ }),
|
|
19504
|
+
|
|
19505
|
+
/***/ "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/assets/license.svg":
|
|
19506
|
+
/*!*****************************************************************************************************************************************!*\
|
|
19507
|
+
!*** ../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/assets/license.svg ***!
|
|
19508
|
+
\*****************************************************************************************************************************************/
|
|
19509
|
+
/***/ ((module) => {
|
|
19510
|
+
|
|
19511
|
+
module.exports = "<svg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n <rect width=\"64\" height=\"64\" fill=\"url(#pattern0)\"/>\n <defs>\n <pattern id=\"pattern0\" patternContentUnits=\"objectBoundingBox\" width=\"1\" height=\"1\">\n <use xlink:href=\"#image0_17906_79034\" transform=\"scale(0.00787402)\"/>\n </pattern>\n <image id=\"image0_17906_79034\" width=\"127\" height=\"127\" xlink:href=\"data:image/png;base64,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\"/>\n </defs>\n</svg>\n";
|
|
19512
|
+
|
|
19513
|
+
/***/ }),
|
|
19514
|
+
|
|
19515
|
+
/***/ "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/assets/react.svg":
|
|
19516
|
+
/*!***************************************************************************************************************************************!*\
|
|
19517
|
+
!*** ../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/assets/react.svg ***!
|
|
19518
|
+
\***************************************************************************************************************************************/
|
|
19519
|
+
/***/ ((module) => {
|
|
19520
|
+
|
|
19521
|
+
module.exports = "<svg width=\"886\" height=\"366\" viewBox=\"0 0 886 366\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_17906_79068)\">\n <g opacity=\"0.08\">\n <path d=\"M442.95 50.2801C486.641 50.2801 522.059 14.8748 522.059 -28.7998C522.059 -72.4745 486.641 -107.88 442.95 -107.88C399.259 -107.88 363.841 -72.4745 363.841 -28.7998C363.841 14.8748 399.259 50.2801 442.95 50.2801Z\" fill=\"#757575\"/>\n <path d=\"M442.95 152.454C331.837 152.454 234.726 139.357 162.018 114.464C114.813 98.2679 74.8084 76.8734 46.3052 52.5796C16.0018 26.6861 0 -1.50674 0 -28.7998C0 -81.0865 57.5065 -132.374 153.717 -165.865C232.626 -193.358 335.338 -208.454 442.95 -208.454C548.562 -208.454 649.973 -193.558 728.382 -166.565C774.287 -150.769 812.992 -130.374 840.295 -107.58C870.098 -82.6861 885.8 -55.493 885.8 -28.7998C885.8 25.5864 821.593 80.5724 718.181 114.864C644.973 139.058 547.262 152.454 442.95 152.454ZM442.95 -170.664C340.938 -170.664 240.027 -155.868 166.119 -130.074C77.5088 -99.2819 37.8043 -56.9927 37.8043 -28.7998C37.8043 0.492737 80.5091 46.681 174.22 78.6729C243.027 102.167 335.938 114.664 442.95 114.664C543.261 114.664 636.772 101.967 706.38 78.9728C803.691 46.681 848.096 0.492737 848.096 -28.7998C848.096 -43.696 836.694 -61.3915 816.092 -78.5872C792.189 -98.4821 757.586 -116.578 716.081 -130.874C641.572 -156.567 544.461 -170.664 442.95 -170.664Z\" fill=\"#757575\"/>\n <path d=\"M263.23 365.5C247.228 365.5 233.026 362.001 220.925 355.103C175.62 329.009 159.918 253.629 178.92 153.554C194.522 71.4748 232.726 -25.1008 286.432 -118.277C339.338 -209.654 402.846 -290.034 465.453 -344.52C502.057 -376.312 539.061 -399.706 572.565 -412.003C608.969 -425.399 640.472 -425.399 663.575 -412.103C710.68 -385.009 726.282 -301.831 704.28 -195.158C688.678 -119.577 651.474 -28.2 599.368 62.0771C543.861 158.353 483.955 235.933 426.048 286.52C388.444 319.312 349.94 343.306 314.536 355.803C296.133 362.201 278.832 365.5 263.23 365.5ZM319.336 -99.2819C268.43 -10.9044 230.726 83.7716 216.124 160.652C198.622 252.829 215.424 308.315 239.827 322.411C265.23 337.107 326.537 323.211 401.145 258.027C455.952 210.24 513.058 135.958 566.564 43.2819C616.67 -43.5961 652.374 -130.974 667.175 -202.656C687.878 -303.03 669.976 -364.515 644.573 -379.211C631.671 -386.709 610.669 -385.609 585.466 -376.412C556.263 -365.714 523.359 -344.82 490.155 -315.927C430.749 -264.14 370.042 -187.26 319.336 -99.2819Z\" fill=\"#757575\"/>\n <path d=\"M622.57 366C579.665 366 525.259 340.107 468.553 291.319C405.246 236.833 340.638 155.553 286.632 62.3771C233.726 -28.9998 195.822 -124.176 179.82 -205.555C170.519 -253.143 168.819 -296.832 174.82 -331.923C181.42 -370.213 197.122 -397.406 220.225 -410.803C267.23 -437.996 347.139 -410.003 428.548 -337.721C486.355 -286.434 546.862 -208.554 599.068 -118.377C654.774 -22.2014 692.078 68.3755 706.98 143.656C716.681 192.544 718.181 237.933 711.38 274.723C704.079 313.913 687.778 341.806 664.175 355.603C652.174 362.601 638.172 366 622.57 366ZM319.436 43.4819C370.542 131.759 433.849 211.639 493.256 262.626C564.364 323.811 620.87 337.007 645.273 322.811C670.676 308.115 689.278 248.03 669.976 150.955C655.874 79.6726 620.07 -7.00531 566.464 -99.5818C516.258 -186.36 458.352 -260.941 403.546 -309.529C326.837 -377.611 264.63 -392.807 239.327 -378.111C226.426 -370.613 216.824 -351.918 212.324 -325.524C207.023 -294.832 208.724 -255.942 217.124 -212.753C232.226 -135.373 268.63 -44.3958 319.436 43.4819Z\" fill=\"#757575\"/>\n </g>\n </g>\n <defs>\n <clipPath id=\"clip0_17906_79068\">\n <rect width=\"886\" height=\"788\" fill=\"white\" transform=\"translate(0 -422)\"/>\n </clipPath>\n </defs>\n</svg>\n";
|
|
19522
|
+
|
|
19523
|
+
/***/ }),
|
|
19524
|
+
|
|
19525
|
+
/***/ "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/grid/Grid.tsx":
|
|
19526
|
+
/*!************************************************************************************************************************************!*\
|
|
19527
|
+
!*** ../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/grid/Grid.tsx ***!
|
|
19528
|
+
\************************************************************************************************************************************/
|
|
19529
|
+
/***/ ((module) => {
|
|
19530
|
+
|
|
19531
|
+
module.exports = "\"use client\"\n\nimport * as React from \"react\";\n\nimport {\n Grid,\n GridColumn,\n GridToolbar,\n GridDetailRowProps,\n GridDataStateChangeEvent,\n GridExpandChangeEvent\n} from \"@progress/kendo-react-grid\";\n\nimport { GridPDFExport } from \"@progress/kendo-react-pdf\";\nimport { ExcelExport } from \"@progress/kendo-react-excel-export\";\n\nimport { DataResult, process, State } from \"@progress/kendo-data-query\";\nimport data from \"./data.json\";\nimport { Button } from \"@progress/kendo-react-buttons\";\nimport { Link } from \"react-router-dom\";\nimport { AppBar, AppBarSection } from \"@progress/kendo-react-layout\";\n\nconst DetailComponent = (props: GridDetailRowProps) => {\n const dataItem = props.dataItem;\n\n return (\n <div>\n <section style={{ width: \"200px\", float: \"left\" }}>\n <p>\n <strong>Street:</strong> {dataItem.shipAddress.street}\n </p>\n <p>\n <strong>City:</strong> {dataItem.shipAddress.city}\n </p>\n <p>\n <strong>Country:</strong> {dataItem.shipAddress.country}\n </p>\n <p>\n <strong>Postal Code:</strong> {dataItem.shipAddress.postalCode}\n </p>\n </section>\n <Grid style={{ width: \"500px\" }} data={dataItem.details} />\n </div>\n );\n};\n\nexport default function GridVite() {\n const [dataState, setDataState] = React.useState<State>({\n skip: 0,\n take: 20,\n sort: [{ field: \"orderDate\", dir: \"desc\" }],\n group: [{ field: \"customerID\" }]\n });\n const [dataResult, setDataResult] = React.useState<DataResult>(\n process(data, dataState)\n );\n\n const dataStateChange = (event: GridDataStateChangeEvent) => {\n setDataResult(process(data, event.dataState));\n setDataState(event.dataState);\n };\n\n const expandChange = (event: GridExpandChangeEvent) => {\n const isExpanded =\n event.dataItem.expanded === undefined\n ? event.dataItem.aggregates\n : event.dataItem.expanded;\n event.dataItem.expanded = !isExpanded;\n\n setDataResult({ ...dataResult, data: [...dataResult.data] });\n };\n\n let _pdfExport: GridPDFExport | null;\n const exportExcel = () => {\n if (_export) {\n _export.save();\n }\n };\n\n let _export: ExcelExport | null;\n const exportPDF = () => {\n if (_pdfExport) {\n _pdfExport.save();\n }\n };\n\n return (\n <>\n <AppBar position=\"top\">\n <AppBarSection>\n <Link to=\"/\">\n <Button themeColor=\"primary\" fillMode=\"flat\" className=\"k-mr-1\">Go Back</Button>\n </Link>\n </AppBarSection>\n </AppBar>\n <div className=\"k-mt-4\">\n <ExcelExport\n data={data}\n ref={(exporter) => {\n _export = exporter;\n }}\n >\n <Grid\n id=\"test\"\n style={{ height: \"700px\" }}\n sortable={true}\n filterable={true}\n groupable={true}\n reorderable={true}\n pageable={{ buttonCount: 4, pageSizes: true }}\n data={dataResult}\n {...dataState}\n onDataStateChange={dataStateChange}\n detail={DetailComponent}\n expandField=\"expanded\"\n onExpandChange={expandChange}\n >\n <GridToolbar>\n <Button\n title=\"Export to Excel\"\n onClick={exportExcel}\n >\n Export to Excel\n </Button>\n \n <Button\n onClick={exportPDF}\n >\n Export to PDF\n </Button>\n </GridToolbar>\n <GridColumn field=\"customerID\" width=\"200px\" />\n <GridColumn\n field=\"orderDate\"\n filter=\"date\"\n format=\"{0:D}\"\n width=\"300px\"\n />\n <GridColumn field=\"shipName\" width=\"280px\" />\n <GridColumn field=\"freight\" filter=\"numeric\" width=\"200px\" />\n <GridColumn\n field=\"shippedDate\"\n filter=\"date\"\n format=\"{0:D}\"\n width=\"300px\"\n />\n <GridColumn field=\"employeeID\" filter=\"numeric\" width=\"200px\" />\n <GridColumn\n locked={true}\n field=\"orderID\"\n filterable={false}\n title=\"ID\"\n width=\"90px\"\n />\n </Grid>\n </ExcelExport>\n <GridPDFExport\n ref={(element) => {\n _pdfExport = element;\n }}\n margin=\"1cm\"\n >\n {\n <Grid\n data={process(data, {\n skip: dataState.skip,\n take: dataState.take\n })}\n >\n <GridColumn field=\"customerID\" width=\"200px\" />\n <GridColumn\n field=\"orderDate\"\n filter=\"date\"\n format=\"{0:D}\"\n width=\"300px\"\n />\n <GridColumn field=\"shipName\" width=\"280px\" />\n <GridColumn field=\"freight\" filter=\"numeric\" width=\"200px\" />\n <GridColumn\n field=\"shippedDate\"\n filter=\"date\"\n format=\"{0:D}\"\n width=\"300px\"\n />\n <GridColumn field=\"employeeID\" filter=\"numeric\" width=\"200px\" />\n <GridColumn\n locked={true}\n field=\"orderID\"\n filterable={false}\n title=\"ID\"\n width=\"90px\"\n />\n </Grid>\n }\n </GridPDFExport>\n </div>\n </>\n );\n}";
|
|
19532
|
+
|
|
19533
|
+
/***/ }),
|
|
19534
|
+
|
|
19535
|
+
/***/ "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/grid/data.json":
|
|
19536
|
+
/*!*************************************************************************************************************************************!*\
|
|
19537
|
+
!*** ../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/grid/data.json ***!
|
|
19538
|
+
\*************************************************************************************************************************************/
|
|
19539
|
+
/***/ ((module) => {
|
|
19540
|
+
|
|
19541
|
+
module.exports = "[\n\t{\n\t\t\"orderID\": 10271,\n\t\t\"customerID\": \"SPLIR\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1996-08-01 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-30 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 4.54,\n\t\t\"shipName\": \"Split Rail Beer & Ale\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"P.O. Box 555\",\n\t\t\t\"city\": \"Lander\",\n\t\t\t\"region\": \"WY\",\n\t\t\t\"postalCode\": 82520,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10266,\n\t\t\"customerID\": \"WARTH\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1996-07-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-07-31 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 25.73,\n\t\t\"shipName\": \"Wartian Herkku\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Torikatu 38\",\n\t\t\t\"city\": \"Oulu\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 90110,\n\t\t\t\"country\": \"Finland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 12,\n\t\t\t\t\"unitPrice\": 30.4,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10279,\n\t\t\"customerID\": \"LEHMS\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1996-08-13 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-16 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 25.83,\n\t\t\"shipName\": \"Lehmanns Marktstand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Magazinweg 7\",\n\t\t\t\"city\": \"Frankfurt a.M.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 60528,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 31.2,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10292,\n\t\t\"customerID\": \"TRADH\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-08-28 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-25 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-02 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 1.35,\n\t\t\"shipName\": \"Tradiçao Hipermercados\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Inês de Castro 414\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05634-030\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 20,\n\t\t\t\t\"unitPrice\": 64.8,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10295,\n\t\t\"customerID\": \"VINET\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1996-09-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-10 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 1.15,\n\t\t\"shipName\": \"Vins et alcools Chevalier\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"59 rue de l'Abbaye\",\n\t\t\t\"city\": \"Reims\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 51100,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 30.4,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10313,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1996-09-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-04 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 1.96,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10317,\n\t\t\"customerID\": \"LONEP\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1996-09-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-10 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 12.69,\n\t\t\"shipName\": \"Lonesome Pine Restaurant\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"89 Chiaroscuro Rd.\",\n\t\t\t\"city\": \"Portland\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97219,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10322,\n\t\t\"customerID\": \"PERIC\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1996-10-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-01 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-23 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 0.4,\n\t\t\"shipName\": \"Pericles Comidas clásicas\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Calle Dr. Jorge Cash 321\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5033,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 5.6,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10320,\n\t\t\"customerID\": \"WARTH\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1996-10-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-18 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 34.57,\n\t\t\"shipName\": \"Wartian Herkku\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Torikatu 38\",\n\t\t\t\"city\": \"Oulu\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 90110,\n\t\t\t\"country\": \"Finland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 17.2,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10321,\n\t\t\"customerID\": \"ISLAT\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1996-10-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-31 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-11 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 3.43,\n\t\t\"shipName\": \"Island Trading\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Garden House Crowther Way\",\n\t\t\t\"city\": \"Cowes\",\n\t\t\t\"region\": \"Isle of Wight\",\n\t\t\t\"postalCode\": \"PO31 7PJ\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10336,\n\t\t\"customerID\": \"PRINI\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1996-10-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-25 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 15.51,\n\t\t\"shipName\": \"Princesa Isabel Vinhos\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Estrada da saúde n. 58\",\n\t\t\t\"city\": \"Lisboa\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1756,\n\t\t\t\"country\": \"Portugal\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 4,\n\t\t\t\t\"unitPrice\": 17.6,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10349,\n\t\t\"customerID\": \"SPLIR\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1996-11-08 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-11-15 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 8.63,\n\t\t\"shipName\": \"Split Rail Beer & Ale\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"P.O. Box 555\",\n\t\t\t\"city\": \"Lander\",\n\t\t\t\"region\": \"WY\",\n\t\t\t\"postalCode\": 82520,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 5.9,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10331,\n\t\t\"customerID\": \"BONAP\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1996-10-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-21 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 10.19,\n\t\t\"shipName\": \"Bon app'\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"12 rue des Bouchers\",\n\t\t\t\"city\": \"Marseille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 13008,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 5.9,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10365,\n\t\t\"customerID\": \"ANTON\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1996-11-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-25 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-02 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 22,\n\t\t\"shipName\": \"Antonio Moreno Taquería\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Mataderos 2312\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5023,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10371,\n\t\t\"customerID\": \"LAMAI\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-12-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-31 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-24 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 0.45,\n\t\t\"shipName\": \"La maison d'Asie\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1 rue Alsace-Lorraine\",\n\t\t\t\"city\": \"Toulouse\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 31000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10376,\n\t\t\"customerID\": \"MEREP\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-12-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-13 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 20.39,\n\t\t\"shipName\": \"Mère Paillarde\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"43 rue St. Laurent\",\n\t\t\t\"city\": \"Montréal\",\n\t\t\t\"region\": \"Québec\",\n\t\t\t\"postalCode\": \"H1J 1C3\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 42,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10378,\n\t\t\"customerID\": \"FOLKO\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1996-12-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-19 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 5.44,\n\t\t\"shipName\": \"Folk och fä HB\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Åkergatan 24\",\n\t\t\t\"city\": \"Bräcke\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-844 67\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 17.2,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10392,\n\t\t\"customerID\": \"PICCO\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1996-12-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-21 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-01 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 122.46,\n\t\t\"shipName\": \"Piccolo und mehr\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Geislweg 14\",\n\t\t\t\"city\": \"Salzburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5020,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 28.8,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10391,\n\t\t\"customerID\": \"DRACD\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1996-12-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-31 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 5.45,\n\t\t\"shipName\": \"Drachenblut Delikatessen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Walserweg 21\",\n\t\t\t\"city\": \"Aachen\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 52066,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 4.8,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10405,\n\t\t\"customerID\": \"LINOD\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-01-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-03 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-22 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 34.82,\n\t\t\"shipName\": \"LINO-Delicateses\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Ave. 5 de Mayo Porlamar\",\n\t\t\t\"city\": \"I. de Margarita\",\n\t\t\t\"region\": \"Nueva Esparta\",\n\t\t\t\"postalCode\": 4980,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 3,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10412,\n\t\t\"customerID\": \"WARTH\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-01-13 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-15 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 3.77,\n\t\t\"shipName\": \"Wartian Herkku\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Torikatu 38\",\n\t\t\t\"city\": \"Oulu\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 90110,\n\t\t\t\"country\": \"Finland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 14,\n\t\t\t\t\"unitPrice\": 18.6,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10422,\n\t\t\"customerID\": \"FRANS\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-01-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-31 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 3.02,\n\t\t\"shipName\": \"Franchi S.p.A.\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Via Monte Bianco 34\",\n\t\t\t\"city\": \"Torino\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 10100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 24.9,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10433,\n\t\t\"customerID\": \"PRINI\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-02-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-03 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-04 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 73.83,\n\t\t\"shipName\": \"Princesa Isabel Vinhos\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Estrada da saúde n. 58\",\n\t\t\t\"city\": \"Lisboa\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1756,\n\t\t\t\"country\": \"Portugal\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 30.4,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10427,\n\t\t\"customerID\": \"PICCO\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-01-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-03 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 31.29,\n\t\t\"shipName\": \"Piccolo und mehr\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Geislweg 14\",\n\t\t\t\"city\": \"Salzburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5020,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 14,\n\t\t\t\t\"unitPrice\": 18.6,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10437,\n\t\t\"customerID\": \"WARTH\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-02-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-12 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 19.97,\n\t\t\"shipName\": \"Wartian Herkku\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Torikatu 38\",\n\t\t\t\"city\": \"Oulu\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 90110,\n\t\t\t\"country\": \"Finland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 26.2,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10428,\n\t\t\"customerID\": \"REGGC\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-01-28 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-25 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-04 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 11.09,\n\t\t\"shipName\": \"Reggiani Caseifici\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Strada Provinciale 124\",\n\t\t\t\"city\": \"Reggio Emilia\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 42100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 9.6,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10441,\n\t\t\"customerID\": \"OLDWO\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-02-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-14 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 73.02,\n\t\t\"shipName\": \"Old World Delicatessen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2743 Bering St.\",\n\t\t\t\"city\": \"Anchorage\",\n\t\t\t\"region\": \"AK\",\n\t\t\t\"postalCode\": 99508,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 27,\n\t\t\t\t\"unitPrice\": 35.1,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10457,\n\t\t\"customerID\": \"KOENE\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-02-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-25 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-03 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 11.57,\n\t\t\"shipName\": \"Königlich Essen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Maubelstr. 90\",\n\t\t\t\"city\": \"Brandenburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 14776,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 44,\n\t\t\t\t\"quantity\": 36,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10478,\n\t\t\"customerID\": \"VICTE\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-03-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-01 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-26 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 4.81,\n\t\t\"shipName\": \"Victuailles en stock\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2 rue du Commerce\",\n\t\t\t\"city\": \"Lyon\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 69004,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 24.8,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10482,\n\t\t\"customerID\": \"LAZYK\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-03-21 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-10 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 7.48,\n\t\t\"shipName\": \"Lazy K Kountry Store\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"12 Orchestra Terrace\",\n\t\t\t\"city\": \"Walla Walla\",\n\t\t\t\"region\": \"WA\",\n\t\t\t\"postalCode\": 99362,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 14.7,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10494,\n\t\t\"customerID\": \"COMMI\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-04-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-09 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 65.99,\n\t\t\"shipName\": \"Comércio Mineiro\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. dos Lusíadas 23\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05432-043\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 30.4,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10501,\n\t\t\"customerID\": \"BLAUS\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1997-04-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-16 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 8.85,\n\t\t\"shipName\": \"Blauer See Delikatessen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Forsterstr. 57\",\n\t\t\t\"city\": \"Mannheim\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 68306,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 7.45,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10496,\n\t\t\"customerID\": \"TRADH\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-04-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-07 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 46.77,\n\t\t\"shipName\": \"Tradiçao Hipermercados\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Inês de Castro 414\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05634-030\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10509,\n\t\t\"customerID\": \"BLAUS\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-04-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-15 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-29 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 0.15,\n\t\t\"shipName\": \"Blauer See Delikatessen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Forsterstr. 57\",\n\t\t\t\"city\": \"Mannheim\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 68306,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 45.6,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10505,\n\t\t\"customerID\": \"MEREP\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-04-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-21 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 7.13,\n\t\t\"shipName\": \"Mère Paillarde\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"43 rue St. Laurent\",\n\t\t\t\"city\": \"Montréal\",\n\t\t\t\"region\": \"Québec\",\n\t\t\t\"postalCode\": \"H1J 1C3\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10545,\n\t\t\"customerID\": \"LAZYK\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-05-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-26 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 11.92,\n\t\t\"shipName\": \"Lazy K Kountry Store\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"12 Orchestra Terrace\",\n\t\t\t\"city\": \"Walla Walla\",\n\t\t\t\"region\": \"WA\",\n\t\t\t\"postalCode\": 99362,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10556,\n\t\t\"customerID\": \"SIMOB\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-06-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-15 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-13 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 9.8,\n\t\t\"shipName\": \"Simons bistro\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Vinbæltet 34\",\n\t\t\t\"city\": \"Kobenhavn\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1734,\n\t\t\t\"country\": \"Denmark\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 34.8,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10568,\n\t\t\"customerID\": \"GALED\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-06-13 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-09 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 6.54,\n\t\t\"shipName\": \"Galería del gastronómo\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rambla de Cataluña 23\",\n\t\t\t\"city\": \"Barcelona\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8022,\n\t\t\t\"country\": \"Spain\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10581,\n\t\t\"customerID\": \"FAMIA\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-06-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-02 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 3.01,\n\t\t\"shipName\": \"Familia Arquibaldo\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua Orós 92\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05442-030\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10585,\n\t\t\"customerID\": \"WELLI\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-07-01 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-10 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 13.41,\n\t\t\"shipName\": \"Wellington Importadora\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Mercado 12\",\n\t\t\t\"city\": \"Resende\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"08737-363\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 47,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10586,\n\t\t\"customerID\": \"REGGC\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1997-07-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-09 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 0.48,\n\t\t\"shipName\": \"Reggiani Caseifici\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Strada Provinciale 124\",\n\t\t\t\"city\": \"Reggio Emilia\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 42100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 7,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10589,\n\t\t\"customerID\": \"GREAL\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-07-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-01 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-14 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 4.42,\n\t\t\"shipName\": \"Great Lakes Food Market\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2732 Baker Blvd.\",\n\t\t\t\"city\": \"Eugene\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97403,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10584,\n\t\t\"customerID\": \"BLONP\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-06-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-04 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 59.14,\n\t\t\"shipName\": \"Blondel père et fils\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"24 place Kléber\",\n\t\t\t\"city\": \"Strasbourg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 67000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10599,\n\t\t\"customerID\": \"BSBEV\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-07-15 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-21 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 29.98,\n\t\t\"shipName\": \"B's Beverages\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Fauntleroy Circus\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"EC2 5NT\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10602,\n\t\t\"customerID\": \"VAFFE\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-07-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-22 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 2.92,\n\t\t\"shipName\": \"Vaffeljernet\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Smagsloget 45\",\n\t\t\t\"city\": \"Århus\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8200,\n\t\t\t\"country\": \"Denmark\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10608,\n\t\t\"customerID\": \"TOMSP\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-07-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-01 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 27.79,\n\t\t\"shipName\": \"Toms Spezialitäten\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Luisenstr. 48\",\n\t\t\t\"city\": \"Münster\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 44087,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10610,\n\t\t\"customerID\": \"LAMAI\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-07-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-06 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 26.78,\n\t\t\"shipName\": \"La maison d'Asie\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1 rue Alsace-Lorraine\",\n\t\t\t\"city\": \"Toulouse\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 31000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10615,\n\t\t\"customerID\": \"WILMK\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-07-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-06 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 0.75,\n\t\t\"shipName\": \"Wilman Kala\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Keskuskatu 45\",\n\t\t\t\"city\": \"Helsinki\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 21240,\n\t\t\t\"country\": \"Finland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 24,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10617,\n\t\t\"customerID\": \"GREAL\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-07-31 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-04 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 18.53,\n\t\t\"shipName\": \"Great Lakes Food Market\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2732 Baker Blvd.\",\n\t\t\t\"city\": \"Eugene\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97403,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10628,\n\t\t\"customerID\": \"BLONP\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-08-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-20 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 30.36,\n\t\t\"shipName\": \"Blondel père et fils\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"24 place Kléber\",\n\t\t\t\"city\": \"Strasbourg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 67000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10631,\n\t\t\"customerID\": \"LAMAI\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-08-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-15 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 0.87,\n\t\t\"shipName\": \"La maison d'Asie\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1 rue Alsace-Lorraine\",\n\t\t\t\"city\": \"Toulouse\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 31000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10639,\n\t\t\"customerID\": \"SANTG\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-08-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-27 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 38.64,\n\t\t\"shipName\": \"Santé Gourmet\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Erling Skakkes gate 78\",\n\t\t\t\"city\": \"Stavern\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 4110,\n\t\t\t\"country\": \"Norway\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 62.5,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10655,\n\t\t\"customerID\": \"REGGC\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-09-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-01 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-11 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 4.41,\n\t\t\"shipName\": \"Reggiani Caseifici\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Strada Provinciale 124\",\n\t\t\t\"city\": \"Reggio Emilia\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 42100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10660,\n\t\t\"customerID\": \"HUNGC\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-09-08 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-15 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 111.29,\n\t\t\"shipName\": \"Hungry Coyote Import Store\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"City Center Plaza 516 Main St.\",\n\t\t\t\"city\": \"Elgin\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97827,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 20,\n\t\t\t\t\"unitPrice\": 81,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10662,\n\t\t\"customerID\": \"LONEP\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-09-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-18 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 1.28,\n\t\t\"shipName\": \"Lonesome Pine Restaurant\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"89 Chiaroscuro Rd.\",\n\t\t\t\"city\": \"Portland\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97219,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10669,\n\t\t\"customerID\": \"SIMOB\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-09-15 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-22 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 24.39,\n\t\t\"shipName\": \"Simons bistro\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Vinbæltet 34\",\n\t\t\t\"city\": \"Kobenhavn\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1734,\n\t\t\t\"country\": \"Denmark\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10679,\n\t\t\"customerID\": \"BLONP\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-09-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-21 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-30 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 27.94,\n\t\t\"shipName\": \"Blondel père et fils\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"24 place Kléber\",\n\t\t\t\"city\": \"Strasbourg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 67000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10683,\n\t\t\"customerID\": \"DUMON\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-09-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-01 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 4.4,\n\t\t\"shipName\": \"Du monde entier\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"67 rue des Cinquante Otages\",\n\t\t\t\"city\": \"Nantes\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 44000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 7,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10674,\n\t\t\"customerID\": \"ISLAT\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-09-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-30 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 0.9,\n\t\t\"shipName\": \"Island Trading\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Garden House Crowther Way\",\n\t\t\t\"city\": \"Cowes\",\n\t\t\t\"region\": \"Isle of Wight\",\n\t\t\t\"postalCode\": \"PO31 7PJ\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 23,\n\t\t\t\t\"unitPrice\": 9,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10692,\n\t\t\"customerID\": \"ALFKI\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-10-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-31 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-13 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 61.02,\n\t\t\"shipName\": \"Alfred's Futterkiste\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Obere Str. 57\",\n\t\t\t\"city\": \"Berlin\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 12209,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 63,\n\t\t\t\t\"unitPrice\": 43.9,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10689,\n\t\t\"customerID\": \"BERGS\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-10-01 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-07 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 13.42,\n\t\t\"shipName\": \"Berglunds snabbköp\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berguvsvägen 8\",\n\t\t\t\"city\": \"Luleå\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-958 22\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10699,\n\t\t\"customerID\": \"MORGK\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-10-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-13 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 0.58,\n\t\t\"shipName\": \"Morgenstern Gesundkost\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Heerstr. 22\",\n\t\t\t\"city\": \"Leipzig\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 4179,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 47,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10721,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1997-10-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-31 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 48.92,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 19.45,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10723,\n\t\t\"customerID\": \"WHITC\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-10-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-25 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 21.72,\n\t\t\"shipName\": \"White Clover Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1029 - 12th Ave. S.\",\n\t\t\t\"city\": \"Seattle\",\n\t\t\t\"region\": \"WA\",\n\t\t\t\"postalCode\": 98124,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 31.23,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10738,\n\t\t\"customerID\": \"SPECD\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-11-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-18 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 2.91,\n\t\t\"shipName\": \"Spécialités du monde\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"25 rue Lauriston\",\n\t\t\t\"city\": \"Paris\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 75016,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10741,\n\t\t\"customerID\": \"AROUT\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-11-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-18 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 10.96,\n\t\t\"shipName\": \"Around the Horn\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Brook Farm Stratford St. Mary\",\n\t\t\t\"city\": \"Colchester\",\n\t\t\t\"region\": \"Essex\",\n\t\t\t\"postalCode\": \"CO7 6JX\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10732,\n\t\t\"customerID\": \"BONAP\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-11-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-07 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 16.97,\n\t\t\"shipName\": \"Bon app'\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"12 rue des Bouchers\",\n\t\t\t\"city\": \"Marseille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 13008,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10743,\n\t\t\"customerID\": \"AROUT\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-11-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-15 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-21 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 23.72,\n\t\t\"shipName\": \"Around the Horn\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Brook Farm Stratford St. Mary\",\n\t\t\t\"city\": \"Colchester\",\n\t\t\t\"region\": \"Essex\",\n\t\t\t\"postalCode\": \"CO7 6JX\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10754,\n\t\t\"customerID\": \"MAGAA\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-11-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-23 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-27 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 2.38,\n\t\t\"shipName\": \"Magazzini Alimentari Riuniti\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Via Ludovico il Moro 22\",\n\t\t\t\"city\": \"Bergamo\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 24100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10744,\n\t\t\"customerID\": \"VAFFE\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-11-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-15 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-24 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 69.19,\n\t\t\"shipName\": \"Vaffeljernet\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Smagsloget 45\",\n\t\t\t\"city\": \"Århus\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8200,\n\t\t\t\"country\": \"Denmark\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10765,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-12-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-01 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-09 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 42.74,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 21.05,\n\t\t\t\t\"quantity\": 80,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10770,\n\t\t\"customerID\": \"HANAR\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-12-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-17 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 5.32,\n\t\t\"shipName\": \"Hanari Carnes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Paço 67\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"05454-876\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10771,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1997-12-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-02 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 11.19,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 21.5,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10767,\n\t\t\"customerID\": \"SUPRD\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-12-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-15 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 1.59,\n\t\t\"shipName\": \"Suprêmes délices\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Boulevard Tirou 255\",\n\t\t\t\"city\": \"Charleroi\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"B-6000\",\n\t\t\t\"country\": \"Belgium\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10782,\n\t\t\"customerID\": \"CACTU\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1997-12-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-22 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 1.1,\n\t\t\"shipName\": \"Cactus Comidas para llevar\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Cerrito 333\",\n\t\t\t\"city\": \"Buenos Aires\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1010,\n\t\t\t\"country\": \"Argentina\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 1,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10777,\n\t\t\"customerID\": \"GOURL\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-12-15 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-21 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 3.01,\n\t\t\"shipName\": \"Gourmet Lanchonetes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Brasil 442\",\n\t\t\t\"city\": \"Campinas\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"04876-786\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10778,\n\t\t\"customerID\": \"BERGS\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-12-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-24 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 6.79,\n\t\t\"shipName\": \"Berglunds snabbköp\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berguvsvägen 8\",\n\t\t\t\"city\": \"Luleå\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-958 22\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10797,\n\t\t\"customerID\": \"DRACD\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-12-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-05 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 33.35,\n\t\t\"shipName\": \"Drachenblut Delikatessen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Walserweg 21\",\n\t\t\t\"city\": \"Aachen\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 52066,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10807,\n\t\t\"customerID\": \"FRANS\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-12-31 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-30 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 1.36,\n\t\t\"shipName\": \"Franchi S.p.A.\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Via Monte Bianco 34\",\n\t\t\t\"city\": \"Torino\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 10100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 1,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10809,\n\t\t\"customerID\": \"WELLI\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1998-01-01 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-07 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 4.87,\n\t\t\"shipName\": \"Wellington Importadora\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Mercado 12\",\n\t\t\t\"city\": \"Resende\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"08737-363\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 7,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10815,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1998-01-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-14 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 14.62,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2.5,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10820,\n\t\t\"customerID\": \"RATTC\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-01-07 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-13 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 37.52,\n\t\t\"shipName\": \"Rattlesnake Canyon Grocery\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2817 Milton Dr.\",\n\t\t\t\"city\": \"Albuquerque\",\n\t\t\t\"region\": \"NM\",\n\t\t\t\"postalCode\": 87110,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10843,\n\t\t\"customerID\": \"VICTE\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-01-21 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-26 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 9.26,\n\t\t\"shipName\": \"Victuailles en stock\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2 rue du Commerce\",\n\t\t\t\"city\": \"Lyon\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 69004,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10844,\n\t\t\"customerID\": \"PICCO\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1998-01-21 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-26 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 25.22,\n\t\t\"shipName\": \"Piccolo und mehr\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Geislweg 14\",\n\t\t\t\"city\": \"Salzburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5020,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 22,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10853,\n\t\t\"customerID\": \"BLAUS\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1998-01-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-03 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 53.83,\n\t\t\"shipName\": \"Blauer See Delikatessen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Forsterstr. 57\",\n\t\t\t\"city\": \"Mannheim\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 68306,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 62.5,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10874,\n\t\t\"customerID\": \"GODOS\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1998-02-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-11 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 19.58,\n\t\t\"shipName\": \"Godos Cocina Típica\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"C/ Romero 33\",\n\t\t\t\"city\": \"Sevilla\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 41101,\n\t\t\t\"country\": \"Spain\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10867,\n\t\t\"customerID\": \"LONEP\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1998-02-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-11 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 1.93,\n\t\t\"shipName\": \"Lonesome Pine Restaurant\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"89 Chiaroscuro Rd.\",\n\t\t\t\"city\": \"Portland\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97219,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 32.8,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10878,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-02-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-12 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 46.69,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 20,\n\t\t\t\t\"unitPrice\": 81,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10883,\n\t\t\"customerID\": \"LONEP\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1998-02-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-20 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 0.53,\n\t\t\"shipName\": \"Lonesome Pine Restaurant\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"89 Chiaroscuro Rd.\",\n\t\t\t\"city\": \"Portland\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97219,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10887,\n\t\t\"customerID\": \"GALED\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1998-02-13 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-16 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 1.25,\n\t\t\"shipName\": \"Galería del gastronómo\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rambla de Cataluña 23\",\n\t\t\t\"city\": \"Barcelona\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8022,\n\t\t\t\"country\": \"Spain\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 25,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10891,\n\t\t\"customerID\": \"LEHMS\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1998-02-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-19 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 20.37,\n\t\t\"shipName\": \"Lehmanns Marktstand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Magazinweg 7\",\n\t\t\t\"city\": \"Frankfurt a.M.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 60528,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 25.89,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10892,\n\t\t\"customerID\": \"MAISD\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-02-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-19 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 120.27,\n\t\t\"shipName\": \"Maison Dewey\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rue Joseph-Bens 532\",\n\t\t\t\"city\": \"Bruxelles\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"B-1180\",\n\t\t\t\"country\": \"Belgium\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10881,\n\t\t\"customerID\": \"CACTU\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-02-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-18 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 2.84,\n\t\t\"shipName\": \"Cactus Comidas para llevar\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Cerrito 333\",\n\t\t\t\"city\": \"Buenos Aires\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1010,\n\t\t\t\"country\": \"Argentina\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 73,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10900,\n\t\t\"customerID\": \"WELLI\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-02-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-04 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 1.66,\n\t\t\"shipName\": \"Wellington Importadora\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Mercado 12\",\n\t\t\t\"city\": \"Resende\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"08737-363\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10905,\n\t\t\"customerID\": \"WELLI\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1998-02-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-06 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 13.72,\n\t\t\"shipName\": \"Wellington Importadora\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Mercado 12\",\n\t\t\t\"city\": \"Resende\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"08737-363\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10914,\n\t\t\"customerID\": \"QUEEN\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1998-02-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-02 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 21.19,\n\t\t\"shipName\": \"Queen Cozinha\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Alameda dos Canàrios 891\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05487-020\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 21.5,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10906,\n\t\t\"customerID\": \"WOLZA\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-02-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-03 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 26.29,\n\t\t\"shipName\": \"Wolski Zajazd\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"ul. Filtrowa 68\",\n\t\t\t\"city\": \"Warszawa\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"01-012\",\n\t\t\t\"country\": \"Poland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 61,\n\t\t\t\t\"unitPrice\": 28.5,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10907,\n\t\t\"customerID\": \"SPECD\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1998-02-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-25 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-27 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 9.19,\n\t\t\"shipName\": \"Spécialités du monde\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"25 rue Lauriston\",\n\t\t\t\"city\": \"Paris\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 75016,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10920,\n\t\t\"customerID\": \"AROUT\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-03-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-31 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-09 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 29.61,\n\t\t\"shipName\": \"Around the Horn\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Brook Farm Stratford St. Mary\",\n\t\t\t\"city\": \"Colchester\",\n\t\t\t\"region\": \"Essex\",\n\t\t\t\"postalCode\": \"CO7 6JX\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 50,\n\t\t\t\t\"unitPrice\": 16.25,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10934,\n\t\t\"customerID\": \"LEHMS\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-03-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-12 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 32.01,\n\t\t\"shipName\": \"Lehmanns Marktstand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Magazinweg 7\",\n\t\t\t\"city\": \"Frankfurt a.M.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 60528,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 6,\n\t\t\t\t\"unitPrice\": 25,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10936,\n\t\t\"customerID\": \"GREAL\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-03-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-18 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 33.68,\n\t\t\"shipName\": \"Great Lakes Food Market\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2732 Baker Blvd.\",\n\t\t\t\"city\": \"Eugene\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97403,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10942,\n\t\t\"customerID\": \"REGGC\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1998-03-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-18 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 17.95,\n\t\t\"shipName\": \"Reggiani Caseifici\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Strada Provinciale 124\",\n\t\t\t\"city\": \"Reggio Emilia\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 42100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 49,\n\t\t\t\t\"unitPrice\": 20,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10947,\n\t\t\"customerID\": \"BSBEV\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-03-13 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-16 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 3.26,\n\t\t\"shipName\": \"B's Beverages\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Fauntleroy Circus\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"EC2 5NT\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10955,\n\t\t\"customerID\": \"FOLKO\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1998-03-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-20 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 3.26,\n\t\t\"shipName\": \"Folk och fä HB\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Åkergatan 24\",\n\t\t\t\"city\": \"Bräcke\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-844 67\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10950,\n\t\t\"customerID\": \"MAGAA\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-03-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-23 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 2.5,\n\t\t\"shipName\": \"Magazzini Alimentari Riuniti\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Via Ludovico il Moro 22\",\n\t\t\t\"city\": \"Bergamo\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 24100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 4,\n\t\t\t\t\"unitPrice\": 22,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10963,\n\t\t\"customerID\": \"FURIB\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1998-03-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-26 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 2.7,\n\t\t\"shipName\": \"Furia Bacalhau e Frutos do Mar\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Jardim das rosas n. 32\",\n\t\t\t\"city\": \"Lisboa\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1675,\n\t\t\t\"country\": \"Portugal\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10969,\n\t\t\"customerID\": \"COMMI\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-03-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-30 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 0.21,\n\t\t\"shipName\": \"Comércio Mineiro\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. dos Lusíadas 23\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05432-043\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10970,\n\t\t\"customerID\": \"BOLID\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1998-03-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-04-24 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 16.16,\n\t\t\"shipName\": \"Bólido Comidas preparadas\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"C/ Araquil 67\",\n\t\t\t\"city\": \"Madrid\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 28023,\n\t\t\t\"country\": \"Spain\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 7,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10971,\n\t\t\"customerID\": \"FRANR\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1998-03-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-21 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-04-02 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 121.82,\n\t\t\"shipName\": \"France restauration\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"54 rue Royale\",\n\t\t\t\"city\": \"Nantes\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 44000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 123.79,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10965,\n\t\t\"customerID\": \"OLDWO\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1998-03-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-30 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 144.38,\n\t\t\"shipName\": \"Old World Delicatessen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2743 Bering St.\",\n\t\t\t\"city\": \"Anchorage\",\n\t\t\t\"region\": \"AK\",\n\t\t\t\"postalCode\": 99508,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10974,\n\t\t\"customerID\": \"SPLIR\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-03-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-04-03 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 12.96,\n\t\t\"shipName\": \"Split Rail Beer & Ale\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"P.O. Box 555\",\n\t\t\t\"city\": \"Lander\",\n\t\t\t\"region\": \"WY\",\n\t\t\t\"postalCode\": 82520,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 63,\n\t\t\t\t\"unitPrice\": 43.9,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10980,\n\t\t\"customerID\": \"FOLKO\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-03-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-05-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-04-17 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 1.26,\n\t\t\"shipName\": \"Folk och fä HB\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Åkergatan 24\",\n\t\t\t\"city\": \"Bräcke\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-844 67\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10981,\n\t\t\"customerID\": \"HANAR\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-03-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-04-02 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 193.37,\n\t\t\"shipName\": \"Hanari Carnes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Paço 67\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"05454-876\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 263.5,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10959,\n\t\t\"customerID\": \"GOURL\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1998-03-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-23 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 4.98,\n\t\t\"shipName\": \"Gourmet Lanchonetes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Brasil 442\",\n\t\t\t\"city\": \"Campinas\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"04876-786\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10992,\n\t\t\"customerID\": \"THEBI\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-04-01 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-04-03 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 4.27,\n\t\t\"shipName\": \"The Big Cheese\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"89 Jefferson Way Suite 2\",\n\t\t\t\"city\": \"Portland\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97201,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 34.8,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10994,\n\t\t\"customerID\": \"VAFFE\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1998-04-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-04-09 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 65.53,\n\t\t\"shipName\": \"Vaffeljernet\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Smagsloget 45\",\n\t\t\t\"city\": \"Århus\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8200,\n\t\t\t\"country\": \"Denmark\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10996,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-04-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-04-10 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 1.12,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 11014,\n\t\t\"customerID\": \"LINOD\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1998-04-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-05-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-04-15 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 23.6,\n\t\t\"shipName\": \"LINO-Delicateses\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Ave. 5 de Mayo Porlamar\",\n\t\t\t\"city\": \"I. de Margarita\",\n\t\t\t\"region\": \"Nueva Esparta\",\n\t\t\t\"postalCode\": 4980,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 11020,\n\t\t\"customerID\": \"OTTIK\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1998-04-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-05-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-04-16 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 43.3,\n\t\t\"shipName\": \"Ottilies Käseladen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Mehrheimerstr. 369\",\n\t\t\t\"city\": \"Köln\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 50739,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 11040,\n\t\t\"customerID\": \"GREAL\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-04-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-05-20 00:00:00.000\",\n\t\t\"shippedDate\": \"NULL\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 18.84,\n\t\t\"shipName\": \"Great Lakes Food Market\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2732 Baker Blvd.\",\n\t\t\t\"city\": \"Eugene\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97403,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 11043,\n\t\t\"customerID\": \"SPECD\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1998-04-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-05-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-04-29 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 8.8,\n\t\t\"shipName\": \"Spécialités du monde\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"25 rue Lauriston\",\n\t\t\t\"city\": \"Paris\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 75016,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 11044,\n\t\t\"customerID\": \"WOLZA\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-04-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-05-21 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-05-01 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 8.72,\n\t\t\"shipName\": \"Wolski Zajazd\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"ul. Filtrowa 68\",\n\t\t\t\"city\": \"Warszawa\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"01-012\",\n\t\t\t\"country\": \"Poland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 11048,\n\t\t\"customerID\": \"BOTTM\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1998-04-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-05-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-04-30 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 24.12,\n\t\t\"shipName\": \"Bottom-Dollar Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"23 Tsawassen Blvd.\",\n\t\t\t\"city\": \"Tsawassen\",\n\t\t\t\"region\": \"BC\",\n\t\t\t\"postalCode\": \"T2F 8M4\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 42,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 11037,\n\t\t\"customerID\": \"GODOS\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1998-04-21 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-05-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-04-27 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 3.2,\n\t\t\"shipName\": \"Godos Cocina Típica\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"C/ Romero 33\",\n\t\t\t\"city\": \"Sevilla\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 41101,\n\t\t\t\"country\": \"Spain\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 11050,\n\t\t\"customerID\": \"FOLKO\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1998-04-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-05-25 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-05-05 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 59.41,\n\t\t\"shipName\": \"Folk och fä HB\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Åkergatan 24\",\n\t\t\t\"city\": \"Bräcke\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-844 67\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 11057,\n\t\t\"customerID\": \"NORTS\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-04-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-05-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-05-01 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 4.13,\n\t\t\"shipName\": \"North/South\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"South House 300 Queensbridge\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"SW7 1RZ\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 11061,\n\t\t\"customerID\": \"GREAL\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-04-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-06-11 00:00:00.000\",\n\t\t\"shippedDate\": \"NULL\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 14.01,\n\t\t\"shipName\": \"Great Lakes Food Market\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2732 Baker Blvd.\",\n\t\t\t\"city\": \"Eugene\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97403,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 11051,\n\t\t\"customerID\": \"LAMAI\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1998-04-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-05-25 00:00:00.000\",\n\t\t\"shippedDate\": \"NULL\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 2.79,\n\t\t\"shipName\": \"La maison d'Asie\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1 rue Alsace-Lorraine\",\n\t\t\t\"city\": \"Toulouse\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 31000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 11067,\n\t\t\"customerID\": \"DRACD\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-05-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-05-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-05-06 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 7.98,\n\t\t\"shipName\": \"Drachenblut Delikatessen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Walserweg 21\",\n\t\t\t\"city\": \"Aachen\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 52066,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 11069,\n\t\t\"customerID\": \"TORTU\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-05-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-06-01 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-05-06 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 15.67,\n\t\t\"shipName\": \"Tortuga Restaurante\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Avda. Azteca 123\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5033,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 11074,\n\t\t\"customerID\": \"SIMOB\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1998-05-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-06-03 00:00:00.000\",\n\t\t\"shippedDate\": \"NULL\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 18.44,\n\t\t\"shipName\": \"Simons bistro\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Vinbæltet 34\",\n\t\t\t\"city\": \"Kobenhavn\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1734,\n\t\t\t\"country\": \"Denmark\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10248,\n\t\t\"customerID\": \"VINET\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1996-07-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-01 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-07-16 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 32.38,\n\t\t\"shipName\": \"Vins et alcools Chevalier\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"59 rue de l'Abbaye\",\n\t\t\t\"city\": \"Reims\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 51100,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 9.8,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 34.8,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10249,\n\t\t\"customerID\": \"TOMSP\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1996-07-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-07-10 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 11.61,\n\t\t\"shipName\": \"Toms Spezialitäten\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Luisenstr. 48\",\n\t\t\t\"city\": \"Münster\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 44087,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 14,\n\t\t\t\t\"unitPrice\": 18.6,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 42.4,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10250,\n\t\t\"customerID\": \"HANAR\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-07-08 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-07-12 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 65.83,\n\t\t\"shipName\": \"Hanari Carnes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Paço 67\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"05454-876\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 7.7,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 42.4,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10252,\n\t\t\"customerID\": \"SUPRD\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-07-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-07-11 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 51.3,\n\t\t\"shipName\": \"Suprêmes délices\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Boulevard Tirou 255\",\n\t\t\t\"city\": \"Charleroi\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"B-6000\",\n\t\t\t\"country\": \"Belgium\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 20,\n\t\t\t\t\"unitPrice\": 64.8,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 27.2,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10253,\n\t\t\"customerID\": \"HANAR\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1996-07-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-07-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-07-16 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 58.17,\n\t\t\"shipName\": \"Hanari Carnes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Paço 67\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"05454-876\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 42,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 49,\n\t\t\t\t\"unitPrice\": 16,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10251,\n\t\t\"customerID\": \"VICTE\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1996-07-08 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-07-15 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 41.34,\n\t\t\"shipName\": \"Victuailles en stock\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2 rue du Commerce\",\n\t\t\t\"city\": \"Lyon\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 69004,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 22,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 57,\n\t\t\t\t\"unitPrice\": 15.6,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10257,\n\t\t\"customerID\": \"HILAA\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-07-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-07-22 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 81.91,\n\t\t\"shipName\": \"HILARION-Abastos\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 22 con Ave. Carlos Soublette #8-35\",\n\t\t\t\"city\": \"San Cristóbal\",\n\t\t\t\"region\": \"Táchira\",\n\t\t\t\"postalCode\": 5022,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 27,\n\t\t\t\t\"unitPrice\": 35.1,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 10.4,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10258,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-07-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-07-23 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 140.51,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 5,\n\t\t\t\t\"unitPrice\": 17,\n\t\t\t\t\"quantity\": 65,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 32,\n\t\t\t\t\"unitPrice\": 25.6,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10259,\n\t\t\"customerID\": \"CENTC\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-07-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-15 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-07-25 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 3.25,\n\t\t\"shipName\": \"Centro comercial Moctezuma\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Sierras de Granada 9993\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5022,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 37,\n\t\t\t\t\"unitPrice\": 20.8,\n\t\t\t\t\"quantity\": 1,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10260,\n\t\t\"customerID\": \"OTTIK\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-07-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-07-29 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 55.09,\n\t\t\"shipName\": \"Ottilies Käseladen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Mehrheimerstr. 369\",\n\t\t\t\"city\": \"Köln\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 50739,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 7.7,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 57,\n\t\t\t\t\"unitPrice\": 15.6,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 39.4,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10261,\n\t\t\"customerID\": \"QUEDE\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-07-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-07-30 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 3.05,\n\t\t\"shipName\": \"Que Delícia\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua da Panificadora 12\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"02389-673\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10262,\n\t\t\"customerID\": \"RATTC\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1996-07-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-07-25 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 48.29,\n\t\t\"shipName\": \"Rattlesnake Canyon Grocery\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2817 Milton Dr.\",\n\t\t\t\"city\": \"Albuquerque\",\n\t\t\t\"region\": \"NM\",\n\t\t\t\"postalCode\": 87110,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 5,\n\t\t\t\t\"unitPrice\": 17,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 7,\n\t\t\t\t\"unitPrice\": 24,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 30.4,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10256,\n\t\t\"customerID\": \"WELLI\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1996-07-15 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-07-17 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 13.97,\n\t\t\"shipName\": \"Wellington Importadora\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Mercado 12\",\n\t\t\t\"city\": \"Resende\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"08737-363\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 26.2,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 10.4,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10255,\n\t\t\"customerID\": \"RICSU\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1996-07-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-07-15 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 148.33,\n\t\t\"shipName\": \"Richter Supermarkt\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Starenweg 5\",\n\t\t\t\"city\": \"Genève\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1204,\n\t\t\t\"country\": \"Switzerland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 13.9,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 44,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10264,\n\t\t\"customerID\": \"FOLKO\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1996-07-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-21 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-23 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 3.67,\n\t\t\"shipName\": \"Folk och fä HB\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Åkergatan 24\",\n\t\t\t\"city\": \"Bräcke\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-844 67\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 7.7,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10265,\n\t\t\"customerID\": \"BLONP\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1996-07-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-12 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 55.28,\n\t\t\"shipName\": \"Blondel père et fils\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"24 place Kléber\",\n\t\t\t\"city\": \"Strasbourg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 67000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 31.2,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10254,\n\t\t\"customerID\": \"CHOPS\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1996-07-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-07-23 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 22.98,\n\t\t\"shipName\": \"Chop-suey Chinese\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Hauptstr. 31\",\n\t\t\t\"city\": \"Bern\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 3012,\n\t\t\t\"country\": \"Switzerland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 3.6,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 19.2,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 74,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10263,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1996-07-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-07-31 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 146.06,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 13.9,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 3.6,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 20.7,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 74,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 36,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10268,\n\t\t\"customerID\": \"GROSR\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1996-07-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-02 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 66.29,\n\t\t\"shipName\": \"GROSELLA-Restaurante\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"5ª Ave. Los Palos Grandes\",\n\t\t\t\"city\": \"Caracas\",\n\t\t\t\"region\": \"DF\",\n\t\t\t\"postalCode\": 1081,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 99,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 27.8,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10267,\n\t\t\"customerID\": \"FRANK\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-07-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-06 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 208.58,\n\t\t\"shipName\": \"Frankenversand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berliner Platz 43\",\n\t\t\t\"city\": \"München\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 80805,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 14.7,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 44,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10270,\n\t\t\"customerID\": \"WARTH\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-08-01 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-02 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 136.54,\n\t\t\"shipName\": \"Wartian Herkku\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Torikatu 38\",\n\t\t\t\"city\": \"Oulu\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 90110,\n\t\t\t\"country\": \"Finland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 36.8,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10274,\n\t\t\"customerID\": \"VINET\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1996-08-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-03 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-16 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 6.01,\n\t\t\"shipName\": \"Vins et alcools Chevalier\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"59 rue de l'Abbaye\",\n\t\t\t\"city\": \"Reims\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 51100,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 17.2,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 27.8,\n\t\t\t\t\"quantity\": 7,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10275,\n\t\t\"customerID\": \"MAGAA\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-08-07 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-09 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 26.93,\n\t\t\"shipName\": \"Magazzini Alimentari Riuniti\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Via Ludovico il Moro 22\",\n\t\t\t\"city\": \"Bergamo\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 24100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 3.6,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 44,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10276,\n\t\t\"customerID\": \"TORTU\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1996-08-08 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-14 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 13.84,\n\t\t\"shipName\": \"Tortuga Restaurante\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Avda. Azteca 123\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5033,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 24.8,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 4.8,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10277,\n\t\t\"customerID\": \"MORGK\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1996-08-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-13 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 125.77,\n\t\t\"shipName\": \"Morgenstern Gesundkost\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Heerstr. 22\",\n\t\t\t\"city\": \"Leipzig\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 4179,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 39.4,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 36.4,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10273,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1996-08-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-12 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 76.07,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 14.7,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 33,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 24.8,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10272,\n\t\t\"customerID\": \"RATTC\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1996-08-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-06 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 98.03,\n\t\t\"shipName\": \"Rattlesnake Canyon Grocery\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2817 Milton Dr.\",\n\t\t\t\"city\": \"Albuquerque\",\n\t\t\t\"region\": \"NM\",\n\t\t\t\"postalCode\": 87110,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 27.8,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 20,\n\t\t\t\t\"unitPrice\": 64.8,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10278,\n\t\t\"customerID\": \"BERGS\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1996-08-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-16 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 92.69,\n\t\t\"shipName\": \"Berglunds snabbköp\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berguvsvägen 8\",\n\t\t\t\"city\": \"Luleå\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-958 22\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 73,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 44,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 63,\n\t\t\t\t\"unitPrice\": 35.1,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 15.5,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10269,\n\t\t\"customerID\": \"WHITC\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1996-07-31 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-09 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 4.56,\n\t\t\"shipName\": \"White Clover Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1029 - 12th Ave. S.\",\n\t\t\t\"city\": \"Seattle\",\n\t\t\t\"region\": \"WA\",\n\t\t\t\"postalCode\": 98124,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 27.8,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10280,\n\t\t\"customerID\": \"BERGS\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1996-08-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-12 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 8.98,\n\t\t\"shipName\": \"Berglunds snabbköp\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berguvsvägen 8\",\n\t\t\t\"city\": \"Luleå\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-958 22\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 3.6,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 19.2,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 6.2,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10281,\n\t\t\"customerID\": \"ROMEY\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-08-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-08-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-21 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 2.94,\n\t\t\"shipName\": \"Romero y tomillo\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Gran Vía 1\",\n\t\t\t\"city\": \"Madrid\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 28001,\n\t\t\t\"country\": \"Spain\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 7.3,\n\t\t\t\t\"quantity\": 1,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 3.6,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10282,\n\t\t\"customerID\": \"ROMEY\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-08-15 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-21 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 12.69,\n\t\t\"shipName\": \"Romero y tomillo\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Gran Vía 1\",\n\t\t\t\"city\": \"Madrid\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 28001,\n\t\t\t\"country\": \"Spain\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 20.7,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 57,\n\t\t\t\t\"unitPrice\": 15.6,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10283,\n\t\t\"customerID\": \"LILAS\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1996-08-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-23 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 84.81,\n\t\t\"shipName\": \"LILA-Supermercado\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 52 con Ave. Bolívar #65-98 Llano Largo\",\n\t\t\t\"city\": \"Barquisimeto\",\n\t\t\t\"region\": \"Lara\",\n\t\t\t\"postalCode\": 3508,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 15,\n\t\t\t\t\"unitPrice\": 12.4,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 7.3,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 27.8,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 27.2,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10284,\n\t\t\"customerID\": \"LEHMS\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-08-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-27 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 76.56,\n\t\t\"shipName\": \"Lehmanns Marktstand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Magazinweg 7\",\n\t\t\t\"city\": \"Frankfurt a.M.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 60528,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 27,\n\t\t\t\t\"unitPrice\": 35.1,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 15.5,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 27.2,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 67,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10285,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-08-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-26 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 76.83,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 45,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 14.7,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 26.2,\n\t\t\t\t\"quantity\": 36,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10286,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1996-08-21 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-30 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 229.24,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 100,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 39.4,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10287,\n\t\t\"customerID\": \"RICAR\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1996-08-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-28 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 12.76,\n\t\t\"shipName\": \"Ricardo Adocicados\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Copacabana 267\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"02389-890\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 13.9,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 34,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 9.6,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10288,\n\t\t\"customerID\": \"REGGC\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-08-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-03 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 7.45,\n\t\t\"shipName\": \"Reggiani Caseifici\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Strada Provinciale 124\",\n\t\t\t\"city\": \"Reggio Emilia\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 42100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 5.9,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10289,\n\t\t\"customerID\": \"BSBEV\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1996-08-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-23 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-08-28 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 22.77,\n\t\t\"shipName\": \"B's Beverages\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Fauntleroy Circus\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"EC2 5NT\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 3,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 26.6,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10290,\n\t\t\"customerID\": \"COMMI\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1996-08-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-03 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 79.7,\n\t\t\"shipName\": \"Comércio Mineiro\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. dos Lusíadas 23\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05432-043\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 5,\n\t\t\t\t\"unitPrice\": 17,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 99,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 49,\n\t\t\t\t\"unitPrice\": 16,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 10.4,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10291,\n\t\t\"customerID\": \"QUEDE\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1996-08-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-04 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 6.4,\n\t\t\"shipName\": \"Que Delícia\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua da Panificadora 12\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"02389-673\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 4.8,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 15.5,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 42.4,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10296,\n\t\t\"customerID\": \"LILAS\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1996-09-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-01 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-11 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 0.12,\n\t\t\"shipName\": \"LILA-Supermercado\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 52 con Ave. Bolívar #65-98 Llano Largo\",\n\t\t\t\"city\": \"Barquisimeto\",\n\t\t\t\"region\": \"Lara\",\n\t\t\t\"postalCode\": 3508,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 13.9,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 28.8,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10297,\n\t\t\"customerID\": \"BLONP\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1996-09-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-10 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 5.74,\n\t\t\"shipName\": \"Blondel père et fils\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"24 place Kléber\",\n\t\t\t\"city\": \"Strasbourg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 67000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 27.8,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10298,\n\t\t\"customerID\": \"HUNGO\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1996-09-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-03 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-11 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 168.22,\n\t\t\"shipName\": \"Hungry Owl All-Night Grocers\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"8 Johnstown Road\",\n\t\t\t\"city\": \"Cork\",\n\t\t\t\"region\": \"Co. Cork\",\n\t\t\t\"postalCode\": \"NULL\",\n\t\t\t\"country\": \"Ireland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 44,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 39.4,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10299,\n\t\t\"customerID\": \"RICAR\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-09-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-13 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 29.76,\n\t\t\"shipName\": \"Ricardo Adocicados\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Copacabana 267\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"02389-890\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 7.3,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10300,\n\t\t\"customerID\": \"MAGAA\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1996-09-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-18 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 17.68,\n\t\t\"shipName\": \"Magazzini Alimentari Riuniti\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Via Ludovico il Moro 22\",\n\t\t\t\"city\": \"Bergamo\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 24100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 66,\n\t\t\t\t\"unitPrice\": 13.6,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10301,\n\t\t\"customerID\": \"WANDK\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1996-09-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-17 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 45.08,\n\t\t\"shipName\": \"Die Wandernde Kuh\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Adenauerallee 900\",\n\t\t\t\"city\": \"Stuttgart\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 70563,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 14.7,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 30.4,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10293,\n\t\t\"customerID\": \"TORTU\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-08-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-11 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 21.18,\n\t\t\"shipName\": \"Tortuga Restaurante\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Avda. Azteca 123\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5033,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 50,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 63,\n\t\t\t\t\"unitPrice\": 35.1,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 3.6,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 6.2,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10294,\n\t\t\"customerID\": \"RATTC\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-08-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-09-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-05 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 147.26,\n\t\t\"shipName\": \"Rattlesnake Canyon Grocery\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2817 Milton Dr.\",\n\t\t\t\"city\": \"Albuquerque\",\n\t\t\t\"region\": \"NM\",\n\t\t\t\"postalCode\": 87110,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 31.2,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 36.8,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 27.2,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 6.2,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10302,\n\t\t\"customerID\": \"SUPRD\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-09-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-09 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 6.27,\n\t\t\"shipName\": \"Suprêmes délices\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Boulevard Tirou 255\",\n\t\t\t\"city\": \"Charleroi\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"B-6000\",\n\t\t\t\"country\": \"Belgium\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 31.2,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 36.4,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 36.8,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10303,\n\t\t\"customerID\": \"GODOS\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1996-09-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-18 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 107.83,\n\t\t\"shipName\": \"Godos Cocina Típica\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"C/ Romero 33\",\n\t\t\t\"city\": \"Sevilla\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 41101,\n\t\t\t\"country\": \"Spain\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 14.7,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10304,\n\t\t\"customerID\": \"TORTU\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-09-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-17 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 63.79,\n\t\t\"shipName\": \"Tortuga Restaurante\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Avda. Azteca 123\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5033,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 49,\n\t\t\t\t\"unitPrice\": 16,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 44,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 17.2,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10306,\n\t\t\"customerID\": \"ROMEY\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-09-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-23 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 7.56,\n\t\t\"shipName\": \"Romero y tomillo\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Gran Vía 1\",\n\t\t\t\"city\": \"Madrid\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 28001,\n\t\t\t\"country\": \"Spain\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 20.7,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 26.2,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 5.9,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10305,\n\t\t\"customerID\": \"OLDWO\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1996-09-13 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-09 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 257.62,\n\t\t\"shipName\": \"Old World Delicatessen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2743 Bering St.\",\n\t\t\t\"city\": \"Anchorage\",\n\t\t\t\"region\": \"AK\",\n\t\t\t\"postalCode\": 99508,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 99,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 50,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10307,\n\t\t\"customerID\": \"LONEP\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1996-09-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-15 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-25 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 0.56,\n\t\t\"shipName\": \"Lonesome Pine Restaurant\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"89 Chiaroscuro Rd.\",\n\t\t\t\"city\": \"Portland\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97219,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 39.4,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10308,\n\t\t\"customerID\": \"ANATR\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1996-09-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-24 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 1.61,\n\t\t\"shipName\": \"Ana Trujillo Emparedados y helados\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Avda. de la Constitución 2222\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5021,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 28.8,\n\t\t\t\t\"quantity\": 1,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10309,\n\t\t\"customerID\": \"HUNGO\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1996-09-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-23 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 47.3,\n\t\t\"shipName\": \"Hungry Owl All-Night Grocers\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"8 Johnstown Road\",\n\t\t\t\"city\": \"Cork\",\n\t\t\t\"region\": \"Co. Cork\",\n\t\t\t\"postalCode\": \"NULL\",\n\t\t\t\"country\": \"Ireland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 4,\n\t\t\t\t\"unitPrice\": 17.6,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 6,\n\t\t\t\t\"unitPrice\": 20,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 36.8,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 17.2,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10310,\n\t\t\"customerID\": \"THEBI\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1996-09-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-27 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 17.52,\n\t\t\"shipName\": \"The Big Cheese\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"89 Jefferson Way Suite 2\",\n\t\t\t\"city\": \"Portland\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97201,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 13.9,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 39.4,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10314,\n\t\t\"customerID\": \"RATTC\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-09-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-23 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-04 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 74.16,\n\t\t\"shipName\": \"Rattlesnake Canyon Grocery\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2817 Milton Dr.\",\n\t\t\t\"city\": \"Albuquerque\",\n\t\t\t\"region\": \"NM\",\n\t\t\t\"postalCode\": 87110,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 32,\n\t\t\t\t\"unitPrice\": 25.6,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 58,\n\t\t\t\t\"unitPrice\": 10.6,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 39.4,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10315,\n\t\t\"customerID\": \"ISLAT\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-09-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-03 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 41.76,\n\t\t\"shipName\": \"Island Trading\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Garden House Crowther Way\",\n\t\t\t\"city\": \"Cowes\",\n\t\t\t\"region\": \"Isle of Wight\",\n\t\t\t\"postalCode\": \"PO31 7PJ\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 34,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10316,\n\t\t\"customerID\": \"RATTC\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-09-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-25 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-08 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 150.15,\n\t\t\"shipName\": \"Rattlesnake Canyon Grocery\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2817 Milton Dr.\",\n\t\t\t\"city\": \"Albuquerque\",\n\t\t\t\"region\": \"NM\",\n\t\t\t\"postalCode\": 87110,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 39.4,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 7.7,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10311,\n\t\t\"customerID\": \"DUMON\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-09-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-09-26 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 24.69,\n\t\t\"shipName\": \"Du monde entier\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"67 rue des Cinquante Otages\",\n\t\t\t\"city\": \"Nantes\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 44000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 28.8,\n\t\t\t\t\"quantity\": 7,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10312,\n\t\t\"customerID\": \"WANDK\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1996-09-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-21 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-03 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 40.26,\n\t\t\"shipName\": \"Die Wandernde Kuh\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Adenauerallee 900\",\n\t\t\t\"city\": \"Stuttgart\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 70563,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 36.8,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 26.2,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 6.2,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 36.4,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10319,\n\t\t\"customerID\": \"TORTU\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1996-10-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-11 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 64.5,\n\t\t\"shipName\": \"Tortuga Restaurante\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Avda. Azteca 123\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5033,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 31.2,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 36.4,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10318,\n\t\t\"customerID\": \"ISLAT\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1996-10-01 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-04 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 4.73,\n\t\t\"shipName\": \"Island Trading\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Garden House Crowther Way\",\n\t\t\t\"city\": \"Cowes\",\n\t\t\t\"region\": \"Isle of Wight\",\n\t\t\t\"postalCode\": \"PO31 7PJ\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 7.7,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10326,\n\t\t\"customerID\": \"BOLID\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-10-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-14 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 77.92,\n\t\t\"shipName\": \"Bólido Comidas preparadas\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"C/ Araquil 67\",\n\t\t\t\"city\": \"Madrid\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 28023,\n\t\t\t\"country\": \"Spain\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 4,\n\t\t\t\t\"unitPrice\": 17.6,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 57,\n\t\t\t\t\"unitPrice\": 15.6,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 6.2,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10323,\n\t\t\"customerID\": \"KOENE\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-10-07 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-14 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 4.88,\n\t\t\"shipName\": \"Königlich Essen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Maubelstr. 90\",\n\t\t\t\"city\": \"Brandenburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 14776,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 15,\n\t\t\t\t\"unitPrice\": 12.4,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 25,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10327,\n\t\t\"customerID\": \"FOLKO\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1996-10-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-14 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 63.36,\n\t\t\"shipName\": \"Folk och fä HB\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Åkergatan 24\",\n\t\t\t\"city\": \"Bräcke\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-844 67\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 20.7,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 58,\n\t\t\t\t\"unitPrice\": 10.6,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10328,\n\t\t\"customerID\": \"FURIB\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-10-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-17 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 87.03,\n\t\t\"shipName\": \"Furia Bacalhau e Frutos do Mar\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Jardim das rosas n. 32\",\n\t\t\t\"city\": \"Lisboa\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1675,\n\t\t\t\"country\": \"Portugal\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 44,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10330,\n\t\t\"customerID\": \"LILAS\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1996-10-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-28 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 12.75,\n\t\t\"shipName\": \"LILA-Supermercado\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 52 con Ave. Bolívar #65-98 Llano Largo\",\n\t\t\t\"city\": \"Barquisimeto\",\n\t\t\t\"region\": \"Lara\",\n\t\t\t\"postalCode\": 3508,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 27.8,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 24.9,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10329,\n\t\t\"customerID\": \"SPLIR\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-10-15 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-23 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 191.67,\n\t\t\"shipName\": \"Split Rail Beer & Ale\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"P.O. Box 555\",\n\t\t\t\"city\": \"Lander\",\n\t\t\t\"region\": \"WY\",\n\t\t\t\"postalCode\": 82520,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 7.3,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 20.7,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 210.8,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 30.4,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10324,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1996-10-08 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-10 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 214.27,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 9.6,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 13.9,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 63,\n\t\t\t\t\"unitPrice\": 35.1,\n\t\t\t\t\"quantity\": 80,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 44,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10333,\n\t\t\"customerID\": \"WARTH\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1996-10-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-15 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-25 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 0.59,\n\t\t\"shipName\": \"Wartian Herkku\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Torikatu 38\",\n\t\t\t\"city\": \"Oulu\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 90110,\n\t\t\t\"country\": \"Finland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 14,\n\t\t\t\t\"unitPrice\": 18.6,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 17.2,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10334,\n\t\t\"customerID\": \"VICTE\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1996-10-21 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-28 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 8.56,\n\t\t\"shipName\": \"Victuailles en stock\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2 rue du Commerce\",\n\t\t\t\"city\": \"Lyon\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 69004,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 5.6,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10335,\n\t\t\"customerID\": \"HUNGO\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1996-10-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-24 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 42.11,\n\t\t\"shipName\": \"Hungry Owl All-Night Grocers\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"8 Johnstown Road\",\n\t\t\t\"city\": \"Cork\",\n\t\t\t\"region\": \"Co. Cork\",\n\t\t\t\"postalCode\": \"NULL\",\n\t\t\t\"country\": \"Ireland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 32,\n\t\t\t\t\"unitPrice\": 25.6,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 42.4,\n\t\t\t\t\"quantity\": 48,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 7,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10337,\n\t\t\"customerID\": \"FRANK\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-10-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-21 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-29 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 108.26,\n\t\t\"shipName\": \"Frankenversand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berliner Platz 43\",\n\t\t\t\"city\": \"München\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 80805,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 23,\n\t\t\t\t\"unitPrice\": 7.2,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 24.9,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 37,\n\t\t\t\t\"unitPrice\": 20.8,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 27.8,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10338,\n\t\t\"customerID\": \"OLDWO\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-10-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-29 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 84.21,\n\t\t\"shipName\": \"Old World Delicatessen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2743 Bering St.\",\n\t\t\t\"city\": \"Anchorage\",\n\t\t\t\"region\": \"AK\",\n\t\t\t\"postalCode\": 99508,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 31.2,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 20.7,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10339,\n\t\t\"customerID\": \"MEREP\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1996-10-28 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-25 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-11-04 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 15.66,\n\t\t\"shipName\": \"Mère Paillarde\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"43 rue St. Laurent\",\n\t\t\t\"city\": \"Montréal\",\n\t\t\t\"region\": \"Québec\",\n\t\t\t\"postalCode\": \"H1J 1C3\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 4,\n\t\t\t\t\"unitPrice\": 17.6,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 31.2,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 39.4,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10340,\n\t\t\"customerID\": \"BONAP\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-10-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-11-08 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 166.31,\n\t\t\"shipName\": \"Bon app'\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"12 rue des Bouchers\",\n\t\t\t\"city\": \"Marseille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 13008,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 50,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 7.7,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 36.8,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10341,\n\t\t\"customerID\": \"SIMOB\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1996-10-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-11-05 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 26.78,\n\t\t\"shipName\": \"Simons bistro\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Vinbæltet 34\",\n\t\t\t\"city\": \"Kobenhavn\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1734,\n\t\t\t\"country\": \"Denmark\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 44,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10342,\n\t\t\"customerID\": \"FRANK\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-10-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-11-04 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 54.83,\n\t\t\"shipName\": \"Frankenversand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berliner Platz 43\",\n\t\t\t\"city\": \"München\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 80805,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 56,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 19.2,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10343,\n\t\t\"customerID\": \"LEHMS\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-10-31 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-11-06 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 110.37,\n\t\t\"shipName\": \"Lehmanns Marktstand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Magazinweg 7\",\n\t\t\t\"city\": \"Frankfurt a.M.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 60528,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 26.6,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10344,\n\t\t\"customerID\": \"WHITC\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-11-01 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-11-05 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 23.29,\n\t\t\"shipName\": \"White Clover Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1029 - 12th Ave. S.\",\n\t\t\t\"city\": \"Seattle\",\n\t\t\t\"region\": \"WA\",\n\t\t\t\"postalCode\": 98124,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 4,\n\t\t\t\t\"unitPrice\": 17.6,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 8,\n\t\t\t\t\"unitPrice\": 32,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10345,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1996-11-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-11-11 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 249.06,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 8,\n\t\t\t\t\"unitPrice\": 32,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 7.3,\n\t\t\t\t\"quantity\": 80,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10346,\n\t\t\"customerID\": \"RATTC\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1996-11-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-11-08 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 142.08,\n\t\t\"shipName\": \"Rattlesnake Canyon Grocery\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2817 Milton Dr.\",\n\t\t\t\"city\": \"Albuquerque\",\n\t\t\t\"region\": \"NM\",\n\t\t\t\"postalCode\": 87110,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 31.2,\n\t\t\t\t\"quantity\": 36,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 30.4,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10347,\n\t\t\"customerID\": \"FAMIA\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-11-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-11-08 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 3.1,\n\t\t\"shipName\": \"Familia Arquibaldo\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua Orós 92\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05442-030\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 25,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 14.7,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 6.2,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10348,\n\t\t\"customerID\": \"WANDK\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-11-07 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-11-15 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 0.78,\n\t\t\"shipName\": \"Die Wandernde Kuh\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Adenauerallee 900\",\n\t\t\t\"city\": \"Stuttgart\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 70563,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 23,\n\t\t\t\t\"unitPrice\": 7.2,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10325,\n\t\t\"customerID\": \"KOENE\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-10-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-10-23 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-14 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 64.86,\n\t\t\"shipName\": \"Königlich Essen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Maubelstr. 90\",\n\t\t\t\"city\": \"Brandenburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 14776,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 4.8,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 14,\n\t\t\t\t\"unitPrice\": 18.6,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 27.8,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 6,\n\t\t\t\t\"unitPrice\": 20,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10350,\n\t\t\"customerID\": \"LAMAI\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1996-11-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-03 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 64.19,\n\t\t\"shipName\": \"La maison d'Asie\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1 rue Alsace-Lorraine\",\n\t\t\t\"city\": \"Toulouse\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 31000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 50,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 28.8,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10332,\n\t\t\"customerID\": \"MEREP\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1996-10-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-10-21 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 52.84,\n\t\t\"shipName\": \"Mère Paillarde\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"43 rue St. Laurent\",\n\t\t\t\"city\": \"Montréal\",\n\t\t\t\"region\": \"Québec\",\n\t\t\t\"postalCode\": \"H1J 1C3\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 50,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 47,\n\t\t\t\t\"unitPrice\": 7.6,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10351,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-11-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-11-20 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 162.33,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 210.8,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 7.7,\n\t\t\t\t\"quantity\": 13,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 15.5,\n\t\t\t\t\"quantity\": 77,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10355,\n\t\t\"customerID\": \"AROUT\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1996-11-15 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-11-20 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 41.95,\n\t\t\"shipName\": \"Around the Horn\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Brook Farm Stratford St. Mary\",\n\t\t\t\"city\": \"Colchester\",\n\t\t\t\"region\": \"Essex\",\n\t\t\t\"postalCode\": \"CO7 6JX\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 3.6,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 57,\n\t\t\t\t\"unitPrice\": 15.6,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10356,\n\t\t\"customerID\": \"WANDK\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1996-11-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-11-27 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 36.71,\n\t\t\"shipName\": \"Die Wandernde Kuh\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Adenauerallee 900\",\n\t\t\t\"city\": \"Stuttgart\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 70563,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 19.2,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 28.8,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10357,\n\t\t\"customerID\": \"LILAS\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-11-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-02 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 34.88,\n\t\t\"shipName\": \"LILA-Supermercado\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 52 con Ave. Bolívar #65-98 Llano Largo\",\n\t\t\t\"city\": \"Barquisimeto\",\n\t\t\t\"region\": \"Lara\",\n\t\t\t\"postalCode\": 3508,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 24.8,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 24.9,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 27.2,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10358,\n\t\t\"customerID\": \"LAMAI\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1996-11-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-11-27 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 19.64,\n\t\t\"shipName\": \"La maison d'Asie\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1 rue Alsace-Lorraine\",\n\t\t\t\"city\": \"Toulouse\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 31000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 3.6,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 34,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10359,\n\t\t\"customerID\": \"SEVES\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1996-11-21 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-11-26 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 288.43,\n\t\t\"shipName\": \"Seven Seas Imports\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"90 Wadhurst Rd.\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"OX15 4NB\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 13.9,\n\t\t\t\t\"quantity\": 56,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 27.2,\n\t\t\t\t\"quantity\": 80,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10360,\n\t\t\"customerID\": \"BLONP\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-11-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-02 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 131.7,\n\t\t\"shipName\": \"Blondel père et fils\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"24 place Kléber\",\n\t\t\t\"city\": \"Strasbourg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 67000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 36.4,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 99,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 210.8,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 49,\n\t\t\t\t\"unitPrice\": 16,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 5.9,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10361,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-11-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-03 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 183.17,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 54,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 27.2,\n\t\t\t\t\"quantity\": 55,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10353,\n\t\t\"customerID\": \"PICCO\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1996-11-13 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-11-25 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 360.63,\n\t\t\"shipName\": \"Piccolo und mehr\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Geislweg 14\",\n\t\t\t\"city\": \"Salzburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5020,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 210.8,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10363,\n\t\t\"customerID\": \"DRACD\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-11-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-04 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 30.54,\n\t\t\"shipName\": \"Drachenblut Delikatessen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Walserweg 21\",\n\t\t\t\"city\": \"Aachen\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 52066,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 6.2,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10352,\n\t\t\"customerID\": \"FURIB\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1996-11-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-11-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-11-18 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 1.3,\n\t\t\"shipName\": \"Furia Bacalhau e Frutos do Mar\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Jardim das rosas n. 32\",\n\t\t\t\"city\": \"Lisboa\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1675,\n\t\t\t\"country\": \"Portugal\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 3.6,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 5.9,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10364,\n\t\t\"customerID\": \"EASTC\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-11-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-04 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 71.97,\n\t\t\"shipName\": \"Eastern Connection\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"35 King George\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"WX3 6FW\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 28.8,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 17.2,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10354,\n\t\t\"customerID\": \"PERIC\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1996-11-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-11-20 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 53.8,\n\t\t\"shipName\": \"Pericles Comidas clásicas\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Calle Dr. Jorge Cash 321\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5033,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 99,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10362,\n\t\t\"customerID\": \"BONAP\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1996-11-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-23 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-11-28 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 96.04,\n\t\t\"shipName\": \"Bon app'\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"12 rue des Bouchers\",\n\t\t\t\"city\": \"Marseille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 13008,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 25,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 42.4,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 5.9,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10366,\n\t\t\"customerID\": \"GALED\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1996-11-28 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-30 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 10.14,\n\t\t\"shipName\": \"Galería del gastronómo\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rambla de Cataluña 23\",\n\t\t\t\"city\": \"Barcelona\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8022,\n\t\t\t\"country\": \"Spain\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 10.4,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10367,\n\t\t\"customerID\": \"VAFFE\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1996-11-28 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-02 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 13.55,\n\t\t\"shipName\": \"Vaffeljernet\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Smagsloget 45\",\n\t\t\t\"city\": \"Århus\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8200,\n\t\t\t\"country\": \"Denmark\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 34,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 36,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 5.9,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 10.4,\n\t\t\t\t\"quantity\": 7,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10372,\n\t\t\"customerID\": \"QUEEN\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1996-12-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-01 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-09 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 890.78,\n\t\t\"shipName\": \"Queen Cozinha\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Alameda dos Canàrios 891\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05487-020\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 20,\n\t\t\t\t\"unitPrice\": 64.8,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 210.8,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 27.2,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 27.8,\n\t\t\t\t\"quantity\": 42,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10373,\n\t\t\"customerID\": \"HUNGO\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-12-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-11 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 124.12,\n\t\t\"shipName\": \"Hungry Owl All-Night Grocers\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"8 Johnstown Road\",\n\t\t\t\"city\": \"Cork\",\n\t\t\t\"region\": \"Co. Cork\",\n\t\t\t\"postalCode\": \"NULL\",\n\t\t\t\"country\": \"Ireland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 58,\n\t\t\t\t\"unitPrice\": 10.6,\n\t\t\t\t\"quantity\": 80,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 17.2,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10374,\n\t\t\"customerID\": \"WOLZA\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-12-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-09 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 3.94,\n\t\t\"shipName\": \"Wolski Zajazd\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"ul. Filtrowa 68\",\n\t\t\t\"city\": \"Warszawa\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"01-012\",\n\t\t\t\"country\": \"Poland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 58,\n\t\t\t\t\"unitPrice\": 10.6,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10375,\n\t\t\"customerID\": \"HUNGC\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1996-12-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-03 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-09 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 20.12,\n\t\t\"shipName\": \"Hungry Coyote Import Store\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"City Center Plaza 516 Main St.\",\n\t\t\t\"city\": \"Elgin\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97827,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 14,\n\t\t\t\t\"unitPrice\": 18.6,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 5.9,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10368,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1996-11-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-02 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 101.95,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 36.4,\n\t\t\t\t\"quantity\": 13,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 57,\n\t\t\t\t\"unitPrice\": 15.6,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 26.6,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10369,\n\t\t\"customerID\": \"SPLIR\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1996-12-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-09 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 195.68,\n\t\t\"shipName\": \"Split Rail Beer & Ale\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"P.O. Box 555\",\n\t\t\t\"city\": \"Lander\",\n\t\t\t\"region\": \"WY\",\n\t\t\t\"postalCode\": 82520,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 99,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 30.4,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10379,\n\t\t\"customerID\": \"QUEDE\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1996-12-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-13 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 45.03,\n\t\t\"shipName\": \"Que Delícia\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua da Panificadora 12\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"02389-673\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 7.7,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 63,\n\t\t\t\t\"unitPrice\": 35.1,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10370,\n\t\t\"customerID\": \"CHOPS\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1996-12-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1996-12-31 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-27 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 1.17,\n\t\t\"shipName\": \"Chop-suey Chinese\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Hauptstr. 31\",\n\t\t\t\"city\": \"Bern\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 3012,\n\t\t\t\"country\": \"Switzerland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 26.6,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 74,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10380,\n\t\t\"customerID\": \"HUNGO\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1996-12-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-16 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 35.03,\n\t\t\"shipName\": \"Hungry Owl All-Night Grocers\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"8 Johnstown Road\",\n\t\t\t\"city\": \"Cork\",\n\t\t\t\"region\": \"Co. Cork\",\n\t\t\t\"postalCode\": \"NULL\",\n\t\t\t\"country\": \"Ireland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 20.7,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 27.2,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 26.2,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10377,\n\t\t\"customerID\": \"SEVES\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-12-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-13 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 22.21,\n\t\t\"shipName\": \"Seven Seas Imports\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"90 Wadhurst Rd.\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"OX15 4NB\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 36.4,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10384,\n\t\t\"customerID\": \"BERGS\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1996-12-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-20 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 168.64,\n\t\t\"shipName\": \"Berglunds snabbköp\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berguvsvägen 8\",\n\t\t\t\"city\": \"Luleå\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-958 22\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 27.2,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 20,\n\t\t\t\t\"unitPrice\": 64.8,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10385,\n\t\t\"customerID\": \"SPLIR\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-12-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-23 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 30.96,\n\t\t\"shipName\": \"Split Rail Beer & Ale\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"P.O. Box 555\",\n\t\t\t\"city\": \"Lander\",\n\t\t\t\"region\": \"WY\",\n\t\t\t\"postalCode\": 82520,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 7,\n\t\t\t\t\"unitPrice\": 24,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 27.2,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10386,\n\t\t\"customerID\": \"FAMIA\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1996-12-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-01 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-25 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 13.99,\n\t\t\"shipName\": \"Familia Arquibaldo\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua Orós 92\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05442-030\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 3.6,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 34,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10387,\n\t\t\"customerID\": \"SANTG\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-12-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-15 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-20 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 93.63,\n\t\t\"shipName\": \"Santé Gourmet\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Erling Skakkes gate 78\",\n\t\t\t\"city\": \"Stavern\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 4110,\n\t\t\t\"country\": \"Norway\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 3.6,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 36.4,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 44,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 17.2,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10388,\n\t\t\"customerID\": \"SEVES\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1996-12-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-20 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 34.86,\n\t\t\"shipName\": \"Seven Seas Imports\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"90 Wadhurst Rd.\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"OX15 4NB\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 45,\n\t\t\t\t\"unitPrice\": 7.6,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 5.6,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 26.2,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10389,\n\t\t\"customerID\": \"BOTTM\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-12-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-24 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 47.42,\n\t\t\"shipName\": \"Bottom-Dollar Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"23 Tsawassen Blvd.\",\n\t\t\t\"city\": \"Tsawassen\",\n\t\t\t\"region\": \"BC\",\n\t\t\t\"postalCode\": \"T2F 8M4\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 24.8,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 19.2,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 39.4,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10382,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1996-12-13 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-16 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 94.77,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 99,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 74,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 5,\n\t\t\t\t\"unitPrice\": 17,\n\t\t\t\t\"quantity\": 32,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 50,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10381,\n\t\t\"customerID\": \"LILAS\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1996-12-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-13 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 7.99,\n\t\t\"shipName\": \"LILA-Supermercado\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 52 con Ave. Bolívar #65-98 Llano Largo\",\n\t\t\t\"city\": \"Barquisimeto\",\n\t\t\t\"region\": \"Lara\",\n\t\t\t\"postalCode\": 3508,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 74,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10383,\n\t\t\"customerID\": \"AROUT\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1996-12-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-18 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 34.24,\n\t\t\"shipName\": \"Around the Horn\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Brook Farm Stratford St. Mary\",\n\t\t\t\"city\": \"Colchester\",\n\t\t\t\"region\": \"Essex\",\n\t\t\t\"postalCode\": \"CO7 6JX\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 4.8,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 50,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 30.4,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10390,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1996-12-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1996-12-26 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 126.38,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 9.6,\n\t\t\t\t\"quantity\": 45,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 27.8,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10396,\n\t\t\"customerID\": \"FRANK\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-12-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-06 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 135.35,\n\t\t\"shipName\": \"Frankenversand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berliner Platz 43\",\n\t\t\t\"city\": \"München\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 80805,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 23,\n\t\t\t\t\"unitPrice\": 7.2,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 17.2,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 27.8,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10397,\n\t\t\"customerID\": \"PRINI\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1996-12-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-02 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 60.26,\n\t\t\"shipName\": \"Princesa Isabel Vinhos\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Estrada da saúde n. 58\",\n\t\t\t\"city\": \"Lisboa\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1756,\n\t\t\t\"country\": \"Portugal\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 42.4,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10398,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1996-12-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-09 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 89.16,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 19.2,\n\t\t\t\t\"quantity\": 120,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10399,\n\t\t\"customerID\": \"VAFFE\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1996-12-31 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-08 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 27.36,\n\t\t\"shipName\": \"Vaffeljernet\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Smagsloget 45\",\n\t\t\t\"city\": \"Århus\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8200,\n\t\t\t\"country\": \"Denmark\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 17.2,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 10.4,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10400,\n\t\t\"customerID\": \"EASTC\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-01-01 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-16 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 83.93,\n\t\t\"shipName\": \"Eastern Connection\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"35 King George\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"WX3 6FW\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 99,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 49,\n\t\t\t\t\"unitPrice\": 16,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10401,\n\t\t\"customerID\": \"RATTC\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-01-01 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-10 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 12.51,\n\t\t\"shipName\": \"Rattlesnake Canyon Grocery\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2817 Milton Dr.\",\n\t\t\t\"city\": \"Albuquerque\",\n\t\t\t\"region\": \"NM\",\n\t\t\t\"postalCode\": 87110,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 20.7,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 30.4,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 17.2,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10394,\n\t\t\"customerID\": \"HUNGC\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-12-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-03 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 30.34,\n\t\t\"shipName\": \"Hungry Coyote Import Store\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"City Center Plaza 516 Main St.\",\n\t\t\t\"city\": \"Elgin\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97827,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 4.8,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 39.4,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10402,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-01-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-10 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 67.88,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 63,\n\t\t\t\t\"unitPrice\": 35.1,\n\t\t\t\t\"quantity\": 65,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 23,\n\t\t\t\t\"unitPrice\": 7.2,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10393,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1996-12-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-03 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 126.56,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 24.9,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 32,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 25,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 7,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 14,\n\t\t\t\t\"unitPrice\": 18.6,\n\t\t\t\t\"quantity\": 42,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10395,\n\t\t\"customerID\": \"HILAA\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1996-12-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-23 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-03 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 184.41,\n\t\t\"shipName\": \"HILARION-Abastos\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 22 con Ave. Carlos Soublette #8-35\",\n\t\t\t\"city\": \"San Cristóbal\",\n\t\t\t\"region\": \"Táchira\",\n\t\t\t\"postalCode\": 5022,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 9.6,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 28.8,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 26.2,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10406,\n\t\t\"customerID\": \"QUEEN\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-01-07 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-13 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 108.04,\n\t\t\"shipName\": \"Queen Cozinha\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Alameda dos Canàrios 891\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05487-020\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 36.4,\n\t\t\t\t\"quantity\": 42,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 14.7,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10407,\n\t\t\"customerID\": \"OTTIK\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-01-07 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-30 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 91.48,\n\t\t\"shipName\": \"Ottilies Käseladen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Mehrheimerstr. 369\",\n\t\t\t\"city\": \"Köln\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 50739,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 28.8,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 17.2,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10408,\n\t\t\"customerID\": \"FOLIG\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-01-08 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-14 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 11.26,\n\t\t\"shipName\": \"Folies gourmandes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"184 chaussée de Tournai\",\n\t\t\t\"city\": \"Lille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 59000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 37,\n\t\t\t\t\"unitPrice\": 20.8,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 5.9,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 39.4,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10409,\n\t\t\"customerID\": \"OCEAN\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-01-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-14 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 29.83,\n\t\t\"shipName\": \"Océano Atlántico Ltda.\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Ing. Gustavo Moncada 8585 Piso 20-A\",\n\t\t\t\"city\": \"Buenos Aires\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1010,\n\t\t\t\"country\": \"Argentina\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 14,\n\t\t\t\t\"unitPrice\": 18.6,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10410,\n\t\t\"customerID\": \"BOTTM\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-01-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-15 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 2.4,\n\t\t\"shipName\": \"Bottom-Dollar Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"23 Tsawassen Blvd.\",\n\t\t\t\"city\": \"Tsawassen\",\n\t\t\t\"region\": \"BC\",\n\t\t\t\"postalCode\": \"T2F 8M4\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2,\n\t\t\t\t\"quantity\": 49,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 44,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10411,\n\t\t\"customerID\": \"BOTTM\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1997-01-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-21 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 23.65,\n\t\t\"shipName\": \"Bottom-Dollar Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"23 Tsawassen Blvd.\",\n\t\t\t\"city\": \"Tsawassen\",\n\t\t\t\"region\": \"BC\",\n\t\t\t\"postalCode\": \"T2F 8M4\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 7.7,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 15.5,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 44,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10404,\n\t\t\"customerID\": \"MAGAA\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-01-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-31 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-08 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 155.97,\n\t\t\"shipName\": \"Magazzini Alimentari Riuniti\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Via Ludovico il Moro 22\",\n\t\t\t\"city\": \"Bergamo\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 24100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 24.9,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 49,\n\t\t\t\t\"unitPrice\": 16,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10413,\n\t\t\"customerID\": \"LAMAI\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-01-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-16 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 95.66,\n\t\t\"shipName\": \"La maison d'Asie\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1 rue Alsace-Lorraine\",\n\t\t\t\"city\": \"Toulouse\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 31000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 39.4,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10403,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-01-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-01-31 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-09 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 73.79,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 13.9,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 48,\n\t\t\t\t\"unitPrice\": 10.2,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10414,\n\t\t\"customerID\": \"FAMIA\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-01-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-17 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 21.48,\n\t\t\"shipName\": \"Familia Arquibaldo\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua Orós 92\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05442-030\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 7.3,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10415,\n\t\t\"customerID\": \"HUNGC\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-01-15 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-24 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 0.2,\n\t\t\"shipName\": \"Hungry Coyote Import Store\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"City Center Plaza 516 Main St.\",\n\t\t\t\"city\": \"Elgin\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97827,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 31.2,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10419,\n\t\t\"customerID\": \"RICSU\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-01-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-30 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 137.35,\n\t\t\"shipName\": \"Richter Supermarkt\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Starenweg 5\",\n\t\t\t\"city\": \"Genève\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1204,\n\t\t\t\"country\": \"Switzerland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 27.2,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 28.8,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10420,\n\t\t\"customerID\": \"WELLI\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-01-21 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-27 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 44.12,\n\t\t\"shipName\": \"Wellington Importadora\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Mercado 12\",\n\t\t\t\"city\": \"Resende\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"08737-363\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 9,\n\t\t\t\t\"unitPrice\": 77.6,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 4.8,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 73,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10421,\n\t\t\"customerID\": \"QUEDE\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-01-21 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-27 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 99.23,\n\t\t\"shipName\": \"Que Delícia\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua da Panificadora 12\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"02389-673\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 7.3,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 24.9,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 10.4,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 26.2,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10423,\n\t\t\"customerID\": \"GOURL\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-01-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-24 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 24.5,\n\t\t\"shipName\": \"Gourmet Lanchonetes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Brasil 442\",\n\t\t\t\"city\": \"Campinas\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"04876-786\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 44,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10424,\n\t\t\"customerID\": \"MEREP\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-01-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-27 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 370.61,\n\t\t\"shipName\": \"Mère Paillarde\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"43 rue St. Laurent\",\n\t\t\t\"city\": \"Montréal\",\n\t\t\t\"region\": \"Québec\",\n\t\t\t\"postalCode\": \"H1J 1C3\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 210.8,\n\t\t\t\t\"quantity\": 49,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10418,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-01-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-24 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 17.55,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 47,\n\t\t\t\t\"unitPrice\": 7.6,\n\t\t\t\t\"quantity\": 55,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 61,\n\t\t\t\t\"unitPrice\": 22.8,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 74,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10417,\n\t\t\"customerID\": \"SIMOB\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-01-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-28 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 70.29,\n\t\t\"shipName\": \"Simons bistro\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Vinbæltet 34\",\n\t\t\t\"city\": \"Kobenhavn\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1734,\n\t\t\t\"country\": \"Denmark\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 210.8,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 9.6,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 36,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 10.4,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10416,\n\t\t\"customerID\": \"WARTH\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-01-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-01-27 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 22.72,\n\t\t\"shipName\": \"Wartian Herkku\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Torikatu 38\",\n\t\t\t\"city\": \"Oulu\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 90110,\n\t\t\t\"country\": \"Finland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 7.3,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 26.2,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 57,\n\t\t\t\t\"unitPrice\": 15.6,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10425,\n\t\t\"customerID\": \"LAMAI\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-01-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-21 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-14 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 7.93,\n\t\t\"shipName\": \"La maison d'Asie\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1 rue Alsace-Lorraine\",\n\t\t\t\"city\": \"Toulouse\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 31000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 19.2,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10429,\n\t\t\"customerID\": \"HUNGO\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-01-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-07 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 56.63,\n\t\t\"shipName\": \"Hungry Owl All-Night Grocers\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"8 Johnstown Road\",\n\t\t\t\"city\": \"Cork\",\n\t\t\t\"region\": \"Co. Cork\",\n\t\t\t\"postalCode\": \"NULL\",\n\t\t\t\"country\": \"Ireland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 50,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 63,\n\t\t\t\t\"unitPrice\": 35.1,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10430,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-01-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-03 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 458.78,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 31.2,\n\t\t\t\t\"quantity\": 45,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 30.4,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 44,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10431,\n\t\t\"customerID\": \"BOTTM\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-01-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-07 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 44.17,\n\t\t\"shipName\": \"Bottom-Dollar Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"23 Tsawassen Blvd.\",\n\t\t\t\"city\": \"Tsawassen\",\n\t\t\t\"region\": \"BC\",\n\t\t\t\"postalCode\": \"T2F 8M4\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 31.2,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 14.7,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 47,\n\t\t\t\t\"unitPrice\": 7.6,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10432,\n\t\t\"customerID\": \"SPLIR\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-01-31 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-07 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 4.34,\n\t\t\"shipName\": \"Split Rail Beer & Ale\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"P.O. Box 555\",\n\t\t\t\"city\": \"Lander\",\n\t\t\t\"region\": \"WY\",\n\t\t\t\"postalCode\": 82520,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 24.9,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 5.9,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10434,\n\t\t\"customerID\": \"FOLKO\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-02-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-03 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-13 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 17.92,\n\t\t\"shipName\": \"Folk och fä HB\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Åkergatan 24\",\n\t\t\t\"city\": \"Bräcke\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-844 67\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10436,\n\t\t\"customerID\": \"BLONP\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-02-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-11 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 156.66,\n\t\t\"shipName\": \"Blondel père et fils\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"24 place Kléber\",\n\t\t\t\"city\": \"Strasbourg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 67000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 6.2,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 9.6,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 30.4,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 26.6,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10435,\n\t\t\"customerID\": \"CONSH\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-02-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-07 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 9.21,\n\t\t\"shipName\": \"Consolidated Holdings\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berkeley Gardens 12 Brewery\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"WX1 6LT\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 22,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 27.8,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10426,\n\t\t\"customerID\": \"GALED\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-01-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-02-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-06 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 18.69,\n\t\t\"shipName\": \"Galería del gastronómo\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rambla de Cataluña 23\",\n\t\t\t\"city\": \"Barcelona\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8022,\n\t\t\t\"country\": \"Spain\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 30.4,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 26.6,\n\t\t\t\t\"quantity\": 7,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10442,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-02-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-18 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 47.94,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 5.9,\n\t\t\t\t\"quantity\": 80,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 66,\n\t\t\t\t\"unitPrice\": 13.6,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10443,\n\t\t\"customerID\": \"REGGC\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-02-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-14 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 13.95,\n\t\t\"shipName\": \"Reggiani Caseifici\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Strada Provinciale 124\",\n\t\t\t\"city\": \"Reggio Emilia\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 42100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 36.4,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10444,\n\t\t\"customerID\": \"BERGS\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-02-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-21 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 3.5,\n\t\t\"shipName\": \"Berglunds snabbköp\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berguvsvägen 8\",\n\t\t\t\"city\": \"Luleå\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-958 22\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 31.2,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 24.9,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 7.7,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10445,\n\t\t\"customerID\": \"BERGS\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-02-13 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-20 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 9.3,\n\t\t\"shipName\": \"Berglunds snabbköp\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berguvsvägen 8\",\n\t\t\t\"city\": \"Luleå\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-958 22\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 5.9,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10446,\n\t\t\"customerID\": \"TOMSP\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-02-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-19 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 14.68,\n\t\t\"shipName\": \"Toms Spezialitäten\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Luisenstr. 48\",\n\t\t\t\"city\": \"Münster\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 44087,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 3.6,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 5.6,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 7.3,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10440,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-02-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-28 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 86.53,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 45,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 13.9,\n\t\t\t\t\"quantity\": 49,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 99,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 61,\n\t\t\t\t\"unitPrice\": 22.8,\n\t\t\t\t\"quantity\": 90,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10439,\n\t\t\"customerID\": \"MEREP\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-02-07 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-10 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 4.07,\n\t\t\"shipName\": \"Mère Paillarde\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"43 rue St. Laurent\",\n\t\t\t\"city\": \"Montréal\",\n\t\t\t\"region\": \"Québec\",\n\t\t\t\"postalCode\": \"H1J 1C3\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 12,\n\t\t\t\t\"unitPrice\": 30.4,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 13.9,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 26.6,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 74,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10448,\n\t\t\"customerID\": \"RANCH\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-02-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-24 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 38.82,\n\t\t\"shipName\": \"Rancho grande\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. del Libertador 900\",\n\t\t\t\"city\": \"Buenos Aires\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1010,\n\t\t\t\"country\": \"Argentina\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 24.9,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 14.7,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10438,\n\t\t\"customerID\": \"TOMSP\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-02-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-14 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 8.24,\n\t\t\"shipName\": \"Toms Spezialitäten\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Luisenstr. 48\",\n\t\t\t\"city\": \"Münster\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 44087,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 7.3,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 34,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 57,\n\t\t\t\t\"unitPrice\": 15.6,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10447,\n\t\t\"customerID\": \"RICAR\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-02-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-07 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 68.66,\n\t\t\"shipName\": \"Ricardo Adocicados\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Copacabana 267\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"02389-890\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 7.3,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 17.2,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10452,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-02-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-26 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 140.26,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 36.4,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 15.5,\n\t\t\t\t\"quantity\": 100,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10453,\n\t\t\"customerID\": \"AROUT\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-02-21 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-21 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-26 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 25.36,\n\t\t\"shipName\": \"Around the Horn\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Brook Farm Stratford St. Mary\",\n\t\t\t\"city\": \"Colchester\",\n\t\t\t\"region\": \"Essex\",\n\t\t\t\"postalCode\": \"CO7 6JX\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 48,\n\t\t\t\t\"unitPrice\": 10.2,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10454,\n\t\t\"customerID\": \"LAMAI\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-02-21 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-21 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-25 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 2.74,\n\t\t\"shipName\": \"La maison d'Asie\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1 rue Alsace-Lorraine\",\n\t\t\t\"city\": \"Toulouse\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 31000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 13.9,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 9.6,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10455,\n\t\t\"customerID\": \"WARTH\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-02-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-03 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 180.45,\n\t\t\"shipName\": \"Wartian Herkku\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Torikatu 38\",\n\t\t\t\"city\": \"Oulu\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 90110,\n\t\t\t\"country\": \"Finland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 26.2,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 61,\n\t\t\t\t\"unitPrice\": 22.8,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 17.2,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10456,\n\t\t\"customerID\": \"KOENE\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-02-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-28 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 8.12,\n\t\t\"shipName\": \"Königlich Essen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Maubelstr. 90\",\n\t\t\t\"city\": \"Brandenburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 14776,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 49,\n\t\t\t\t\"unitPrice\": 16,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10450,\n\t\t\"customerID\": \"VICTE\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-02-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-11 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 7.23,\n\t\t\"shipName\": \"Victuailles en stock\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2 rue du Commerce\",\n\t\t\t\"city\": \"Lyon\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 69004,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 24.8,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 5.9,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10451,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-02-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-12 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 189.09,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 19.2,\n\t\t\t\t\"quantity\": 120,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 26.6,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 10.4,\n\t\t\t\t\"quantity\": 55,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10449,\n\t\t\"customerID\": \"BLONP\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-02-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-27 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 53.3,\n\t\t\"shipName\": \"Blondel père et fils\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"24 place Kléber\",\n\t\t\t\"city\": \"Strasbourg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 67000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 24.8,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 5.6,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 39.4,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10461,\n\t\t\"customerID\": \"LILAS\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-02-28 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-05 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 148.61,\n\t\t\"shipName\": \"LILA-Supermercado\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 52 con Ave. Bolívar #65-98 Llano Largo\",\n\t\t\t\"city\": \"Barquisimeto\",\n\t\t\t\"region\": \"Lara\",\n\t\t\t\"postalCode\": 3508,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 20.7,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 19.2,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10462,\n\t\t\"customerID\": \"CONSH\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-03-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-31 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-18 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 6.17,\n\t\t\"shipName\": \"Consolidated Holdings\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berkeley Gardens 12 Brewery\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"WX1 6LT\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 4.8,\n\t\t\t\t\"quantity\": 1,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 23,\n\t\t\t\t\"unitPrice\": 7.2,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10463,\n\t\t\"customerID\": \"SUPRD\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1997-03-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-01 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-06 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 14.78,\n\t\t\"shipName\": \"Suprêmes délices\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Boulevard Tirou 255\",\n\t\t\t\"city\": \"Charleroi\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"B-6000\",\n\t\t\t\"country\": \"Belgium\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 7.3,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10464,\n\t\t\"customerID\": \"FURIB\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-03-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-01 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-14 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 89,\n\t\t\"shipName\": \"Furia Bacalhau e Frutos do Mar\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Jardim das rosas n. 32\",\n\t\t\t\"city\": \"Lisboa\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1675,\n\t\t\t\"country\": \"Portugal\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 4,\n\t\t\t\t\"unitPrice\": 17.6,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 36.8,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 30.4,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 27.2,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10465,\n\t\t\"customerID\": \"VAFFE\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-03-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-14 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 145.04,\n\t\t\"shipName\": \"Vaffeljernet\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Smagsloget 45\",\n\t\t\t\"city\": \"Århus\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8200,\n\t\t\t\"country\": \"Denmark\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 3.6,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 99,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 14.7,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 45,\n\t\t\t\t\"unitPrice\": 7.6,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 50,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10466,\n\t\t\"customerID\": \"COMMI\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-03-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-03 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-13 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 11.93,\n\t\t\"shipName\": \"Comércio Mineiro\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. dos Lusíadas 23\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05432-043\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 9.6,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10460,\n\t\t\"customerID\": \"FOLKO\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-02-28 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-03 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 16.27,\n\t\t\"shipName\": \"Folk och fä HB\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Åkergatan 24\",\n\t\t\t\"city\": \"Bräcke\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-844 67\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 6.2,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10459,\n\t\t\"customerID\": \"VICTE\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-02-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-02-28 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 25.09,\n\t\t\"shipName\": \"Victuailles en stock\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2 rue du Commerce\",\n\t\t\t\"city\": \"Lyon\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 69004,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 7,\n\t\t\t\t\"unitPrice\": 24,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 9.6,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 27.8,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10468,\n\t\t\"customerID\": \"KOENE\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-03-07 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-12 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 44.12,\n\t\t\"shipName\": \"Königlich Essen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Maubelstr. 90\",\n\t\t\t\"city\": \"Brandenburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 14776,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 20.7,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 36.8,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10469,\n\t\t\"customerID\": \"WHITC\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-03-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-14 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 60.18,\n\t\t\"shipName\": \"White Clover Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1029 - 12th Ave. S.\",\n\t\t\t\"city\": \"Seattle\",\n\t\t\t\"region\": \"WA\",\n\t\t\t\"postalCode\": 98124,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 13.9,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 15.5,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10458,\n\t\t\"customerID\": \"SUPRD\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-02-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-04 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 147.06,\n\t\t\"shipName\": \"Suprêmes délices\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Boulevard Tirou 255\",\n\t\t\t\"city\": \"Charleroi\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"B-6000\",\n\t\t\t\"country\": \"Belgium\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 24.9,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 36.4,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 36.8,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 17.2,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 30.4,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10470,\n\t\t\"customerID\": \"BONAP\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-03-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-14 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 64.56,\n\t\t\"shipName\": \"Bon app'\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"12 rue des Bouchers\",\n\t\t\t\"city\": \"Marseille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 13008,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 50,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 23,\n\t\t\t\t\"unitPrice\": 7.2,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 26.6,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10467,\n\t\t\"customerID\": \"MAGAA\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-03-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-03 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-11 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 4.93,\n\t\t\"shipName\": \"Magazzini Alimentari Riuniti\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Via Ludovico il Moro 22\",\n\t\t\t\"city\": \"Bergamo\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 24100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 3.6,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 25,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10474,\n\t\t\"customerID\": \"PERIC\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1997-03-13 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-21 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 83.49,\n\t\t\"shipName\": \"Pericles Comidas clásicas\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Calle Dr. Jorge Cash 321\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5033,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 36.4,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 14.7,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 6.2,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 14,\n\t\t\t\t\"unitPrice\": 18.6,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10475,\n\t\t\"customerID\": \"SUPRD\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1997-03-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-04 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 68.52,\n\t\t\"shipName\": \"Suprêmes délices\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Boulevard Tirou 255\",\n\t\t\t\"city\": \"Charleroi\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"B-6000\",\n\t\t\t\"country\": \"Belgium\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 66,\n\t\t\t\t\"unitPrice\": 13.6,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 42,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10476,\n\t\t\"customerID\": \"HILAA\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-03-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-24 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 4.41,\n\t\t\"shipName\": \"HILARION-Abastos\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 22 con Ave. Carlos Soublette #8-35\",\n\t\t\t\"city\": \"San Cristóbal\",\n\t\t\t\"region\": \"Táchira\",\n\t\t\t\"postalCode\": 5022,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 19.2,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10477,\n\t\t\"customerID\": \"PRINI\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1997-03-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-25 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 13.02,\n\t\t\"shipName\": \"Princesa Isabel Vinhos\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Estrada da saúde n. 58\",\n\t\t\t\"city\": \"Lisboa\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1756,\n\t\t\t\"country\": \"Portugal\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 14.4,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10479,\n\t\t\"customerID\": \"RATTC\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-03-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-21 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 708.95,\n\t\t\"shipName\": \"Rattlesnake Canyon Grocery\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2817 Milton Dr.\",\n\t\t\t\"city\": \"Albuquerque\",\n\t\t\t\"region\": \"NM\",\n\t\t\t\"postalCode\": 87110,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 210.8,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 26.2,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 44,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 26.6,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10471,\n\t\t\"customerID\": \"BSBEV\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-03-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-18 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 45.59,\n\t\t\"shipName\": \"B's Beverages\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Fauntleroy Circus\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"EC2 5NT\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 7,\n\t\t\t\t\"unitPrice\": 24,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 30.4,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10472,\n\t\t\"customerID\": \"SEVES\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-03-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-19 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 4.2,\n\t\t\"shipName\": \"Seven Seas Imports\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"90 Wadhurst Rd.\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"OX15 4NB\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 3.6,\n\t\t\t\t\"quantity\": 80,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 42.4,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10481,\n\t\t\"customerID\": \"RICAR\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-03-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-25 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 64.33,\n\t\t\"shipName\": \"Ricardo Adocicados\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Copacabana 267\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"02389-890\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 49,\n\t\t\t\t\"unitPrice\": 16,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 27.2,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10473,\n\t\t\"customerID\": \"ISLAT\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-03-13 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-03-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-21 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 16.37,\n\t\t\"shipName\": \"Island Trading\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Garden House Crowther Way\",\n\t\t\t\"city\": \"Cowes\",\n\t\t\t\"region\": \"Isle of Wight\",\n\t\t\t\"postalCode\": \"PO31 7PJ\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 17.2,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10484,\n\t\t\"customerID\": \"BSBEV\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-03-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-21 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-01 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 6.88,\n\t\t\"shipName\": \"B's Beverages\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Fauntleroy Circus\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"EC2 5NT\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 14.7,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 42.4,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10485,\n\t\t\"customerID\": \"LINOD\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-03-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-31 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 64.45,\n\t\t\"shipName\": \"LINO-Delicateses\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Ave. 5 de Mayo Porlamar\",\n\t\t\t\"city\": \"I. de Margarita\",\n\t\t\t\"region\": \"Nueva Esparta\",\n\t\t\t\"postalCode\": 4980,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 15.2,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 3,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 19.2,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10486,\n\t\t\"customerID\": \"HILAA\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-03-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-23 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-02 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 30.53,\n\t\t\"shipName\": \"HILARION-Abastos\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 22 con Ave. Carlos Soublette #8-35\",\n\t\t\t\"city\": \"San Cristóbal\",\n\t\t\t\"region\": \"Táchira\",\n\t\t\t\"postalCode\": 5022,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 42.4,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 74,\n\t\t\t\t\"unitPrice\": 8,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10487,\n\t\t\"customerID\": \"QUEEN\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-03-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-23 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-28 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 71.07,\n\t\t\"shipName\": \"Queen Cozinha\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Alameda dos Canàrios 891\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05487-020\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 7.3,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 24.9,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 5.9,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10488,\n\t\t\"customerID\": \"FRANK\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-03-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-02 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 4.93,\n\t\t\"shipName\": \"Frankenversand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berliner Platz 43\",\n\t\t\t\"city\": \"München\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 80805,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 44,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 73,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10489,\n\t\t\"customerID\": \"PICCO\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-03-28 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-25 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-09 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 5.29,\n\t\t\"shipName\": \"Piccolo und mehr\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Geislweg 14\",\n\t\t\t\"city\": \"Salzburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5020,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 13.9,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10483,\n\t\t\"customerID\": \"WHITC\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-03-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-21 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-25 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 15.28,\n\t\t\"shipName\": \"White Clover Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1029 - 12th Ave. S.\",\n\t\t\t\"city\": \"Seattle\",\n\t\t\t\"region\": \"WA\",\n\t\t\t\"postalCode\": 98124,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 34,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 10.4,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10491,\n\t\t\"customerID\": \"FURIB\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-03-31 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-08 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 16.96,\n\t\t\"shipName\": \"Furia Bacalhau e Frutos do Mar\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Jardim das rosas n. 32\",\n\t\t\t\"city\": \"Lisboa\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1675,\n\t\t\t\"country\": \"Portugal\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 15.5,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 10.4,\n\t\t\t\t\"quantity\": 7,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10480,\n\t\t\"customerID\": \"FOLIG\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-03-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-03-24 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 1.35,\n\t\t\"shipName\": \"Folies gourmandes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"184 chaussée de Tournai\",\n\t\t\t\"city\": \"Lille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 59000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 47,\n\t\t\t\t\"unitPrice\": 7.6,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 44,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10490,\n\t\t\"customerID\": \"HILAA\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-03-31 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-03 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 210.19,\n\t\t\"shipName\": \"HILARION-Abastos\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 22 con Ave. Carlos Soublette #8-35\",\n\t\t\t\"city\": \"San Cristóbal\",\n\t\t\t\"region\": \"Táchira\",\n\t\t\t\"postalCode\": 5022,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 44,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 6.2,\n\t\t\t\t\"quantity\": 36,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10492,\n\t\t\"customerID\": \"BOTTM\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-04-01 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-11 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 62.89,\n\t\t\"shipName\": \"Bottom-Dollar Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"23 Tsawassen Blvd.\",\n\t\t\t\"city\": \"Tsawassen\",\n\t\t\t\"region\": \"BC\",\n\t\t\t\"postalCode\": \"T2F 8M4\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 25,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 11.2,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10493,\n\t\t\"customerID\": \"LAMAI\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-04-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-04-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-10 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 10.64,\n\t\t\"shipName\": \"La maison d'Asie\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1 rue Alsace-Lorraine\",\n\t\t\t\"city\": \"Toulouse\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 31000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 16.8,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 66,\n\t\t\t\t\"unitPrice\": 13.6,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 28.8,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10498,\n\t\t\"customerID\": \"HILAA\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-04-07 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-11 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 29.75,\n\t\t\"shipName\": \"HILARION-Abastos\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 22 con Ave. Carlos Soublette #8-35\",\n\t\t\t\"city\": \"San Cristóbal\",\n\t\t\t\"region\": \"Táchira\",\n\t\t\t\"postalCode\": 5022,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10499,\n\t\t\"customerID\": \"LILAS\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-04-08 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-16 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 102.02,\n\t\t\"shipName\": \"LILA-Supermercado\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 52 con Ave. Bolívar #65-98 Llano Largo\",\n\t\t\t\"city\": \"Barquisimeto\",\n\t\t\t\"region\": \"Lara\",\n\t\t\t\"postalCode\": 3508,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 45.6,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 49,\n\t\t\t\t\"unitPrice\": 20,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10500,\n\t\t\"customerID\": \"LAMAI\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-04-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-17 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 42.68,\n\t\t\"shipName\": \"La maison d'Asie\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1 rue Alsace-Lorraine\",\n\t\t\t\"city\": \"Toulouse\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 31000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 15,\n\t\t\t\t\"unitPrice\": 15.5,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 45.6,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10502,\n\t\t\"customerID\": \"PERIC\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-04-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-29 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 69.32,\n\t\t\"shipName\": \"Pericles Comidas clásicas\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Calle Dr. Jorge Cash 321\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5033,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 45,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 32.8,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 67,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10503,\n\t\t\"customerID\": \"HUNGO\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-04-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-16 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 16.74,\n\t\t\"shipName\": \"Hungry Owl All-Night Grocers\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"8 Johnstown Road\",\n\t\t\t\"city\": \"Cork\",\n\t\t\t\"region\": \"Co. Cork\",\n\t\t\t\"postalCode\": \"NULL\",\n\t\t\t\"country\": \"Ireland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 14,\n\t\t\t\t\"unitPrice\": 23.25,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 21.05,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10497,\n\t\t\"customerID\": \"LEHMS\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-04-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-07 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 36.21,\n\t\t\"shipName\": \"Lehmanns Marktstand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Magazinweg 7\",\n\t\t\t\"city\": \"Frankfurt a.M.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 60528,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 30.4,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 27.8,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 10.4,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10495,\n\t\t\"customerID\": \"LAUGB\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-04-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-01 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-11 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 4.65,\n\t\t\"shipName\": \"Laughing Bacchus Wine Cellars\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2319 Elm St.\",\n\t\t\t\"city\": \"Vancouver\",\n\t\t\t\"region\": \"BC\",\n\t\t\t\"postalCode\": \"V3F 2K1\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 23,\n\t\t\t\t\"unitPrice\": 7.2,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 10.4,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 7.7,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10504,\n\t\t\"customerID\": \"WHITC\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-04-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-18 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 59.13,\n\t\t\"shipName\": \"White Clover Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1029 - 12th Ave. S.\",\n\t\t\t\"city\": \"Seattle\",\n\t\t\t\"region\": \"WA\",\n\t\t\t\"postalCode\": 98124,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 32.8,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 61,\n\t\t\t\t\"unitPrice\": 28.5,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10508,\n\t\t\"customerID\": \"OTTIK\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-04-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-13 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 4.99,\n\t\t\"shipName\": \"Ottilies Käseladen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Mehrheimerstr. 369\",\n\t\t\t\"city\": \"Köln\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 50739,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10510,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-04-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-28 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 367.63,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 123.79,\n\t\t\t\t\"quantity\": 36,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 36,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10511,\n\t\t\"customerID\": \"BONAP\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-04-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-21 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 350.64,\n\t\t\"shipName\": \"Bon app'\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"12 rue des Bouchers\",\n\t\t\t\"city\": \"Marseille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 13008,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 4,\n\t\t\t\t\"unitPrice\": 22,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 7,\n\t\t\t\t\"unitPrice\": 30,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 8,\n\t\t\t\t\"unitPrice\": 40,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10512,\n\t\t\"customerID\": \"FAMIA\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-04-21 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-24 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 3.53,\n\t\t\"shipName\": \"Familia Arquibaldo\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua Orós 92\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05442-030\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 47,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10513,\n\t\t\"customerID\": \"WANDK\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-04-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-03 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-28 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 105.65,\n\t\t\"shipName\": \"Die Wandernde Kuh\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Adenauerallee 900\",\n\t\t\t\"city\": \"Stuttgart\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 70563,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 32,\n\t\t\t\t\"unitPrice\": 32,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 61,\n\t\t\t\t\"unitPrice\": 28.5,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10506,\n\t\t\"customerID\": \"KOENE\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1997-04-15 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-02 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 21.19,\n\t\t\"shipName\": \"Königlich Essen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Maubelstr. 90\",\n\t\t\t\"city\": \"Brandenburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 14776,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 25,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10515,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-04-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-23 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 204.47,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 9,\n\t\t\t\t\"unitPrice\": 97,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 27,\n\t\t\t\t\"unitPrice\": 43.9,\n\t\t\t\t\"quantity\": 120,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2.5,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 84,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10516,\n\t\t\"customerID\": \"HUNGO\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-04-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-01 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 62.78,\n\t\t\"shipName\": \"Hungry Owl All-Night Grocers\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"8 Johnstown Road\",\n\t\t\t\"city\": \"Cork\",\n\t\t\t\"region\": \"Co. Cork\",\n\t\t\t\"postalCode\": \"NULL\",\n\t\t\t\"country\": \"Ireland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 62.5,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 80,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10507,\n\t\t\"customerID\": \"ANTON\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-04-15 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-22 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 47.45,\n\t\t\"shipName\": \"Antonio Moreno Taquería\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Mataderos 2312\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5023,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 46,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 48,\n\t\t\t\t\"unitPrice\": 12.75,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10514,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-04-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-16 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 789.95,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 21.05,\n\t\t\t\t\"quantity\": 39,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 20,\n\t\t\t\t\"unitPrice\": 81,\n\t\t\t\t\"quantity\": 39,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 45.6,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10517,\n\t\t\"customerID\": \"NORTS\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-04-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-04-29 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 32.07,\n\t\t\"shipName\": \"North/South\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"South House 300 Queensbridge\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"SW7 1RZ\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 7,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10518,\n\t\t\"customerID\": \"TORTU\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-04-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-05 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 218.15,\n\t\t\"shipName\": \"Tortuga Restaurante\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Avda. Azteca 123\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5033,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 263.5,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 19.45,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10519,\n\t\t\"customerID\": \"CHOPS\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-04-28 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-01 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 91.76,\n\t\t\"shipName\": \"Chop-suey Chinese\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Hauptstr. 31\",\n\t\t\t\"city\": \"Bern\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 3012,\n\t\t\t\"country\": \"Switzerland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10520,\n\t\t\"customerID\": \"SANTG\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-04-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-01 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 13.37,\n\t\t\"shipName\": \"Santé Gourmet\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Erling Skakkes gate 78\",\n\t\t\t\"city\": \"Stavern\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 4110,\n\t\t\t\"country\": \"Norway\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 32.8,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10521,\n\t\t\"customerID\": \"CACTU\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-04-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-02 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 17.22,\n\t\t\"shipName\": \"Cactus Comidas para llevar\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Cerrito 333\",\n\t\t\t\"city\": \"Buenos Aires\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1010,\n\t\t\t\"country\": \"Argentina\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10522,\n\t\t\"customerID\": \"LEHMS\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-04-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-06 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 45.33,\n\t\t\"shipName\": \"Lehmanns Marktstand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Magazinweg 7\",\n\t\t\t\"city\": \"Frankfurt a.M.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 60528,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 25.89,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 8,\n\t\t\t\t\"unitPrice\": 40,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10523,\n\t\t\"customerID\": \"SEVES\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-05-01 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-30 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 77.63,\n\t\t\"shipName\": \"Seven Seas Imports\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"90 Wadhurst Rd.\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"OX15 4NB\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 20,\n\t\t\t\t\"unitPrice\": 81,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 37,\n\t\t\t\t\"unitPrice\": 26,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10524,\n\t\t\"customerID\": \"BERGS\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-05-01 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-07 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 244.79,\n\t\t\"shipName\": \"Berglunds snabbköp\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berguvsvägen 8\",\n\t\t\t\"city\": \"Luleå\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-958 22\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 25.89,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 46,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 7.45,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10525,\n\t\t\"customerID\": \"BONAP\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-05-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-23 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 11.06,\n\t\t\"shipName\": \"Bon app'\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"12 rue des Bouchers\",\n\t\t\t\"city\": \"Marseille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 13008,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10526,\n\t\t\"customerID\": \"WARTH\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-05-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-15 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 58.59,\n\t\t\"shipName\": \"Wartian Herkku\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Torikatu 38\",\n\t\t\t\"city\": \"Oulu\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 90110,\n\t\t\t\"country\": \"Finland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10527,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-05-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-07 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 41.9,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 4,\n\t\t\t\t\"unitPrice\": 22,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10528,\n\t\t\"customerID\": \"GREAL\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-05-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-09 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 3.35,\n\t\t\"shipName\": \"Great Lakes Food Market\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2732 Baker Blvd.\",\n\t\t\t\"city\": \"Eugene\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97403,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2.5,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 34.8,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10529,\n\t\t\"customerID\": \"MAISD\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1997-05-07 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-09 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 66.69,\n\t\t\"shipName\": \"Maison Dewey\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rue Joseph-Bens 532\",\n\t\t\t\"city\": \"Bruxelles\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"B-1180\",\n\t\t\t\"country\": \"Belgium\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 24,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 36,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10530,\n\t\t\"customerID\": \"PICCO\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-05-08 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-12 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 339.22,\n\t\t\"shipName\": \"Piccolo und mehr\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Geislweg 14\",\n\t\t\t\"city\": \"Salzburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5020,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 46,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 61,\n\t\t\t\t\"unitPrice\": 28.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10531,\n\t\t\"customerID\": \"OCEAN\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-05-08 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-19 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 8.12,\n\t\t\"shipName\": \"Océano Atlántico Ltda.\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Ing. Gustavo Moncada 8585 Piso 20-A\",\n\t\t\t\"city\": \"Buenos Aires\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1010,\n\t\t\t\"country\": \"Argentina\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10532,\n\t\t\"customerID\": \"EASTC\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-05-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-12 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 74.46,\n\t\t\"shipName\": \"Eastern Connection\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"35 King George\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"WX3 6FW\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 25.89,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 66,\n\t\t\t\t\"unitPrice\": 17,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10536,\n\t\t\"customerID\": \"LEHMS\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-05-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-06 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 58.88,\n\t\t\"shipName\": \"Lehmanns Marktstand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Magazinweg 7\",\n\t\t\t\"city\": \"Frankfurt a.M.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 60528,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 12,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2.5,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10537,\n\t\t\"customerID\": \"RICSU\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-05-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-05-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-19 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 78.85,\n\t\t\"shipName\": \"Richter Supermarkt\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Starenweg 5\",\n\t\t\t\"city\": \"Genève\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1204,\n\t\t\t\"country\": \"Switzerland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 58,\n\t\t\t\t\"unitPrice\": 13.25,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 34.8,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 73,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10538,\n\t\t\"customerID\": \"BSBEV\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1997-05-15 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-16 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 4.87,\n\t\t\"shipName\": \"B's Beverages\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Fauntleroy Circus\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"EC2 5NT\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 7,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 34.8,\n\t\t\t\t\"quantity\": 1,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10539,\n\t\t\"customerID\": \"BSBEV\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-05-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-23 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 12.36,\n\t\t\"shipName\": \"B's Beverages\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Fauntleroy Circus\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"EC2 5NT\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 49,\n\t\t\t\t\"unitPrice\": 20,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2.5,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10540,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-05-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-13 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 1007.64,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 3,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 31.23,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 263.5,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10541,\n\t\t\"customerID\": \"HANAR\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-05-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-29 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 68.65,\n\t\t\"shipName\": \"Hanari Carnes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Paço 67\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"05454-876\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 263.5,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 21.05,\n\t\t\t\t\"quantity\": 36,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 21.5,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10534,\n\t\t\"customerID\": \"LEHMS\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-05-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-14 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 27.94,\n\t\t\"shipName\": \"Lehmanns Marktstand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Magazinweg 7\",\n\t\t\t\"city\": \"Frankfurt a.M.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 60528,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 25.89,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 7.45,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10533,\n\t\t\"customerID\": \"FOLKO\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-05-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-22 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 188.04,\n\t\t\"shipName\": \"Folk och fä HB\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Åkergatan 24\",\n\t\t\t\"city\": \"Bräcke\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-844 67\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 4,\n\t\t\t\t\"unitPrice\": 22,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 34.8,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 73,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10535,\n\t\t\"customerID\": \"ANTON\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-05-13 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-21 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 15.64,\n\t\t\"shipName\": \"Antonio Moreno Taquería\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Mataderos 2312\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5023,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 57,\n\t\t\t\t\"unitPrice\": 19.5,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10543,\n\t\t\"customerID\": \"LILAS\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-05-21 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-23 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 48.17,\n\t\t\"shipName\": \"LILA-Supermercado\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 52 con Ave. Bolívar #65-98 Llano Largo\",\n\t\t\t\"city\": \"Barquisimeto\",\n\t\t\t\"region\": \"Lara\",\n\t\t\t\"postalCode\": 3508,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 12,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 23,\n\t\t\t\t\"unitPrice\": 9,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10542,\n\t\t\"customerID\": \"KOENE\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-05-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-26 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 10.95,\n\t\t\"shipName\": \"Königlich Essen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Maubelstr. 90\",\n\t\t\t\"city\": \"Brandenburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 14776,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 7.45,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10546,\n\t\t\"customerID\": \"VICTE\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-05-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-27 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 194.72,\n\t\t\"shipName\": \"Victuailles en stock\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2 rue du Commerce\",\n\t\t\t\"city\": \"Lyon\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 69004,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 7,\n\t\t\t\t\"unitPrice\": 30,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10547,\n\t\t\"customerID\": \"SEVES\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-05-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-02 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 178.43,\n\t\t\"shipName\": \"Seven Seas Imports\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"90 Wadhurst Rd.\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"OX15 4NB\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 32,\n\t\t\t\t\"unitPrice\": 32,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10548,\n\t\t\"customerID\": \"TOMSP\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-05-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-23 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-02 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 1.43,\n\t\t\"shipName\": \"Toms Spezialitäten\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Luisenstr. 48\",\n\t\t\t\"city\": \"Münster\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 44087,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 34,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10550,\n\t\t\"customerID\": \"GODOS\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-05-28 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-25 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-06 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 4.32,\n\t\t\"shipName\": \"Godos Cocina Típica\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"C/ Romero 33\",\n\t\t\t\"city\": \"Sevilla\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 41101,\n\t\t\t\"country\": \"Spain\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 9.2,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 61,\n\t\t\t\t\"unitPrice\": 28.5,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10544,\n\t\t\"customerID\": \"LONEP\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-05-21 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-30 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 24.91,\n\t\t\"shipName\": \"Lonesome Pine Restaurant\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"89 Chiaroscuro Rd.\",\n\t\t\t\"city\": \"Portland\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97219,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 45.6,\n\t\t\t\t\"quantity\": 7,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 67,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 7,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10553,\n\t\t\"customerID\": \"WARTH\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-05-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-03 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 149.49,\n\t\t\"shipName\": \"Wartian Herkku\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Torikatu 38\",\n\t\t\t\"city\": \"Oulu\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 90110,\n\t\t\t\"country\": \"Finland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 22,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10554,\n\t\t\"customerID\": \"OTTIK\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-05-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-05 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 120.97,\n\t\t\"shipName\": \"Ottilies Käseladen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Mehrheimerstr. 369\",\n\t\t\t\"city\": \"Köln\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 50739,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 23,\n\t\t\t\t\"unitPrice\": 9,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10555,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-06-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-04 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 252.49,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 14,\n\t\t\t\t\"unitPrice\": 23.25,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 9.2,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10557,\n\t\t\"customerID\": \"LEHMS\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1997-06-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-06 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 96.72,\n\t\t\"shipName\": \"Lehmanns Marktstand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Magazinweg 7\",\n\t\t\t\"city\": \"Frankfurt a.M.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 60528,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 33.25,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10558,\n\t\t\"customerID\": \"AROUT\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-06-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-10 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 72.97,\n\t\t\"shipName\": \"Around the Horn\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Brook Farm Stratford St. Mary\",\n\t\t\t\"city\": \"Colchester\",\n\t\t\t\"region\": \"Essex\",\n\t\t\t\"postalCode\": \"CO7 6JX\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 47,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 32.8,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 73,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 7,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10551,\n\t\t\"customerID\": \"FURIB\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-05-28 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-06 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 72.95,\n\t\t\"shipName\": \"Furia Bacalhau e Frutos do Mar\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Jardim das rosas n. 32\",\n\t\t\t\"city\": \"Lisboa\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1675,\n\t\t\t\"country\": \"Portugal\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 19.45,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10549,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1997-05-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-05-30 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 171.24,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 55,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 45,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 100,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 48,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10552,\n\t\t\"customerID\": \"HILAA\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-05-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-06-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-05 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 83.22,\n\t\t\"shipName\": \"HILARION-Abastos\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 22 con Ave. Carlos Soublette #8-35\",\n\t\t\t\"city\": \"San Cristóbal\",\n\t\t\t\"region\": \"Táchira\",\n\t\t\t\"postalCode\": 5022,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 36,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10562,\n\t\t\"customerID\": \"REGGC\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-06-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-12 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 22.95,\n\t\t\"shipName\": \"Reggiani Caseifici\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Strada Provinciale 124\",\n\t\t\t\"city\": \"Reggio Emilia\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 42100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10563,\n\t\t\"customerID\": \"RICAR\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-06-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-24 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 60.43,\n\t\t\"shipName\": \"Ricardo Adocicados\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Copacabana 267\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"02389-890\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 7,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10564,\n\t\t\"customerID\": \"RATTC\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-06-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-16 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 13.75,\n\t\t\"shipName\": \"Rattlesnake Canyon Grocery\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2817 Milton Dr.\",\n\t\t\t\"city\": \"Albuquerque\",\n\t\t\t\"region\": \"NM\",\n\t\t\t\"postalCode\": 87110,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 24,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10565,\n\t\t\"customerID\": \"MEREP\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-06-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-18 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 7.15,\n\t\t\"shipName\": \"Mère Paillarde\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"43 rue St. Laurent\",\n\t\t\t\"city\": \"Montréal\",\n\t\t\t\"region\": \"Québec\",\n\t\t\t\"postalCode\": \"H1J 1C3\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 33.25,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10566,\n\t\t\"customerID\": \"BLONP\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1997-06-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-18 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 88.4,\n\t\t\"shipName\": \"Blondel père et fils\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"24 place Kléber\",\n\t\t\t\"city\": \"Strasbourg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 67000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 62.5,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10567,\n\t\t\"customerID\": \"HUNGO\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-06-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-17 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 33.97,\n\t\t\"shipName\": \"Hungry Owl All-Night Grocers\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"8 Johnstown Road\",\n\t\t\t\"city\": \"Cork\",\n\t\t\t\"region\": \"Co. Cork\",\n\t\t\t\"postalCode\": \"NULL\",\n\t\t\t\"country\": \"Ireland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10559,\n\t\t\"customerID\": \"BLONP\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-06-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-03 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-13 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 8.05,\n\t\t\"shipName\": \"Blondel père et fils\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"24 place Kléber\",\n\t\t\t\"city\": \"Strasbourg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 67000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 24,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10569,\n\t\t\"customerID\": \"RATTC\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1997-06-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-11 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 58.98,\n\t\t\"shipName\": \"Rattlesnake Canyon Grocery\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2817 Milton Dr.\",\n\t\t\t\"city\": \"Albuquerque\",\n\t\t\t\"region\": \"NM\",\n\t\t\t\"postalCode\": 87110,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10560,\n\t\t\"customerID\": \"FRANK\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-06-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-09 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 36.65,\n\t\t\"shipName\": \"Frankenversand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berliner Platz 43\",\n\t\t\t\"city\": \"München\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 80805,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 25.89,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10570,\n\t\t\"customerID\": \"MEREP\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-06-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-15 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-19 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 188.99,\n\t\t\"shipName\": \"Mère Paillarde\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"43 rue St. Laurent\",\n\t\t\t\"city\": \"Montréal\",\n\t\t\t\"region\": \"Québec\",\n\t\t\t\"postalCode\": \"H1J 1C3\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10571,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-06-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-04 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 26.06,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 14,\n\t\t\t\t\"unitPrice\": 23.25,\n\t\t\t\t\"quantity\": 11,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10572,\n\t\t\"customerID\": \"BERGS\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-06-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-25 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 116.43,\n\t\t\"shipName\": \"Berglunds snabbköp\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berguvsvägen 8\",\n\t\t\t\"city\": \"Luleå\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-958 22\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 32,\n\t\t\t\t\"unitPrice\": 32,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10561,\n\t\t\"customerID\": \"FOLKO\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-06-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-09 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 242.21,\n\t\t\"shipName\": \"Folk och fä HB\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Åkergatan 24\",\n\t\t\t\"city\": \"Bräcke\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-844 67\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 19.45,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10573,\n\t\t\"customerID\": \"ANTON\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-06-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-20 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 84.84,\n\t\t\"shipName\": \"Antonio Moreno Taquería\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Mataderos 2312\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5023,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 34,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 32.8,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10574,\n\t\t\"customerID\": \"TRAIH\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-06-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-30 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 37.6,\n\t\t\"shipName\": \"Trail's Head Gourmet Provisioners\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"722 DaVinci Blvd.\",\n\t\t\t\"city\": \"Kirkland\",\n\t\t\t\"region\": \"WA\",\n\t\t\t\"postalCode\": 98034,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2.5,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 33.25,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10578,\n\t\t\"customerID\": \"BSBEV\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-06-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-25 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 29.6,\n\t\t\"shipName\": \"B's Beverages\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Fauntleroy Circus\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"EC2 5NT\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 57,\n\t\t\t\t\"unitPrice\": 19.5,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10579,\n\t\t\"customerID\": \"LETSS\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-06-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-23 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-04 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 13.73,\n\t\t\"shipName\": \"Let's Stop N Shop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"87 Polk St. Suite 5\",\n\t\t\t\"city\": \"San Francisco\",\n\t\t\t\"region\": \"CA\",\n\t\t\t\"postalCode\": 94117,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 15,\n\t\t\t\t\"unitPrice\": 15.5,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10580,\n\t\t\"customerID\": \"OTTIK\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-06-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-01 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 75.89,\n\t\t\"shipName\": \"Ottilies Käseladen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Mehrheimerstr. 369\",\n\t\t\t\"city\": \"Köln\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 50739,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 14,\n\t\t\t\t\"unitPrice\": 23.25,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 21.05,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10582,\n\t\t\"customerID\": \"BLAUS\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-06-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-25 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-14 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 27.71,\n\t\t\"shipName\": \"Blauer See Delikatessen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Forsterstr. 57\",\n\t\t\t\"city\": \"Mannheim\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 68306,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 57,\n\t\t\t\t\"unitPrice\": 19.5,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10583,\n\t\t\"customerID\": \"WARTH\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-06-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-04 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 7.28,\n\t\t\"shipName\": \"Wartian Herkku\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Torikatu 38\",\n\t\t\t\"city\": \"Oulu\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 90110,\n\t\t\t\"country\": \"Finland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 123.79,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 36,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10577,\n\t\t\"customerID\": \"TRAIH\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1997-06-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-30 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 25.41,\n\t\t\"shipName\": \"Trail's Head Gourmet Provisioners\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"722 DaVinci Blvd.\",\n\t\t\t\"city\": \"Kirkland\",\n\t\t\t\"region\": \"WA\",\n\t\t\t\"postalCode\": 98034,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10576,\n\t\t\"customerID\": \"TORTU\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-06-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-30 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 18.56,\n\t\t\"shipName\": \"Tortuga Restaurante\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Avda. Azteca 123\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5033,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 19.45,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10587,\n\t\t\"customerID\": \"QUEDE\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-07-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-09 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 62.52,\n\t\t\"shipName\": \"Que Delícia\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua da Panificadora 12\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"02389-673\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 31.23,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10588,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-07-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-31 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-10 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 194.67,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 62.5,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 100,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10590,\n\t\t\"customerID\": \"MEREP\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-07-07 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-14 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 44.77,\n\t\t\"shipName\": \"Mère Paillarde\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"43 rue St. Laurent\",\n\t\t\t\"city\": \"Montréal\",\n\t\t\t\"region\": \"Québec\",\n\t\t\t\"postalCode\": \"H1J 1C3\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10575,\n\t\t\"customerID\": \"MORGK\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1997-06-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-06-30 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 127.34,\n\t\t\"shipName\": \"Morgenstern Gesundkost\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Heerstr. 22\",\n\t\t\t\"city\": \"Leipzig\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 4179,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 34.8,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 63,\n\t\t\t\t\"unitPrice\": 43.9,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10591,\n\t\t\"customerID\": \"VAFFE\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-07-07 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-07-21 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-16 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 55.92,\n\t\t\"shipName\": \"Vaffeljernet\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Smagsloget 45\",\n\t\t\t\"city\": \"Århus\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8200,\n\t\t\t\"country\": \"Denmark\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 7,\n\t\t\t\t\"unitPrice\": 30,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 7.45,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 3,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10595,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-07-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-14 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 96.78,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 36,\n\t\t\t\t\"quantity\": 65,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 61,\n\t\t\t\t\"unitPrice\": 28.5,\n\t\t\t\t\"quantity\": 120,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10596,\n\t\t\"customerID\": \"WHITC\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-07-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-12 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 16.34,\n\t\t\"shipName\": \"White Clover Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1029 - 12th Ave. S.\",\n\t\t\t\"city\": \"Seattle\",\n\t\t\t\"region\": \"WA\",\n\t\t\t\"postalCode\": 98124,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 63,\n\t\t\t\t\"unitPrice\": 43.9,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10597,\n\t\t\"customerID\": \"PICCO\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-07-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-18 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 35.12,\n\t\t\"shipName\": \"Piccolo und mehr\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Geislweg 14\",\n\t\t\t\"city\": \"Salzburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5020,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 57,\n\t\t\t\t\"unitPrice\": 19.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 21.05,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10598,\n\t\t\"customerID\": \"RATTC\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-07-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-18 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 44.42,\n\t\t\"shipName\": \"Rattlesnake Canyon Grocery\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2817 Milton Dr.\",\n\t\t\t\"city\": \"Albuquerque\",\n\t\t\t\"region\": \"NM\",\n\t\t\t\"postalCode\": 87110,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 27,\n\t\t\t\t\"unitPrice\": 43.9,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 21.5,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10600,\n\t\t\"customerID\": \"HUNGC\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-07-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-21 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 45.13,\n\t\t\"shipName\": \"Hungry Coyote Import Store\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"City Center Plaza 516 Main St.\",\n\t\t\t\"city\": \"Elgin\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97827,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 7.45,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 73,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10601,\n\t\t\"customerID\": \"HILAA\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-07-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-22 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 58.3,\n\t\t\"shipName\": \"HILARION-Abastos\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 22 con Ave. Carlos Soublette #8-35\",\n\t\t\t\"city\": \"San Cristóbal\",\n\t\t\t\"region\": \"Táchira\",\n\t\t\t\"postalCode\": 5022,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10603,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-07-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-15 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-08 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 48.77,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 22,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 48,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 49,\n\t\t\t\t\"unitPrice\": 20,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10604,\n\t\t\"customerID\": \"FURIB\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-07-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-15 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-29 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 7.46,\n\t\t\"shipName\": \"Furia Bacalhau e Frutos do Mar\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Jardim das rosas n. 32\",\n\t\t\t\"city\": \"Lisboa\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1675,\n\t\t\t\"country\": \"Portugal\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 48,\n\t\t\t\t\"unitPrice\": 12.75,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10605,\n\t\t\"customerID\": \"MEREP\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-07-21 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-29 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 379.13,\n\t\t\"shipName\": \"Mère Paillarde\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"43 rue St. Laurent\",\n\t\t\t\"city\": \"Montréal\",\n\t\t\t\"region\": \"Québec\",\n\t\t\t\"postalCode\": \"H1J 1C3\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 21.5,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10606,\n\t\t\"customerID\": \"TRADH\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-07-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-31 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 79.4,\n\t\t\"shipName\": \"Tradiçao Hipermercados\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Inês de Castro 414\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05634-030\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 4,\n\t\t\t\t\"unitPrice\": 22,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 24,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10594,\n\t\t\"customerID\": \"OLDWO\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-07-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-16 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 5.24,\n\t\t\"shipName\": \"Old World Delicatessen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2743 Bering St.\",\n\t\t\t\"city\": \"Anchorage\",\n\t\t\t\"region\": \"AK\",\n\t\t\t\"postalCode\": 99508,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 58,\n\t\t\t\t\"unitPrice\": 13.25,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 7,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10593,\n\t\t\"customerID\": \"LEHMS\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-07-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-13 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 174.2,\n\t\t\"shipName\": \"Lehmanns Marktstand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Magazinweg 7\",\n\t\t\t\"city\": \"Frankfurt a.M.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 60528,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 20,\n\t\t\t\t\"unitPrice\": 81,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 36,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10592,\n\t\t\"customerID\": \"LEHMS\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-07-08 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-16 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 32.1,\n\t\t\"shipName\": \"Lehmanns Marktstand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Magazinweg 7\",\n\t\t\t\"city\": \"Frankfurt a.M.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 60528,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 15,\n\t\t\t\t\"unitPrice\": 15.5,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 31.23,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10607,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1997-07-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-25 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 200.24,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 7,\n\t\t\t\t\"unitPrice\": 30,\n\t\t\t\t\"quantity\": 45,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 100,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2.5,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 42,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 34.8,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10609,\n\t\t\"customerID\": \"DUMON\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-07-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-21 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-07-30 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 1.85,\n\t\t\"shipName\": \"Du monde entier\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"67 rue des Cinquante Otages\",\n\t\t\t\"city\": \"Nantes\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 44000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10614,\n\t\t\"customerID\": \"BLAUS\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-07-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-01 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 1.93,\n\t\t\"shipName\": \"Blauer See Delikatessen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Forsterstr. 57\",\n\t\t\t\"city\": \"Mannheim\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 68306,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10616,\n\t\t\"customerID\": \"GREAL\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-07-31 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-05 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 116.53,\n\t\t\"shipName\": \"Great Lakes Food Market\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2732 Baker Blvd.\",\n\t\t\t\"city\": \"Eugene\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97403,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 263.5,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 21.5,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10618,\n\t\t\"customerID\": \"MEREP\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-08-01 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-08 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 154.68,\n\t\t\"shipName\": \"Mère Paillarde\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"43 rue St. Laurent\",\n\t\t\t\"city\": \"Montréal\",\n\t\t\t\"region\": \"Québec\",\n\t\t\t\"postalCode\": \"H1J 1C3\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 6,\n\t\t\t\t\"unitPrice\": 25,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10619,\n\t\t\"customerID\": \"MEREP\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-08-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-01 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-07 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 91.05,\n\t\t\"shipName\": \"Mère Paillarde\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"43 rue St. Laurent\",\n\t\t\t\"city\": \"Montréal\",\n\t\t\t\"region\": \"Québec\",\n\t\t\t\"postalCode\": \"H1J 1C3\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 42,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 22,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10612,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-07-28 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-25 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-01 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 544.08,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 55,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 49,\n\t\t\t\t\"unitPrice\": 20,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 80,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10613,\n\t\t\"customerID\": \"HILAA\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-07-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-01 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 8.11,\n\t\t\"shipName\": \"HILARION-Abastos\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 22 con Ave. Carlos Soublette #8-35\",\n\t\t\t\"city\": \"San Cristóbal\",\n\t\t\t\"region\": \"Táchira\",\n\t\t\t\"postalCode\": 5022,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10611,\n\t\t\"customerID\": \"WOLZA\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-07-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-08-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-01 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 80.65,\n\t\t\"shipName\": \"Wolski Zajazd\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"ul. Filtrowa 68\",\n\t\t\t\"city\": \"Warszawa\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"01-012\",\n\t\t\t\"country\": \"Poland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10621,\n\t\t\"customerID\": \"ISLAT\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-08-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-11 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 23.73,\n\t\t\"shipName\": \"Island Trading\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Garden House Crowther Way\",\n\t\t\t\"city\": \"Cowes\",\n\t\t\t\"region\": \"Isle of Wight\",\n\t\t\t\"postalCode\": \"PO31 7PJ\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 9.2,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 23,\n\t\t\t\t\"unitPrice\": 9,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 21.5,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10620,\n\t\t\"customerID\": \"LAUGB\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-08-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-14 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 0.94,\n\t\t\"shipName\": \"Laughing Bacchus Wine Cellars\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2319 Elm St.\",\n\t\t\t\"city\": \"Vancouver\",\n\t\t\t\"region\": \"BC\",\n\t\t\t\"postalCode\": \"V3F 2K1\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 7,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10625,\n\t\t\"customerID\": \"ANATR\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-08-08 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-14 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 43.9,\n\t\t\"shipName\": \"Ana Trujillo Emparedados y helados\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Avda. de la Constitución 2222\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5021,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 14,\n\t\t\t\t\"unitPrice\": 23.25,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10623,\n\t\t\"customerID\": \"FRANK\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-08-07 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-12 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 97.18,\n\t\t\"shipName\": \"Frankenversand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berliner Platz 43\",\n\t\t\t\"city\": \"München\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 80805,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 14,\n\t\t\t\t\"unitPrice\": 23.25,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 9.2,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10622,\n\t\t\"customerID\": \"RICAR\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-08-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-03 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-11 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 50.97,\n\t\t\"shipName\": \"Ricardo Adocicados\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Copacabana 267\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"02389-890\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10624,\n\t\t\"customerID\": \"THECR\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-08-07 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-19 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 94.8,\n\t\t\"shipName\": \"The Cracker Box\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"55 Grizzly Peak Rd.\",\n\t\t\t\"city\": \"Butte\",\n\t\t\t\"region\": \"MT\",\n\t\t\t\"postalCode\": 59801,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 45.6,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 123.79,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 19.45,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10626,\n\t\t\"customerID\": \"BERGS\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-08-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-20 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 138.69,\n\t\t\"shipName\": \"Berglunds snabbköp\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berguvsvägen 8\",\n\t\t\t\"city\": \"Luleå\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-958 22\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 32.8,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 21.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10627,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-08-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-21 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 107.46,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 73,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10630,\n\t\t\"customerID\": \"KOENE\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-08-13 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-19 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 32.35,\n\t\t\"shipName\": \"Königlich Essen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Maubelstr. 90\",\n\t\t\t\"city\": \"Brandenburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 14776,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 24,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10629,\n\t\t\"customerID\": \"GODOS\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-08-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-20 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 85.46,\n\t\t\"shipName\": \"Godos Cocina Típica\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"C/ Romero 33\",\n\t\t\t\"city\": \"Sevilla\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 41101,\n\t\t\t\"country\": \"Spain\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 123.79,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 33.25,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10632,\n\t\t\"customerID\": \"WANDK\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-08-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-19 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 41.38,\n\t\t\"shipName\": \"Die Wandernde Kuh\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Adenauerallee 900\",\n\t\t\t\"city\": \"Stuttgart\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 70563,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10633,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-08-15 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-18 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 477.9,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 12,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 36,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 13,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 31.23,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 80,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10634,\n\t\t\"customerID\": \"FOLIG\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-08-15 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-21 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 487.38,\n\t\t\"shipName\": \"Folies gourmandes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"184 chaussée de Tournai\",\n\t\t\t\"city\": \"Lille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 59000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 7,\n\t\t\t\t\"unitPrice\": 30,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 62.5,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10638,\n\t\t\"customerID\": \"LINOD\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-08-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-01 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 158.44,\n\t\t\"shipName\": \"LINO-Delicateses\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Ave. 5 de Mayo Porlamar\",\n\t\t\t\"city\": \"I. de Margarita\",\n\t\t\t\"region\": \"Nueva Esparta\",\n\t\t\t\"postalCode\": 4980,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 45,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 21.05,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 34.8,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10640,\n\t\t\"customerID\": \"WANDK\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-08-21 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-28 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 23.55,\n\t\t\"shipName\": \"Die Wandernde Kuh\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Adenauerallee 900\",\n\t\t\t\"city\": \"Stuttgart\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 70563,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 36,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10641,\n\t\t\"customerID\": \"HILAA\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-08-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-26 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 179.61,\n\t\t\"shipName\": \"HILARION-Abastos\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 22 con Ave. Carlos Soublette #8-35\",\n\t\t\t\"city\": \"San Cristóbal\",\n\t\t\t\"region\": \"Táchira\",\n\t\t\t\"postalCode\": 5022,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10642,\n\t\t\"customerID\": \"SIMOB\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-08-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-05 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 41.89,\n\t\t\"shipName\": \"Simons bistro\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Vinbæltet 34\",\n\t\t\t\"city\": \"Kobenhavn\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1734,\n\t\t\t\"country\": \"Denmark\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 61,\n\t\t\t\t\"unitPrice\": 28.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10643,\n\t\t\"customerID\": \"ALFKI\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-08-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-02 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 29.46,\n\t\t\"shipName\": \"Alfreds Futterkiste\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Obere Str. 57\",\n\t\t\t\"city\": \"Berlin\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 12209,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 45.6,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10636,\n\t\t\"customerID\": \"WARTH\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-08-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-26 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 1.15,\n\t\t\"shipName\": \"Wartian Herkku\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Torikatu 38\",\n\t\t\t\"city\": \"Oulu\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 90110,\n\t\t\t\"country\": \"Finland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 4,\n\t\t\t\t\"unitPrice\": 22,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 58,\n\t\t\t\t\"unitPrice\": 13.25,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10644,\n\t\t\"customerID\": \"WELLI\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-08-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-01 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 0.14,\n\t\t\"shipName\": \"Wellington Importadora\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Mercado 12\",\n\t\t\t\"city\": \"Resende\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"08737-363\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 62.5,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 46,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10635,\n\t\t\"customerID\": \"MAGAA\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-08-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-15 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-21 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 47.46,\n\t\t\"shipName\": \"Magazzini Alimentari Riuniti\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Via Ludovico il Moro 22\",\n\t\t\t\"city\": \"Bergamo\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 24100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 22,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 5,\n\t\t\t\t\"unitPrice\": 21.35,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 4,\n\t\t\t\t\"unitPrice\": 22,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10637,\n\t\t\"customerID\": \"QUEEN\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-08-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-26 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 201.29,\n\t\t\"shipName\": \"Queen Cozinha\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Alameda dos Canàrios 891\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05487-020\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 50,\n\t\t\t\t\"unitPrice\": 16.25,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10645,\n\t\t\"customerID\": \"HANAR\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-08-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-23 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-02 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 12.41,\n\t\t\"shipName\": \"Hanari Carnes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Paço 67\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"05454-876\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 62.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10649,\n\t\t\"customerID\": \"MAISD\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1997-08-28 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-25 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-08-29 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 6.2,\n\t\t\"shipName\": \"Maison Dewey\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rue Joseph-Bens 532\",\n\t\t\t\"city\": \"Bruxelles\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"B-1180\",\n\t\t\t\"country\": \"Belgium\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 45.6,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 34.8,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10650,\n\t\t\"customerID\": \"FAMIA\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1997-08-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-03 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 176.81,\n\t\t\"shipName\": \"Familia Arquibaldo\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua Orós 92\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05442-030\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 25.89,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 7.45,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 32.8,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10651,\n\t\t\"customerID\": \"WANDK\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-09-01 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-11 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 20.6,\n\t\t\"shipName\": \"Die Wandernde Kuh\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Adenauerallee 900\",\n\t\t\t\"city\": \"Stuttgart\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 70563,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 9.2,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 22,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10652,\n\t\t\"customerID\": \"GOURL\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-09-01 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-08 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 7.14,\n\t\t\"shipName\": \"Gourmet Lanchonetes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Brasil 442\",\n\t\t\t\"city\": \"Campinas\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"04876-786\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 25.89,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10653,\n\t\t\"customerID\": \"FRANK\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-09-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-19 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 93.25,\n\t\t\"shipName\": \"Frankenversand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berliner Platz 43\",\n\t\t\t\"city\": \"München\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 80805,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10654,\n\t\t\"customerID\": \"BERGS\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1997-09-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-11 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 55.26,\n\t\t\"shipName\": \"Berglunds snabbköp\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berguvsvägen 8\",\n\t\t\t\"city\": \"Luleå\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-958 22\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 4,\n\t\t\t\t\"unitPrice\": 22,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 7.45,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10647,\n\t\t\"customerID\": \"QUEDE\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-08-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-03 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 45.54,\n\t\t\"shipName\": \"Que Delícia\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua da Panificadora 12\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"02389-673\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 9.2,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10656,\n\t\t\"customerID\": \"GREAL\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-09-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-10 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 57.15,\n\t\t\"shipName\": \"Great Lakes Food Market\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2732 Baker Blvd.\",\n\t\t\t\"city\": \"Eugene\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97403,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 14,\n\t\t\t\t\"unitPrice\": 23.25,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 19.45,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 47,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10657,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-09-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-15 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 352.69,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 45,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 47,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 45,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 15,\n\t\t\t\t\"unitPrice\": 15.5,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10658,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-09-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-03 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-08 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 364.15,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 55,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10646,\n\t\t\"customerID\": \"HUNGO\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1997-08-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-03 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 142.33,\n\t\t\"shipName\": \"Hungry Owl All-Night Grocers\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"8 Johnstown Road\",\n\t\t\t\"city\": \"Cork\",\n\t\t\t\"region\": \"Co. Cork\",\n\t\t\t\"postalCode\": \"NULL\",\n\t\t\t\"country\": \"Ireland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 21.5,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10648,\n\t\t\"customerID\": \"RICAR\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1997-08-28 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-09 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 14.25,\n\t\t\"shipName\": \"Ricardo Adocicados\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Copacabana 267\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"02389-890\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 22,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10659,\n\t\t\"customerID\": \"QUEEN\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-09-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-03 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-10 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 105.81,\n\t\t\"shipName\": \"Queen Cozinha\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Alameda dos Canàrios 891\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05487-020\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10664,\n\t\t\"customerID\": \"FURIB\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-09-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-19 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 1.27,\n\t\t\"shipName\": \"Furia Bacalhau e Frutos do Mar\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Jardim das rosas n. 32\",\n\t\t\t\"city\": \"Lisboa\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1675,\n\t\t\t\"country\": \"Portugal\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 21.05,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10661,\n\t\t\"customerID\": \"HUNGO\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-09-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-15 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 17.55,\n\t\t\"shipName\": \"Hungry Owl All-Night Grocers\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"8 Johnstown Road\",\n\t\t\t\"city\": \"Cork\",\n\t\t\t\"region\": \"Co. Cork\",\n\t\t\t\"postalCode\": \"NULL\",\n\t\t\t\"country\": \"Ireland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 58,\n\t\t\t\t\"unitPrice\": 13.25,\n\t\t\t\t\"quantity\": 49,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10665,\n\t\t\"customerID\": \"LONEP\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-09-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-17 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 26.31,\n\t\t\"shipName\": \"Lonesome Pine Restaurant\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"89 Chiaroscuro Rd.\",\n\t\t\t\"city\": \"Portland\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97219,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 1,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10663,\n\t\t\"customerID\": \"BONAP\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-09-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-09-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-03 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 113.15,\n\t\t\"shipName\": \"Bon app'\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"12 rue des Bouchers\",\n\t\t\t\"city\": \"Marseille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 13008,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10666,\n\t\t\"customerID\": \"RICSU\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-09-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-22 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 232.42,\n\t\t\"shipName\": \"Richter Supermarkt\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Starenweg 5\",\n\t\t\t\"city\": \"Genève\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1204,\n\t\t\t\"country\": \"Switzerland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 123.79,\n\t\t\t\t\"quantity\": 36,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 21.05,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10667,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-09-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-19 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 78.09,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 36,\n\t\t\t\t\"quantity\": 45,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 21.5,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10668,\n\t\t\"customerID\": \"WANDK\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-09-15 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-23 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 47.22,\n\t\t\"shipName\": \"Die Wandernde Kuh\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Adenauerallee 900\",\n\t\t\t\"city\": \"Stuttgart\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 70563,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 24,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 33.25,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10670,\n\t\t\"customerID\": \"FRANK\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-09-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-18 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 203.48,\n\t\t\"shipName\": \"Frankenversand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berliner Platz 43\",\n\t\t\t\"city\": \"München\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 80805,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 23,\n\t\t\t\t\"unitPrice\": 9,\n\t\t\t\t\"quantity\": 32,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 73,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 67,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10672,\n\t\t\"customerID\": \"BERGS\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1997-09-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-01 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-26 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 95.75,\n\t\t\"shipName\": \"Berglunds snabbköp\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berguvsvägen 8\",\n\t\t\t\"city\": \"Luleå\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-958 22\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 263.5,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 21.5,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10671,\n\t\t\"customerID\": \"FRANR\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-09-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-15 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-24 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 30.34,\n\t\t\"shipName\": \"France restauration\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"54 rue Royale\",\n\t\t\t\"city\": \"Nantes\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 44000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 21.05,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10673,\n\t\t\"customerID\": \"WILMK\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-09-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-19 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 22.76,\n\t\t\"shipName\": \"Wilman Kala\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Keskuskatu 45\",\n\t\t\t\"city\": \"Helsinki\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 21240,\n\t\t\t\"country\": \"Finland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 46,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10677,\n\t\t\"customerID\": \"ANTON\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-09-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-26 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 4.03,\n\t\t\"shipName\": \"Antonio Moreno Taquería\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Mataderos 2312\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5023,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 31.23,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2.5,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10678,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-09-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-21 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-16 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 388.98,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 12,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 100,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2.5,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 120,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 7.45,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10680,\n\t\t\"customerID\": \"OLDWO\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-09-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-26 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 26.61,\n\t\t\"shipName\": \"Old World Delicatessen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2743 Bering St.\",\n\t\t\t\"city\": \"Anchorage\",\n\t\t\t\"region\": \"AK\",\n\t\t\t\"postalCode\": 99508,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10681,\n\t\t\"customerID\": \"GREAL\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-09-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-23 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-30 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 76.13,\n\t\t\"shipName\": \"Great Lakes Food Market\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2732 Baker Blvd.\",\n\t\t\t\"city\": \"Eugene\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97403,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 9.2,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 33.25,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10682,\n\t\t\"customerID\": \"ANTON\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-09-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-23 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-01 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 36.13,\n\t\t\"shipName\": \"Antonio Moreno Taquería\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Mataderos 2312\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5023,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2.5,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 66,\n\t\t\t\t\"unitPrice\": 17,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10675,\n\t\t\"customerID\": \"FRANK\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1997-09-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-23 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 31.85,\n\t\t\"shipName\": \"Frankenversand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berliner Platz 43\",\n\t\t\t\"city\": \"München\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 80805,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 32.8,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 58,\n\t\t\t\t\"unitPrice\": 13.25,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 14,\n\t\t\t\t\"unitPrice\": 23.25,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10684,\n\t\t\"customerID\": \"OTTIK\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-09-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-30 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 145.63,\n\t\t\"shipName\": \"Ottilies Käseladen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Mehrheimerstr. 369\",\n\t\t\t\"city\": \"Köln\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 50739,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 47,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10685,\n\t\t\"customerID\": \"GOURL\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-09-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-03 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 33.75,\n\t\t\"shipName\": \"Gourmet Lanchonetes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Brasil 442\",\n\t\t\t\"city\": \"Campinas\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"04876-786\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 47,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10676,\n\t\t\"customerID\": \"TORTU\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-09-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-09-29 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 2.01,\n\t\t\"shipName\": \"Tortuga Restaurante\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Avda. Azteca 123\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5033,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 9.2,\n\t\t\t\t\"quantity\": 7,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 19.45,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10686,\n\t\t\"customerID\": \"PICCO\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-09-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-08 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 96.5,\n\t\t\"shipName\": \"Piccolo und mehr\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Geislweg 14\",\n\t\t\t\"city\": \"Salzburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5020,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 31.23,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10687,\n\t\t\"customerID\": \"HUNGO\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1997-09-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-30 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 296.43,\n\t\t\"shipName\": \"Hungry Owl All-Night Grocers\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"8 Johnstown Road\",\n\t\t\t\"city\": \"Cork\",\n\t\t\t\"region\": \"Co. Cork\",\n\t\t\t\"postalCode\": \"NULL\",\n\t\t\t\"country\": \"Ireland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 9,\n\t\t\t\t\"unitPrice\": 97,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 123.79,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10691,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-10-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-22 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 810.05,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 19.45,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 123.79,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 48,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 46,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10693,\n\t\t\"customerID\": \"WHITC\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-10-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-10 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 139.34,\n\t\t\"shipName\": \"White Clover Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1029 - 12th Ave. S.\",\n\t\t\t\"city\": \"Seattle\",\n\t\t\t\"region\": \"WA\",\n\t\t\t\"postalCode\": 98124,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 9,\n\t\t\t\t\"unitPrice\": 97,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 7.45,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 36,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 73,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10694,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-10-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-03 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-09 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 398.36,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 7,\n\t\t\t\t\"unitPrice\": 30,\n\t\t\t\t\"quantity\": 90,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10695,\n\t\t\"customerID\": \"WILMK\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-10-07 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-14 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 16.72,\n\t\t\"shipName\": \"Wilman Kala\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Keskuskatu 45\",\n\t\t\t\"city\": \"Helsinki\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 21240,\n\t\t\t\"country\": \"Finland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 8,\n\t\t\t\t\"unitPrice\": 40,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 12,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10696,\n\t\t\"customerID\": \"WHITC\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-10-08 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-14 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 102.55,\n\t\t\"shipName\": \"White Clover Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1029 - 12th Ave. S.\",\n\t\t\t\"city\": \"Seattle\",\n\t\t\t\"region\": \"WA\",\n\t\t\t\"postalCode\": 98124,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10697,\n\t\t\"customerID\": \"LINOD\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-10-08 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-14 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 45.52,\n\t\t\"shipName\": \"LINO-Delicateses\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Ave. 5 de Mayo Porlamar\",\n\t\t\t\"city\": \"I. de Margarita\",\n\t\t\t\"region\": \"Nueva Esparta\",\n\t\t\t\"postalCode\": 4980,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 9.2,\n\t\t\t\t\"quantity\": 7,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 58,\n\t\t\t\t\"unitPrice\": 13.25,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10698,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-10-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-17 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 272.47,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 123.79,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 21.05,\n\t\t\t\t\"quantity\": 65,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10690,\n\t\t\"customerID\": \"HANAR\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-10-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-03 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 15.8,\n\t\t\"shipName\": \"Hanari Carnes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Paço 67\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"05454-876\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10702,\n\t\t\"customerID\": \"ALFKI\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-10-13 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-21 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 23.94,\n\t\t\"shipName\": \"Alfred's Futterkiste\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Obere Str. 57\",\n\t\t\t\"city\": \"Berlin\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 12209,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 3,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10700,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-10-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-16 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 65.1,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 34,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 21.5,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10688,\n\t\t\"customerID\": \"VAFFE\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-10-01 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-15 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-07 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 299.09,\n\t\t\"shipName\": \"Vaffeljernet\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Smagsloget 45\",\n\t\t\t\"city\": \"Århus\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8200,\n\t\t\t\"country\": \"Denmark\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 45.6,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 34,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10701,\n\t\t\"customerID\": \"HUNGO\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-10-13 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-15 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 220.31,\n\t\t\"shipName\": \"Hungry Owl All-Night Grocers\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"8 Johnstown Road\",\n\t\t\t\"city\": \"Cork\",\n\t\t\t\"region\": \"Co. Cork\",\n\t\t\t\"postalCode\": \"NULL\",\n\t\t\t\"country\": \"Ireland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 42,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 21.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10703,\n\t\t\"customerID\": \"FOLKO\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-10-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-20 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 152.3,\n\t\t\"shipName\": \"Folk och fä HB\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Åkergatan 24\",\n\t\t\t\"city\": \"Bräcke\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-844 67\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 73,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10704,\n\t\t\"customerID\": \"QUEEN\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-10-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-07 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 4.78,\n\t\t\"shipName\": \"Queen Cozinha\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Alameda dos Canàrios 891\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05487-020\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 4,\n\t\t\t\t\"unitPrice\": 22,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 48,\n\t\t\t\t\"unitPrice\": 12.75,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10708,\n\t\t\"customerID\": \"THEBI\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-10-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-05 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 2.96,\n\t\t\"shipName\": \"The Big Cheese\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"89 Jefferson Way Suite 2\",\n\t\t\t\"city\": \"Portland\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97201,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 5,\n\t\t\t\t\"unitPrice\": 21.35,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10709,\n\t\t\"customerID\": \"GOURL\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-10-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-20 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 210.8,\n\t\t\"shipName\": \"Gourmet Lanchonetes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Brasil 442\",\n\t\t\t\"city\": \"Campinas\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"04876-786\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 8,\n\t\t\t\t\"unitPrice\": 40,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10710,\n\t\t\"customerID\": \"FRANS\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-10-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-23 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 4.98,\n\t\t\"shipName\": \"Franchi S.p.A.\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Via Monte Bianco 34\",\n\t\t\t\"city\": \"Torino\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 10100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 9.2,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 47,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10711,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1997-10-21 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-29 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 52.41,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 9.2,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 42,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 32.8,\n\t\t\t\t\"quantity\": 120,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10712,\n\t\t\"customerID\": \"HUNGO\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-10-21 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-31 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 89.93,\n\t\t\"shipName\": \"Hungry Owl All-Night Grocers\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"8 Johnstown Road\",\n\t\t\t\"city\": \"Cork\",\n\t\t\t\"region\": \"Co. Cork\",\n\t\t\t\"postalCode\": \"NULL\",\n\t\t\t\"country\": \"Ireland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 32.8,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10713,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-10-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-24 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 167.05,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 31.23,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 45,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 110,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10707,\n\t\t\"customerID\": \"AROUT\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-10-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-10-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-23 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 21.74,\n\t\t\"shipName\": \"Around the Horn\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Brook Farm Stratford St. Mary\",\n\t\t\t\"city\": \"Colchester\",\n\t\t\t\"region\": \"Essex\",\n\t\t\t\"postalCode\": \"CO7 6JX\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 24,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 57,\n\t\t\t\t\"unitPrice\": 19.5,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10715,\n\t\t\"customerID\": \"BONAP\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-10-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-29 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 63.2,\n\t\t\"shipName\": \"Bon app'\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"12 rue des Bouchers\",\n\t\t\t\"city\": \"Marseille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 13008,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 21.5,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10706,\n\t\t\"customerID\": \"OLDWO\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-10-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-21 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 135.63,\n\t\t\"shipName\": \"Old World Delicatessen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2743 Bering St.\",\n\t\t\t\"city\": \"Anchorage\",\n\t\t\t\"region\": \"AK\",\n\t\t\t\"postalCode\": 99508,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 46,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10705,\n\t\t\"customerID\": \"HILAA\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1997-10-15 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-18 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 3.52,\n\t\t\"shipName\": \"HILARION-Abastos\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 22 con Ave. Carlos Soublette #8-35\",\n\t\t\t\"city\": \"San Cristóbal\",\n\t\t\t\"region\": \"Táchira\",\n\t\t\t\"postalCode\": 5022,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 32,\n\t\t\t\t\"unitPrice\": 32,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10714,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1997-10-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-27 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 24.49,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 58,\n\t\t\t\t\"unitPrice\": 13.25,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 47,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 27,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10719,\n\t\t\"customerID\": \"LETSS\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-10-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-05 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 51.44,\n\t\t\"shipName\": \"Let's Stop N Shop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"87 Polk St. Suite 5\",\n\t\t\t\"city\": \"San Francisco\",\n\t\t\t\"region\": \"CA\",\n\t\t\t\"postalCode\": 94117,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 62.5,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 25.89,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 7.45,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10720,\n\t\t\"customerID\": \"QUEDE\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-10-28 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-05 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 9.53,\n\t\t\"shipName\": \"Que Delícia\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua da Panificadora 12\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"02389-673\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 21.5,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10722,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-10-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-04 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 74.58,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 45,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 42,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10724,\n\t\t\"customerID\": \"MEREP\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-10-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-05 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 57.75,\n\t\t\"shipName\": \"Mère Paillarde\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"43 rue St. Laurent\",\n\t\t\t\"city\": \"Montréal\",\n\t\t\t\"region\": \"Québec\",\n\t\t\t\"postalCode\": \"H1J 1C3\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 61,\n\t\t\t\t\"unitPrice\": 28.5,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10716,\n\t\t\"customerID\": \"RANCH\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-10-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-21 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-27 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 22.57,\n\t\t\"shipName\": \"Rancho grande\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. del Libertador 900\",\n\t\t\t\"city\": \"Buenos Aires\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1010,\n\t\t\t\"country\": \"Argentina\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 7,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 61,\n\t\t\t\t\"unitPrice\": 28.5,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10726,\n\t\t\"customerID\": \"EASTC\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-11-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-05 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 16.56,\n\t\t\"shipName\": \"Eastern Connection\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"35 King George\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"WX3 6FW\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 4,\n\t\t\t\t\"unitPrice\": 22,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10717,\n\t\t\"customerID\": \"FRANK\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-10-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-21 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-29 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 59.25,\n\t\t\"shipName\": \"Frankenversand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berliner Platz 43\",\n\t\t\t\"city\": \"München\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 80805,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 32,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 7.45,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 36,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10727,\n\t\t\"customerID\": \"REGGC\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-11-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-01 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-05 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 89.9,\n\t\t\"shipName\": \"Reggiani Caseifici\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Strada Provinciale 124\",\n\t\t\t\"city\": \"Reggio Emilia\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 42100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10728,\n\t\t\"customerID\": \"QUEEN\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-11-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-11 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 58.33,\n\t\t\"shipName\": \"Queen Cozinha\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Alameda dos Canàrios 891\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05487-020\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 25.89,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 24,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10729,\n\t\t\"customerID\": \"LINOD\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-11-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-14 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 141.06,\n\t\t\"shipName\": \"LINO-Delicateses\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Ave. 5 de Mayo Porlamar\",\n\t\t\t\"city\": \"I. de Margarita\",\n\t\t\t\"region\": \"Nueva Esparta\",\n\t\t\t\"postalCode\": 4980,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 50,\n\t\t\t\t\"unitPrice\": 16.25,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10730,\n\t\t\"customerID\": \"BONAP\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1997-11-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-03 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-14 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 20.12,\n\t\t\"shipName\": \"Bon app'\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"12 rue des Bouchers\",\n\t\t\t\"city\": \"Marseille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 13008,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 21.05,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10718,\n\t\t\"customerID\": \"KOENE\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-10-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-10-29 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 170.88,\n\t\t\"shipName\": \"Königlich Essen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Maubelstr. 90\",\n\t\t\t\"city\": \"Brandenburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 14776,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 12,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 36,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10725,\n\t\t\"customerID\": \"FAMIA\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-10-31 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-11-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-05 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 10.83,\n\t\t\"shipName\": \"Familia Arquibaldo\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua Orós 92\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05442-030\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 7,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 24,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10731,\n\t\t\"customerID\": \"CHOPS\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-11-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-14 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 96.65,\n\t\t\"shipName\": \"Chop-suey Chinese\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Hauptstr. 31\",\n\t\t\t\"city\": \"Bern\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 3012,\n\t\t\t\"country\": \"Switzerland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10735,\n\t\t\"customerID\": \"LETSS\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-11-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-21 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 45.97,\n\t\t\"shipName\": \"Let's Stop N Shop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"87 Polk St. Suite 5\",\n\t\t\t\"city\": \"San Francisco\",\n\t\t\t\"region\": \"CA\",\n\t\t\t\"postalCode\": 94117,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 61,\n\t\t\t\t\"unitPrice\": 28.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10736,\n\t\t\"customerID\": \"HUNGO\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1997-11-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-21 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 44.1,\n\t\t\"shipName\": \"Hungry Owl All-Night Grocers\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"8 Johnstown Road\",\n\t\t\t\"city\": \"Cork\",\n\t\t\t\"region\": \"Co. Cork\",\n\t\t\t\"postalCode\": \"NULL\",\n\t\t\t\"country\": \"Ireland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 21.05,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10737,\n\t\t\"customerID\": \"VINET\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-11-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-18 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 7.79,\n\t\t\"shipName\": \"Vins et alcools Chevalier\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"59 rue de l'Abbaye\",\n\t\t\t\"city\": \"Reims\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 51100,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10739,\n\t\t\"customerID\": \"VINET\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-11-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-17 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 11.08,\n\t\t\"shipName\": \"Vins et alcools Chevalier\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"59 rue de l'Abbaye\",\n\t\t\t\"city\": \"Reims\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 51100,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 7,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10740,\n\t\t\"customerID\": \"WHITC\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-11-13 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-25 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 81.88,\n\t\t\"shipName\": \"White Clover Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1029 - 12th Ave. S.\",\n\t\t\t\"city\": \"Seattle\",\n\t\t\t\"region\": \"WA\",\n\t\t\t\"postalCode\": 98124,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 45.6,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 45,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10733,\n\t\t\"customerID\": \"BERGS\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-11-07 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-10 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 110.11,\n\t\t\"shipName\": \"Berglunds snabbköp\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berguvsvägen 8\",\n\t\t\t\"city\": \"Luleå\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-958 22\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 14,\n\t\t\t\t\"unitPrice\": 23.25,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 45.6,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 7,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10742,\n\t\t\"customerID\": \"BOTTM\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-11-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-18 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 243.73,\n\t\t\"shipName\": \"Bottom-Dollar Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"23 Tsawassen Blvd.\",\n\t\t\t\"city\": \"Tsawassen\",\n\t\t\t\"region\": \"BC\",\n\t\t\t\"postalCode\": \"T2F 8M4\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 3,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 34.8,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10734,\n\t\t\"customerID\": \"GOURL\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-11-07 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-12 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 1.63,\n\t\t\"shipName\": \"Gourmet Lanchonetes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Brasil 442\",\n\t\t\t\"city\": \"Campinas\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"04876-786\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 6,\n\t\t\t\t\"unitPrice\": 25,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 25.89,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10747,\n\t\t\"customerID\": \"PICCO\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-11-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-26 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 117.33,\n\t\t\"shipName\": \"Piccolo und mehr\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Geislweg 14\",\n\t\t\t\"city\": \"Salzburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5020,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 63,\n\t\t\t\t\"unitPrice\": 43.9,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 36,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10748,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-11-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-28 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 232.55,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 23,\n\t\t\t\t\"unitPrice\": 9,\n\t\t\t\t\"quantity\": 44,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10749,\n\t\t\"customerID\": \"ISLAT\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-11-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-19 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 61.53,\n\t\t\"shipName\": \"Island Trading\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Garden House Crowther Way\",\n\t\t\t\"city\": \"Cowes\",\n\t\t\t\"region\": \"Isle of Wight\",\n\t\t\t\"postalCode\": \"PO31 7PJ\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10750,\n\t\t\"customerID\": \"WARTH\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1997-11-21 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-24 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 79.3,\n\t\t\"shipName\": \"Wartian Herkku\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Torikatu 38\",\n\t\t\t\"city\": \"Oulu\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 90110,\n\t\t\t\"country\": \"Finland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 14,\n\t\t\t\t\"unitPrice\": 23.25,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 45,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10751,\n\t\t\"customerID\": \"RICSU\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-11-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-03 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 130.79,\n\t\t\"shipName\": \"Richter Supermarkt\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Starenweg 5\",\n\t\t\t\"city\": \"Genève\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1204,\n\t\t\t\"country\": \"Switzerland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 31.23,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 25.89,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 50,\n\t\t\t\t\"unitPrice\": 16.25,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 73,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10752,\n\t\t\"customerID\": \"NORTS\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-11-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-28 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 1.39,\n\t\t\"shipName\": \"North/South\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"South House 300 Queensbridge\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"SW7 1RZ\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 36,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10753,\n\t\t\"customerID\": \"FRANS\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-11-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-23 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-27 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 7.7,\n\t\t\"shipName\": \"Franchi S.p.A.\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Via Monte Bianco 34\",\n\t\t\t\"city\": \"Torino\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 10100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 45,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 74,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10745,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1997-11-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-27 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 3.52,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 62.5,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 19.45,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 45,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 34.8,\n\t\t\t\t\"quantity\": 7,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10755,\n\t\t\"customerID\": \"BONAP\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-11-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-28 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 16.71,\n\t\t\"shipName\": \"Bon app'\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"12 rue des Bouchers\",\n\t\t\t\"city\": \"Marseille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 13008,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 47,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 57,\n\t\t\t\t\"unitPrice\": 19.5,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 36,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10756,\n\t\t\"customerID\": \"SPLIR\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-11-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-25 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-02 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 73.21,\n\t\t\"shipName\": \"Split Rail Beer & Ale\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"P.O. Box 555\",\n\t\t\t\"city\": \"Lander\",\n\t\t\t\"region\": \"WY\",\n\t\t\t\"postalCode\": 82520,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 62.5,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 36,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10746,\n\t\t\"customerID\": \"CHOPS\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-11-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-11-21 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 31.43,\n\t\t\"shipName\": \"Chop-suey Chinese\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Hauptstr. 31\",\n\t\t\t\"city\": \"Bern\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 3012,\n\t\t\t\"country\": \"Switzerland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 36,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10757,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-11-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-25 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-15 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 8.19,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 34,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 7,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 33.25,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10761,\n\t\t\"customerID\": \"RATTC\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1997-12-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-08 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 18.66,\n\t\t\"shipName\": \"Rattlesnake Canyon Grocery\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2817 Milton Dr.\",\n\t\t\t\"city\": \"Albuquerque\",\n\t\t\t\"region\": \"NM\",\n\t\t\t\"postalCode\": 87110,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 25,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10762,\n\t\t\"customerID\": \"FOLKO\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-12-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-09 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 328.74,\n\t\t\"shipName\": \"Folk och fä HB\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Åkergatan 24\",\n\t\t\t\"city\": \"Bräcke\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-844 67\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 47,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10763,\n\t\t\"customerID\": \"FOLIG\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-12-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-31 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-08 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 37.35,\n\t\t\"shipName\": \"Folies gourmandes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"184 chaussée de Tournai\",\n\t\t\t\"city\": \"Lille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 59000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 22,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10764,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-12-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-31 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-08 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 145.45,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 3,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 130,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10766,\n\t\t\"customerID\": \"OTTIK\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-12-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-09 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 157.55,\n\t\t\"shipName\": \"Ottilies Käseladen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Mehrheimerstr. 369\",\n\t\t\t\"city\": \"Köln\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 50739,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 7,\n\t\t\t\t\"unitPrice\": 30,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10760,\n\t\t\"customerID\": \"MAISD\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-12-01 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-10 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 155.64,\n\t\t\"shipName\": \"Maison Dewey\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rue Joseph-Bens 532\",\n\t\t\t\"city\": \"Bruxelles\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"B-1180\",\n\t\t\t\"country\": \"Belgium\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 46,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 25,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 27,\n\t\t\t\t\"unitPrice\": 43.9,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10768,\n\t\t\"customerID\": \"AROUT\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-12-08 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-15 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 146.32,\n\t\t\"shipName\": \"Around the Horn\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Brook Farm Stratford St. Mary\",\n\t\t\t\"city\": \"Colchester\",\n\t\t\t\"region\": \"Essex\",\n\t\t\t\"postalCode\": \"CO7 6JX\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 22,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 21.5,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10759,\n\t\t\"customerID\": \"ANATR\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-11-28 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-12 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 11.99,\n\t\t\"shipName\": \"Ana Trujillo Emparedados y helados\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Avda. de la Constitución 2222\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5021,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 32,\n\t\t\t\t\"unitPrice\": 32,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10769,\n\t\t\"customerID\": \"VAFFE\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-12-08 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-12 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 65.06,\n\t\t\"shipName\": \"Vaffeljernet\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Smagsloget 45\",\n\t\t\t\"city\": \"Århus\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8200,\n\t\t\t\"country\": \"Denmark\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 7,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 61,\n\t\t\t\t\"unitPrice\": 28.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10772,\n\t\t\"customerID\": \"LEHMS\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-12-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-19 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 91.28,\n\t\t\"shipName\": \"Lehmanns Marktstand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Magazinweg 7\",\n\t\t\t\"city\": \"Frankfurt a.M.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 60528,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 123.79,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10758,\n\t\t\"customerID\": \"RICSU\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-11-28 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-04 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 138.17,\n\t\t\"shipName\": \"Richter Supermarkt\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Starenweg 5\",\n\t\t\t\"city\": \"Genève\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1204,\n\t\t\t\"country\": \"Switzerland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 31.23,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 7,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10773,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-12-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-16 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 96.43,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 33,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 7,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10775,\n\t\t\"customerID\": \"THECR\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1997-12-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-26 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 20.25,\n\t\t\"shipName\": \"The Cracker Box\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"55 Grizzly Peak Rd.\",\n\t\t\t\"city\": \"Butte\",\n\t\t\t\"region\": \"MT\",\n\t\t\t\"postalCode\": 59801,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 67,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10774,\n\t\t\"customerID\": \"FOLKO\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-12-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-25 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-12 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 48.2,\n\t\t\"shipName\": \"Folk och fä HB\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Åkergatan 24\",\n\t\t\t\"city\": \"Bräcke\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-844 67\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 66,\n\t\t\t\t\"unitPrice\": 17,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10779,\n\t\t\"customerID\": \"MORGK\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-12-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-14 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 58.13,\n\t\t\"shipName\": \"Morgenstern Gesundkost\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Heerstr. 22\",\n\t\t\t\"city\": \"Leipzig\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 4179,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10780,\n\t\t\"customerID\": \"LILAS\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-12-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1997-12-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-25 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 42.13,\n\t\t\"shipName\": \"LILA-Supermercado\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 52 con Ave. Bolívar #65-98 Llano Largo\",\n\t\t\t\"city\": \"Barquisimeto\",\n\t\t\t\"region\": \"Lara\",\n\t\t\t\"postalCode\": 3508,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10781,\n\t\t\"customerID\": \"WARTH\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-12-17 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-19 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 73.16,\n\t\t\"shipName\": \"Wartian Herkku\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Torikatu 38\",\n\t\t\t\"city\": \"Oulu\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 90110,\n\t\t\t\"country\": \"Finland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 7.45,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 74,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10783,\n\t\t\"customerID\": \"HANAR\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-12-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-15 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-19 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 124.98,\n\t\t\"shipName\": \"Hanari Carnes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Paço 67\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"05454-876\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 263.5,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10784,\n\t\t\"customerID\": \"MAGAA\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-12-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-15 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-22 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 70.09,\n\t\t\"shipName\": \"Magazzini Alimentari Riuniti\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Via Ludovico il Moro 22\",\n\t\t\t\"city\": \"Bergamo\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 24100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 34.8,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10785,\n\t\t\"customerID\": \"GROSR\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-12-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-15 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-24 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 1.51,\n\t\t\"shipName\": \"GROSELLA-Restaurante\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"5ª Ave. Los Palos Grandes\",\n\t\t\t\"city\": \"Caracas\",\n\t\t\t\"region\": \"DF\",\n\t\t\t\"postalCode\": 1081,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10786,\n\t\t\"customerID\": \"QUEEN\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-12-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-23 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 110.87,\n\t\t\"shipName\": \"Queen Cozinha\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Alameda dos Canàrios 891\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05487-020\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 8,\n\t\t\t\t\"unitPrice\": 40,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 25.89,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 42,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10776,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-12-15 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-18 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 351.53,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 45,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 27,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 120,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10787,\n\t\t\"customerID\": \"LAMAI\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-12-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-26 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 249.93,\n\t\t\"shipName\": \"La maison d'Asie\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1 rue Alsace-Lorraine\",\n\t\t\t\"city\": \"Toulouse\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 31000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 123.79,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10791,\n\t\t\"customerID\": \"FRANK\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-12-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-01 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 16.85,\n\t\t\"shipName\": \"Frankenversand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berliner Platz 43\",\n\t\t\t\"city\": \"München\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 80805,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 123.79,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10792,\n\t\t\"customerID\": \"WOLZA\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-12-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-31 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 23.79,\n\t\t\"shipName\": \"Wolski Zajazd\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"ul. Filtrowa 68\",\n\t\t\t\"city\": \"Warszawa\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"01-012\",\n\t\t\t\"country\": \"Poland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 7.45,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10793,\n\t\t\"customerID\": \"AROUT\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-12-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-21 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-08 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 4.52,\n\t\t\"shipName\": \"Around the Horn\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Brook Farm Stratford St. Mary\",\n\t\t\t\"city\": \"Colchester\",\n\t\t\t\"region\": \"Essex\",\n\t\t\t\"postalCode\": \"CO7 6JX\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 7,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10794,\n\t\t\"customerID\": \"QUEDE\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-12-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-21 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-02 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 21.49,\n\t\t\"shipName\": \"Que Delícia\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua da Panificadora 12\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"02389-673\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 14,\n\t\t\t\t\"unitPrice\": 23.25,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 7.45,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10790,\n\t\t\"customerID\": \"GOURL\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-12-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-26 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 28.23,\n\t\t\"shipName\": \"Gourmet Lanchonetes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Brasil 442\",\n\t\t\t\"city\": \"Campinas\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"04876-786\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 7,\n\t\t\t\t\"unitPrice\": 30,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10796,\n\t\t\"customerID\": \"HILAA\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-12-25 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-22 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-14 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 26.52,\n\t\t\"shipName\": \"HILARION-Abastos\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 22 con Ave. Carlos Soublette #8-35\",\n\t\t\t\"city\": \"San Cristóbal\",\n\t\t\t\"region\": \"Táchira\",\n\t\t\t\"postalCode\": 5022,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 31.23,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 19.45,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 33.25,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 36,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10788,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-12-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-19 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 42.7,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 9.2,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10789,\n\t\t\"customerID\": \"FOLIG\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-12-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-31 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 100.6,\n\t\t\"shipName\": \"Folies gourmandes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"184 chaussée de Tournai\",\n\t\t\t\"city\": \"Lille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 59000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 63,\n\t\t\t\t\"unitPrice\": 43.9,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 62.5,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10800,\n\t\t\"customerID\": \"SEVES\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1997-12-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-23 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-05 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 137.44,\n\t\t\"shipName\": \"Seven Seas Imports\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"90 Wadhurst Rd.\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"OX15 4NB\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 7.45,\n\t\t\t\t\"quantity\": 7,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10801,\n\t\t\"customerID\": \"BOLID\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-12-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1997-12-31 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 97.09,\n\t\t\"shipName\": \"Bólido Comidas preparadas\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"C/ Araquil 67\",\n\t\t\t\"city\": \"Madrid\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 28023,\n\t\t\t\"country\": \"Spain\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 123.79,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10795,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1997-12-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-21 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-20 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 126.66,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 65,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10798,\n\t\t\"customerID\": \"ISLAT\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-12-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-23 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-05 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 2.33,\n\t\t\"shipName\": \"Island Trading\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Garden House Crowther Way\",\n\t\t\t\"city\": \"Cowes\",\n\t\t\t\"region\": \"Isle of Wight\",\n\t\t\t\"postalCode\": \"PO31 7PJ\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 34.8,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10799,\n\t\t\"customerID\": \"KOENE\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1997-12-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-05 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 30.76,\n\t\t\"shipName\": \"Königlich Essen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Maubelstr. 90\",\n\t\t\t\"city\": \"Brandenburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 14776,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10805,\n\t\t\"customerID\": \"THEBI\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1997-12-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-09 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 237.34,\n\t\t\"shipName\": \"The Big Cheese\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"89 Jefferson Way Suite 2\",\n\t\t\t\"city\": \"Portland\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97201,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 34,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 263.5,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10802,\n\t\t\"customerID\": \"SIMOB\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-12-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-02 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 257.26,\n\t\t\"shipName\": \"Simons bistro\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Vinbæltet 34\",\n\t\t\t\"city\": \"Kobenhavn\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1734,\n\t\t\t\"country\": \"Denmark\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 25.89,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 24,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10803,\n\t\t\"customerID\": \"WELLI\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1997-12-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-06 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 55.23,\n\t\t\"shipName\": \"Wellington Importadora\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Mercado 12\",\n\t\t\t\"city\": \"Resende\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"08737-363\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 9.2,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 25,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10808,\n\t\t\"customerID\": \"OLDWO\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1998-01-01 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-09 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 45.53,\n\t\t\"shipName\": \"Old World Delicatessen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2743 Bering St.\",\n\t\t\t\"city\": \"Anchorage\",\n\t\t\t\"region\": \"AK\",\n\t\t\t\"postalCode\": 99508,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10810,\n\t\t\"customerID\": \"LAUGB\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1998-01-01 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-29 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-07 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 4.33,\n\t\t\"shipName\": \"Laughing Bacchus Wine Cellars\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2319 Elm St.\",\n\t\t\t\"city\": \"Vancouver\",\n\t\t\t\"region\": \"BC\",\n\t\t\t\"postalCode\": \"V3F 2K1\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 7,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 25,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10811,\n\t\t\"customerID\": \"LINOD\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1998-01-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-08 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 31.22,\n\t\t\"shipName\": \"LINO-Delicateses\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Ave. 5 de Mayo Porlamar\",\n\t\t\t\"city\": \"I. de Margarita\",\n\t\t\t\"region\": \"Nueva Esparta\",\n\t\t\t\"postalCode\": 4980,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 9.2,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 23,\n\t\t\t\t\"unitPrice\": 9,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10804,\n\t\t\"customerID\": \"SEVES\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1997-12-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-07 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 27.33,\n\t\t\"shipName\": \"Seven Seas Imports\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"90 Wadhurst Rd.\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"OX15 4NB\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 36,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 45.6,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 49,\n\t\t\t\t\"unitPrice\": 20,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10814,\n\t\t\"customerID\": \"VICTE\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-01-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-14 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 130.94,\n\t\t\"shipName\": \"Victuailles en stock\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2 rue du Commerce\",\n\t\t\t\"city\": \"Lyon\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 69004,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 46,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 48,\n\t\t\t\t\"unitPrice\": 12.75,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 61,\n\t\t\t\t\"unitPrice\": 28.5,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10812,\n\t\t\"customerID\": \"REGGC\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1998-01-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-12 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 59.78,\n\t\t\"shipName\": \"Reggiani Caseifici\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Strada Provinciale 124\",\n\t\t\t\"city\": \"Reggio Emilia\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 42100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 34.8,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10817,\n\t\t\"customerID\": \"KOENE\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-01-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-13 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 306.07,\n\t\t\"shipName\": \"Königlich Essen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Maubelstr. 90\",\n\t\t\t\"city\": \"Brandenburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 14776,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 31.23,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 263.5,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10806,\n\t\t\"customerID\": \"VICTE\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1997-12-31 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-28 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-05 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 22.11,\n\t\t\"shipName\": \"Victuailles en stock\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2 rue du Commerce\",\n\t\t\t\"city\": \"Lyon\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 69004,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 21.05,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 74,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10816,\n\t\t\"customerID\": \"GREAL\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-01-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-03 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-04 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 719.78,\n\t\t\"shipName\": \"Great Lakes Food Market\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2732 Baker Blvd.\",\n\t\t\t\"city\": \"Eugene\",\n\t\t\t\"region\": \"OR\",\n\t\t\t\"postalCode\": 97403,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 263.5,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10813,\n\t\t\"customerID\": \"RICAR\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-01-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-09 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 47.38,\n\t\t\"shipName\": \"Ricardo Adocicados\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Copacabana 267\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"02389-890\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10818,\n\t\t\"customerID\": \"MAGAA\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1998-01-07 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-12 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 65.48,\n\t\t\"shipName\": \"Magazzini Alimentari Riuniti\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Via Ludovico il Moro 22\",\n\t\t\t\"city\": \"Bergamo\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 24100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 32,\n\t\t\t\t\"unitPrice\": 32,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10819,\n\t\t\"customerID\": \"CACTU\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1998-01-07 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-16 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 19.76,\n\t\t\"shipName\": \"Cactus Comidas para llevar\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Cerrito 333\",\n\t\t\t\"city\": \"Buenos Aires\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1010,\n\t\t\t\"country\": \"Argentina\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 46,\n\t\t\t\t\"quantity\": 7,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10821,\n\t\t\"customerID\": \"SPLIR\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-01-08 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-15 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 36.68,\n\t\t\"shipName\": \"Split Rail Beer & Ale\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"P.O. Box 555\",\n\t\t\t\"city\": \"Lander\",\n\t\t\t\"region\": \"WY\",\n\t\t\t\"postalCode\": 82520,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10822,\n\t\t\"customerID\": \"TRAIH\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1998-01-08 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-16 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 7,\n\t\t\"shipName\": \"Trail's Head Gourmet Provisioners\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"722 DaVinci Blvd.\",\n\t\t\t\"city\": \"Kirkland\",\n\t\t\t\"region\": \"WA\",\n\t\t\t\"postalCode\": 98034,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10823,\n\t\t\"customerID\": \"LILAS\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1998-01-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-13 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 163.97,\n\t\t\"shipName\": \"LILA-Supermercado\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 52 con Ave. Bolívar #65-98 Llano Largo\",\n\t\t\t\"city\": \"Barquisimeto\",\n\t\t\t\"region\": \"Lara\",\n\t\t\t\"postalCode\": 3508,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 57,\n\t\t\t\t\"unitPrice\": 19.5,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10824,\n\t\t\"customerID\": \"FOLKO\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1998-01-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-30 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 1.23,\n\t\t\"shipName\": \"Folk och fä HB\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Åkergatan 24\",\n\t\t\t\"city\": \"Bräcke\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-844 67\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10825,\n\t\t\"customerID\": \"DRACD\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-01-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-14 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 79.25,\n\t\t\"shipName\": \"Drachenblut Delikatessen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Walserweg 21\",\n\t\t\t\"city\": \"Aachen\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 52066,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 31.23,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 32.8,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10826,\n\t\t\"customerID\": \"BLONP\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1998-01-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-06 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 7.09,\n\t\t\"shipName\": \"Blondel père et fils\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"24 place Kléber\",\n\t\t\t\"city\": \"Strasbourg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 67000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 57,\n\t\t\t\t\"unitPrice\": 19.5,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10827,\n\t\t\"customerID\": \"BONAP\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-01-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-06 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 63.54,\n\t\t\"shipName\": \"Bon app'\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"12 rue des Bouchers\",\n\t\t\t\"city\": \"Marseille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 13008,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10828,\n\t\t\"customerID\": \"RANCH\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1998-01-13 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-01-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-04 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 90.85,\n\t\t\"shipName\": \"Rancho grande\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. del Libertador 900\",\n\t\t\t\"city\": \"Buenos Aires\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1010,\n\t\t\t\"country\": \"Argentina\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 20,\n\t\t\t\t\"unitPrice\": 81,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 263.5,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10829,\n\t\t\"customerID\": \"ISLAT\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1998-01-13 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-23 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 154.72,\n\t\t\"shipName\": \"Island Trading\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Garden House Crowther Way\",\n\t\t\t\"city\": \"Cowes\",\n\t\t\t\"region\": \"Isle of Wight\",\n\t\t\t\"postalCode\": \"PO31 7PJ\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 8,\n\t\t\t\t\"unitPrice\": 40,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10830,\n\t\t\"customerID\": \"TRADH\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-01-13 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-21 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 81.83,\n\t\t\"shipName\": \"Tradiçao Hipermercados\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Inês de Castro 414\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05634-030\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 6,\n\t\t\t\t\"unitPrice\": 25,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10831,\n\t\t\"customerID\": \"SANTG\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-01-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-23 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 72.19,\n\t\t\"shipName\": \"Santé Gourmet\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Erling Skakkes gate 78\",\n\t\t\t\"city\": \"Stavern\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 4110,\n\t\t\t\"country\": \"Norway\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 46,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 9.2,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 263.5,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10832,\n\t\t\"customerID\": \"LAMAI\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1998-01-14 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-19 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 43.26,\n\t\t\"shipName\": \"La maison d'Asie\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1 rue Alsace-Lorraine\",\n\t\t\t\"city\": \"Toulouse\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 31000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 25,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 19.45,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 33.25,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10833,\n\t\t\"customerID\": \"OTTIK\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1998-01-15 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-23 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 71.49,\n\t\t\"shipName\": \"Ottilies Käseladen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Mehrheimerstr. 369\",\n\t\t\t\"city\": \"Köln\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 50739,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 32.8,\n\t\t\t\t\"quantity\": 9,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 7,\n\t\t\t\t\"unitPrice\": 30,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10834,\n\t\t\"customerID\": \"TRADH\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-01-15 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-19 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 29.78,\n\t\t\"shipName\": \"Tradiçao Hipermercados\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Inês de Castro 414\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05634-030\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 123.79,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 25.89,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10838,\n\t\t\"customerID\": \"LINOD\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-01-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-23 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 59.28,\n\t\t\"shipName\": \"LINO-Delicateses\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Ave. 5 de Mayo Porlamar\",\n\t\t\t\"city\": \"I. de Margarita\",\n\t\t\t\"region\": \"Nueva Esparta\",\n\t\t\t\"postalCode\": 4980,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 62.5,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10839,\n\t\t\"customerID\": \"TRADH\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-01-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-22 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 35.43,\n\t\t\"shipName\": \"Tradiçao Hipermercados\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Inês de Castro 414\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05634-030\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 58,\n\t\t\t\t\"unitPrice\": 13.25,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 34.8,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10840,\n\t\t\"customerID\": \"LINOD\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-01-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-16 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 2.71,\n\t\t\"shipName\": \"LINO-Delicateses\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Ave. 5 de Mayo Porlamar\",\n\t\t\t\"city\": \"I. de Margarita\",\n\t\t\t\"region\": \"Nueva Esparta\",\n\t\t\t\"postalCode\": 4980,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 25,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10841,\n\t\t\"customerID\": \"SUPRD\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1998-01-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-29 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 424.3,\n\t\t\"shipName\": \"Suprêmes délices\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Boulevard Tirou 255\",\n\t\t\t\"city\": \"Charleroi\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"B-6000\",\n\t\t\t\"country\": \"Belgium\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10842,\n\t\t\"customerID\": \"TORTU\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-01-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-29 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 54.42,\n\t\t\"shipName\": \"Tortuga Restaurante\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Avda. Azteca 123\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5033,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 46,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10836,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1998-01-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-21 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 411.88,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 22,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 52,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 57,\n\t\t\t\t\"unitPrice\": 19.5,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 33.25,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10835,\n\t\t\"customerID\": \"ALFKI\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-01-15 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-21 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 69.53,\n\t\t\"shipName\": \"Alfred's Futterkiste\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Obere Str. 57\",\n\t\t\t\"city\": \"Berlin\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 12209,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10837,\n\t\t\"customerID\": \"BERGS\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1998-01-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-23 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 13.32,\n\t\t\"shipName\": \"Berglunds snabbköp\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berguvsvägen 8\",\n\t\t\t\"city\": \"Luleå\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-958 22\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 47,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10845,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1998-01-21 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-30 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 212.98,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 23,\n\t\t\t\t\"unitPrice\": 9,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 42,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 58,\n\t\t\t\t\"unitPrice\": 13.25,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 33.25,\n\t\t\t\t\"quantity\": 48,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10848,\n\t\t\"customerID\": \"CONSH\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1998-01-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-29 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 38.24,\n\t\t\"shipName\": \"Consolidated Holdings\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berkeley Gardens 12 Brewery\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"WX1 6LT\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 9,\n\t\t\t\t\"unitPrice\": 97,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 5,\n\t\t\t\t\"unitPrice\": 21.35,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10850,\n\t\t\"customerID\": \"VICTE\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-01-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-30 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 49.19,\n\t\t\"shipName\": \"Victuailles en stock\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2 rue du Commerce\",\n\t\t\t\"city\": \"Lyon\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 69004,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 25,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2.5,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10847,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-01-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-10 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 487.57,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 80,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 9.2,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 37,\n\t\t\t\t\"unitPrice\": 26,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 45,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 36,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 45,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 21.5,\n\t\t\t\t\"quantity\": 55,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10846,\n\t\t\"customerID\": \"SUPRD\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1998-01-22 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-23 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 56.46,\n\t\t\"shipName\": \"Suprêmes délices\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Boulevard Tirou 255\",\n\t\t\t\"city\": \"Charleroi\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"B-6000\",\n\t\t\t\"country\": \"Belgium\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 4,\n\t\t\t\t\"unitPrice\": 22,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 74,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10849,\n\t\t\"customerID\": \"KOENE\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1998-01-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-30 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 0.56,\n\t\t\"shipName\": \"Königlich Essen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Maubelstr. 90\",\n\t\t\t\"city\": \"Brandenburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 14776,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 3,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 49,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 31.23,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10851,\n\t\t\"customerID\": \"RICAR\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1998-01-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-23 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-02 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 160.55,\n\t\t\"shipName\": \"Ricardo Adocicados\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Copacabana 267\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"02389-890\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 25,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 57,\n\t\t\t\t\"unitPrice\": 19.5,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 59,\n\t\t\t\t\"unitPrice\": 55,\n\t\t\t\t\"quantity\": 42,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10852,\n\t\t\"customerID\": \"RATTC\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1998-01-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-01-30 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 174.05,\n\t\t\"shipName\": \"Rattlesnake Canyon Grocery\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2817 Milton Dr.\",\n\t\t\t\"city\": \"Albuquerque\",\n\t\t\t\"region\": \"NM\",\n\t\t\t\"postalCode\": 87110,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10854,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-01-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-05 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 100.22,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 100,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 65,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10855,\n\t\t\"customerID\": \"OLDWO\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-01-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-04 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 170.97,\n\t\t\"shipName\": \"Old World Delicatessen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2743 Bering St.\",\n\t\t\t\"city\": \"Anchorage\",\n\t\t\t\"region\": \"AK\",\n\t\t\t\"postalCode\": 99508,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 21.05,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10856,\n\t\t\"customerID\": \"ANTON\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-01-28 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-25 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-10 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 58.43,\n\t\t\"shipName\": \"Antonio Moreno Taquería\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Mataderos 2312\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5023,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10857,\n\t\t\"customerID\": \"BERGS\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1998-01-28 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-25 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-06 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 188.85,\n\t\t\"shipName\": \"Berglunds snabbköp\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berguvsvägen 8\",\n\t\t\t\"city\": \"Luleå\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-958 22\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 3,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 31.23,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 123.79,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10858,\n\t\t\"customerID\": \"LACOR\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1998-01-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-03 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 52.51,\n\t\t\"shipName\": \"La corne d'abondance\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"67 avenue de l'Europe\",\n\t\t\t\"city\": \"Versailles\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 78000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 7,\n\t\t\t\t\"unitPrice\": 30,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 27,\n\t\t\t\t\"unitPrice\": 43.9,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10859,\n\t\t\"customerID\": \"FRANK\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-01-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-02 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 76.1,\n\t\t\"shipName\": \"Frankenversand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berliner Platz 43\",\n\t\t\t\"city\": \"München\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 80805,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 7.45,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 33.25,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10860,\n\t\t\"customerID\": \"FRANR\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-01-29 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-04 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 19.26,\n\t\t\"shipName\": \"France restauration\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"54 rue Royale\",\n\t\t\t\"city\": \"Nantes\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 44000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10861,\n\t\t\"customerID\": \"WHITC\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-01-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-17 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 14.93,\n\t\t\"shipName\": \"White Clover Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1029 - 12th Ave. S.\",\n\t\t\t\"city\": \"Seattle\",\n\t\t\t\"region\": \"WA\",\n\t\t\t\"postalCode\": 98124,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 42,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 62.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2.5,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10862,\n\t\t\"customerID\": \"LEHMS\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1998-01-30 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-02 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 53.23,\n\t\t\"shipName\": \"Lehmanns Marktstand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Magazinweg 7\",\n\t\t\t\"city\": \"Frankfurt a.M.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 60528,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 7,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10863,\n\t\t\"customerID\": \"HILAA\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-02-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-17 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 30.26,\n\t\t\"shipName\": \"HILARION-Abastos\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 22 con Ave. Carlos Soublette #8-35\",\n\t\t\t\"city\": \"San Cristóbal\",\n\t\t\t\"region\": \"Táchira\",\n\t\t\t\"postalCode\": 5022,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 58,\n\t\t\t\t\"unitPrice\": 13.25,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10864,\n\t\t\"customerID\": \"AROUT\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-02-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-09 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 3.04,\n\t\t\"shipName\": \"Around the Horn\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Brook Farm Stratford St. Mary\",\n\t\t\t\"city\": \"Colchester\",\n\t\t\t\"region\": \"Essex\",\n\t\t\t\"postalCode\": \"CO7 6JX\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 67,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10865,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1998-02-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-02-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-12 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 348.14,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 263.5,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 80,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10869,\n\t\t\"customerID\": \"SEVES\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1998-02-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-09 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 143.28,\n\t\t\"shipName\": \"Seven Seas Imports\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"90 Wadhurst Rd.\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"OX15 4NB\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 23,\n\t\t\t\t\"unitPrice\": 9,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10870,\n\t\t\"customerID\": \"WOLZA\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1998-02-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-13 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 12.04,\n\t\t\"shipName\": \"Wolski Zajazd\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"ul. Filtrowa 68\",\n\t\t\t\"city\": \"Warszawa\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"01-012\",\n\t\t\t\"country\": \"Poland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 51,\n\t\t\t\t\"unitPrice\": 53,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10871,\n\t\t\"customerID\": \"BONAP\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1998-02-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-10 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 112.27,\n\t\t\"shipName\": \"Bon app'\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"12 rue des Bouchers\",\n\t\t\t\"city\": \"Marseille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 13008,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 6,\n\t\t\t\t\"unitPrice\": 25,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10872,\n\t\t\"customerID\": \"GODOS\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1998-02-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-05 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-09 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 175.32,\n\t\t\"shipName\": \"Godos Cocina Típica\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"C/ Romero 33\",\n\t\t\t\"city\": \"Sevilla\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 41101,\n\t\t\t\"country\": \"Spain\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 24,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 21.05,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 33.25,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10873,\n\t\t\"customerID\": \"WILMK\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-02-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-09 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 0.82,\n\t\t\"shipName\": \"Wilman Kala\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Keskuskatu 45\",\n\t\t\t\"city\": \"Helsinki\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 21240,\n\t\t\t\"country\": \"Finland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 45.6,\n\t\t\t\t\"quantity\": 3,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10866,\n\t\t\"customerID\": \"BERGS\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1998-02-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-03 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-12 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 109.11,\n\t\t\"shipName\": \"Berglunds snabbköp\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berguvsvägen 8\",\n\t\t\t\"city\": \"Luleå\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-958 22\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 25.89,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10876,\n\t\t\"customerID\": \"BONAP\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1998-02-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-12 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 60.42,\n\t\t\"shipName\": \"Bon app'\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"12 rue des Bouchers\",\n\t\t\t\"city\": \"Marseille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 13008,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 64,\n\t\t\t\t\"unitPrice\": 33.25,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10877,\n\t\t\"customerID\": \"RICAR\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-02-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-19 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 38.06,\n\t\t\"shipName\": \"Ricardo Adocicados\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. Copacabana 267\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"02389-890\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 62.5,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10868,\n\t\t\"customerID\": \"QUEEN\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1998-02-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-04 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-23 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 191.27,\n\t\t\"shipName\": \"Queen Cozinha\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Alameda dos Canàrios 891\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05487-020\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 26,\n\t\t\t\t\"unitPrice\": 31.23,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 49,\n\t\t\t\t\"unitPrice\": 20,\n\t\t\t\t\"quantity\": 42,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10875,\n\t\t\"customerID\": \"BERGS\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-02-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-03 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 32.37,\n\t\t\"shipName\": \"Berglunds snabbköp\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berguvsvägen 8\",\n\t\t\t\"city\": \"Luleå\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-958 22\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 9.2,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 49,\n\t\t\t\t\"unitPrice\": 20,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 47,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0.1\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10882,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-02-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-11 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-20 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 23.1,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 49,\n\t\t\t\t\"unitPrice\": 20,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 7.45,\n\t\t\t\t\"quantity\": 32,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10884,\n\t\t\"customerID\": \"LETSS\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-02-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-13 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 90.97,\n\t\t\"shipName\": \"Let's Stop N Shop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"87 Polk St. Suite 5\",\n\t\t\t\"city\": \"San Francisco\",\n\t\t\t\"region\": \"CA\",\n\t\t\t\"postalCode\": 94117,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 21.05,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10885,\n\t\t\"customerID\": \"SUPRD\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1998-02-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-12 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-18 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 5.64,\n\t\t\"shipName\": \"Suprêmes délices\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Boulevard Tirou 255\",\n\t\t\t\"city\": \"Charleroi\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"B-6000\",\n\t\t\t\"country\": \"Belgium\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10886,\n\t\t\"customerID\": \"HANAR\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-02-13 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-13 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-02 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 4.99,\n\t\t\"shipName\": \"Hanari Carnes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Paço 67\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"05454-876\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 70,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10880,\n\t\t\"customerID\": \"FOLKO\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1998-02-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-18 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 88.01,\n\t\t\"shipName\": \"Folk och fä HB\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Åkergatan 24\",\n\t\t\t\"city\": \"Bräcke\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-844 67\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 23,\n\t\t\t\t\"unitPrice\": 9,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 61,\n\t\t\t\t\"unitPrice\": 28.5,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 70,\n\t\t\t\t\"unitPrice\": 15,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10879,\n\t\t\"customerID\": \"WILMK\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-02-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-10 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-12 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 8.5,\n\t\t\"shipName\": \"Wilman Kala\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Keskuskatu 45\",\n\t\t\t\"city\": \"Helsinki\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 21240,\n\t\t\t\"country\": \"Finland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 21.05,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10889,\n\t\t\"customerID\": \"RATTC\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1998-02-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-23 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 280.61,\n\t\t\"shipName\": \"Rattlesnake Canyon Grocery\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"2817 Milton Dr.\",\n\t\t\t\"city\": \"Albuquerque\",\n\t\t\t\"region\": \"NM\",\n\t\t\t\"postalCode\": 87110,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 38,\n\t\t\t\t\"unitPrice\": 263.5,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10890,\n\t\t\"customerID\": \"DUMON\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1998-02-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-18 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 32.76,\n\t\t\"shipName\": \"Du monde entier\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"67 rue des Cinquante Otages\",\n\t\t\t\"city\": \"Nantes\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 44000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 34,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10893,\n\t\t\"customerID\": \"KOENE\",\n\t\t\"employeeID\": 9,\n\t\t\"orderDate\": \"1998-02-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-20 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 77.78,\n\t\t\"shipName\": \"Königlich Essen\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Maubelstr. 90\",\n\t\t\t\"city\": \"Brandenburg\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 14776,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 8,\n\t\t\t\t\"unitPrice\": 40,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 123.79,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 25.89,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10894,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-02-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-20 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 116.13,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 28,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 69,\n\t\t\t\t\"unitPrice\": 36,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 120,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10888,\n\t\t\"customerID\": \"GODOS\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-02-16 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-16 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-23 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 51.87,\n\t\t\"shipName\": \"Godos Cocina Típica\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"C/ Romero 33\",\n\t\t\t\"city\": \"Sevilla\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 41101,\n\t\t\t\"country\": \"Spain\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10898,\n\t\t\"customerID\": \"OCEAN\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-02-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-06 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 1.27,\n\t\t\"shipName\": \"Océano Atlántico Ltda.\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Ing. Gustavo Moncada 8585 Piso 20-A\",\n\t\t\t\"city\": \"Buenos Aires\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1010,\n\t\t\t\"country\": \"Argentina\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10899,\n\t\t\"customerID\": \"LILAS\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1998-02-20 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-26 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 1.21,\n\t\t\"shipName\": \"LILA-Supermercado\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 52 con Ave. Bolívar #65-98 Llano Largo\",\n\t\t\t\"city\": \"Barquisimeto\",\n\t\t\t\"region\": \"Lara\",\n\t\t\t\"postalCode\": 3508,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10901,\n\t\t\"customerID\": \"HILAA\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-02-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-23 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-26 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 62.09,\n\t\t\"shipName\": \"HILARION-Abastos\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Carrera 22 con Ave. Carlos Soublette #8-35\",\n\t\t\t\"city\": \"San Cristóbal\",\n\t\t\t\"region\": \"Táchira\",\n\t\t\t\"postalCode\": 5022,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 21.5,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10902,\n\t\t\"customerID\": \"FOLKO\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-02-23 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-23 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-03 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 44.15,\n\t\t\"shipName\": \"Folk och fä HB\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Åkergatan 24\",\n\t\t\t\"city\": \"Bräcke\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-844 67\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 24,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10903,\n\t\t\"customerID\": \"HANAR\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-02-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-04 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 36.71,\n\t\t\"shipName\": \"Hanari Carnes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Paço 67\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"05454-876\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 65,\n\t\t\t\t\"unitPrice\": 21.05,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10896,\n\t\t\"customerID\": \"MAISD\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1998-02-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-27 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 32.45,\n\t\t\"shipName\": \"Maison Dewey\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rue Joseph-Bens 532\",\n\t\t\t\"city\": \"Bruxelles\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"B-1180\",\n\t\t\t\"country\": \"Belgium\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 45,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10904,\n\t\t\"customerID\": \"WHITC\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-02-24 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-27 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 162.95,\n\t\t\"shipName\": \"White Clover Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1029 - 12th Ave. S.\",\n\t\t\t\"city\": \"Seattle\",\n\t\t\t\"region\": \"WA\",\n\t\t\t\"postalCode\": 98124,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 58,\n\t\t\t\t\"unitPrice\": 13.25,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10895,\n\t\t\"customerID\": \"ERNSH\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-02-18 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-18 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-23 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 162.75,\n\t\t\"shipName\": \"Ernst Handel\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Kirchgasse 6\",\n\t\t\t\"city\": \"Graz\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8010,\n\t\t\t\"country\": \"Austria\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 91,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 100,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 110,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 39,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 45,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10897,\n\t\t\"customerID\": \"HUNGO\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-02-19 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-19 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-02-25 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 603.54,\n\t\t\"shipName\": \"Hungry Owl All-Night Grocers\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"8 Johnstown Road\",\n\t\t\t\"city\": \"Cork\",\n\t\t\t\"region\": \"Co. Cork\",\n\t\t\t\"postalCode\": \"NULL\",\n\t\t\t\"country\": \"Ireland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 123.79,\n\t\t\t\t\"quantity\": 80,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 25.89,\n\t\t\t\t\"quantity\": 36,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10909,\n\t\t\"customerID\": \"SANTG\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-02-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-10 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 53.05,\n\t\t\"shipName\": \"Santé Gourmet\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Erling Skakkes gate 78\",\n\t\t\t\"city\": \"Stavern\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 4110,\n\t\t\t\"country\": \"Norway\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 7,\n\t\t\t\t\"unitPrice\": 30,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 41,\n\t\t\t\t\"unitPrice\": 9.65,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10910,\n\t\t\"customerID\": \"WILMK\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-02-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-04 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 38.11,\n\t\t\"shipName\": \"Wilman Kala\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Keskuskatu 45\",\n\t\t\t\"city\": \"Helsinki\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 21240,\n\t\t\t\"country\": \"Finland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 9.2,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 49,\n\t\t\t\t\"unitPrice\": 20,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 61,\n\t\t\t\t\"unitPrice\": 28.5,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10911,\n\t\t\"customerID\": \"GODOS\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-02-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-05 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 38.19,\n\t\t\"shipName\": \"Godos Cocina Típica\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"C/ Romero 33\",\n\t\t\t\"city\": \"Sevilla\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 41101,\n\t\t\t\"country\": \"Spain\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 67,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10912,\n\t\t\"customerID\": \"HUNGO\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1998-02-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-18 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 580.91,\n\t\t\"shipName\": \"Hungry Owl All-Night Grocers\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"8 Johnstown Road\",\n\t\t\t\"city\": \"Cork\",\n\t\t\t\"region\": \"Co. Cork\",\n\t\t\t\"postalCode\": \"NULL\",\n\t\t\t\"country\": \"Ireland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 29,\n\t\t\t\t\"unitPrice\": 123.79,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10913,\n\t\t\"customerID\": \"QUEEN\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-02-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-04 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 33.05,\n\t\t\"shipName\": \"Queen Cozinha\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Alameda dos Canàrios 891\",\n\t\t\t\"city\": \"Sao Paulo\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"05487-020\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 4,\n\t\t\t\t\"unitPrice\": 22,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2.5,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 58,\n\t\t\t\t\"unitPrice\": 13.25,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10917,\n\t\t\"customerID\": \"ROMEY\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-03-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-11 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 8.29,\n\t\t\"shipName\": \"Romero y tomillo\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Gran Vía 1\",\n\t\t\t\"city\": \"Madrid\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 28001,\n\t\t\t\"country\": \"Spain\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 30,\n\t\t\t\t\"unitPrice\": 25.89,\n\t\t\t\t\"quantity\": 1,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10916,\n\t\t\"customerID\": \"RANCH\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-02-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-09 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 63.77,\n\t\t\"shipName\": \"Rancho grande\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Av. del Libertador 900\",\n\t\t\t\"city\": \"Buenos Aires\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1010,\n\t\t\t\"country\": \"Argentina\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 32,\n\t\t\t\t\"unitPrice\": 32,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 57,\n\t\t\t\t\"unitPrice\": 19.5,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10918,\n\t\t\"customerID\": \"BOTTM\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-03-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-11 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 48.83,\n\t\t\"shipName\": \"Bottom-Dollar Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"23 Tsawassen Blvd.\",\n\t\t\t\"city\": \"Tsawassen\",\n\t\t\t\"region\": \"BC\",\n\t\t\t\"postalCode\": \"T2F 8M4\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10919,\n\t\t\"customerID\": \"LINOD\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1998-03-02 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-30 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-04 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 19.8,\n\t\t\"shipName\": \"LINO-Delicateses\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Ave. 5 de Mayo Porlamar\",\n\t\t\t\"city\": \"I. de Margarita\",\n\t\t\t\"region\": \"Nueva Esparta\",\n\t\t\t\"postalCode\": 4980,\n\t\t\t\"country\": \"Venezuela\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 25,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 40,\n\t\t\t\t\"unitPrice\": 18.4,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10908,\n\t\t\"customerID\": \"REGGC\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-02-26 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-06 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 32.96,\n\t\t\"shipName\": \"Reggiani Caseifici\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Strada Provinciale 124\",\n\t\t\t\"city\": \"Reggio Emilia\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 42100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 7,\n\t\t\t\t\"unitPrice\": 30,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.05\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 7,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0.05\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10921,\n\t\t\"customerID\": \"VAFFE\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-03-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-09 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 176.48,\n\t\t\"shipName\": \"Vaffeljernet\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Smagsloget 45\",\n\t\t\t\"city\": \"Århus\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8200,\n\t\t\t\"country\": \"Denmark\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 35,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 63,\n\t\t\t\t\"unitPrice\": 43.9,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10915,\n\t\t\"customerID\": \"TORTU\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1998-02-27 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-27 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-02 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 3.51,\n\t\t\"shipName\": \"Tortuga Restaurante\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Avda. Azteca 123\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5033,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 33,\n\t\t\t\t\"unitPrice\": 2.5,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 54,\n\t\t\t\t\"unitPrice\": 7.45,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10925,\n\t\t\"customerID\": \"HANAR\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-03-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-01 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-13 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 2.27,\n\t\t\"shipName\": \"Hanari Carnes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Paço 67\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"05454-876\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 36,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 7,\n\t\t\t\t\"quantity\": 12,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10926,\n\t\t\"customerID\": \"ANATR\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-03-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-01 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-11 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 39.92,\n\t\t\"shipName\": \"Ana Trujillo Emparedados y helados\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Avda. de la Constitución 2222\",\n\t\t\t\"city\": \"México D.F.\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 5021,\n\t\t\t\"country\": \"Mexico\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 19,\n\t\t\t\t\"unitPrice\": 9.2,\n\t\t\t\t\"quantity\": 7,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 34.8,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10927,\n\t\t\"customerID\": \"LACOR\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-03-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-04-08 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 19.79,\n\t\t\"shipName\": \"La corne d'abondance\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"67 avenue de l'Europe\",\n\t\t\t\"city\": \"Versailles\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 78000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 20,\n\t\t\t\t\"unitPrice\": 81,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 52,\n\t\t\t\t\"unitPrice\": 7,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10928,\n\t\t\"customerID\": \"GALED\",\n\t\t\"employeeID\": 1,\n\t\t\"orderDate\": \"1998-03-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-18 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 1.36,\n\t\t\"shipName\": \"Galería del gastronómo\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rambla de Cataluña 23\",\n\t\t\t\"city\": \"Barcelona\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 8022,\n\t\t\t\"country\": \"Spain\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 47,\n\t\t\t\t\"unitPrice\": 9.5,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 76,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10929,\n\t\t\"customerID\": \"FRANK\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1998-03-05 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-02 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-12 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 33.93,\n\t\t\"shipName\": \"Frankenversand\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berliner Platz 43\",\n\t\t\t\"city\": \"München\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 80805,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 60,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 49,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 77,\n\t\t\t\t\"unitPrice\": 13,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10930,\n\t\t\"customerID\": \"SUPRD\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-03-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-17 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-18 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 15.55,\n\t\t\"shipName\": \"Suprêmes délices\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Boulevard Tirou 255\",\n\t\t\t\"city\": \"Charleroi\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"B-6000\",\n\t\t\t\"country\": \"Belgium\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 27,\n\t\t\t\t\"unitPrice\": 43.9,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 55,\n\t\t\t\t\"unitPrice\": 24,\n\t\t\t\t\"quantity\": 25,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 58,\n\t\t\t\t\"unitPrice\": 13.25,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 21,\n\t\t\t\t\"unitPrice\": 10,\n\t\t\t\t\"quantity\": 36,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10931,\n\t\t\"customerID\": \"RICSU\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-03-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-20 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-19 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 13.6,\n\t\t\"shipName\": \"Richter Supermarkt\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Starenweg 5\",\n\t\t\t\"city\": \"Genève\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1204,\n\t\t\t\"country\": \"Switzerland\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 42,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 57,\n\t\t\t\t\"unitPrice\": 19.5,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10932,\n\t\t\"customerID\": \"BONAP\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1998-03-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-03 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-24 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 134.64,\n\t\t\"shipName\": \"Bon app'\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"12 rue des Bouchers\",\n\t\t\t\"city\": \"Marseille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 13008,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 16,\n\t\t\t\t\"unitPrice\": 17.45,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 14,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 34.8,\n\t\t\t\t\"quantity\": 16,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10933,\n\t\t\"customerID\": \"ISLAT\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1998-03-06 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-03 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-16 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 54.15,\n\t\t\"shipName\": \"Island Trading\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Garden House Crowther Way\",\n\t\t\t\"city\": \"Cowes\",\n\t\t\t\"region\": \"Isle of Wight\",\n\t\t\t\"postalCode\": \"PO31 7PJ\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 53,\n\t\t\t\t\"unitPrice\": 32.8,\n\t\t\t\t\"quantity\": 2,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 61,\n\t\t\t\t\"unitPrice\": 28.5,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10935,\n\t\t\"customerID\": \"WELLI\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-03-09 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-06 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-18 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 47.59,\n\t\t\"shipName\": \"Wellington Importadora\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Mercado 12\",\n\t\t\t\"city\": \"Resende\",\n\t\t\t\"region\": \"SP\",\n\t\t\t\"postalCode\": \"08737-363\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 18,\n\t\t\t\t\"unitPrice\": 62.5,\n\t\t\t\t\"quantity\": 4,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 23,\n\t\t\t\t\"unitPrice\": 9,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 1,\n\t\t\t\t\"unitPrice\": 18,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10937,\n\t\t\"customerID\": \"CACTU\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1998-03-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-24 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-13 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 31.51,\n\t\t\"shipName\": \"Cactus Comidas para llevar\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Cerrito 333\",\n\t\t\t\"city\": \"Buenos Aires\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1010,\n\t\t\t\"country\": \"Argentina\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 45.6,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 34,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10938,\n\t\t\"customerID\": \"QUICK\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-03-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-16 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 31.89,\n\t\t\"shipName\": \"QUICK-Stop\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Taucherstraße 10\",\n\t\t\t\"city\": \"Cunewalde\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 1307,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 46,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 60,\n\t\t\t\t\"unitPrice\": 34,\n\t\t\t\t\"quantity\": 49,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 71,\n\t\t\t\t\"unitPrice\": 21.5,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10939,\n\t\t\"customerID\": \"MAGAA\",\n\t\t\"employeeID\": 2,\n\t\t\"orderDate\": \"1998-03-10 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-07 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-13 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 76.33,\n\t\t\"shipName\": \"Magazzini Alimentari Riuniti\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Via Ludovico il Moro 22\",\n\t\t\t\"city\": \"Bergamo\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 24100,\n\t\t\t\"country\": \"Italy\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 2,\n\t\t\t\t\"unitPrice\": 19,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 67,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 40,\n\t\t\t\t\"discount\": 0.15\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10940,\n\t\t\"customerID\": \"BONAP\",\n\t\t\"employeeID\": 8,\n\t\t\"orderDate\": \"1998-03-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-23 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 19.77,\n\t\t\"shipName\": \"Bon app'\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"12 rue des Bouchers\",\n\t\t\t\"city\": \"Marseille\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 13008,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 7,\n\t\t\t\t\"unitPrice\": 30,\n\t\t\t\t\"quantity\": 8,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10941,\n\t\t\"customerID\": \"SAVEA\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1998-03-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-20 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 400.81,\n\t\t\"shipName\": \"Save-a-lot Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"187 Suffolk Ln.\",\n\t\t\t\"city\": \"Boise\",\n\t\t\t\"region\": \"ID\",\n\t\t\t\"postalCode\": 83720,\n\t\t\t\"country\": \"USA\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 44,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 62,\n\t\t\t\t\"unitPrice\": 49.3,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 68,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 80,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 72,\n\t\t\t\t\"unitPrice\": 34.8,\n\t\t\t\t\"quantity\": 50,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10922,\n\t\t\"customerID\": \"HANAR\",\n\t\t\"employeeID\": 5,\n\t\t\"orderDate\": \"1998-03-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-31 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-05 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 62.74,\n\t\t\"shipName\": \"Hanari Carnes\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Rua do Paço 67\",\n\t\t\t\"city\": \"Rio de Janeiro\",\n\t\t\t\"region\": \"RJ\",\n\t\t\t\"postalCode\": \"05454-876\",\n\t\t\t\"country\": \"Brazil\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 17,\n\t\t\t\t\"unitPrice\": 39,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 24,\n\t\t\t\t\"unitPrice\": 4.5,\n\t\t\t\t\"quantity\": 35,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10923,\n\t\t\"customerID\": \"LAMAI\",\n\t\t\"employeeID\": 7,\n\t\t\"orderDate\": \"1998-03-03 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-14 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-13 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 68.26,\n\t\t\"shipName\": \"La maison d'Asie\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"1 rue Alsace-Lorraine\",\n\t\t\t\"city\": \"Toulouse\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 31000,\n\t\t\t\"country\": \"France\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 43,\n\t\t\t\t\"unitPrice\": 46,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 67,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 24,\n\t\t\t\t\"discount\": 0.2\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 42,\n\t\t\t\t\"unitPrice\": 14,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0.2\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10924,\n\t\t\"customerID\": \"BERGS\",\n\t\t\"employeeID\": 3,\n\t\t\"orderDate\": \"1998-03-04 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-01 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-04-08 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 151.52,\n\t\t\"shipName\": \"Berglunds snabbköp\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Berguvsvägen 8\",\n\t\t\t\"city\": \"Luleå\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"S-958 22\",\n\t\t\t\"country\": \"Sweden\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 10,\n\t\t\t\t\"unitPrice\": 31,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 28,\n\t\t\t\t\"unitPrice\": 45.6,\n\t\t\t\t\"quantity\": 30,\n\t\t\t\t\"discount\": 0.1\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 75,\n\t\t\t\t\"unitPrice\": 7.75,\n\t\t\t\t\"quantity\": 6,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10943,\n\t\t\"customerID\": \"BSBEV\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-03-11 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-08 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-19 00:00:00.000\",\n\t\t\"shipVia\": 2,\n\t\t\"freight\": 2.17,\n\t\t\"shipName\": \"B's Beverages\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Fauntleroy Circus\",\n\t\t\t\"city\": \"London\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": \"EC2 5NT\",\n\t\t\t\"country\": \"UK\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 22,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 21,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 46,\n\t\t\t\t\"unitPrice\": 12,\n\t\t\t\t\"quantity\": 15,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10944,\n\t\t\"customerID\": \"BOTTM\",\n\t\t\"employeeID\": 6,\n\t\t\"orderDate\": \"1998-03-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-03-26 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-13 00:00:00.000\",\n\t\t\"shipVia\": 3,\n\t\t\"freight\": 52.92,\n\t\t\"shipName\": \"Bottom-Dollar Markets\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"23 Tsawassen Blvd.\",\n\t\t\t\"city\": \"Tsawassen\",\n\t\t\t\"region\": \"BC\",\n\t\t\t\"postalCode\": \"T2F 8M4\",\n\t\t\t\"country\": \"Canada\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 11,\n\t\t\t\t\"unitPrice\": 21,\n\t\t\t\t\"quantity\": 5,\n\t\t\t\t\"discount\": 0.25\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 56,\n\t\t\t\t\"unitPrice\": 38,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 44,\n\t\t\t\t\"unitPrice\": 19.45,\n\t\t\t\t\"quantity\": 18,\n\t\t\t\t\"discount\": 0.25\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"orderID\": 10945,\n\t\t\"customerID\": \"MORGK\",\n\t\t\"employeeID\": 4,\n\t\t\"orderDate\": \"1998-03-12 00:00:00.000\",\n\t\t\"requiredDate\": \"1998-04-09 00:00:00.000\",\n\t\t\"shippedDate\": \"1998-03-18 00:00:00.000\",\n\t\t\"shipVia\": 1,\n\t\t\"freight\": 10.22,\n\t\t\"shipName\": \"Morgenstern Gesundkost\",\n\t\t\"shipAddress\": {\n\t\t\t\"street\": \"Heerstr. 22\",\n\t\t\t\"city\": \"Leipzig\",\n\t\t\t\"region\": \"NULL\",\n\t\t\t\"postalCode\": 4179,\n\t\t\t\"country\": \"Germany\"\n\t\t},\n\t\t\"details\": [\n\t\t\t{\n\t\t\t\t\"productID\": 13,\n\t\t\t\t\"unitPrice\": 6,\n\t\t\t\t\"quantity\": 20,\n\t\t\t\t\"discount\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"productID\": 31,\n\t\t\t\t\"unitPrice\": 12.5,\n\t\t\t\t\"quantity\": 10,\n\t\t\t\t\"discount\": 0\n\t\t\t}\n\t\t]\n\t}\n]";
|
|
19542
|
+
|
|
19543
|
+
/***/ }),
|
|
19544
|
+
|
|
19545
|
+
/***/ "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/grid/interfaces.ts":
|
|
19546
|
+
/*!*****************************************************************************************************************************************!*\
|
|
19547
|
+
!*** ../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/grid/interfaces.ts ***!
|
|
19548
|
+
\*****************************************************************************************************************************************/
|
|
19549
|
+
/***/ ((module) => {
|
|
19550
|
+
|
|
19551
|
+
module.exports = "export interface ProductCategory {\n CategoryID?: number,\n CategoryName?: string,\n Description?: string,\n details?: any\n}\n\nexport interface Product {\n ProductID: number,\n ProductName?: string,\n SupplierID?: number,\n CategoryID?: number,\n QuantityPerUnit?: string,\n UnitPrice?: number,\n UnitsInStock?: number,\n UnitsOnOrder?: number,\n ReorderLevel?: number,\n Discontinued?: boolean,\n Category?: ProductCategory,\n expanded?: boolean,\n inEdit?: boolean | string,\n locked?: boolean\n}\n\nexport interface columnInterface {\n title?: string,\n field?: string,\n show?: boolean,\n filter?: \"boolean\" | \"numeric\" | \"text\" | \"date\" | undefined,\n minWidth?: number,\n minGridWidth?: number,\n locked?: boolean,\n width?: string | number\n}\n\nexport interface OrderShipAddress {\n street: string,\n city: string,\n region: string,\n postalCode: number,\n country: string\n}\n\nexport interface OrderDetails {\n productID: number,\n unitPrice: number,\n quantity: number,\n discount: number\n}\nexport interface Order {\n orderID: number,\n OrderID?: number,\n customerID: string,\n employeeID: number,\n orderDate?: Date,\n requiredDate: Date,\n shippedDate?: Date,\n shipVia: number,\n freight: number,\n shipName: string,\n shipAddress: OrderShipAddress,\n details: OrderDetails[]\n}\n\nexport interface Person {\n id: number,\n firstName: string,\n lastName: string,\n city: string,\n title: string\n};";
|
|
19552
|
+
|
|
19553
|
+
/***/ }),
|
|
19554
|
+
|
|
19555
|
+
/***/ "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/index.css":
|
|
19556
|
+
/*!********************************************************************************************************************************!*\
|
|
19557
|
+
!*** ../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/index.css ***!
|
|
19558
|
+
\********************************************************************************************************************************/
|
|
19559
|
+
/***/ ((module) => {
|
|
19560
|
+
|
|
19561
|
+
module.exports = ":root {\n font-family: Roboto, sans-serif;\n line-height: 1.5;\n font-weight: 400;\n\n width: 100%;\n text-align: center;\n\n color-scheme: light dark;\n color: rgba(255, 255, 255, 0.87);\n background-color: #242424;\n\n font-synthesis: none;\n text-rendering: optimizeLegibility;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\nbody {\n margin: 0;\n min-width: 320px;\n color: #424242;\n}\n\na:-webkit-any-link {\n color: inherit;\n text-decoration: none;\n}\n\n@media (prefers-color-scheme: light) {\n :root {\n width: 100%;\n color: #213547;\n background-color: #ffffff;\n }\n}\n";
|
|
19562
|
+
|
|
19563
|
+
/***/ }),
|
|
19564
|
+
|
|
19565
|
+
/***/ "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/main.tsx":
|
|
19566
|
+
/*!*******************************************************************************************************************************!*\
|
|
19567
|
+
!*** ../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/main.tsx ***!
|
|
19568
|
+
\*******************************************************************************************************************************/
|
|
19569
|
+
/***/ ((module) => {
|
|
19570
|
+
|
|
19571
|
+
module.exports = "import { StrictMode } from 'react'\nimport { createRoot } from 'react-dom/client'\nimport { RouterProvider, createBrowserRouter } from \"react-router-dom\";\nimport '@progress/kendo-theme-default/dist/all.css';\nimport Home from './Home.tsx'\nimport Grid from './grid/Grid.tsx';\nimport './index.css'\n\nconst router = createBrowserRouter([\n {\n path: \"/\",\n element: <Home />,\n },\n {\n path: \"/grid/\",\n element: <Grid />,\n }\n]);\n\ncreateRoot(document.getElementById('root')!).render(\n <StrictMode>\n <RouterProvider router={router} />\n </StrictMode>,\n)\n\n";
|
|
19572
|
+
|
|
19573
|
+
/***/ }),
|
|
19574
|
+
|
|
19575
|
+
/***/ "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/tsconfig.app.json":
|
|
19576
|
+
/*!************************************************************************************************************************************!*\
|
|
19577
|
+
!*** ../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/tsconfig.app.json ***!
|
|
19578
|
+
\************************************************************************************************************************************/
|
|
19579
|
+
/***/ ((module) => {
|
|
19580
|
+
|
|
19581
|
+
module.exports = "{\n \"compilerOptions\": {\n \"target\": \"ES2020\",\n \"useDefineForClassFields\": true,\n \"lib\": [\"ES2020\", \"DOM\", \"DOM.Iterable\"],\n \"module\": \"ESNext\",\n \"skipLibCheck\": true,\n\n /* Bundler mode */\n \"moduleResolution\": \"bundler\",\n \"allowImportingTsExtensions\": true,\n \"isolatedModules\": true,\n \"moduleDetection\": \"force\",\n \"noEmit\": true,\n \"jsx\": \"react-jsx\",\n\n /* Linting */\n \"strict\": true,\n \"noUnusedLocals\": true,\n \"noUnusedParameters\": true,\n \"noFallthroughCasesInSwitch\": true\n },\n \"include\": [\"src\"]\n}\n";
|
|
19582
|
+
|
|
19583
|
+
/***/ }),
|
|
19584
|
+
|
|
19585
|
+
/***/ "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/tsconfig.json":
|
|
19586
|
+
/*!********************************************************************************************************************************!*\
|
|
19587
|
+
!*** ../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/tsconfig.json ***!
|
|
19588
|
+
\********************************************************************************************************************************/
|
|
19589
|
+
/***/ ((module) => {
|
|
19590
|
+
|
|
19591
|
+
module.exports = "{\n \"files\": [],\n \"references\": [\n { \"path\": \"./tsconfig.app.json\" },\n { \"path\": \"./tsconfig.node.json\" }\n ]\n}\n";
|
|
19592
|
+
|
|
19593
|
+
/***/ }),
|
|
19594
|
+
|
|
19595
|
+
/***/ "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/tsconfig.node.json":
|
|
19596
|
+
/*!*************************************************************************************************************************************!*\
|
|
19597
|
+
!*** ../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/tsconfig.node.json ***!
|
|
19598
|
+
\*************************************************************************************************************************************/
|
|
19599
|
+
/***/ ((module) => {
|
|
19600
|
+
|
|
19601
|
+
module.exports = "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"lib\": [\"ES2023\"],\n \"module\": \"ESNext\",\n \"skipLibCheck\": true,\n\n /* Bundler mode */\n \"moduleResolution\": \"bundler\",\n \"allowImportingTsExtensions\": true,\n \"isolatedModules\": true,\n \"moduleDetection\": \"force\",\n \"noEmit\": true,\n\n /* Linting */\n \"strict\": true,\n \"noUnusedLocals\": true,\n \"noUnusedParameters\": true,\n \"noFallthroughCasesInSwitch\": true\n },\n \"include\": [\"vite.config.ts\"]\n}\n";
|
|
19602
|
+
|
|
19603
|
+
/***/ }),
|
|
19604
|
+
|
|
19605
|
+
/***/ "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/vite.config.ts":
|
|
19606
|
+
/*!*********************************************************************************************************************************!*\
|
|
19607
|
+
!*** ../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/vite.config.ts ***!
|
|
19608
|
+
\*********************************************************************************************************************************/
|
|
19609
|
+
/***/ ((module) => {
|
|
19610
|
+
|
|
19611
|
+
module.exports = "import { defineConfig } from 'vite';\nimport react from '@vitejs/plugin-react';\n\nexport default defineConfig({\n plugins: [react()],\n});\n";
|
|
19612
|
+
|
|
19613
|
+
/***/ }),
|
|
19614
|
+
|
|
19404
19615
|
/***/ "../node_modules/require-directory/index.js":
|
|
19405
19616
|
/*!**************************************************!*\
|
|
19406
19617
|
!*** ../node_modules/require-directory/index.js ***!
|
|
@@ -20225,10 +20436,21 @@ class CreatejQueryBlankApp extends scaffolding_1.ProjectTemplate {
|
|
|
20225
20436
|
}
|
|
20226
20437
|
else {}
|
|
20227
20438
|
}
|
|
20439
|
+
async getCdnVersion() {
|
|
20440
|
+
if (this.options.cdn == undefined) {
|
|
20441
|
+
let jsonSchema = await CreatejQueryBlankApp.schema();
|
|
20442
|
+
let cdnVersion = jsonSchema.properties.cdn.default;
|
|
20443
|
+
return cdnVersion;
|
|
20444
|
+
}
|
|
20445
|
+
else {
|
|
20446
|
+
let cdnVersion = this.options.cdn;
|
|
20447
|
+
return cdnVersion;
|
|
20448
|
+
}
|
|
20449
|
+
}
|
|
20228
20450
|
async applyKendoTheme(file, content) {
|
|
20229
20451
|
const filePaths = [`pages/index.html`];
|
|
20452
|
+
const cdnVersion = await this.getCdnVersion();
|
|
20230
20453
|
const theme = this.options.theme;
|
|
20231
|
-
const cdnVersion = this.options.cdn;
|
|
20232
20454
|
const regex = "https://kendo.cdn.telerik.com/themes/8.0.1/default/default-main.css";
|
|
20233
20455
|
const replacementRegex = `https://kendo.cdn.telerik.com/themes/${cdnVersion}/${theme}/${theme}-main.css`;
|
|
20234
20456
|
for (const filePath of filePaths) {
|
|
@@ -20350,10 +20572,21 @@ class CreatejQueryDashboardLayoutApp extends scaffolding_1.ProjectTemplate {
|
|
|
20350
20572
|
}
|
|
20351
20573
|
else {}
|
|
20352
20574
|
}
|
|
20575
|
+
async getCdnVersion() {
|
|
20576
|
+
if (this.options.cdn == undefined) {
|
|
20577
|
+
let jsonSchema = await CreatejQueryDashboardLayoutApp.schema();
|
|
20578
|
+
let cdnVersion = jsonSchema.properties.cdn.default;
|
|
20579
|
+
return cdnVersion;
|
|
20580
|
+
}
|
|
20581
|
+
else {
|
|
20582
|
+
let cdnVersion = this.options.cdn;
|
|
20583
|
+
return cdnVersion;
|
|
20584
|
+
}
|
|
20585
|
+
}
|
|
20353
20586
|
async applyKendoTheme(file, content) {
|
|
20354
20587
|
const filePaths = [`pages/index.html`];
|
|
20588
|
+
const cdnVersion = await this.getCdnVersion();
|
|
20355
20589
|
const theme = this.options.theme;
|
|
20356
|
-
const cdnVersion = this.options.cdn;
|
|
20357
20590
|
const regex = "https://kendo.cdn.telerik.com/themes/8.0.1/default/default-main.css";
|
|
20358
20591
|
const replacementRegex = `https://kendo.cdn.telerik.com/themes/${cdnVersion}/${theme}/${theme}-main.css`;
|
|
20359
20592
|
for (const filePath of filePaths) {
|
|
@@ -20474,10 +20707,21 @@ class CreatejQueryDashboardApp extends scaffolding_1.ProjectTemplate {
|
|
|
20474
20707
|
}
|
|
20475
20708
|
else {}
|
|
20476
20709
|
}
|
|
20710
|
+
async getCdnVersion() {
|
|
20711
|
+
if (this.options.cdn == undefined) {
|
|
20712
|
+
let jsonSchema = await CreatejQueryDashboardApp.schema();
|
|
20713
|
+
let cdnVersion = jsonSchema.properties.cdn.default;
|
|
20714
|
+
return cdnVersion;
|
|
20715
|
+
}
|
|
20716
|
+
else {
|
|
20717
|
+
let cdnVersion = this.options.cdn;
|
|
20718
|
+
return cdnVersion;
|
|
20719
|
+
}
|
|
20720
|
+
}
|
|
20477
20721
|
async applyKendoTheme(file, content) {
|
|
20478
20722
|
const filePaths = [`pages/index.html`];
|
|
20723
|
+
const cdnVersion = await this.getCdnVersion();
|
|
20479
20724
|
const theme = this.options.theme;
|
|
20480
|
-
const cdnVersion = this.options.cdn;
|
|
20481
20725
|
const regex = "https://kendo.cdn.telerik.com/themes/8.0.1/default/default-main.css";
|
|
20482
20726
|
const replacementRegex = `https://kendo.cdn.telerik.com/themes/${cdnVersion}/${theme}/${theme}-main.css`;
|
|
20483
20727
|
for (const filePath of filePaths) {
|
|
@@ -20598,10 +20842,21 @@ class CreatejQueryGridApp extends scaffolding_1.ProjectTemplate {
|
|
|
20598
20842
|
}
|
|
20599
20843
|
else {}
|
|
20600
20844
|
}
|
|
20845
|
+
async getCdnVersion() {
|
|
20846
|
+
if (this.options.cdn == undefined) {
|
|
20847
|
+
let jsonSchema = await CreatejQueryGridApp.schema();
|
|
20848
|
+
let cdnVersion = jsonSchema.properties.cdn.default;
|
|
20849
|
+
return cdnVersion;
|
|
20850
|
+
}
|
|
20851
|
+
else {
|
|
20852
|
+
let cdnVersion = this.options.cdn;
|
|
20853
|
+
return cdnVersion;
|
|
20854
|
+
}
|
|
20855
|
+
}
|
|
20601
20856
|
async applyKendoTheme(file, content) {
|
|
20602
20857
|
const filePaths = [`pages/index.html`];
|
|
20858
|
+
const cdnVersion = await this.getCdnVersion();
|
|
20603
20859
|
const theme = this.options.theme;
|
|
20604
|
-
const cdnVersion = this.options.cdn;
|
|
20605
20860
|
const regex = "https://kendo.cdn.telerik.com/themes/8.0.1/default/default-main.css";
|
|
20606
20861
|
const replacementRegex = `https://kendo.cdn.telerik.com/themes/${cdnVersion}/${theme}/${theme}-main.css`;
|
|
20607
20862
|
for (const filePath of filePaths) {
|
|
@@ -20722,16 +20977,30 @@ class CreatejQueryStandardApp extends scaffolding_1.ProjectTemplate {
|
|
|
20722
20977
|
}
|
|
20723
20978
|
else {}
|
|
20724
20979
|
}
|
|
20980
|
+
async getCdnVersion() {
|
|
20981
|
+
if (this.options.cdn == undefined) {
|
|
20982
|
+
let jsonSchema = await CreatejQueryStandardApp.schema();
|
|
20983
|
+
let cdnVersion = jsonSchema.properties.cdn.default;
|
|
20984
|
+
return cdnVersion;
|
|
20985
|
+
}
|
|
20986
|
+
else {
|
|
20987
|
+
let cdnVersion = this.options.cdn;
|
|
20988
|
+
return cdnVersion;
|
|
20989
|
+
}
|
|
20990
|
+
}
|
|
20725
20991
|
async applyKendoTheme(file, content) {
|
|
20726
20992
|
const filePaths = [`pages/about.html`, `pages/contact.html`, `pages/index.html`];
|
|
20993
|
+
const cdnVersion = await this.getCdnVersion();
|
|
20727
20994
|
const theme = this.options.theme;
|
|
20728
|
-
const cdnVersion = this.options.cdn;
|
|
20729
20995
|
const regex = "https://kendo.cdn.telerik.com/themes/8.0.1/default/default-main.css";
|
|
20730
20996
|
const replacementRegex = `https://kendo.cdn.telerik.com/themes/${cdnVersion}/${theme}/${theme}-main.css`;
|
|
20997
|
+
const regex2 = "https://kendo.cdn.telerik.com/themes/8.0.1/default/default-ocean-blue-a11y.css";
|
|
20998
|
+
const replacementRegex2 = `https://kendo.cdn.telerik.com/themes/${cdnVersion}/default/default-ocean-blue-a11y.css`;
|
|
20731
20999
|
for (const filePath of filePaths) {
|
|
20732
21000
|
if (file.includes(filePath)) {
|
|
20733
|
-
|
|
20734
|
-
|
|
21001
|
+
content = content.replace(regex, replacementRegex);
|
|
21002
|
+
content = content.replace(regex2, replacementRegex2);
|
|
21003
|
+
break;
|
|
20735
21004
|
}
|
|
20736
21005
|
}
|
|
20737
21006
|
return content;
|
|
@@ -21370,6 +21639,7 @@ async function createScaffolderCliOptions(productCode, cli, scaffolderConstructo
|
|
|
21370
21639
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
21371
21640
|
exports.scaffolders = exports.projectTemplates = void 0;
|
|
21372
21641
|
const nextjs_1 = __webpack_require__(/*! ./project-templates/nextjs */ "../react-scaffolders/project-templates/nextjs/index.ts");
|
|
21642
|
+
const vite_1 = __webpack_require__(/*! ./project-templates/vite */ "../react-scaffolders/project-templates/vite/index.ts");
|
|
21373
21643
|
const chart_1 = __webpack_require__(/*! ./project-scaffolders/chart */ "../react-scaffolders/project-scaffolders/chart/index.ts");
|
|
21374
21644
|
const form_1 = __webpack_require__(/*! ./project-scaffolders/form */ "../react-scaffolders/project-scaffolders/form/index.ts");
|
|
21375
21645
|
const grid_1 = __webpack_require__(/*! ./project-scaffolders/grid */ "../react-scaffolders/project-scaffolders/grid/index.ts");
|
|
@@ -21379,7 +21649,8 @@ const scheduler_1 = __webpack_require__(/*! ./project-scaffolders/scheduler */ "
|
|
|
21379
21649
|
*/
|
|
21380
21650
|
exports.projectTemplates = [
|
|
21381
21651
|
// CreateCRAApp,
|
|
21382
|
-
nextjs_1.CreateNextJSApp
|
|
21652
|
+
nextjs_1.CreateNextJSApp,
|
|
21653
|
+
vite_1.CreateViteApp
|
|
21383
21654
|
];
|
|
21384
21655
|
/**
|
|
21385
21656
|
* Collection of KendoReact page templates.
|
|
@@ -21948,7 +22219,7 @@ class CreateNextJSApp extends scaffolding_1.ProjectTemplate {
|
|
|
21948
22219
|
"dependencies": {
|
|
21949
22220
|
"react": "^18",
|
|
21950
22221
|
"react-dom": "^18",
|
|
21951
|
-
"next": "14.
|
|
22222
|
+
"next": "14.2.5"
|
|
21952
22223
|
}
|
|
21953
22224
|
};
|
|
21954
22225
|
if (this.language == "TypeScript") {
|
|
@@ -22138,57 +22409,60 @@ Check out our [Next.js deployment documentation](https://nextjs.org/docs/deploym
|
|
|
22138
22409
|
}
|
|
22139
22410
|
async installKendoReact(project) {
|
|
22140
22411
|
// Install KendoReact dependencies
|
|
22412
|
+
let jsonSchema = await CreateNextJSApp.schema();
|
|
22413
|
+
let kendoVersion = jsonSchema.properties.kendo.version;
|
|
22414
|
+
let themeVersion = jsonSchema.properties.theme.version;
|
|
22141
22415
|
const packageJsonSource = project.source("package.json");
|
|
22142
22416
|
const packageJson = JSON.parse(await packageJsonSource.getContent());
|
|
22143
22417
|
packageJson.dependencies = {
|
|
22144
22418
|
...packageJson.dependencies,
|
|
22145
22419
|
"@progress/kendo-data-query": "^1.7.0",
|
|
22146
|
-
"@progress/kendo-drawing": "^1.
|
|
22147
|
-
"@progress/kendo-licensing": "^1.3.
|
|
22148
|
-
"@progress/kendo-theme-default":
|
|
22149
|
-
"@progress/kendo-theme-bootstrap":
|
|
22150
|
-
"@progress/kendo-theme-material":
|
|
22151
|
-
"@progress/kendo-react-animation":
|
|
22152
|
-
"@progress/kendo-react-buttons":
|
|
22153
|
-
"@progress/kendo-react-charts":
|
|
22154
|
-
"@progress/kendo-react-common":
|
|
22155
|
-
"@progress/kendo-react-conversational-ui":
|
|
22156
|
-
"@progress/kendo-react-data-tools":
|
|
22157
|
-
"@progress/kendo-react-dateinputs":
|
|
22158
|
-
"@progress/kendo-react-dialogs":
|
|
22159
|
-
"@progress/kendo-react-dropdowns":
|
|
22160
|
-
"@progress/kendo-react-editor":
|
|
22161
|
-
"@progress/kendo-react-excel-export":
|
|
22162
|
-
"@progress/kendo-react-form":
|
|
22163
|
-
"@progress/kendo-react-gantt":
|
|
22164
|
-
"@progress/kendo-react-gauges":
|
|
22165
|
-
"@progress/kendo-react-grid":
|
|
22166
|
-
"@progress/kendo-react-indicators":
|
|
22167
|
-
"@progress/kendo-react-inputs":
|
|
22168
|
-
"@progress/kendo-react-intl":
|
|
22169
|
-
"@progress/kendo-react-labels":
|
|
22170
|
-
"@progress/kendo-react-layout":
|
|
22171
|
-
"@progress/kendo-react-listbox":
|
|
22172
|
-
"@progress/kendo-react-listview":
|
|
22173
|
-
"@progress/kendo-react-map":
|
|
22174
|
-
"@progress/kendo-react-notification":
|
|
22175
|
-
"@progress/kendo-react-orgchart":
|
|
22176
|
-
"@progress/kendo-react-pdf":
|
|
22177
|
-
"@progress/kendo-react-pivotgrid":
|
|
22178
|
-
"@progress/kendo-react-popup":
|
|
22179
|
-
"@progress/kendo-react-progressbars":
|
|
22180
|
-
"@progress/kendo-react-ripple":
|
|
22181
|
-
"@progress/kendo-react-scheduler":
|
|
22182
|
-
"@progress/kendo-react-scrollview":
|
|
22183
|
-
"@progress/kendo-react-sortable":
|
|
22184
|
-
"@progress/kendo-react-spreadsheet":
|
|
22185
|
-
"@progress/kendo-react-tooltip":
|
|
22186
|
-
"@progress/kendo-react-treelist":
|
|
22187
|
-
"@progress/kendo-react-treeview":
|
|
22188
|
-
"@progress/kendo-react-upload":
|
|
22189
|
-
"@progress/kendo-react-pdf-viewer":
|
|
22190
|
-
"@progress/kendo-react-taskboard":
|
|
22191
|
-
"@progress/kendo-svg-icons": "^
|
|
22420
|
+
"@progress/kendo-drawing": "^1.20.2",
|
|
22421
|
+
"@progress/kendo-licensing": "^1.3.5",
|
|
22422
|
+
"@progress/kendo-theme-default": `${themeVersion}`,
|
|
22423
|
+
"@progress/kendo-theme-bootstrap": `${themeVersion}`,
|
|
22424
|
+
"@progress/kendo-theme-material": `${themeVersion}`,
|
|
22425
|
+
"@progress/kendo-react-animation": `${kendoVersion}`,
|
|
22426
|
+
"@progress/kendo-react-buttons": `${kendoVersion}`,
|
|
22427
|
+
"@progress/kendo-react-charts": `${kendoVersion}`,
|
|
22428
|
+
"@progress/kendo-react-common": `${kendoVersion}`,
|
|
22429
|
+
"@progress/kendo-react-conversational-ui": `${kendoVersion}`,
|
|
22430
|
+
"@progress/kendo-react-data-tools": `${kendoVersion}`,
|
|
22431
|
+
"@progress/kendo-react-dateinputs": `${kendoVersion}`,
|
|
22432
|
+
"@progress/kendo-react-dialogs": `${kendoVersion}`,
|
|
22433
|
+
"@progress/kendo-react-dropdowns": `${kendoVersion}`,
|
|
22434
|
+
"@progress/kendo-react-editor": `${kendoVersion}`,
|
|
22435
|
+
"@progress/kendo-react-excel-export": `${kendoVersion}`,
|
|
22436
|
+
"@progress/kendo-react-form": `${kendoVersion}`,
|
|
22437
|
+
"@progress/kendo-react-gantt": `${kendoVersion}`,
|
|
22438
|
+
"@progress/kendo-react-gauges": `${kendoVersion}`,
|
|
22439
|
+
"@progress/kendo-react-grid": `${kendoVersion}`,
|
|
22440
|
+
"@progress/kendo-react-indicators": `${kendoVersion}`,
|
|
22441
|
+
"@progress/kendo-react-inputs": `${kendoVersion}`,
|
|
22442
|
+
"@progress/kendo-react-intl": `${kendoVersion}`,
|
|
22443
|
+
"@progress/kendo-react-labels": `${kendoVersion}`,
|
|
22444
|
+
"@progress/kendo-react-layout": `${kendoVersion}`,
|
|
22445
|
+
"@progress/kendo-react-listbox": `${kendoVersion}`,
|
|
22446
|
+
"@progress/kendo-react-listview": `${kendoVersion}`,
|
|
22447
|
+
"@progress/kendo-react-map": `${kendoVersion}`,
|
|
22448
|
+
"@progress/kendo-react-notification": `${kendoVersion}`,
|
|
22449
|
+
"@progress/kendo-react-orgchart": `${kendoVersion}`,
|
|
22450
|
+
"@progress/kendo-react-pdf": `${kendoVersion}`,
|
|
22451
|
+
"@progress/kendo-react-pivotgrid": `${kendoVersion}`,
|
|
22452
|
+
"@progress/kendo-react-popup": `${kendoVersion}`,
|
|
22453
|
+
"@progress/kendo-react-progressbars": `${kendoVersion}`,
|
|
22454
|
+
"@progress/kendo-react-ripple": `${kendoVersion}`,
|
|
22455
|
+
"@progress/kendo-react-scheduler": `${kendoVersion}`,
|
|
22456
|
+
"@progress/kendo-react-scrollview": `${kendoVersion}`,
|
|
22457
|
+
"@progress/kendo-react-sortable": `${kendoVersion}`,
|
|
22458
|
+
"@progress/kendo-react-spreadsheet": `${kendoVersion}`,
|
|
22459
|
+
"@progress/kendo-react-tooltip": `${kendoVersion}`,
|
|
22460
|
+
"@progress/kendo-react-treelist": `${kendoVersion}`,
|
|
22461
|
+
"@progress/kendo-react-treeview": `${kendoVersion}`,
|
|
22462
|
+
"@progress/kendo-react-upload": `${kendoVersion}`,
|
|
22463
|
+
"@progress/kendo-react-pdf-viewer": `${kendoVersion}`,
|
|
22464
|
+
"@progress/kendo-react-taskboard": `${kendoVersion}`,
|
|
22465
|
+
"@progress/kendo-svg-icons": "^3.0.0",
|
|
22192
22466
|
};
|
|
22193
22467
|
await packageJsonSource.setContent(JSON.stringify(packageJson, null, " "));
|
|
22194
22468
|
// Handle kendo theme...
|
|
@@ -22259,6 +22533,210 @@ Check out our [Next.js deployment documentation](https://nextjs.org/docs/deploym
|
|
|
22259
22533
|
exports.CreateNextJSApp = CreateNextJSApp;
|
|
22260
22534
|
|
|
22261
22535
|
|
|
22536
|
+
/***/ }),
|
|
22537
|
+
|
|
22538
|
+
/***/ "../react-scaffolders/project-templates/vite/index.ts":
|
|
22539
|
+
/*!************************************************************!*\
|
|
22540
|
+
!*** ../react-scaffolders/project-templates/vite/index.ts ***!
|
|
22541
|
+
\************************************************************/
|
|
22542
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
22543
|
+
|
|
22544
|
+
"use strict";
|
|
22545
|
+
|
|
22546
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
22547
|
+
if (k2 === undefined) k2 = k;
|
|
22548
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
22549
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
22550
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
22551
|
+
}
|
|
22552
|
+
Object.defineProperty(o, k2, desc);
|
|
22553
|
+
}) : (function(o, m, k, k2) {
|
|
22554
|
+
if (k2 === undefined) k2 = k;
|
|
22555
|
+
o[k2] = m[k];
|
|
22556
|
+
}));
|
|
22557
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
22558
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
22559
|
+
}) : function(o, v) {
|
|
22560
|
+
o["default"] = v;
|
|
22561
|
+
});
|
|
22562
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22563
|
+
if (mod && mod.__esModule) return mod;
|
|
22564
|
+
var result = {};
|
|
22565
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22566
|
+
__setModuleDefault(result, mod);
|
|
22567
|
+
return result;
|
|
22568
|
+
};
|
|
22569
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
22570
|
+
exports.CreateViteApp = void 0;
|
|
22571
|
+
const scaffolding_1 = __webpack_require__(/*! @telerik/scaffolding */ "../scaffolding/index.ts");
|
|
22572
|
+
const fs = __importStar(__webpack_require__(/*! fs/promises */ "fs/promises"));
|
|
22573
|
+
const path = __importStar(__webpack_require__(/*! path */ "path"));
|
|
22574
|
+
const glob_1 = __webpack_require__(/*! glob */ "../react-scaffolders/node_modules/glob/dist/commonjs/index.js");
|
|
22575
|
+
class CreateViteApp extends scaffolding_1.ProjectTemplate {
|
|
22576
|
+
static async schema() {
|
|
22577
|
+
if (true) {
|
|
22578
|
+
return __webpack_require__(/*! ./schema.json */ "../react-scaffolders/project-templates/vite/schema.json");
|
|
22579
|
+
}
|
|
22580
|
+
else {}
|
|
22581
|
+
}
|
|
22582
|
+
async applyStylingOptions(file, content) {
|
|
22583
|
+
if (this.options.styling == "Sass") {
|
|
22584
|
+
const filePath = `vite.config.ts`;
|
|
22585
|
+
if (file.includes(filePath)) {
|
|
22586
|
+
let updatedContent = content.replace(`import { defineConfig } from 'vite';\nimport react from '@vitejs/plugin-react';\n\nexport default defineConfig({\n plugins: [react()],\n});`, `import { defineConfig } from 'vite';\nimport react from '@vitejs/plugin-react';\nimport sass from 'sass';\n\nexport default defineConfig({\n plugins: [react()],\n css: {\n preprocessorOptions: {\n scss: {\n implementation: sass,\n },\n },\n },\n});`);
|
|
22587
|
+
return updatedContent;
|
|
22588
|
+
}
|
|
22589
|
+
return content;
|
|
22590
|
+
}
|
|
22591
|
+
}
|
|
22592
|
+
async applyChangesForDependencies(file, content) {
|
|
22593
|
+
const packageJsonPath = "package.json";
|
|
22594
|
+
let jsonSchema = await CreateViteApp.schema();
|
|
22595
|
+
let kendoVersion = jsonSchema.properties.kendo.version;
|
|
22596
|
+
let themeVersion = jsonSchema.properties.theme.version;
|
|
22597
|
+
let kendoDrawingVersion = "^1.20.2";
|
|
22598
|
+
let kendoLicensingVersion = "^1.3.5";
|
|
22599
|
+
let updatedContent = content;
|
|
22600
|
+
if (file.includes(packageJsonPath)) {
|
|
22601
|
+
try {
|
|
22602
|
+
const packageJson = JSON.parse(content);
|
|
22603
|
+
// If kendo option is true, add KendoReact dependencies
|
|
22604
|
+
if (this.options.kendo === true) {
|
|
22605
|
+
packageJson.dependencies = {
|
|
22606
|
+
...packageJson.dependencies,
|
|
22607
|
+
"@progress/kendo-drawing": `${kendoDrawingVersion}`,
|
|
22608
|
+
"@progress/kendo-licensing": `${kendoLicensingVersion}`,
|
|
22609
|
+
"@progress/kendo-theme-bootstrap": `${themeVersion}`,
|
|
22610
|
+
"@progress/kendo-theme-material": `${themeVersion}`,
|
|
22611
|
+
"@progress/kendo-react-animation": `${kendoVersion}`,
|
|
22612
|
+
"@progress/kendo-react-charts": `${kendoVersion}`,
|
|
22613
|
+
"@progress/kendo-react-common": `${kendoVersion}`,
|
|
22614
|
+
"@progress/kendo-react-conversational-ui": `${kendoVersion}`,
|
|
22615
|
+
"@progress/kendo-react-data-tools": `${kendoVersion}`,
|
|
22616
|
+
"@progress/kendo-react-dateinputs": `${kendoVersion}`,
|
|
22617
|
+
"@progress/kendo-react-dialogs": `${kendoVersion}`,
|
|
22618
|
+
"@progress/kendo-react-dropdowns": `${kendoVersion}`,
|
|
22619
|
+
"@progress/kendo-react-editor": `${kendoVersion}`,
|
|
22620
|
+
"@progress/kendo-react-form": `${kendoVersion}`,
|
|
22621
|
+
"@progress/kendo-react-gantt": `${kendoVersion}`,
|
|
22622
|
+
"@progress/kendo-react-gauges": `${kendoVersion}`,
|
|
22623
|
+
"@progress/kendo-react-indicators": `${kendoVersion}`,
|
|
22624
|
+
"@progress/kendo-react-inputs": `${kendoVersion}`,
|
|
22625
|
+
"@progress/kendo-react-intl": `${kendoVersion}`,
|
|
22626
|
+
"@progress/kendo-react-labels": `${kendoVersion}`,
|
|
22627
|
+
"@progress/kendo-react-listbox": `${kendoVersion}`,
|
|
22628
|
+
"@progress/kendo-react-listview": `${kendoVersion}`,
|
|
22629
|
+
"@progress/kendo-react-map": `${kendoVersion}`,
|
|
22630
|
+
"@progress/kendo-react-notification": `${kendoVersion}`,
|
|
22631
|
+
"@progress/kendo-react-orgchart": `${kendoVersion}`,
|
|
22632
|
+
"@progress/kendo-react-pivotgrid": `${kendoVersion}`,
|
|
22633
|
+
"@progress/kendo-react-popup": `${kendoVersion}`,
|
|
22634
|
+
"@progress/kendo-react-progressbars": `${kendoVersion}`,
|
|
22635
|
+
"@progress/kendo-react-ripple": `${kendoVersion}`,
|
|
22636
|
+
"@progress/kendo-react-scheduler": `${kendoVersion}`,
|
|
22637
|
+
"@progress/kendo-react-scrollview": `${kendoVersion}`,
|
|
22638
|
+
"@progress/kendo-react-sortable": `${kendoVersion}`,
|
|
22639
|
+
"@progress/kendo-react-spreadsheet": `${kendoVersion}`,
|
|
22640
|
+
"@progress/kendo-react-tooltip": `${kendoVersion}`,
|
|
22641
|
+
"@progress/kendo-react-treelist": `${kendoVersion}`,
|
|
22642
|
+
"@progress/kendo-react-treeview": `${kendoVersion}`,
|
|
22643
|
+
"@progress/kendo-react-upload": `${kendoVersion}`,
|
|
22644
|
+
"@progress/kendo-react-pdf-viewer": `${kendoVersion}`,
|
|
22645
|
+
"@progress/kendo-react-taskboard": `${kendoVersion}`
|
|
22646
|
+
};
|
|
22647
|
+
updatedContent = JSON.stringify(packageJson, null, 4);
|
|
22648
|
+
}
|
|
22649
|
+
// If styling option is "Sass", add Sass dependencies
|
|
22650
|
+
if (this.options.styling === "Sass") {
|
|
22651
|
+
packageJson.devDependencies = {
|
|
22652
|
+
...packageJson.devDependencies,
|
|
22653
|
+
"sass": "^1.79.1",
|
|
22654
|
+
"sass-loader": "^16.0.1"
|
|
22655
|
+
};
|
|
22656
|
+
updatedContent = JSON.stringify(packageJson, null, 4);
|
|
22657
|
+
}
|
|
22658
|
+
}
|
|
22659
|
+
catch (err) {
|
|
22660
|
+
console.error('Error updating package.json:', err);
|
|
22661
|
+
throw err;
|
|
22662
|
+
}
|
|
22663
|
+
}
|
|
22664
|
+
return updatedContent;
|
|
22665
|
+
}
|
|
22666
|
+
async applyKendoTheme(file, content) {
|
|
22667
|
+
const filePath = 'src/main.tsx';
|
|
22668
|
+
if (file.includes(filePath)) {
|
|
22669
|
+
let updatedContent = content.replace(`import '@progress/kendo-theme-default/dist/all.css';`, `import '@progress/kendo-theme-${this.options.theme}/dist/all.css';`);
|
|
22670
|
+
return updatedContent;
|
|
22671
|
+
}
|
|
22672
|
+
return content;
|
|
22673
|
+
}
|
|
22674
|
+
async templateTree(template) {
|
|
22675
|
+
if (true) {
|
|
22676
|
+
const textFilesTree = __webpack_require__("../react-scaffolders/project-templates/vite/template sync recursive !!../node_modules/raw-loader/dist/cjs.js?esModule=false! \\.(js%7Cjsx%7Cts%7Ctsx%7Ccss%7Csvg%7Cjson%7Chtml%7Cmd)$");
|
|
22677
|
+
const binaryFilesTree = __webpack_require__("../react-scaffolders/project-templates/vite/template sync recursive !!../node_modules/binary-base64-loader/dist/index.js?esModule=false! \\.(ico)$");
|
|
22678
|
+
const files = [...new Set([
|
|
22679
|
+
...textFilesTree.keys(),
|
|
22680
|
+
...binaryFilesTree.keys()
|
|
22681
|
+
])]
|
|
22682
|
+
.map(f => "template/" + f.substring("./".length))
|
|
22683
|
+
.filter(f => f.startsWith(template + "/"))
|
|
22684
|
+
.map(f => f.substring((template + "/").length))
|
|
22685
|
+
.sort();
|
|
22686
|
+
return {
|
|
22687
|
+
files,
|
|
22688
|
+
async readString(file) {
|
|
22689
|
+
const text = textFilesTree("./" + file);
|
|
22690
|
+
return text;
|
|
22691
|
+
},
|
|
22692
|
+
async readBase64(file) {
|
|
22693
|
+
let base64Text = binaryFilesTree("./" + file);
|
|
22694
|
+
return base64Text;
|
|
22695
|
+
}
|
|
22696
|
+
};
|
|
22697
|
+
}
|
|
22698
|
+
else {}
|
|
22699
|
+
}
|
|
22700
|
+
textFileExtensions = new Set([".js", ".jsx", ".tsx", ".ts", ".css", ".svg", ".json", ".html", ".md"]);
|
|
22701
|
+
binaryFileExtensions = new Set([".ico"]);
|
|
22702
|
+
async apply(project) {
|
|
22703
|
+
await this.createAppSourceFiles(project);
|
|
22704
|
+
}
|
|
22705
|
+
async applyTemplate(project, template, destination) {
|
|
22706
|
+
for (const file of template.files) {
|
|
22707
|
+
const ext = path.extname(file);
|
|
22708
|
+
if (this.textFileExtensions.has(ext)) {
|
|
22709
|
+
await template.readString(file);
|
|
22710
|
+
let sourceFile = await project.source(destination, file);
|
|
22711
|
+
let fileContent = await template.readString(file);
|
|
22712
|
+
let applyStyling = await this.applyStylingOptions(file, fileContent);
|
|
22713
|
+
await sourceFile.setContent(applyStyling);
|
|
22714
|
+
let newContent = await sourceFile.getContent();
|
|
22715
|
+
let applyTheme = await this.applyKendoTheme(file, newContent);
|
|
22716
|
+
await sourceFile.setContent(applyTheme);
|
|
22717
|
+
let newFileContent = await sourceFile.getContent();
|
|
22718
|
+
let applyPackageJsonChanges = await this.applyChangesForDependencies(file, newFileContent);
|
|
22719
|
+
await sourceFile.setContent(applyPackageJsonChanges);
|
|
22720
|
+
}
|
|
22721
|
+
else if (this.binaryFileExtensions.has(ext)) {
|
|
22722
|
+
await project
|
|
22723
|
+
.source(destination, file)
|
|
22724
|
+
.setBase64Content(await template.readBase64(file));
|
|
22725
|
+
}
|
|
22726
|
+
else {
|
|
22727
|
+
throw new Error(`Couldn't determine if file type '${file}' is text or binary. Extension '${ext}'.`);
|
|
22728
|
+
}
|
|
22729
|
+
}
|
|
22730
|
+
}
|
|
22731
|
+
async createAppSourceFiles(project) {
|
|
22732
|
+
const template = "template";
|
|
22733
|
+
const templateFiles = await this.templateTree(`${template}`);
|
|
22734
|
+
await this.applyTemplate(project, templateFiles, "");
|
|
22735
|
+
}
|
|
22736
|
+
}
|
|
22737
|
+
exports.CreateViteApp = CreateViteApp;
|
|
22738
|
+
|
|
22739
|
+
|
|
22262
22740
|
/***/ }),
|
|
22263
22741
|
|
|
22264
22742
|
/***/ "../scaffolding/index.ts":
|
|
@@ -27292,6 +27770,75 @@ webpackContext.id = "../react-scaffolders/project-templates/nextjs/template sync
|
|
|
27292
27770
|
|
|
27293
27771
|
/***/ }),
|
|
27294
27772
|
|
|
27773
|
+
/***/ "../react-scaffolders/project-templates/vite/template sync recursive !!../node_modules/binary-base64-loader/dist/index.js?esModule=false! \\.(ico)$":
|
|
27774
|
+
/*!************************************************************************************************************************************************!*\
|
|
27775
|
+
!*** ../react-scaffolders/project-templates/vite/template/ sync !!../node_modules/binary-base64-loader/dist/index.js?esModule=false! \.(ico)$ ***!
|
|
27776
|
+
\************************************************************************************************************************************************/
|
|
27777
|
+
/***/ ((module) => {
|
|
27778
|
+
|
|
27779
|
+
function webpackEmptyContext(req) {
|
|
27780
|
+
var e = new Error("Cannot find module '" + req + "'");
|
|
27781
|
+
e.code = 'MODULE_NOT_FOUND';
|
|
27782
|
+
throw e;
|
|
27783
|
+
}
|
|
27784
|
+
webpackEmptyContext.keys = () => ([]);
|
|
27785
|
+
webpackEmptyContext.resolve = webpackEmptyContext;
|
|
27786
|
+
webpackEmptyContext.id = "../react-scaffolders/project-templates/vite/template sync recursive !!../node_modules/binary-base64-loader/dist/index.js?esModule=false! \\.(ico)$";
|
|
27787
|
+
module.exports = webpackEmptyContext;
|
|
27788
|
+
|
|
27789
|
+
/***/ }),
|
|
27790
|
+
|
|
27791
|
+
/***/ "../react-scaffolders/project-templates/vite/template sync recursive !!../node_modules/raw-loader/dist/cjs.js?esModule=false! \\.(js%7Cjsx%7Cts%7Ctsx%7Ccss%7Csvg%7Cjson%7Chtml%7Cmd)$":
|
|
27792
|
+
/*!***********************************************************************************************************************************************************************************!*\
|
|
27793
|
+
!*** ../react-scaffolders/project-templates/vite/template/ sync !!../node_modules/raw-loader/dist/cjs.js?esModule=false! \.(js%7Cjsx%7Cts%7Ctsx%7Ccss%7Csvg%7Cjson%7Chtml%7Cmd)$ ***!
|
|
27794
|
+
\***********************************************************************************************************************************************************************************/
|
|
27795
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
27796
|
+
|
|
27797
|
+
var map = {
|
|
27798
|
+
"./README.md": "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/README.md",
|
|
27799
|
+
"./index.html": "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/index.html",
|
|
27800
|
+
"./package.json": "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/package.json",
|
|
27801
|
+
"./public/vite.svg": "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/public/vite.svg",
|
|
27802
|
+
"./src/Home.css": "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/Home.css",
|
|
27803
|
+
"./src/Home.tsx": "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/Home.tsx",
|
|
27804
|
+
"./src/assets/classroom.svg": "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/assets/classroom.svg",
|
|
27805
|
+
"./src/assets/design.svg": "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/assets/design.svg",
|
|
27806
|
+
"./src/assets/documentation.svg": "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/assets/documentation.svg",
|
|
27807
|
+
"./src/assets/license.svg": "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/assets/license.svg",
|
|
27808
|
+
"./src/assets/react.svg": "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/assets/react.svg",
|
|
27809
|
+
"./src/grid/Grid.tsx": "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/grid/Grid.tsx",
|
|
27810
|
+
"./src/grid/data.json": "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/grid/data.json",
|
|
27811
|
+
"./src/grid/interfaces.ts": "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/grid/interfaces.ts",
|
|
27812
|
+
"./src/index.css": "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/index.css",
|
|
27813
|
+
"./src/main.tsx": "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/src/main.tsx",
|
|
27814
|
+
"./tsconfig.app.json": "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/tsconfig.app.json",
|
|
27815
|
+
"./tsconfig.json": "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/tsconfig.json",
|
|
27816
|
+
"./tsconfig.node.json": "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/tsconfig.node.json",
|
|
27817
|
+
"./vite.config.ts": "../node_modules/raw-loader/dist/cjs.js?esModule=false!../react-scaffolders/project-templates/vite/template/vite.config.ts"
|
|
27818
|
+
};
|
|
27819
|
+
|
|
27820
|
+
|
|
27821
|
+
function webpackContext(req) {
|
|
27822
|
+
var id = webpackContextResolve(req);
|
|
27823
|
+
return __webpack_require__(id);
|
|
27824
|
+
}
|
|
27825
|
+
function webpackContextResolve(req) {
|
|
27826
|
+
if(!__webpack_require__.o(map, req)) {
|
|
27827
|
+
var e = new Error("Cannot find module '" + req + "'");
|
|
27828
|
+
e.code = 'MODULE_NOT_FOUND';
|
|
27829
|
+
throw e;
|
|
27830
|
+
}
|
|
27831
|
+
return map[req];
|
|
27832
|
+
}
|
|
27833
|
+
webpackContext.keys = function webpackContextKeys() {
|
|
27834
|
+
return Object.keys(map);
|
|
27835
|
+
};
|
|
27836
|
+
webpackContext.resolve = webpackContextResolve;
|
|
27837
|
+
module.exports = webpackContext;
|
|
27838
|
+
webpackContext.id = "../react-scaffolders/project-templates/vite/template sync recursive !!../node_modules/raw-loader/dist/cjs.js?esModule=false! \\.(js%7Cjsx%7Cts%7Ctsx%7Ccss%7Csvg%7Cjson%7Chtml%7Cmd)$";
|
|
27839
|
+
|
|
27840
|
+
/***/ }),
|
|
27841
|
+
|
|
27295
27842
|
/***/ "../vue-scaffolders/chart sync recursive !!../node_modules/raw-loader/dist/cjs.js! ^\\.\\/chart\\..*\\.mustaches$":
|
|
27296
27843
|
/*!***********************************************************************************************************!*\
|
|
27297
27844
|
!*** ../vue-scaffolders/chart/ sync !!../node_modules/raw-loader/dist/cjs.js! ^\.\/chart\..*\.mustaches$ ***!
|
|
@@ -45836,7 +46383,18 @@ module.exports = JSON.parse('[[[0,44],"disallowed_STD3_valid"],[[45,46],"valid"]
|
|
|
45836
46383
|
/***/ ((module) => {
|
|
45837
46384
|
|
|
45838
46385
|
"use strict";
|
|
45839
|
-
module.exports = JSON.parse('{"title":"nextjs","description":"Create KendoReact app based on NextJS","type":"object","properties":{"path":{"type":"string","hidden":true,"description":"Path to generate the app into."},"name":{"type":"string","displayName":"Application Name","description":"Name of the generated application.","default":"KendoReactApp","$default":{"$source":"argv","index":0}},"javascript":{"alias":"js","default":false,"type":"boolean","description":"Initialize as a JavaScript project."},"typescript":{"alias":"ts","default":false,"type":"boolean","description":"Initialize as a TypeScript project."},"language":{"type":"string","description":"Front-end language","enum":["JavaScript","TypeScript"],"hidden":true},"eslint":{"type":"boolean","description":"Initialize with eslint config.","default":false},"app":{"type":"boolean","description":"Initialize as an App Router project.","default":true},"src-dir":{"type":"boolean","description":"Initialize inside a `src/` directory.","default":true},"import-alias":{"type":"string","description":"Specify import alias to use (default \\"@/*\\").","default":"@/*"},"kendo":{"type":"boolean","description":"Add KendoReact dependencies and UI.","default":true,"hidden":true},"theme":{"type":"string","description":"Kendo theme to apply.","default":"default","enum":["default","bootstrap","material"]}},"additionalProperties":false,"required":["path","name"]}');
|
|
46386
|
+
module.exports = JSON.parse('{"title":"nextjs","description":"Create KendoReact app based on NextJS","type":"object","properties":{"path":{"type":"string","hidden":true,"description":"Path to generate the app into."},"name":{"type":"string","displayName":"Application Name","description":"Name of the generated application.","default":"KendoReactApp","$default":{"$source":"argv","index":0}},"javascript":{"alias":"js","default":false,"type":"boolean","description":"Initialize as a JavaScript project."},"typescript":{"alias":"ts","default":false,"type":"boolean","description":"Initialize as a TypeScript project."},"language":{"type":"string","description":"Front-end language","enum":["JavaScript","TypeScript"],"hidden":true},"eslint":{"type":"boolean","description":"Initialize with eslint config.","default":false},"app":{"type":"boolean","description":"Initialize as an App Router project.","default":true},"src-dir":{"type":"boolean","description":"Initialize inside a `src/` directory.","default":true},"import-alias":{"type":"string","description":"Specify import alias to use (default \\"@/*\\").","default":"@/*"},"kendo":{"type":"boolean","description":"Add KendoReact dependencies and UI.","version":"^8.3.0","default":true,"hidden":true},"theme":{"type":"string","description":"Kendo theme to apply.","version":"^9.0.0","default":"default","enum":["default","bootstrap","material"]}},"additionalProperties":false,"required":["path","name"]}');
|
|
46387
|
+
|
|
46388
|
+
/***/ }),
|
|
46389
|
+
|
|
46390
|
+
/***/ "../react-scaffolders/project-templates/vite/schema.json":
|
|
46391
|
+
/*!***************************************************************!*\
|
|
46392
|
+
!*** ../react-scaffolders/project-templates/vite/schema.json ***!
|
|
46393
|
+
\***************************************************************/
|
|
46394
|
+
/***/ ((module) => {
|
|
46395
|
+
|
|
46396
|
+
"use strict";
|
|
46397
|
+
module.exports = JSON.parse('{"title":"vite","description":"Create KendoReact app with Vite.","type":"object","properties":{"path":{"type":"string","hidden":true,"description":"Path to generate the app into."},"name":{"type":"string","displayName":"Application Name","description":"Name of the generated application.","default":"KendoReactApp","$default":{"$source":"argv","index":0}},"typescript":{"alias":"ts","default":false,"type":"boolean","description":"Initialize as a TypeScript project."},"language":{"type":"string","description":"Front-end language","enum":["JavaScript","TypeScript"],"hidden":true},"styling":{"type":"string","description":"Styling language","enum":["CSS","Sass"],"default":"CSS"},"kendo":{"type":"boolean","description":"Add KendoReact dependencies and UI.","version":"^8.3.0","default":true,"hidden":true},"theme":{"type":"string","description":"Kendo theme to apply.","default":"default","version":"^9.0.0","enum":["default","bootstrap","material"]}},"additionalProperties":false,"required":["path","name"]}');
|
|
45840
46398
|
|
|
45841
46399
|
/***/ })
|
|
45842
46400
|
|