- @for (rowData of pinnedData; track rowData; let rowIndex = $index) {
+ @for (rowData of pinnedData; track (rowData.recordRef || rowData); let rowIndex = $index) {
}
@@ -62,7 +75,8 @@
| gridHierarchicalPaging:!!paginator:page:perPage:id:pipeTrigger
| gridHierarchical:expansionStates:id:primaryKey:childLayoutKeys:pipeTrigger
| gridAddRow:false:pipeTrigger
- | gridRowPinning:id:false:pipeTrigger"
+ | gridRowPinning:id:false:pipeTrigger
+ | gridCellMerge:columnsToMerge:cellMergeMode:mergeStrategy:activeRowIndexes:false:pipeTrigger"
[igxForScrollOrientation]="'vertical'" [igxForScrollContainer]="verticalScroll"
[igxForContainerSize]="calcHeight" [igxForItemSize]="renderedRowHeight" [igxForTrackBy]="trackChanges"
#verticalScrollContainer (chunkPreload)="dataLoading($event)" (dataChanging)="dataRebinding($event)" (dataChanged)="dataRebound($event)">
@@ -73,16 +87,16 @@
-
-
+
-
-
+
diff --git a/projects/igniteui-angular/src/lib/grids/hierarchical-grid/hierarchical-grid.component.ts b/projects/igniteui-angular/src/lib/grids/hierarchical-grid/hierarchical-grid.component.ts
index 2ce0f166cb2..988fa60ec80 100644
--- a/projects/igniteui-angular/src/lib/grids/hierarchical-grid/hierarchical-grid.component.ts
+++ b/projects/igniteui-angular/src/lib/grids/hierarchical-grid/hierarchical-grid.component.ts
@@ -50,7 +50,7 @@ import { IgxGridValidationService } from '../grid/grid-validation.service';
import { IgxGridHierarchicalPipe, IgxGridHierarchicalPagingPipe } from './hierarchical-grid.pipes';
import { IgxSummaryDataPipe } from '../summaries/grid-root-summary.pipe';
import { IgxGridTransactionPipe, IgxHasVisibleColumnsPipe, IgxGridRowPinningPipe, IgxGridAddRowPipe, IgxGridRowClassesPipe, IgxGridRowStylesPipe, IgxStringReplacePipe } from '../common/pipes';
-import { IgxGridSortingPipe, IgxGridFilteringPipe } from '../grid/grid.pipes';
+import { IgxGridSortingPipe, IgxGridFilteringPipe, IgxGridCellMergePipe } from '../grid/grid.pipes';
import { IgxGridColumnResizerComponent } from '../resizing/resizer.component';
import { IgxRowEditTabStopDirective } from '../grid.rowEdit.directive';
import { IgxIconComponent } from '../../icon/icon.component';
@@ -68,6 +68,7 @@ import { IgxGridHeaderRowComponent } from '../headers/grid-header-row.component'
import { IgxActionStripToken } from '../../action-strip/token';
import { flatten } from '../../core/utils';
import { IFilteringExpressionsTree } from '../../data-operations/filtering-expressions-tree';
+import { IgxScrollInertiaDirective } from '../../directives/scroll-inertia/scroll_inertia.directive';
let NEXT_ID = 0;
@@ -350,7 +351,9 @@ export class IgxChildGridRowComponent implements AfterViewInit, OnInit {
IgxSummaryDataPipe,
IgxGridHierarchicalPipe,
IgxGridHierarchicalPagingPipe,
- IgxStringReplacePipe
+ IgxStringReplacePipe,
+ IgxGridCellMergePipe,
+ IgxScrollInertiaDirective
],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
@@ -942,7 +945,7 @@ export class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirecti
/**
* @hidden
*/
- public isChildGridRecord(record: any): boolean {
+ public override isChildGridRecord(record: any): boolean {
// Can be null when there is defined layout but no child data was found
return record?.childGridsData !== undefined;
}
@@ -986,13 +989,14 @@ export class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirecti
}
} else {
return {
- $implicit: this.isGhostRecord(rowData) ? rowData.recordRef : rowData,
+ $implicit: this.isGhostRecord(rowData) || this.isRecordMerged(rowData) ? rowData.recordRef : rowData,
templateID: {
type: 'dataRow',
id: null
},
index: this.getDataViewIndex(rowIndex, pinned),
- disabled: this.isGhostRecord(rowData)
+ disabled: this.isGhostRecord(rowData),
+ metaData: this.isRecordMerged(rowData) ? rowData : null
};
}
}
diff --git a/projects/igniteui-angular/src/lib/grids/hierarchical-grid/hierarchical-row.component.html b/projects/igniteui-angular/src/lib/grids/hierarchical-grid/hierarchical-row.component.html
index 131773bd307..eb204fb12ef 100644
--- a/projects/igniteui-angular/src/lib/grids/hierarchical-grid/hierarchical-row.component.html
+++ b/projects/igniteui-angular/src/lib/grids/hierarchical-grid/hierarchical-row.component.html
@@ -54,32 +54,19 @@
}
-
-
+ @if (this.hasMergedCells) {
+ 1 ? getRowHeight() : null"
+ class="igx-grid__mrl-block"
+ [style.visibility]="this.metaData?.cellMergeMeta.get(col.field)?.root ? 'hidden' : 'visible'"
+ [ngStyle]="{
+ 'grid-template-rows': this.metaData?.cellMergeMeta.get(col.field)?.rowSpan > 1 ? this.getMergeCellSpan(col) : null
+ }">
+
+
+ }
+ @else {
+
+ }
@if (pinnedEndColumns.length > 0) {
@@ -127,8 +114,42 @@
[cellValidationErrorTemplate]="col.errorTemplate"
[lastSearchInfo]="grid.lastSearchInfo"
[cellSelectionMode]="grid.cellSelection"
- [displayPinnedChip]="shouldDisplayPinnedChip(col.visibleIndex)">
+ [displayPinnedChip]="shouldDisplayPinnedChip(col)">
}
+
+
+ 1"
+ [isMerged]="metaData?.cellMergeMeta.get(col.field)?.rowSpan > 1"
+ [isPlaceholder]="!!this.metaData?.cellMergeMeta.get(col.field)?.root"
+ [class.igx-grid__td--merged-selected]="isSelectionRoot(col)"
+ [class.igx-grid__td--merged-hovered]="isHoveredRoot(col)"
+ class="igx-grid__td igx-grid__td--fw"
+ [class.igx-grid__td--edited]="key | transactionState:col.field:grid.rowEditable:grid.transactions:grid.pipeTrigger:grid.gridAPI.crudService.cell:grid.gridAPI.crudService.row"
+
+ [class.igx-grid__td--number]="col.dataType === 'number' || col.dataType === 'percent' || col.dataType === 'currency'"
+ [class.igx-grid__td--bool]="col.dataType === 'boolean'"
+ [ngClass]="col.cellClasses | igxCellStyleClasses:data[col.field]:data:col.field:viewIndex:grid.pipeTrigger"
+ [ngStyle]="col.cellStyles | igxCellStyles:data[col.field]:data:col.field:viewIndex:grid.pipeTrigger"
+ [editMode]="col.editable && this.grid.crudService.targetInEdit(index, col.index)"
+ [column]="col"
+ [formatter]="col.formatter"
+ [intRow]="this"
+ [active]="isCellActive(col.visibleIndex)"
+ [rowData]="data"
+ [style.min-width]="col.resolvedWidth"
+ [style.max-width]="col.resolvedWidth"
+ [style.flex-basis]="col.resolvedWidth"
+ [width]="col.getCellWidth()"
+ [visibleColumnIndex]="col.visibleIndex"
+ [value]="data | dataMapper:col.field:grid.pipeTrigger:data[col.field]:col.hasNestedPath"
+ [cellTemplate]="col.bodyTemplate"
+ [cellValidationErrorTemplate]="col.errorTemplate"
+ [lastSearchInfo]="grid.lastSearchInfo"
+ [cellSelectionMode]="grid.cellSelection"
+ [displayPinnedChip]="shouldDisplayPinnedChip(col)">
+
+
diff --git a/projects/igniteui-angular/src/lib/grids/pivot-grid/pivot-grid.component.html b/projects/igniteui-angular/src/lib/grids/pivot-grid/pivot-grid.component.html
index 6f71cf31802..558cf1c4721 100644
--- a/projects/igniteui-angular/src/lib/grids/pivot-grid/pivot-grid.component.html
+++ b/projects/igniteui-angular/src/lib/grids/pivot-grid/pivot-grid.component.html
@@ -52,7 +52,7 @@
diff --git a/projects/igniteui-angular/src/lib/grids/pivot-grid/pivot-row.component.html b/projects/igniteui-angular/src/lib/grids/pivot-grid/pivot-row.component.html
index 39d6a48bd63..a6a93da2e92 100644
--- a/projects/igniteui-angular/src/lib/grids/pivot-grid/pivot-row.component.html
+++ b/projects/igniteui-angular/src/lib/grids/pivot-grid/pivot-row.component.html
@@ -16,7 +16,7 @@
[style.flex-basis]="col.resolvedWidth" [width]="col.getCellWidth()" [visibleColumnIndex]="col.visibleIndex"
[value]="pivotAggregationData[col.field] | dataMapper:col.field:grid.pipeTrigger:pivotAggregationData[col.field]:col.hasNestedPath"
[cellTemplate]="col.bodyTemplate" [lastSearchInfo]="grid.lastSearchInfo"
- [cellSelectionMode]="grid.cellSelection" [displayPinnedChip]="shouldDisplayPinnedChip(col.visibleIndex)"
+ [cellSelectionMode]="grid.cellSelection" [displayPinnedChip]="shouldDisplayPinnedChip(col)"
(pointerdown)="grid.navigation.focusOutRowHeader($event)">
diff --git a/projects/igniteui-angular/src/lib/grids/row.directive.ts b/projects/igniteui-angular/src/lib/grids/row.directive.ts
index 922e0b14b90..f895f59545a 100644
--- a/projects/igniteui-angular/src/lib/grids/row.directive.ts
+++ b/projects/igniteui-angular/src/lib/grids/row.directive.ts
@@ -45,6 +45,12 @@ export class IgxRowDirective implements DoCheck, AfterViewInit, OnDestroy {
@HostBinding('attr.role')
public role = 'row';
+ /**
+ * @hidden
+ */
+ @Input()
+ public metaData: any;
+
/**
* The data passed to the row component.
*
@@ -117,6 +123,10 @@ export class IgxRowDirective implements DoCheck, AfterViewInit, OnDestroy {
return this.grid.isRecordPinned(this.data);
}
+ public get hasMergedCells(): boolean {
+ return this.grid.columnsToMerge.length > 0;
+ }
+
/**
* Gets the expanded state of the row.
* ```typescript
@@ -401,6 +411,14 @@ export class IgxRowDirective implements DoCheck, AfterViewInit, OnDestroy {
*/
@HostListener('click', ['$event'])
public onClick(event: MouseEvent) {
+ if (this.hasMergedCells && this.metaData?.cellMergeMeta) {
+ const targetRowIndex = this.grid.navigation.activeNode.row;
+ if (targetRowIndex != this.index) {
+ const row = this.grid.rowList.toArray().find(x => x.index === targetRowIndex);
+ row.onClick(event);
+ return;
+ }
+ }
this.grid.rowClick.emit({
row: this,
event
@@ -445,6 +463,7 @@ export class IgxRowDirective implements DoCheck, AfterViewInit, OnDestroy {
if (this.grid.actionStrip) {
this.grid.actionStrip.show(this);
}
+ this.grid.hoverIndex = this.index;
}
/**
@@ -456,6 +475,7 @@ export class IgxRowDirective implements DoCheck, AfterViewInit, OnDestroy {
if (this.grid.actionStrip && this.grid.actionStrip.hideOnRowLeave) {
this.grid.actionStrip.hide();
}
+ this.grid.hoverIndex = null;
}
/**
@@ -526,6 +546,12 @@ export class IgxRowDirective implements DoCheck, AfterViewInit, OnDestroy {
public isCellActive(visibleColumnIndex) {
const node = this.grid.navigation.activeNode;
+ const field = this.grid.visibleColumns[visibleColumnIndex]?.field;
+ const rowSpan = this.metaData?.cellMergeMeta?.get(field)?.rowSpan;
+ if (rowSpan > 1) {
+ return node ? (node.row >= this.index && node.row < this.index + rowSpan)
+ && node.column === visibleColumnIndex : false;
+ }
return node ? node.row === this.index && node.column === visibleColumnIndex : false;
}
@@ -574,8 +600,8 @@ export class IgxRowDirective implements DoCheck, AfterViewInit, OnDestroy {
/**
* @hidden
*/
- public shouldDisplayPinnedChip(visibleColumnIndex: number): boolean {
- return this.pinned && this.disabled && visibleColumnIndex === 0;
+ public shouldDisplayPinnedChip(col: ColumnType): boolean {
+ return this.pinned && this.disabled && col.visibleIndex === 0 && !this.metaData?.cellMergeMeta?.get(col.field)?.root;
}
/**
@@ -606,6 +632,65 @@ export class IgxRowDirective implements DoCheck, AfterViewInit, OnDestroy {
this.addAnimationEnd.emit(this);
}
+ protected getMergeCellSpan(col: ColumnType) {
+ const rowCount = this.metaData.cellMergeMeta.get(col.field).rowSpan;
+ let sizeSpans = "";
+ const isPinned = this.pinned && !this.disabled;
+ const indexInData = this.grid.isRowPinningToTop && !isPinned ? this.index - this.grid.pinnedRecordsCount : this.index;
+ for (let index = indexInData; index < indexInData + rowCount; index++) {
+ const size = this.grid.verticalScrollContainer.getSizeAt(index);
+ sizeSpans += size + 'px ';
+ }
+ return `${sizeSpans}`;
+ }
+
+ protected isSelectionRoot(col: ColumnType) {
+ const mergeMeta = this.metaData?.cellMergeMeta;
+ const rowCount = mergeMeta?.get(col.field)?.rowSpan;
+ if (mergeMeta && rowCount > 1) {
+ const isPinned = this.pinned && !this.disabled;
+ const indexInData = this.grid.isRowPinningToTop && !isPinned ? this.index - this.grid.pinnedRecordsCount : this.index;
+ const range = isPinned ? this.grid.pinnedDataView.slice(indexInData, indexInData + rowCount) : this.grid.verticalScrollContainer.igxForOf.slice(indexInData, indexInData + rowCount);
+ const inRange = range.filter(x => this.selectionService.isRowSelected(this.extractRecordKey(x))).length > 0;
+ return inRange;
+ }
+ return false;
+ }
+
+ protected isHoveredRoot(col: ColumnType) {
+ const mergeMeta = this.metaData?.cellMergeMeta;
+ const rowCount = mergeMeta?.get(col.field)?.rowSpan;
+ if (mergeMeta && rowCount > 1 && this.grid.hoverIndex !== null && this.grid.hoverIndex !== undefined) {
+ const indexInData = this.index;
+ const hoveredIndex = this.grid.hoverIndex;
+ return indexInData <= hoveredIndex && indexInData + rowCount > hoveredIndex;
+ }
+ return false;
+ }
+
+ protected extractRecordKey(rec: any) {
+ let recData = rec;
+ if (this.grid.isRecordMerged(recData)) {
+ recData = rec.recordRef;
+ }
+
+ if(this.grid.isTreeRow && this.grid.isTreeRow(recData)){
+ recData = recData.data;
+ }
+ return this.grid.primaryKey ? recData[this.grid.primaryKey] : recData;
+ }
+
+ protected getRowHeight() {
+ const isPinned = this.pinned && !this.disabled;
+ const indexInData = this.grid.isRowPinningToTop && !isPinned ? this.index - this.grid.pinnedRecordsCount : this.index;
+ if ((this.grid as any)._cdrRequests) {
+ // recalc size if repaint is requested.
+ this.grid.verticalScrollContainer.recalcUpdateSizes();
+ }
+ const size = this.grid.verticalScrollContainer.getSizeAt(indexInData) - 1;
+ return size || this.grid.rowHeight;
+ }
+
/**
* @hidden
*/
diff --git a/projects/igniteui-angular/src/lib/grids/selection/selection.service.ts b/projects/igniteui-angular/src/lib/grids/selection/selection.service.ts
index e97cc8a0f2a..0610c491e63 100644
--- a/projects/igniteui-angular/src/lib/grids/selection/selection.service.ts
+++ b/projects/igniteui-angular/src/lib/grids/selection/selection.service.ts
@@ -35,6 +35,11 @@ export class IgxGridSelectionService {
*/
public selectedRowsChange = new Subject
();
+ /**
+ * @hidden @internal
+ */
+ public selectedRangeChange = new Subject>>();
+
/**
* Toggled when a pointerdown event is triggered inside the grid body (cells).
* When `false` the drag select behavior is disabled.
@@ -355,6 +360,8 @@ export class IgxGridSelectionService {
}
}
}
+
+ this.selectedRangeChange.next(collection);
}
public dragSelect(node: ISelectionNode, state: SelectionState): void {
diff --git a/projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid-row.component.html b/projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid-row.component.html
index f1143950558..b526f039ca9 100644
--- a/projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid-row.component.html
+++ b/projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid-row.component.html
@@ -23,66 +23,19 @@
}
-
-
-
-
-
-
-
-
-
+ @if (this.hasMergedCells) {
+ 1 ? getRowHeight() : null"
+ class="igx-grid__mrl-block"
+ [style.visibility]="this.metaData?.cellMergeMeta.get(col.field)?.root ? 'hidden' : 'visible'"
+ [ngStyle]="{
+ 'grid-template-rows': this.metaData?.cellMergeMeta.get(col.field)?.rowSpan > 1 ? this.getMergeCellSpan(col) : null
+ }">
+
+
+ }
+ @else {
+
+ }
@if (pinnedEndColumns.length > 0) {
@@ -106,69 +59,95 @@
@for (col of columns | igxNotGrouped; track trackPinnedColumn(col)) {
-
-
-
-
-
-
-
-
-
+ @if (this.hasMergedCells) {
+ 1 ? getRowHeight() : null"
+ class="igx-grid__mrl-block"
+ [style.visibility]="this.metaData?.cellMergeMeta.get(col.field)?.root ? 'hidden' : 'visible'"
+ [ngStyle]="{
+ 'grid-template-rows': this.metaData?.cellMergeMeta.get(col.field)?.rowSpan > 1 ? this.getMergeCellSpan(col) : null
+ }">
+
+
+ }
+ @else {
+
+ }
}
+
+
+ 1"
+ [class.igx-grid__td--merged-selected]="isSelectionRoot(col)"
+ [class.igx-grid__td--merged-hovered]="isHoveredRoot(col)"
+ [class.igx-grid__td--pinned]="col.pinned"
+ [isMerged]="metaData?.cellMergeMeta.get(col.field)?.rowSpan > 1"
+ [isPlaceholder]="!!this.metaData?.cellMergeMeta.get(col.field)?.root"
+ class="igx-grid__td igx-grid__td--fw"
+ [class.igx-grid__td--edited]="key | transactionState:col.field:grid.rowEditable:grid.transactions:grid.pipeTrigger:grid.gridAPI.crudService.cell:grid.gridAPI.crudService.row"
+ [class.igx-grid__td--number]="col.dataType === 'number' || col.dataType === 'percent' || col.dataType === 'currency'"
+ [ngClass]="col.cellClasses | igxCellStyleClasses:data[col.field]:data:col.field:viewIndex:grid.pipeTrigger"
+ [ngStyle]="col.cellStyles | igxCellStyles:data[col.field]:data:col.field:viewIndex:grid.pipeTrigger"
+ [editMode]="col.editable && this.grid.crudService.targetInEdit(index, col.index)"
+ [column]="col"
+ [formatter]="col.formatter"
+ [intRow]="this"
+ [firstPinned]="col.isFirstPinned"
+ [lastPinned]="col.isLastPinned"
+ [rowData]="data"
+ [style.min-width]="col.resolvedWidth"
+ [style.max-width]="col.resolvedWidth"
+ [style.flex-basis]="col.resolvedWidth"
+ [style.left]="col.rightPinnedOffset"
+ [width]="col.getCellWidth()"
+ [visibleColumnIndex]="col.visibleIndex"
+ [value]="data | dataMapper:col.field:grid.pipeTrigger:data[col.field]:col.hasNestedPath"
+ [cellTemplate]="col.bodyTemplate"
+ [cellValidationErrorTemplate]="col.errorTemplate"
+ [lastSearchInfo]="grid.lastSearchInfo"
+ [active]="isCellActive(col.visibleIndex)"
+ [cellSelectionMode]="grid.cellSelection"
+ [displayPinnedChip]="shouldDisplayPinnedChip(col)"
+ #treeCell>
+
+
+
+ 1"
+ [class.igx-grid__td--merged-selected]="isSelectionRoot(col)"
+ [class.igx-grid__td--merged-hovered]="isHoveredRoot(col)"
+ [isMerged]="metaData?.cellMergeMeta.get(col.field)?.rowSpan > 1"
+ [isPlaceholder]="!!this.metaData?.cellMergeMeta.get(col.field)?.root"
+ [class.igx-grid__td--pinned]="col.pinned"
+ [class.igx-grid__td--edited]="key | transactionState:col.field:grid.rowEditable:grid.transactions:grid.pipeTrigger:grid.gridAPI.crudService.cell:grid.gridAPI.crudService.row"
+ [class.igx-grid__td--number]="(col.dataType === 'number' || col.dataType === 'percent' || col.dataType === 'currency') && col.visibleIndex !== 0"
+ [ngClass]="col.cellClasses | igxCellStyleClasses:data[col.field]:data:col.field:viewIndex:grid.pipeTrigger"
+ [ngStyle]="col.cellStyles | igxCellStyles:data[col.field]:data:col.field:viewIndex:grid.pipeTrigger"
+ [level]="treeRow.level"
+ [expanded]="expanded"
+ [showIndicator]="showIndicator"
+ [editMode]="col.editable && this.grid.crudService.targetInEdit(index, col.index)"
+ [column]="col"
+ [formatter]="col.formatter"
+ [intRow]="this"
+ [lastPinned]="col.isLastPinned"
+ [rowData]="data"
+ [style.min-width]="col.resolvedWidth"
+ [style.max-width]="col.resolvedWidth"
+ [style.flex-basis]="col.resolvedWidth"
+ [style.left]="col.rightPinnedOffset"
+ [width]="col.getCellWidth()"
+ [visibleColumnIndex]="col.visibleIndex"
+ [value]="data | dataMapper:col.field:grid.pipeTrigger:data[col.field]:col.hasNestedPath"
+ [isLoading]="isLoading"
+ [cellTemplate]="col.bodyTemplate"
+ [cellValidationErrorTemplate]="col.errorTemplate"
+ [lastSearchInfo]="grid.lastSearchInfo"
+ [active]="isCellActive(col.visibleIndex)"
+ [cellSelectionMode]="grid.cellSelection"
+ [displayPinnedChip]="shouldDisplayPinnedChip(col)"
+ #treeCell>
+
+
+
diff --git a/projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid.component.html b/projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid.component.html
index c68e5c6d5cb..33c79416332 100644
--- a/projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid.component.html
+++ b/projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid.component.html
@@ -30,6 +30,20 @@
[igxColumnMovingDrop]="headerContainer" [attr.droppable]="true" id="left"
class="igx-grid__scroll-on-drag-pinned" [style.left.px]="pinnedStartWidth">
}
+
+ @if (mergedDataInView && mergedDataInView.length > 0) {
+
+ @for (rowData of mergedDataInView; track rowData.record;) {
+
+
+ }
+
+ }
+
@if (data
| treeGridTransaction:pipeTrigger
@@ -38,7 +52,8 @@
| treeGridAddRow:true:pipeTrigger
| gridRowPinning:id:true:pipeTrigger
| treeGridFiltering:filteringExpressionsTree:filterStrategy:advancedFilteringExpressionsTree:pipeTrigger:filteringPipeTrigger:true
- | treeGridSorting:sortingExpressions:treeGroupArea?.expressions:sortStrategy:pipeTrigger:true; as pinnedData
+ | treeGridSorting:sortingExpressions:treeGroupArea?.expressions:sortStrategy:pipeTrigger:true
+ | gridCellMerge:columnsToMerge:cellMergeMode:mergeStrategy:activeRowIndexes:true:pipeTrigger; as pinnedData
) {
@if (pinnedData.length > 0) {
@@ -76,15 +92,15 @@
-
-
+
-
-
+
diff --git a/projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid.component.ts b/projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid.component.ts
index 30f413e00e4..4820bca8339 100644
--- a/projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid.component.ts
+++ b/projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid.component.ts
@@ -82,6 +82,9 @@ import { IgxGridDragSelectDirective } from '../selection/drag-select.directive';
import { IgxGridBodyDirective } from '../grid.common';
import { IgxGridHeaderRowComponent } from '../headers/grid-header-row.component';
import { IgxTextHighlightService } from '../../directives/text-highlight/text-highlight.service';
+import { IgxGridCellMergePipe } from '../grid/grid.pipes';
+import { DefaultTreeGridMergeStrategy, IGridMergeStrategy } from '../../data-operations/merge-strategy';
+import { IgxScrollInertiaDirective } from '../../directives/scroll-inertia/scroll_inertia.directive';
let NEXT_ID = 0;
@@ -168,7 +171,9 @@ let NEXT_ID = 0;
IgxTreeGridSummaryPipe,
IgxTreeGridNormalizeRecordsPipe,
IgxTreeGridAddRowPipe,
- IgxStringReplacePipe
+ IgxStringReplacePipe,
+ IgxGridCellMergePipe,
+ IgxScrollInertiaDirective
],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
@@ -348,6 +353,7 @@ export class IgxTreeGridComponent extends IgxGridBaseDirective implements GridTy
protected override _filterStrategy = new TreeGridFilteringStrategy();
protected override _transactions: HierarchicalTransactionService
;
+ protected override _mergeStrategy: IGridMergeStrategy = new DefaultTreeGridMergeStrategy();
private _data;
private _rowLoadingIndicatorTemplate: TemplateRef;
private _expansionDepth = Infinity;
@@ -699,13 +705,14 @@ export class IgxTreeGridComponent extends IgxGridBaseDirective implements GridTy
*/
public getContext(rowData: any, rowIndex: number, pinned?: boolean): any {
return {
- $implicit: this.isGhostRecord(rowData) ? rowData.recordRef : rowData,
+ $implicit: this.isGhostRecord(rowData) || this.isRecordMerged(rowData) ? rowData.recordRef : rowData,
index: this.getDataViewIndex(rowIndex, pinned),
templateID: {
type: this.isSummaryRow(rowData) ? 'summaryRow' : 'dataRow',
id: null
},
- disabled: this.isGhostRecord(rowData) ? rowData.recordRef.isFilteredOutParent === undefined : false
+ disabled: this.isGhostRecord(rowData) ? rowData.recordRef.isFilteredOutParent === undefined : false,
+ metaData: this.isRecordMerged(rowData) ? rowData : null
};
}
diff --git a/projects/igniteui-angular/src/lib/query-builder/query-builder.component.spec.ts b/projects/igniteui-angular/src/lib/query-builder/query-builder.component.spec.ts
index 8a1e2af8635..38f0578a17e 100644
--- a/projects/igniteui-angular/src/lib/query-builder/query-builder.component.spec.ts
+++ b/projects/igniteui-angular/src/lib/query-builder/query-builder.component.spec.ts
@@ -773,7 +773,7 @@ describe('IgxQueryBuilder', () => {
// Verify value input placeholder
const input = QueryBuilderFunctions.getQueryBuilderValueInput(fix).querySelector('input');
// Verify value input placeholder
- expect(input.placeholder).toEqual('Select date');
+ expect(input.placeholder).toEqual(queryBuilder.resourceStrings.igx_query_builder_date_placeholder);
QueryBuilderFunctions.verifyEditModeExpressionInputStates(fix, true, true, false, true); // Third input should be disabled for unary operators.
// Commit the populated expression.
diff --git a/projects/igniteui-angular/src/lib/simple-combo/simple-combo.component.spec.ts b/projects/igniteui-angular/src/lib/simple-combo/simple-combo.component.spec.ts
index 24d751b251e..0083516d4e1 100644
--- a/projects/igniteui-angular/src/lib/simple-combo/simple-combo.component.spec.ts
+++ b/projects/igniteui-angular/src/lib/simple-combo/simple-combo.component.spec.ts
@@ -532,6 +532,7 @@ describe('IgxSimpleCombo', () => {
});
it('should delete the selection on destroy', () => {
+ jasmine.getEnv().allowRespy(true);
const selectionService = new IgxSelectionAPIService();
const comboClearSpy = spyOn(mockComboService, 'clear');
const selectionDeleteSpy = spyOn(selectionService, 'delete');
@@ -548,6 +549,7 @@ describe('IgxSimpleCombo', () => {
combo.ngOnDestroy();
expect(comboClearSpy).toHaveBeenCalled();
expect(selectionDeleteSpy).toHaveBeenCalled();
+ jasmine.getEnv().allowRespy(false);
});
});
diff --git a/projects/igniteui-angular/src/lib/test-utils/grid-functions.spec.ts b/projects/igniteui-angular/src/lib/test-utils/grid-functions.spec.ts
index 8fe08283d36..aec6b388b6c 100644
--- a/projects/igniteui-angular/src/lib/test-utils/grid-functions.spec.ts
+++ b/projects/igniteui-angular/src/lib/test-utils/grid-functions.spec.ts
@@ -19,7 +19,7 @@ import { IgxGridCellComponent } from '../grids/cell.component';
import { IgxPivotRowComponent } from '../grids/pivot-grid/pivot-row.component';
import { SortingDirection } from '../data-operations/sorting-strategy';
import { IgxRowDirective } from '../grids/row.directive';
-import { CellType, GridType, RowType } from '../grids/common/grid.interface';
+import { CellType, ColumnType, GridType, RowType } from '../grids/common/grid.interface';
import { IgxTreeNodeComponent } from '../tree/tree-node/tree-node.component';
import { IgxColumnComponent } from '../grids/columns/column.component';
import { IgxPivotGridComponent } from '../grids/pivot-grid/pivot-grid.component';
@@ -104,6 +104,21 @@ export const SAFE_DISPOSE_COMP_ID = 'root';
export class GridFunctions {
+ public static verifyColumnMergedState(grid: GridType, col: ColumnType, state: any[]) {
+ const dataRows = grid.dataRowList.toArray();
+ let totalSpan = 0;
+ for (let index = 0; index < dataRows.length - 1; index++) {
+ const row = dataRows[index];
+ const cellValue = row.cells.toArray().find(x => x.column === col).value;
+ const rowSpan = row.metaData?.cellMergeMeta.get(col.field)?.rowSpan || 1;
+ const currState = state[index - totalSpan];
+ expect(cellValue).toEqual(currState.value);
+ expect(rowSpan).toEqual(currState.span);
+ totalSpan += (rowSpan - 1);
+ index += (rowSpan - 1);
+ }
+ }
+
public static getRows(fix): DebugElement[] {
const rows: DebugElement[] = fix.debugElement.queryAll(By.css(ROW_CSS_CLASS));
rows.shift();
diff --git a/projects/igniteui-angular/src/lib/test-utils/ui-interactions.spec.ts b/projects/igniteui-angular/src/lib/test-utils/ui-interactions.spec.ts
index 0b72f5a3c7b..eb470e8137f 100644
--- a/projects/igniteui-angular/src/lib/test-utils/ui-interactions.spec.ts
+++ b/projects/igniteui-angular/src/lib/test-utils/ui-interactions.spec.ts
@@ -345,6 +345,7 @@ export class UIInteractions {
cancelable: true,
pointerId: 1,
buttons: 1,
+ clientY: element.getBoundingClientRect().y,
button: eventName === 'pointerenter' ? -1 : 0,
shiftKey,
ctrlKey
diff --git a/projects/igniteui-angular/src/public_api.ts b/projects/igniteui-angular/src/public_api.ts
index 0e844761ba2..d4a70104a95 100644
--- a/projects/igniteui-angular/src/public_api.ts
+++ b/projects/igniteui-angular/src/public_api.ts
@@ -52,6 +52,7 @@ export * from './lib/data-operations/filtering-expressions-tree';
export * from './lib/data-operations/filtering-condition';
export * from './lib/data-operations/filtering-state.interface';
export * from './lib/data-operations/filtering-strategy';
+export * from './lib/data-operations/merge-strategy';
export { ExpressionsTreeUtil } from './lib/data-operations/expressions-tree-util';
export * from './lib/data-operations/groupby-expand-state.interface';
export * from './lib/data-operations/groupby-record.interface';
diff --git a/src/app/app.component.ts b/src/app/app.component.ts
index c4637552c6b..c3d2d4d104b 100644
--- a/src/app/app.component.ts
+++ b/src/app/app.component.ts
@@ -211,6 +211,11 @@ export class AppComponent implements OnInit {
icon: 'view_column',
name: 'Grid Cell Editing'
},
+ {
+ link: '/gridCellMerging',
+ icon: 'view_column',
+ name: 'Grid Cell Merging'
+ },
{
link: '/gridClipboard',
icon: 'insert_comment',
diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts
index 992516f1574..5234d396dc1 100644
--- a/src/app/app.routes.ts
+++ b/src/app/app.routes.ts
@@ -51,6 +51,7 @@ import { TimePickerSampleComponent } from './time-picker/time-picker.sample';
import { ToastShowcaseSampleComponent } from './toast-showcase/toast-showcase.sample';
import { VirtualForSampleComponent } from './virtual-for-directive/virtual-for.sample';
import { GridCellEditingComponent } from './grid-cellEditing/grid-cellEditing.component';
+import { GridCellMergingComponent } from './grid-cellMerging/grid-cellMerging.component';
import { GridSampleComponent } from './grid/grid.sample';
import { GridColumnMovingSampleComponent } from './grid-column-moving/grid-column-moving.sample';
import { GridColumnSelectionSampleComponent } from './grid-column-selection/grid-column-selection.sample';
@@ -419,6 +420,10 @@ export const appRoutes: Routes = [
path: 'gridCellEditing',
component: GridCellEditingComponent
},
+ {
+ path: 'gridCellMerging',
+ component: GridCellMergingComponent
+ },
{
path: 'gridConditionalCellStyling',
component: GridCellStylingSampleComponent
diff --git a/src/app/grid-cellMerging/grid-cellMerging.component.html b/src/app/grid-cellMerging/grid-cellMerging.component.html
new file mode 100644
index 00000000000..73233eb9c1c
--- /dev/null
+++ b/src/app/grid-cellMerging/grid-cellMerging.component.html
@@ -0,0 +1,122 @@
+Grid with cell merge
+
+
+
+
+ @if (searchText.length === 0) {
+ search
+ }
+ @if (searchText.length > 0) {
+ clear
+ }
+
+
+
+
+ @if (searchText.length > 0) {
+
+ @if (grid.lastSearchInfo) {
+
+ @if (grid.lastSearchInfo.matchInfoCache.length > 0) {
+
+ {{ grid.lastSearchInfo.activeMatchIndex + 1 }} of {{ grid.lastSearchInfo.matchInfoCache.length }}
+ results
+
+ }
+ @if (grid.lastSearchInfo.matchInfoCache.length === 0) {
+
+ No results
+
+ }
+
+ }
+
+
+ navigate_before
+
+
+ navigate_next
+
+
+
+ }
+
+
+
+
+
+ Value: {{val}},Index: {{cell.row.index}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Hierarchical grid with cell merge
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Tree grid with cell merge
+Toggle strategy
+
+
+
+
+
+
+
diff --git a/src/app/grid-cellMerging/grid-cellMerging.component.scss b/src/app/grid-cellMerging/grid-cellMerging.component.scss
new file mode 100644
index 00000000000..9f4f5d20867
--- /dev/null
+++ b/src/app/grid-cellMerging/grid-cellMerging.component.scss
@@ -0,0 +1,22 @@
+.sample-actions {
+ display: flex;
+ flex-wrap: wrap;
+ margin: 1rem 0;
+ gap: 0.5rem;
+}
+
+.density-chooser {
+ margin-bottom: 1rem;
+
+ igx-buttongroup {
+ display: block;
+ width: 500px;
+ }
+}
+
+.grid-size {
+ --ig-size: var(--ig-size-small);
+}
+.searchInput{
+ width: 800px;
+}
diff --git a/src/app/grid-cellMerging/grid-cellMerging.component.ts b/src/app/grid-cellMerging/grid-cellMerging.component.ts
new file mode 100644
index 00000000000..3374c5e606f
--- /dev/null
+++ b/src/app/grid-cellMerging/grid-cellMerging.component.ts
@@ -0,0 +1,92 @@
+import { Component, HostBinding, ViewChild } from '@angular/core';
+import { FormsModule } from '@angular/forms';
+import {
+ DefaultTreeGridMergeStrategy,
+ IgxActionStripComponent,
+ IgxButtonDirective,
+ IgxCellTemplateDirective,
+ IgxColumnComponent,
+ IgxGridComponent,
+ IgxGridPinningActionsComponent,
+ IgxGridToolbarActionsComponent,
+ IgxGridToolbarComponent,
+ IgxGridToolbarExporterComponent,
+ IgxGridToolbarHidingComponent,
+ IgxGridToolbarPinningComponent,
+ IgxHierarchicalGridComponent,
+ IgxIconComponent,
+ IgxInputDirective,
+ IgxInputGroupComponent,
+ IgxPaginatorComponent,
+ IgxPrefixDirective,
+ IgxRowIslandComponent,
+ IgxSuffixDirective,
+ IgxTreeGridComponent
+} from 'igniteui-angular';
+import { HIERARCHICAL_DATA } from '../shared/hierarchicalData';
+
+import { data, dataWithoutPK } from '../shared/data';
+import { HIERARCHICAL_SAMPLE_DATA } from '../shared/sample-data';
+import { ByLevelTreeGridMergeStrategy } from 'igniteui-angular';
+import { INVOICE_DATA } from '../shared/invoiceData';
+
+@Component({
+ selector: 'app-grid-cellMerging',
+ templateUrl: 'grid-cellMerging.component.html',
+ styleUrl: 'grid-cellMerging.component.scss',
+ imports: [
+ FormsModule,
+ IgxColumnComponent,
+ IgxGridComponent,
+ IgxPaginatorComponent,
+ IgxActionStripComponent,
+ IgxGridPinningActionsComponent,
+ IgxGridToolbarComponent,
+ IgxGridToolbarActionsComponent,
+ IgxGridToolbarPinningComponent,
+ IgxGridToolbarHidingComponent,
+ IgxHierarchicalGridComponent,
+ IgxRowIslandComponent,
+ IgxTreeGridComponent,
+ IgxInputGroupComponent,
+ IgxPrefixDirective,
+ IgxSuffixDirective,
+ IgxIconComponent,
+ IgxInputDirective,
+ IgxCellTemplateDirective
+ ]
+})
+export class GridCellMergingComponent {
+ public hierarchicalData = HIERARCHICAL_DATA.concat(HIERARCHICAL_DATA).concat(HIERARCHICAL_DATA);
+ public treeData = HIERARCHICAL_SAMPLE_DATA;
+ public treeGridMergeStrategy = new ByLevelTreeGridMergeStrategy();
+ public alignBottom = { alignItems: "flex-end", paddingBottom: "12px"};
+ public alignTop= { alignItems: "flex-start", paddingTop: "12px" };
+ public searchText: string ='';
+ @ViewChild('grid1', { static: true }) public grid: IgxGridComponent;
+ public data = INVOICE_DATA;
+
+ public toggleStrategy() {
+ if (this.treeGridMergeStrategy instanceof ByLevelTreeGridMergeStrategy) {
+ this.treeGridMergeStrategy = new DefaultTreeGridMergeStrategy();
+ } else {
+ this.treeGridMergeStrategy = new ByLevelTreeGridMergeStrategy();
+ }
+ }
+
+ public searchKeyDown(ev) {
+ if (ev.key === 'Enter' || ev.key === 'ArrowDown' || ev.key === 'ArrowRight') {
+ ev.preventDefault();
+ this.grid.findNext(this.searchText, true, false);
+ } else if (ev.key === 'ArrowUp' || ev.key === 'ArrowLeft') {
+ ev.preventDefault();
+ this.grid.findPrev(this.searchText, true, false);
+ }
+ }
+
+ public clearSearch() {
+ this.searchText = '';
+ this.grid.clearSearch();
+ }
+}
+
diff --git a/src/app/shared/invoiceData.ts b/src/app/shared/invoiceData.ts
new file mode 100644
index 00000000000..051444c0009
--- /dev/null
+++ b/src/app/shared/invoiceData.ts
@@ -0,0 +1,8081 @@
+/* eslint-disable */
+
+export interface Invoice {
+ ID: number;
+ ShipAddress: string;
+ ShipCity: string;
+ ShipCountry: string;
+ ShipName: string;
+ ShipRegion: string;
+ ShipPostalCode: string;
+ CustomerID: string;
+ CustomerName: string;
+ Address: string;
+ City: string;
+ Region: string;
+ PostalCode: string;
+ Country: string;
+ Salesperson: string;
+ OrderID: number;
+ OrderDate: Date;
+ ShipperName: string;
+ ProductID: number;
+ ProductName: string;
+ UnitPrice: number;
+ Quantity: number;
+ Discontinued: boolean;
+ ExtendedPrice: number;
+ Freight: number;
+}
+
+export const INVOICE_DATA = [{
+ ShipAddress: "Obere Str. 57",
+ ShipCity: "Berlin",
+ ShipCountry: "Germany",
+ ShipName: "Alfred's Futterkiste",
+ ShipRegion: null,
+ ShipPostalCode: "12209",
+ CustomerID: "ALFKI",
+ CustomerName: "Alfreds Futterkiste",
+ Address: "Obere Str. 57",
+ City: "Berlin",
+ Region: null,
+ PostalCode: "12209",
+ Country: "Germany",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10692,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "United Package",
+ ProductID: 63,
+ ProductName: "Vegie-spread",
+ UnitPrice: 43.9000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 878.0000,
+ Freight: 61.0200
+}, {
+ ShipName: "Alfred's Futterkiste",
+ ShipCity: "Berlin",
+ ShipRegion: null,
+ ShipPostalCode: "12209",
+ ShipCountry: "Germany",
+ CustomerID: "ALFKI",
+ CustomerName: "Alfreds Futterkiste",
+ Address: "Obere Str. 57",
+ City: "Berlin",
+ Region: null,
+ PostalCode: "12209",
+ Country: "Germany",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10702,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 3,
+ ProductName: "Aniseed Syrup",
+ UnitPrice: 10.0000,
+ Quantity: 6,
+ Discontinued: false,
+ ExtendedPrice: 60.0000,
+ Freight: 23.9400
+}, {
+ ShipName: "Alfred's Futterkiste",
+ ShipAddress: "Obere Str. 57",
+ ShipCity: "Berlin",
+ ShipRegion: null,
+ ShipPostalCode: "12209",
+ ShipCountry: "Germany",
+ CustomerID: "ALFKI",
+ CustomerName: "Alfreds Futterkiste",
+ Address: "Obere Str. 57",
+ City: "Berlin",
+ Region: null,
+ PostalCode: "12209",
+ Country: "Germany",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10702,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 76,
+ ProductName: "Lakkalik\u00f6\u00f6ri",
+ UnitPrice: 18.0000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 270.0000,
+ Freight: 23.9400
+}, {
+ ShipName: "Alfred's Futterkiste",
+ ShipAddress: "Obere Str. 57",
+ ShipCity: "Berlin",
+ ShipRegion: null,
+ ShipPostalCode: "12209",
+ ShipCountry: "Germany",
+ CustomerID: "ALFKI",
+ CustomerName: "Alfreds Futterkiste",
+ Address: "Obere Str. 57",
+ City: "Berlin",
+ Region: null,
+ PostalCode: "12209",
+ Country: "Germany",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10835,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 59,
+ ProductName: "Raclette Courdavault",
+ UnitPrice: 55.0000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 825.0000,
+ Freight: 69.5300
+}, {
+ ShipName: "Alfred's Futterkiste",
+ ShipAddress: "Obere Str. 57",
+ ShipCity: "Berlin",
+ ShipRegion: null,
+ ShipPostalCode: "12209",
+ ShipCountry: "Germany",
+ CustomerID: "ALFKI",
+ CustomerName: "Alfreds Futterkiste",
+ Address: "Obere Str. 57",
+ City: "Berlin",
+ Region: null,
+ PostalCode: "12209",
+ Country: "Germany",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10952,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 28,
+ ProductName: "R\u00f6ssle Sauerkraut",
+ UnitPrice: 45.6000,
+ Quantity: 2,
+ Discontinued: true,
+ ExtendedPrice: 91.2000,
+ Freight: 40.4200
+}, {
+ ShipName: "Alfred's Futterkiste",
+ ShipAddress: "Obere Str. 57",
+ ShipCity: "Berlin",
+ ShipRegion: null,
+ ShipPostalCode: "12209",
+ ShipCountry: "Germany",
+ CustomerID: "ALFKI",
+ CustomerName: "Alfreds Futterkiste",
+ Address: "Obere Str. 57",
+ City: "Berlin",
+ Region: null,
+ PostalCode: "12209",
+ Country: "Germany",
+ Salesperson: "Janet Leverling",
+ OrderID: 11011,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 71,
+ ProductName: "Flotemysost",
+ UnitPrice: 21.5000,
+ Quantity: 20,
+ Discontinued: true,
+ ExtendedPrice: 430.0000,
+ Freight: 1.2100
+}, {
+ ShipName: "Alfred's Futterkiste",
+ ShipAddress: "Obere Str. 57",
+ ShipCity: "Berlin",
+ ShipRegion: null,
+ ShipPostalCode: "12209",
+ ShipCountry: "Germany",
+ CustomerID: "ALFKI",
+ CustomerName: "Alfreds Futterkiste",
+ Address: "Obere Str. 57",
+ City: "Berlin",
+ Region: null,
+ PostalCode: "12209",
+ Country: "Germany",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10952,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 6,
+ ProductName: "Grandma's Boysenberry Spread",
+ UnitPrice: 25.0000,
+ Quantity: 16,
+ Discontinued: true,
+ ExtendedPrice: 380.0000,
+ Freight: 40.4200
+}, {
+ ShipName: "Alfred's Futterkiste",
+ ShipAddress: "Obere Str. 57",
+ ShipCity: "Berlin",
+ ShipRegion: null,
+ ShipPostalCode: "12209",
+ ShipCountry: "Germany",
+ CustomerID: "ALFKI",
+ CustomerName: "Alfreds Futterkiste",
+ Address: "Obere Str. 57",
+ City: "Berlin",
+ Region: null,
+ PostalCode: "12209",
+ Country: "Germany",
+ Salesperson: "Janet Leverling",
+ OrderID: 11011,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 58,
+ ProductName: "Escargots de Bourgogne",
+ UnitPrice: 13.2500,
+ Quantity: 40,
+ Discontinued: true,
+ ExtendedPrice: 503.5000,
+ Freight: 1.2100
+}, {
+ ShipName: "Alfred's Futterkiste",
+ ShipAddress: "Obere Str. 57",
+ ShipCity: "Berlin",
+ ShipRegion: null,
+ ShipPostalCode: "12209",
+ ShipCountry: "Germany",
+ CustomerID: "ALFKI",
+ CustomerName: "Alfreds Futterkiste",
+ Address: "Obere Str. 57",
+ City: "Berlin",
+ Region: null,
+ PostalCode: "12209",
+ Country: "Germany",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10835,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 77,
+ ProductName: "Original Frankfurter gr\u00fcne So\u00dfe",
+ UnitPrice: 13.0000,
+ Quantity: 2,
+ Discontinued: true,
+ ExtendedPrice: 20.8000,
+ Freight: 69.5300
+}, {
+ ShipName: "Alfreds Futterkiste",
+ ShipAddress: "Obere Str. 57",
+ ShipCity: "Berlin",
+ ShipRegion: null,
+ ShipPostalCode: "12209",
+ ShipCountry: "Germany",
+ CustomerID: "ALFKI",
+ CustomerName: "Alfreds Futterkiste",
+ Address: "Obere Str. 57",
+ City: "Berlin",
+ Region: null,
+ PostalCode: "12209",
+ Country: "Germany",
+ Salesperson: "Michael Suyama",
+ OrderID: 10643,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 28,
+ ProductName: "R\u00f6ssle Sauerkraut",
+ UnitPrice: 45.6000,
+ Quantity: 15,
+ Discontinued: true,
+ ExtendedPrice: 513.0000,
+ Freight: 29.4600
+}, {
+ ShipName: "Alfreds Futterkiste",
+ ShipAddress: "Obere Str. 57",
+ ShipCity: "Berlin",
+ ShipRegion: null,
+ ShipPostalCode: "12209",
+ ShipCountry: "Germany",
+ CustomerID: "ALFKI",
+ CustomerName: "Alfreds Futterkiste",
+ Address: "Obere Str. 57",
+ City: "Berlin",
+ Region: null,
+ PostalCode: "12209",
+ Country: "Germany",
+ Salesperson: "Michael Suyama",
+ OrderID: 10643,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 39,
+ ProductName: "Chartreuse verte",
+ UnitPrice: 18.0000,
+ Quantity: 21,
+ Discontinued: true,
+ ExtendedPrice: 283.5000,
+ Freight: 29.4600
+}, {
+ ShipName: "Alfreds Futterkiste",
+ ShipAddress: "Obere Str. 57",
+ ShipCity: "Berlin",
+ ShipRegion: null,
+ ShipPostalCode: "12209",
+ ShipCountry: "Germany",
+ CustomerID: "ALFKI",
+ CustomerName: "Alfreds Futterkiste",
+ Address: "Obere Str. 57",
+ City: "Berlin",
+ Region: null,
+ PostalCode: "12209",
+ Country: "Germany",
+ Salesperson: "Michael Suyama",
+ OrderID: 10643,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 46,
+ ProductName: "Spegesild",
+ UnitPrice: 12.0000,
+ Quantity: 2,
+ Discontinued: true,
+ ExtendedPrice: 18.0000,
+ Freight: 29.4600
+}, {
+ ShipName: "Ana Trujillo Emparedados y helados",
+ ShipAddress: "Avda. de la Constituci\u00f3n 2222",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05021",
+ ShipCountry: "Mexico",
+ CustomerID: "ANATR",
+ CustomerName: "Ana Trujillo Emparedados y helados",
+ Address: "Avda. de la Constituci\u00f3n 2222",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05021",
+ Country: "Mexico",
+ Salesperson: "Robert King",
+ OrderID: 10308,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 69,
+ ProductName: "Gudbrandsdalsost",
+ UnitPrice: 28.8000,
+ Quantity: 1,
+ Discontinued: false,
+ ExtendedPrice: 28.8000,
+ Freight: 1.6100
+}, {
+ ShipName: "Ana Trujillo Emparedados y helados",
+ ShipAddress: "Avda. de la Constituci\u00f3n 2222",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05021",
+ ShipCountry: "Mexico",
+ CustomerID: "ANATR",
+ CustomerName: "Ana Trujillo Emparedados y helados",
+ Address: "Avda. de la Constituci\u00f3n 2222",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05021",
+ Country: "Mexico",
+ Salesperson: "Robert King",
+ OrderID: 10308,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 70,
+ ProductName: "Outback Lager",
+ UnitPrice: 12.0000,
+ Quantity: 5,
+ Discontinued: false,
+ ExtendedPrice: 60.0000,
+ Freight: 1.6100
+}, {
+ ShipName: "Ana Trujillo Emparedados y helados",
+ ShipAddress: "Avda. de la Constituci\u00f3n 2222",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05021",
+ ShipCountry: "Mexico",
+ CustomerID: "ANATR",
+ CustomerName: "Ana Trujillo Emparedados y helados",
+ Address: "Avda. de la Constituci\u00f3n 2222",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05021",
+ Country: "Mexico",
+ Salesperson: "Janet Leverling",
+ OrderID: 10625,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 14,
+ ProductName: "Tofu",
+ UnitPrice: 23.2500,
+ Quantity: 3,
+ Discontinued: false,
+ ExtendedPrice: 69.7500,
+ Freight: 43.9000
+}, {
+ ShipName: "Ana Trujillo Emparedados y helados",
+ ShipAddress: "Avda. de la Constituci\u00f3n 2222",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05021",
+ ShipCountry: "Mexico",
+ CustomerID: "ANATR",
+ CustomerName: "Ana Trujillo Emparedados y helados",
+ Address: "Avda. de la Constituci\u00f3n 2222",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05021",
+ Country: "Mexico",
+ Salesperson: "Janet Leverling",
+ OrderID: 10625,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 42,
+ ProductName: "Singaporean Hokkien Fried Mee",
+ UnitPrice: 14.0000,
+ Quantity: 5,
+ Discontinued: false,
+ ExtendedPrice: 70.0000,
+ Freight: 43.9000
+}, {
+ ShipName: "Ana Trujillo Emparedados y helados",
+ ShipAddress: "Avda. de la Constituci\u00f3n 2222",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05021",
+ ShipCountry: "Mexico",
+ CustomerID: "ANATR",
+ CustomerName: "Ana Trujillo Emparedados y helados",
+ Address: "Avda. de la Constituci\u00f3n 2222",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05021",
+ Country: "Mexico",
+ Salesperson: "Janet Leverling",
+ OrderID: 10625,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 60,
+ ProductName: "Camembert Pierrot",
+ UnitPrice: 34.0000,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 340.0000,
+ Freight: 43.9000
+}, {
+ ShipName: "Ana Trujillo Emparedados y helados",
+ ShipAddress: "Avda. de la Constituci\u00f3n 2222",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05021",
+ ShipCountry: "Mexico",
+ CustomerID: "ANATR",
+ CustomerName: "Ana Trujillo Emparedados y helados",
+ Address: "Avda. de la Constituci\u00f3n 2222",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05021",
+ Country: "Mexico",
+ Salesperson: "Janet Leverling",
+ OrderID: 10759,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 32,
+ ProductName: "Mascarpone Fabioli",
+ UnitPrice: 32.0000,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 320.0000,
+ Freight: 11.9900
+}, {
+ ShipName: "Ana Trujillo Emparedados y helados",
+ ShipAddress: "Avda. de la Constituci\u00f3n 2222",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05021",
+ ShipCountry: "Mexico",
+ CustomerID: "ANATR",
+ CustomerName: "Ana Trujillo Emparedados y helados",
+ Address: "Avda. de la Constituci\u00f3n 2222",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05021",
+ Country: "Mexico",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10926,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 11,
+ ProductName: "Queso Cabrales",
+ UnitPrice: 21.0000,
+ Quantity: 2,
+ Discontinued: false,
+ ExtendedPrice: 42.0000,
+ Freight: 39.9200
+}, {
+ ShipName: "Ana Trujillo Emparedados y helados",
+ ShipAddress: "Avda. de la Constituci\u00f3n 2222",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05021",
+ ShipCountry: "Mexico",
+ CustomerID: "ANATR",
+ CustomerName: "Ana Trujillo Emparedados y helados",
+ Address: "Avda. de la Constituci\u00f3n 2222",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05021",
+ Country: "Mexico",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10926,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 13,
+ ProductName: "Konbu",
+ UnitPrice: 6.0000,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 60.0000,
+ Freight: 39.9200
+}, {
+ ShipName: "Ana Trujillo Emparedados y helados",
+ ShipAddress: "Avda. de la Constituci\u00f3n 2222",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05021",
+ ShipCountry: "Mexico",
+ CustomerID: "ANATR",
+ CustomerName: "Ana Trujillo Emparedados y helados",
+ Address: "Avda. de la Constituci\u00f3n 2222",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05021",
+ Country: "Mexico",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10926,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 19,
+ ProductName: "Teatime Chocolate Biscuits",
+ UnitPrice: 9.2000,
+ Quantity: 7,
+ Discontinued: false,
+ ExtendedPrice: 64.4000,
+ Freight: 39.9200
+}, {
+ ShipName: "Ana Trujillo Emparedados y helados",
+ ShipAddress: "Avda. de la Constituci\u00f3n 2222",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05021",
+ ShipCountry: "Mexico",
+ CustomerID: "ANATR",
+ CustomerName: "Ana Trujillo Emparedados y helados",
+ Address: "Avda. de la Constituci\u00f3n 2222",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05021",
+ Country: "Mexico",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10926,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 72,
+ ProductName: "Mozzarella di Giovanni",
+ UnitPrice: 34.8000,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 348.0000,
+ Freight: 39.9200
+}, {
+ ShipName: "Antonio Moreno Taquer\u00eda",
+ ShipAddress: "Mataderos 2312",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05023",
+ ShipCountry: "Mexico",
+ CustomerID: "ANTON",
+ CustomerName: "Antonio Moreno Taquer\u00eda",
+ Address: "Mataderos 2312",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05023",
+ Country: "Mexico",
+ Salesperson: "Janet Leverling",
+ OrderID: 10365,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "United Package",
+ ProductID: 11,
+ ProductName: "Queso Cabrales",
+ UnitPrice: 16.8000,
+ Quantity: 24,
+ Discontinued: false,
+ ExtendedPrice: 403.2000,
+ Freight: 22.0000
+}, {
+ ShipName: "Antonio Moreno Taquer\u00eda",
+ ShipAddress: "Mataderos 2312",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05023",
+ ShipCountry: "Mexico",
+ CustomerID: "ANTON",
+ CustomerName: "Antonio Moreno Taquer\u00eda",
+ Address: "Mataderos 2312",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05023",
+ Country: "Mexico",
+ Salesperson: "Robert King",
+ OrderID: 10573,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 17,
+ ProductName: "Alice Mutton",
+ UnitPrice: 39.0000,
+ Quantity: 18,
+ Discontinued: false,
+ ExtendedPrice: 702.0000,
+ Freight: 84.8400
+}, {
+ ShipName: "Antonio Moreno Taquer\u00eda",
+ ShipAddress: "Mataderos 2312",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05023",
+ ShipCountry: "Mexico",
+ CustomerID: "ANTON",
+ CustomerName: "Antonio Moreno Taquer\u00eda",
+ Address: "Mataderos 2312",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05023",
+ Country: "Mexico",
+ Salesperson: "Robert King",
+ OrderID: 10573,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 34,
+ ProductName: "Sasquatch Ale",
+ UnitPrice: 14.0000,
+ Quantity: 40,
+ Discontinued: false,
+ ExtendedPrice: 560.0000,
+ Freight: 84.8400
+}, {
+ ShipName: "Antonio Moreno Taquer\u00eda",
+ ShipAddress: "Mataderos 2312",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05023",
+ ShipCountry: "Mexico",
+ CustomerID: "ANTON",
+ CustomerName: "Antonio Moreno Taquer\u00eda",
+ Address: "Mataderos 2312",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05023",
+ Country: "Mexico",
+ Salesperson: "Robert King",
+ OrderID: 10573,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 53,
+ ProductName: "Perth Pasties",
+ UnitPrice: 32.8000,
+ Quantity: 25,
+ Discontinued: false,
+ ExtendedPrice: 820.0000,
+ Freight: 84.8400
+}, {
+ ShipName: "Antonio Moreno Taquer\u00eda",
+ ShipAddress: "Mataderos 2312",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05023",
+ ShipCountry: "Mexico",
+ CustomerID: "ANTON",
+ CustomerName: "Antonio Moreno Taquer\u00eda",
+ Address: "Mataderos 2312",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05023",
+ Country: "Mexico",
+ Salesperson: "Janet Leverling",
+ OrderID: 10682,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "United Package",
+ ProductID: 33,
+ ProductName: "Geitost",
+ UnitPrice: 2.5000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 75.0000,
+ Freight: 36.1300
+}, {
+ ShipName: "Antonio Moreno Taquer\u00eda",
+ ShipAddress: "Mataderos 2312",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05023",
+ ShipCountry: "Mexico",
+ CustomerID: "ANTON",
+ CustomerName: "Antonio Moreno Taquer\u00eda",
+ Address: "Mataderos 2312",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05023",
+ Country: "Mexico",
+ Salesperson: "Janet Leverling",
+ OrderID: 10682,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "United Package",
+ ProductID: 66,
+ ProductName: "Louisiana Hot Spiced Okra",
+ UnitPrice: 17.0000,
+ Quantity: 4,
+ Discontinued: false,
+ ExtendedPrice: 68.0000,
+ Freight: 36.1300
+}, {
+ ShipName: "Antonio Moreno Taquer\u00eda",
+ ShipAddress: "Mataderos 2312",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05023",
+ ShipCountry: "Mexico",
+ CustomerID: "ANTON",
+ CustomerName: "Antonio Moreno Taquer\u00eda",
+ Address: "Mataderos 2312",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05023",
+ Country: "Mexico",
+ Salesperson: "Janet Leverling",
+ OrderID: 10682,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "United Package",
+ ProductID: 75,
+ ProductName: "Rh\u00f6nbr\u00e4u Klosterbier",
+ UnitPrice: 7.7500,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 232.5000,
+ Freight: 36.1300
+}, {
+ ShipName: "Antonio Moreno Taquer\u00eda",
+ ShipAddress: "Mataderos 2312",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05023",
+ ShipCountry: "Mexico",
+ CustomerID: "ANTON",
+ CustomerName: "Antonio Moreno Taquer\u00eda",
+ Address: "Mataderos 2312",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05023",
+ Country: "Mexico",
+ Salesperson: "Janet Leverling",
+ OrderID: 10856,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "United Package",
+ ProductID: 2,
+ ProductName: "Chang",
+ UnitPrice: 19.0000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 380.0000,
+ Freight: 58.4300
+}, {
+ ShipName: "Antonio Moreno Taquer\u00eda",
+ ShipAddress: "Mataderos 2312",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05023",
+ ShipCountry: "Mexico",
+ CustomerID: "ANTON",
+ CustomerName: "Antonio Moreno Taquer\u00eda",
+ Address: "Mataderos 2312",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05023",
+ Country: "Mexico",
+ Salesperson: "Janet Leverling",
+ OrderID: 10856,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "United Package",
+ ProductID: 42,
+ ProductName: "Singaporean Hokkien Fried Mee",
+ UnitPrice: 14.0000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 280.0000,
+ Freight: 58.4300
+}, {
+ ShipName: "Antonio Moreno Taquer\u00eda",
+ ShipAddress: "Mataderos 2312",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05023",
+ ShipCountry: "Mexico",
+ CustomerID: "ANTON",
+ CustomerName: "Antonio Moreno Taquer\u00eda",
+ Address: "Mataderos 2312",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05023",
+ Country: "Mexico",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10535,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 11,
+ ProductName: "Queso Cabrales",
+ UnitPrice: 21.0000,
+ Quantity: 50,
+ Discontinued: true,
+ ExtendedPrice: 945.0000,
+ Freight: 15.6400
+}, {
+ ShipName: "Antonio Moreno Taquer\u00eda",
+ ShipAddress: "Mataderos 2312",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05023",
+ ShipCountry: "Mexico",
+ CustomerID: "ANTON",
+ CustomerName: "Antonio Moreno Taquer\u00eda",
+ Address: "Mataderos 2312",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05023",
+ Country: "Mexico",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10535,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 40,
+ ProductName: "Boston Crab Meat",
+ UnitPrice: 18.4000,
+ Quantity: 10,
+ Discontinued: true,
+ ExtendedPrice: 165.6000,
+ Freight: 15.6400
+}, {
+ ShipName: "Antonio Moreno Taquer\u00eda",
+ ShipAddress: "Mataderos 2312",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05023",
+ ShipCountry: "Mexico",
+ CustomerID: "ANTON",
+ CustomerName: "Antonio Moreno Taquer\u00eda",
+ Address: "Mataderos 2312",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05023",
+ Country: "Mexico",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10535,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 57,
+ ProductName: "Ravioli Angelo",
+ UnitPrice: 19.5000,
+ Quantity: 5,
+ Discontinued: true,
+ ExtendedPrice: 87.7500,
+ Freight: 15.6400
+}, {
+ ShipName: "Antonio Moreno Taquer\u00eda",
+ ShipAddress: "Mataderos 2312",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05023",
+ ShipCountry: "Mexico",
+ CustomerID: "ANTON",
+ CustomerName: "Antonio Moreno Taquer\u00eda",
+ Address: "Mataderos 2312",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05023",
+ Country: "Mexico",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10535,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 59,
+ ProductName: "Raclette Courdavault",
+ UnitPrice: 55.0000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 742.5000,
+ Freight: 15.6400
+}, {
+ ShipName: "Antonio Moreno Taquer\u00eda",
+ ShipAddress: "Mataderos 2312",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05023",
+ ShipCountry: "Mexico",
+ CustomerID: "ANTON",
+ CustomerName: "Antonio Moreno Taquer\u00eda",
+ Address: "Mataderos 2312",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05023",
+ Country: "Mexico",
+ Salesperson: "Robert King",
+ OrderID: 10507,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 43,
+ ProductName: "Ipoh Coffee",
+ UnitPrice: 46.0000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 586.5000,
+ Freight: 47.4500
+}, {
+ ShipName: "Antonio Moreno Taquer\u00eda",
+ ShipAddress: "Mataderos 2312",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05023",
+ ShipCountry: "Mexico",
+ CustomerID: "ANTON",
+ CustomerName: "Antonio Moreno Taquer\u00eda",
+ Address: "Mataderos 2312",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05023",
+ Country: "Mexico",
+ Salesperson: "Robert King",
+ OrderID: 10507,
+ OrderDate: new Date("11/23/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 48,
+ ProductName: "Chocolade",
+ UnitPrice: 12.7500,
+ Quantity: 15,
+ Discontinued: true,
+ ExtendedPrice: 162.5600,
+ Freight: 47.4500
+}, {
+ ShipName: "Antonio Moreno Taquer\u00eda",
+ ShipAddress: "Mataderos 2312",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05023",
+ ShipCountry: "Mexico",
+ CustomerID: "ANTON",
+ CustomerName: "Antonio Moreno Taquer\u00eda",
+ Address: "Mataderos 2312",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05023",
+ Country: "Mexico",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10677,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 26,
+ ProductName: "Gumb\u00e4r Gummib\u00e4rchen",
+ UnitPrice: 31.2300,
+ Quantity: 30,
+ Discontinued: true,
+ ExtendedPrice: 796.3700,
+ Freight: 4.0300
+}, {
+ ShipName: "Antonio Moreno Taquer\u00eda",
+ ShipAddress: "Mataderos 2312",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05023",
+ ShipCountry: "Mexico",
+ CustomerID: "ANTON",
+ CustomerName: "Antonio Moreno Taquer\u00eda",
+ Address: "Mataderos 2312",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05023",
+ Country: "Mexico",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10677,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 33,
+ ProductName: "Geitost",
+ UnitPrice: 2.5000,
+ Quantity: 8,
+ Discontinued: false,
+ ExtendedPrice: 17.0000,
+ Freight: 4.0300
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Michael Suyama",
+ OrderID: 10355,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Speedy Express",
+ ProductID: 24,
+ ProductName: "Guaran\u00e1 Fant\u00e1stica",
+ UnitPrice: 3.6000,
+ Quantity: 25,
+ Discontinued: false,
+ ExtendedPrice: 90.0000,
+ Freight: 41.9500
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Michael Suyama",
+ OrderID: 10355,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Speedy Express",
+ ProductID: 57,
+ ProductName: "Ravioli Angelo",
+ UnitPrice: 15.6000,
+ Quantity: 25,
+ Discontinued: false,
+ ExtendedPrice: 390.0000,
+ Freight: 41.9500
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Laura Callahan",
+ OrderID: 10383,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 13,
+ ProductName: "Konbu",
+ UnitPrice: 4.8000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 96.0000,
+ Freight: 34.2400
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Laura Callahan",
+ OrderID: 10383,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 50,
+ ProductName: "Valkoinen suklaa",
+ UnitPrice: 13.0000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 195.0000,
+ Freight: 34.2400
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Laura Callahan",
+ OrderID: 10383,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 56,
+ ProductName: "Gnocchi di nonna Alice",
+ UnitPrice: 30.4000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 608.0000,
+ Freight: 34.2400
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10558,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 47,
+ ProductName: "Zaanse koeken",
+ UnitPrice: 9.5000,
+ Quantity: 25,
+ Discontinued: false,
+ ExtendedPrice: 237.5000,
+ Freight: 72.9700
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10558,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 51,
+ ProductName: "Manjimup Dried Apples",
+ UnitPrice: 53.0000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 1060.0000,
+ Freight: 72.9700
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10558,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 52,
+ ProductName: "Filo Mix",
+ UnitPrice: 7.0000,
+ Quantity: 30,
+ Discontinued: true,
+ ExtendedPrice: 210.0000,
+ Freight: 72.9700
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10558,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 53,
+ ProductName: "Perth Pasties",
+ UnitPrice: 32.8000,
+ Quantity: 18,
+ Discontinued: false,
+ ExtendedPrice: 590.4000,
+ Freight: 72.9700
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10558,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 73,
+ ProductName: "R\u00f6d Kaviar",
+ UnitPrice: 15.0000,
+ Quantity: 3,
+ Discontinued: false,
+ ExtendedPrice: 45.0000,
+ Freight: 72.9700
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10707,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 55,
+ ProductName: "P\u00e2t\u00e9 chinois",
+ UnitPrice: 24.0000,
+ Quantity: 21,
+ Discontinued: false,
+ ExtendedPrice: 504.0000,
+ Freight: 21.7400
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10707,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 57,
+ ProductName: "Ravioli Angelo",
+ UnitPrice: 19.5000,
+ Quantity: 40,
+ Discontinued: false,
+ ExtendedPrice: 780.0000,
+ Freight: 21.7400
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Janet Leverling",
+ OrderID: 10768,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 22,
+ ProductName: "Gustaf's Kn\u00e4ckebr\u00f6d",
+ UnitPrice: 21.0000,
+ Quantity: 4,
+ Discontinued: false,
+ ExtendedPrice: 84.0000,
+ Freight: 146.3200
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Janet Leverling",
+ OrderID: 10768,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 31,
+ ProductName: "Gorgonzola Telino",
+ UnitPrice: 12.5000,
+ Quantity: 50,
+ Discontinued: true,
+ ExtendedPrice: 625.0000,
+ Freight: 146.3200
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Janet Leverling",
+ OrderID: 10768,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 60,
+ ProductName: "Camembert Pierrot",
+ UnitPrice: 34.0000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 510.0000,
+ Freight: 146.3200
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Janet Leverling",
+ OrderID: 10768,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 71,
+ ProductName: "Flotemysost",
+ UnitPrice: 21.5000,
+ Quantity: 12,
+ Discontinued: false,
+ ExtendedPrice: 258.0000,
+ Freight: 146.3200
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Janet Leverling",
+ OrderID: 10793,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 41,
+ ProductName: "Jack's New England Clam Chowder",
+ UnitPrice: 9.6500,
+ Quantity: 14,
+ Discontinued: false,
+ ExtendedPrice: 135.1000,
+ Freight: 4.5200
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Janet Leverling",
+ OrderID: 10793,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 52,
+ ProductName: "Filo Mix",
+ UnitPrice: 7.0000,
+ Quantity: 8,
+ Discontinued: false,
+ ExtendedPrice: 56.0000,
+ Freight: 4.5200
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10864,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 35,
+ ProductName: "Steeleye Stout",
+ UnitPrice: 18.0000,
+ Quantity: 4,
+ Discontinued: false,
+ ExtendedPrice: 72.0000,
+ Freight: 3.0400
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10864,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 67,
+ ProductName: "Laughing Lumberjack Lager",
+ UnitPrice: 14.0000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 210.0000,
+ Freight: 3.0400
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10920,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 50,
+ ProductName: "Valkoinen suklaa",
+ UnitPrice: 16.2500,
+ Quantity: 24,
+ Discontinued: false,
+ ExtendedPrice: 390.0000,
+ Freight: 29.6100
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 11016,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 31,
+ ProductName: "Gorgonzola Telino",
+ UnitPrice: 12.5000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 187.5000,
+ Freight: 33.8000
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 11016,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 36,
+ ProductName: "Inlagd Sill",
+ UnitPrice: 19.0000,
+ Quantity: 16,
+ Discontinued: false,
+ ExtendedPrice: 304.0000,
+ Freight: 33.8000
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10743,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 46,
+ ProductName: "Spegesild",
+ UnitPrice: 12.0000,
+ Quantity: 28,
+ Discontinued: false,
+ ExtendedPrice: 319.2000,
+ Freight: 23.7200
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 10953,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 20,
+ ProductName: "Sir Rodney's Marmalade",
+ UnitPrice: 81.0000,
+ Quantity: 50,
+ Discontinued: false,
+ ExtendedPrice: 3847.5000,
+ Freight: 23.7200
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 10953,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 31,
+ ProductName: "Gorgonzola Telino",
+ UnitPrice: 12.5000,
+ Quantity: 50,
+ Discontinued: false,
+ ExtendedPrice: 593.7500,
+ Freight: 23.7200
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10453,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 48,
+ ProductName: "Chocolade",
+ UnitPrice: 10.2000,
+ Quantity: 15,
+ Discontinued: true,
+ ExtendedPrice: 137.7000,
+ Freight: 25.3600
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10453,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 70,
+ ProductName: "Outback Lager",
+ UnitPrice: 12.0000,
+ Quantity: 25,
+ Discontinued: true,
+ ExtendedPrice: 270.0000,
+ Freight: 25.3600
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10707,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 70,
+ ProductName: "Outback Lager",
+ UnitPrice: 15.0000,
+ Quantity: 28,
+ Discontinued: false,
+ ExtendedPrice: 357.0000,
+ Freight: 21.7400
+}, {
+ ShipName: "Around the Horn",
+ ShipAddress: "Brook Farm Stratford St. Mary",
+ ShipCity: "Colchester",
+ ShipRegion: "Essex",
+ ShipPostalCode: "CO7 6JX",
+ ShipCountry: "UK",
+ CustomerID: "AROUT",
+ CustomerName: "Around the Horn",
+ Address: "120 Hanover Sq.",
+ City: "London",
+ Region: null,
+ PostalCode: "WA1 1DP",
+ Country: "UK",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10741,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 2,
+ ProductName: "Chang",
+ UnitPrice: 19.0000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 228.0000,
+ Freight: 10.9600
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Laura Callahan",
+ OrderID: 10278,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 44,
+ ProductName: "Gula Malacca",
+ UnitPrice: 15.5000,
+ Quantity: 16,
+ Discontinued: false,
+ ExtendedPrice: 248.0000,
+ Freight: 92.6900
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Laura Callahan",
+ OrderID: 10278,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 59,
+ ProductName: "Raclette Courdavault",
+ UnitPrice: 44.0000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 660.0000,
+ Freight: 92.6900
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Laura Callahan",
+ OrderID: 10278,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 63,
+ ProductName: "Vegie-spread",
+ UnitPrice: 35.1000,
+ Quantity: 8,
+ Discontinued: false,
+ ExtendedPrice: 280.8000,
+ Freight: 92.6900
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Laura Callahan",
+ OrderID: 10278,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 73,
+ ProductName: "R\u00f6d Kaviar",
+ UnitPrice: 12.0000,
+ Quantity: 25,
+ Discontinued: false,
+ ExtendedPrice: 300.0000,
+ Freight: 92.6900
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Andrew Fuller",
+ OrderID: 10280,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Speedy Express",
+ ProductID: 24,
+ ProductName: "Guaran\u00e1 Fant\u00e1stica",
+ UnitPrice: 3.6000,
+ Quantity: 12,
+ Discontinued: false,
+ ExtendedPrice: 43.2000,
+ Freight: 8.9800
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Andrew Fuller",
+ OrderID: 10280,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Speedy Express",
+ ProductID: 55,
+ ProductName: "P\u00e2t\u00e9 chinois",
+ UnitPrice: 19.2000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 384.0000,
+ Freight: 8.9800
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Andrew Fuller",
+ OrderID: 10280,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Speedy Express",
+ ProductID: 75,
+ ProductName: "Rh\u00f6nbr\u00e4u Klosterbier",
+ UnitPrice: 6.2000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 186.0000,
+ Freight: 8.9800
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Janet Leverling",
+ OrderID: 10384,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 20,
+ ProductName: "Sir Rodney's Marmalade",
+ UnitPrice: 64.8000,
+ Quantity: 28,
+ Discontinued: false,
+ ExtendedPrice: 1814.4000,
+ Freight: 168.6400
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Janet Leverling",
+ OrderID: 10384,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 60,
+ ProductName: "Camembert Pierrot",
+ UnitPrice: 27.2000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 408.0000,
+ Freight: 168.6400
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Janet Leverling",
+ OrderID: 10444,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 17,
+ ProductName: "Alice Mutton",
+ UnitPrice: 31.2000,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 312.0000,
+ Freight: 3.5000
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Janet Leverling",
+ OrderID: 10444,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 26,
+ ProductName: "Gumb\u00e4r Gummib\u00e4rchen",
+ UnitPrice: 24.9000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 373.5000,
+ Freight: 3.5000
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Janet Leverling",
+ OrderID: 10444,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 35,
+ ProductName: "Steeleye Stout",
+ UnitPrice: 14.4000,
+ Quantity: 8,
+ Discontinued: false,
+ ExtendedPrice: 115.2000,
+ Freight: 3.5000
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Janet Leverling",
+ OrderID: 10444,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 41,
+ ProductName: "Jack's New England Clam Chowder",
+ UnitPrice: 7.7000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 231.0000,
+ Freight: 3.5000
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10524,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 54,
+ ProductName: "Tourti\u00e8re",
+ UnitPrice: 7.4500,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 111.7500,
+ Freight: 244.7900
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Janet Leverling",
+ OrderID: 10572,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 40,
+ ProductName: "Boston Crab Meat",
+ UnitPrice: 18.4000,
+ Quantity: 50,
+ Discontinued: false,
+ ExtendedPrice: 920.0000,
+ Freight: 116.4300
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10626,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 53,
+ ProductName: "Perth Pasties",
+ UnitPrice: 32.8000,
+ Quantity: 12,
+ Discontinued: false,
+ ExtendedPrice: 393.6000,
+ Freight: 138.6900
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10626,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 60,
+ ProductName: "Camembert Pierrot",
+ UnitPrice: 34.0000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 680.0000,
+ Freight: 138.6900
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10626,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 71,
+ ProductName: "Flotemysost",
+ UnitPrice: 21.5000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 430.0000,
+ Freight: 138.6900
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 10672,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 71,
+ ProductName: "Flotemysost",
+ UnitPrice: 21.5000,
+ Quantity: 12,
+ Discontinued: false,
+ ExtendedPrice: 258.0000,
+ Freight: 95.7500
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10733,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 14,
+ ProductName: "Tofu",
+ UnitPrice: 23.2500,
+ Quantity: 16,
+ Discontinued: false,
+ ExtendedPrice: 372.0000,
+ Freight: 110.1100
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10733,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 28,
+ ProductName: "R\u00f6ssle Sauerkraut",
+ UnitPrice: 45.6000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 912.0000,
+ Freight: 110.1100
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10733,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 52,
+ ProductName: "Filo Mix",
+ UnitPrice: 7.0000,
+ Quantity: 25,
+ Discontinued: false,
+ ExtendedPrice: 175.0000,
+ Freight: 110.1100
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Janet Leverling",
+ OrderID: 10778,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "Speedy Express",
+ ProductID: 41,
+ ProductName: "Jack's New England Clam Chowder",
+ UnitPrice: 9.6500,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 96.5000,
+ Freight: 6.7900
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 10837,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "Federal Shipping",
+ ProductID: 13,
+ ProductName: "Konbu",
+ UnitPrice: 6.0000,
+ Quantity: 6,
+ Discontinued: false,
+ ExtendedPrice: 36.0000,
+ Freight: 13.3200
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 10837,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "Federal Shipping",
+ ProductID: 40,
+ ProductName: "Boston Crab Meat",
+ UnitPrice: 18.4000,
+ Quantity: 25,
+ Discontinued: false,
+ ExtendedPrice: 460.0000,
+ Freight: 13.3200
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Laura Callahan",
+ OrderID: 10857,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "United Package",
+ ProductID: 3,
+ ProductName: "Aniseed Syrup",
+ UnitPrice: 10.0000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 300.0000,
+ Freight: 188.8500
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10875,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "United Package",
+ ProductID: 19,
+ ProductName: "Teatime Chocolate Biscuits",
+ UnitPrice: 9.2000,
+ Quantity: 25,
+ Discontinued: false,
+ ExtendedPrice: 230.0000,
+ Freight: 32.3700
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10875,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "United Package",
+ ProductID: 49,
+ ProductName: "Maxilaku",
+ UnitPrice: 20.0000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 300.0000,
+ Freight: 32.3700
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Janet Leverling",
+ OrderID: 10924,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "United Package",
+ ProductID: 75,
+ ProductName: "Rh\u00f6nbr\u00e4u Klosterbier",
+ UnitPrice: 7.7500,
+ Quantity: 6,
+ Discontinued: false,
+ ExtendedPrice: 46.5000,
+ Freight: 151.5200
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Janet Leverling",
+ OrderID: 10572,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "United Package",
+ ProductID: 16,
+ ProductName: "Pavlova",
+ UnitPrice: 17.4500,
+ Quantity: 12,
+ Discontinued: false,
+ ExtendedPrice: 188.4600,
+ Freight: 116.4300
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Janet Leverling",
+ OrderID: 10572,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "United Package",
+ ProductID: 32,
+ ProductName: "Mascarpone Fabioli",
+ UnitPrice: 32.0000,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 288.0000,
+ Freight: 116.4300
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Janet Leverling",
+ OrderID: 10572,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "United Package",
+ ProductID: 75,
+ ProductName: "Rh\u00f6nbr\u00e4u Klosterbier",
+ UnitPrice: 7.7500,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 104.6200,
+ Freight: 116.4300
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Steven Buchanan",
+ OrderID: 10654,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "Speedy Express",
+ ProductID: 4,
+ ProductName: "Chef Anton's Cajun Seasoning",
+ UnitPrice: 22.0000,
+ Quantity: 12,
+ Discontinued: false,
+ ExtendedPrice: 237.6000,
+ Freight: 55.2600
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Steven Buchanan",
+ OrderID: 10654,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "Speedy Express",
+ ProductID: 39,
+ ProductName: "Chartreuse verte",
+ UnitPrice: 18.0000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 324.0000,
+ Freight: 55.2600
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Steven Buchanan",
+ OrderID: 10654,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "Speedy Express",
+ ProductID: 54,
+ ProductName: "Tourti\u00e8re",
+ UnitPrice: 7.4500,
+ Quantity: 6,
+ Discontinued: false,
+ ExtendedPrice: 40.2300,
+ Freight: 55.2600
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 10672,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "United Package",
+ ProductID: 38,
+ ProductName: "C\u00f4te de Blaye",
+ UnitPrice: 263.5000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 3557.2500,
+ Freight: 95.7500
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10875,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "United Package",
+ ProductID: 47,
+ ProductName: "Zaanse koeken",
+ UnitPrice: 9.5000,
+ Quantity: 21,
+ Discontinued: false,
+ ExtendedPrice: 179.5500,
+ Freight: 32.3700
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Janet Leverling",
+ OrderID: 10924,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "United Package",
+ ProductID: 10,
+ ProductName: "Ikura",
+ UnitPrice: 31.0000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 558.0000,
+ Freight: 151.5200
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Janet Leverling",
+ OrderID: 10924,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "United Package",
+ ProductID: 28,
+ ProductName: "R\u00f6ssle Sauerkraut",
+ UnitPrice: 45.6000,
+ Quantity: 30,
+ Discontinued: true,
+ ExtendedPrice: 1231.2000,
+ Freight: 151.5200
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10689,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "United Package",
+ ProductID: 1,
+ ProductName: "Chai",
+ UnitPrice: 18.0000,
+ Quantity: 35,
+ Discontinued: true,
+ ExtendedPrice: 472.5000,
+ Freight: 13.4200
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 10837,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "Federal Shipping",
+ ProductID: 47,
+ ProductName: "Zaanse koeken",
+ UnitPrice: 9.5000,
+ Quantity: 40,
+ Discontinued: true,
+ ExtendedPrice: 285.0000,
+ Freight: 13.3200
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 10837,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "Federal Shipping",
+ ProductID: 76,
+ ProductName: "Lakkalik\u00f6\u00f6ri",
+ UnitPrice: 18.0000,
+ Quantity: 21,
+ Discontinued: true,
+ ExtendedPrice: 283.5000,
+ Freight: 13.3200
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Laura Callahan",
+ OrderID: 10857,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "United Package",
+ ProductID: 26,
+ ProductName: "Gumb\u00e4r Gummib\u00e4rchen",
+ UnitPrice: 31.2300,
+ Quantity: 35,
+ Discontinued: true,
+ ExtendedPrice: 819.7900,
+ Freight: 188.8500
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Laura Callahan",
+ OrderID: 10857,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "United Package",
+ ProductID: 29,
+ ProductName: "Th\u00fcringer Rostbratwurst",
+ UnitPrice: 123.7900,
+ Quantity: 10,
+ Discontinued: true,
+ ExtendedPrice: 928.4300,
+ Freight: 188.8500
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Steven Buchanan",
+ OrderID: 10866,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "Speedy Express",
+ ProductID: 2,
+ ProductName: "Chang",
+ UnitPrice: 19.0000,
+ Quantity: 21,
+ Discontinued: true,
+ ExtendedPrice: 299.2500,
+ Freight: 109.1100
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Steven Buchanan",
+ OrderID: 10866,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "Speedy Express",
+ ProductID: 24,
+ ProductName: "Guaran\u00e1 Fant\u00e1stica",
+ UnitPrice: 4.5000,
+ Quantity: 6,
+ Discontinued: true,
+ ExtendedPrice: 20.2500,
+ Freight: 109.1100
+}, {
+ ShipName: "Berglunds snabbk\u00f6p",
+ ShipAddress: "Berguvsv\u00e4gen 8",
+ ShipCity: "Lule\u00e5",
+ ShipRegion: null,
+ ShipPostalCode: "S-958 22",
+ ShipCountry: "Sweden",
+ CustomerID: "BERGS",
+ CustomerName: "Berglunds snabbk\u00f6p",
+ Address: "Berguvsv\u00e4gen 8",
+ City: "Lule\u00e5",
+ Region: null,
+ PostalCode: "S-958 22",
+ Country: "Sweden",
+ Salesperson: "Steven Buchanan",
+ OrderID: 10866,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "Speedy Express",
+ ProductID: 30,
+ ProductName: "Nord-Ost Matjeshering",
+ UnitPrice: 25.8900,
+ Quantity: 40,
+ Discontinued: false,
+ ExtendedPrice: 776.7000,
+ Freight: 109.1100
+}, {
+ ShipName: "Blauer See Delikatessen",
+ ShipAddress: "Forsterstr. 57",
+ ShipCity: "Mannheim",
+ ShipRegion: null,
+ ShipPostalCode: "68306",
+ ShipCountry: "Germany",
+ CustomerID: "BLAUS",
+ CustomerName: "Blauer See Delikatessen",
+ Address: "Forsterstr. 57",
+ City: "Mannheim",
+ Region: null,
+ PostalCode: "68306",
+ Country: "Germany",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 10501,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "Federal Shipping",
+ ProductID: 54,
+ ProductName: "Tourti\u00e8re",
+ UnitPrice: 7.4500,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 149.0000,
+ Freight: 8.8500
+}, {
+ ShipName: "Blauer See Delikatessen",
+ ShipAddress: "Forsterstr. 57",
+ ShipCity: "Mannheim",
+ ShipRegion: null,
+ ShipPostalCode: "68306",
+ ShipCountry: "Germany",
+ CustomerID: "BLAUS",
+ CustomerName: "Blauer See Delikatessen",
+ Address: "Forsterstr. 57",
+ City: "Mannheim",
+ Region: null,
+ PostalCode: "68306",
+ Country: "Germany",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10509,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "Speedy Express",
+ ProductID: 28,
+ ProductName: "R\u00f6ssle Sauerkraut",
+ UnitPrice: 45.6000,
+ Quantity: 3,
+ Discontinued: false,
+ ExtendedPrice: 136.8000,
+ Freight: 0.1500
+}, {
+ ShipName: "Blauer See Delikatessen",
+ ShipAddress: "Forsterstr. 57",
+ ShipCity: "Mannheim",
+ ShipRegion: null,
+ ShipPostalCode: "68306",
+ ShipCountry: "Germany",
+ CustomerID: "BLAUS",
+ CustomerName: "Blauer See Delikatessen",
+ Address: "Forsterstr. 57",
+ City: "Mannheim",
+ Region: null,
+ PostalCode: "68306",
+ Country: "Germany",
+ Salesperson: "Janet Leverling",
+ OrderID: 10582,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "United Package",
+ ProductID: 57,
+ ProductName: "Ravioli Angelo",
+ UnitPrice: 19.5000,
+ Quantity: 4,
+ Discontinued: false,
+ ExtendedPrice: 78.0000,
+ Freight: 27.7100
+}, {
+ ShipName: "Blauer See Delikatessen",
+ ShipAddress: "Forsterstr. 57",
+ ShipCity: "Mannheim",
+ ShipRegion: null,
+ ShipPostalCode: "68306",
+ ShipCountry: "Germany",
+ CustomerID: "BLAUS",
+ CustomerName: "Blauer See Delikatessen",
+ Address: "Forsterstr. 57",
+ City: "Mannheim",
+ Region: null,
+ PostalCode: "68306",
+ Country: "Germany",
+ Salesperson: "Janet Leverling",
+ OrderID: 10582,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "United Package",
+ ProductID: 76,
+ ProductName: "Lakkalik\u00f6\u00f6ri",
+ UnitPrice: 18.0000,
+ Quantity: 14,
+ Discontinued: false,
+ ExtendedPrice: 252.0000,
+ Freight: 27.7100
+}, {
+ ShipName: "Blauer See Delikatessen",
+ ShipAddress: "Forsterstr. 57",
+ ShipCity: "Mannheim",
+ ShipRegion: null,
+ ShipPostalCode: "68306",
+ ShipCountry: "Germany",
+ CustomerID: "BLAUS",
+ CustomerName: "Blauer See Delikatessen",
+ Address: "Forsterstr. 57",
+ City: "Mannheim",
+ Region: null,
+ PostalCode: "68306",
+ Country: "Germany",
+ Salesperson: "Laura Callahan",
+ OrderID: 10614,
+ OrderDate: new Date("10/4/2018"),
+ ShipperName: "Federal Shipping",
+ ProductID: 11,
+ ProductName: "Queso Cabrales",
+ UnitPrice: 21.0000,
+ Quantity: 14,
+ Discontinued: false,
+ ExtendedPrice: 294.0000,
+ Freight: 1.9300
+}, {
+ ShipName: "Blauer See Delikatessen",
+ ShipAddress: "Forsterstr. 57",
+ ShipCity: "Mannheim",
+ ShipRegion: null,
+ ShipPostalCode: "68306",
+ ShipCountry: "Germany",
+ CustomerID: "BLAUS",
+ CustomerName: "Blauer See Delikatessen",
+ Address: "Forsterstr. 57",
+ City: "Mannheim",
+ Region: null,
+ PostalCode: "68306",
+ Country: "Germany",
+ Salesperson: "Laura Callahan",
+ OrderID: 10614,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 21,
+ ProductName: "Sir Rodney's Scones",
+ UnitPrice: 10.0000,
+ Quantity: 8,
+ Discontinued: false,
+ ExtendedPrice: 80.0000,
+ Freight: 1.9300
+}, {
+ ShipName: "Blauer See Delikatessen",
+ ShipAddress: "Forsterstr. 57",
+ ShipCity: "Mannheim",
+ ShipRegion: null,
+ ShipPostalCode: "68306",
+ ShipCountry: "Germany",
+ CustomerID: "BLAUS",
+ CustomerName: "Blauer See Delikatessen",
+ Address: "Forsterstr. 57",
+ City: "Mannheim",
+ Region: null,
+ PostalCode: "68306",
+ Country: "Germany",
+ Salesperson: "Laura Callahan",
+ OrderID: 10614,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 39,
+ ProductName: "Chartreuse verte",
+ UnitPrice: 18.0000,
+ Quantity: 5,
+ Discontinued: false,
+ ExtendedPrice: 90.0000,
+ Freight: 1.9300
+}, {
+ ShipName: "Blauer See Delikatessen",
+ ShipAddress: "Forsterstr. 57",
+ ShipCity: "Mannheim",
+ ShipRegion: null,
+ ShipPostalCode: "68306",
+ ShipCountry: "Germany",
+ CustomerID: "BLAUS",
+ CustomerName: "Blauer See Delikatessen",
+ Address: "Forsterstr. 57",
+ City: "Mannheim",
+ Region: null,
+ PostalCode: "68306",
+ Country: "Germany",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 10853,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 18,
+ ProductName: "Carnarvon Tigers",
+ UnitPrice: 62.5000,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 625.0000,
+ Freight: 53.8300
+}, {
+ ShipName: "Blauer See Delikatessen",
+ ShipAddress: "Forsterstr. 57",
+ ShipCity: "Mannheim",
+ ShipRegion: null,
+ ShipPostalCode: "68306",
+ ShipCountry: "Germany",
+ CustomerID: "BLAUS",
+ CustomerName: "Blauer See Delikatessen",
+ Address: "Forsterstr. 57",
+ City: "Mannheim",
+ Region: null,
+ PostalCode: "68306",
+ Country: "Germany",
+ Salesperson: "Michael Suyama",
+ OrderID: 10956,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 21,
+ ProductName: "Sir Rodney's Scones",
+ UnitPrice: 10.0000,
+ Quantity: 12,
+ Discontinued: false,
+ ExtendedPrice: 120.0000,
+ Freight: 44.6500
+}, {
+ ShipName: "Blauer See Delikatessen",
+ ShipAddress: "Forsterstr. 57",
+ ShipCity: "Mannheim",
+ ShipRegion: null,
+ ShipPostalCode: "68306",
+ ShipCountry: "Germany",
+ CustomerID: "BLAUS",
+ CustomerName: "Blauer See Delikatessen",
+ Address: "Forsterstr. 57",
+ City: "Mannheim",
+ Region: null,
+ PostalCode: "68306",
+ Country: "Germany",
+ Salesperson: "Michael Suyama",
+ OrderID: 10956,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 47,
+ ProductName: "Zaanse koeken",
+ UnitPrice: 9.5000,
+ Quantity: 14,
+ Discontinued: false,
+ ExtendedPrice: 133.0000,
+ Freight: 44.6500
+}, {
+ ShipName: "B\u00f3lido Comidas preparadas",
+ ShipAddress: "C/ Araquil, 67",
+ ShipCity: "Madrid",
+ ShipRegion: null,
+ ShipPostalCode: "28023",
+ ShipCountry: "Spain",
+ CustomerID: "BOLID",
+ CustomerName: "B\u00f3lido Comidas preparadas",
+ Address: "C/ Araquil, 67",
+ City: "Madrid",
+ Region: null,
+ PostalCode: "28023",
+ Country: "Spain",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10326,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 75,
+ ProductName: "Rh\u00f6nbr\u00e4u Klosterbier",
+ UnitPrice: 6.2000,
+ Quantity: 50,
+ Discontinued: false,
+ ExtendedPrice: 310.0000,
+ Freight: 77.9200
+}, {
+ ShipName: "B\u00f3lido Comidas preparadas",
+ ShipAddress: "C/ Araquil, 67",
+ ShipCity: "Madrid",
+ ShipRegion: null,
+ ShipPostalCode: "28023",
+ ShipCountry: "Spain",
+ CustomerID: "BOLID",
+ CustomerName: "B\u00f3lido Comidas preparadas",
+ Address: "C/ Araquil, 67",
+ City: "Madrid",
+ Region: null,
+ PostalCode: "28023",
+ Country: "Spain",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 10970,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 52,
+ ProductName: "Filo Mix",
+ UnitPrice: 7.0000,
+ Quantity: 40,
+ Discontinued: false,
+ ExtendedPrice: 224.0000,
+ Freight: 16.1600
+}, {
+ ShipName: "B\u00f3lido Comidas preparadas",
+ ShipAddress: "C/ Araquil, 67",
+ ShipCity: "Madrid",
+ ShipRegion: null,
+ ShipPostalCode: "28023",
+ ShipCountry: "Spain",
+ CustomerID: "BOLID",
+ CustomerName: "B\u00f3lido Comidas preparadas",
+ Address: "C/ Araquil, 67",
+ City: "Madrid",
+ Region: null,
+ PostalCode: "28023",
+ Country: "Spain",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10801,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 17,
+ ProductName: "Alice Mutton",
+ UnitPrice: 39.0000,
+ Quantity: 40,
+ Discontinued: false,
+ ExtendedPrice: 1170.0000,
+ Freight: 97.0900
+}, {
+ ShipName: "B\u00f3lido Comidas preparadas",
+ ShipAddress: "C/ Araquil, 67",
+ ShipCity: "Madrid",
+ ShipRegion: null,
+ ShipPostalCode: "28023",
+ ShipCountry: "Spain",
+ CustomerID: "BOLID",
+ CustomerName: "B\u00f3lido Comidas preparadas",
+ Address: "C/ Araquil, 67",
+ City: "Madrid",
+ Region: null,
+ PostalCode: "28023",
+ Country: "Spain",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10801,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 29,
+ ProductName: "Th\u00fcringer Rostbratwurst",
+ UnitPrice: 123.7900,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 1856.8500,
+ Freight: 97.0900
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 10331,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 54,
+ ProductName: "Tourti\u00e8re",
+ UnitPrice: 5.9000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 88.5000,
+ Freight: 10.1900
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Janet Leverling",
+ OrderID: 10362,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 25,
+ ProductName: "NuNuCa Nu\u00df-Nougat-Creme",
+ UnitPrice: 11.2000,
+ Quantity: 50,
+ Discontinued: false,
+ ExtendedPrice: 560.0000,
+ Freight: 96.0400
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Janet Leverling",
+ OrderID: 10362,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 51,
+ ProductName: "Manjimup Dried Apples",
+ UnitPrice: 42.4000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 848.0000,
+ Freight: 96.0400
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Janet Leverling",
+ OrderID: 10362,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 54,
+ ProductName: "Tourti\u00e8re",
+ UnitPrice: 5.9000,
+ Quantity: 24,
+ Discontinued: false,
+ ExtendedPrice: 141.6000,
+ Freight: 96.0400
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10470,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 18,
+ ProductName: "Carnarvon Tigers",
+ UnitPrice: 50.0000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 1500.0000,
+ Freight: 64.5600
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10470,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 23,
+ ProductName: "Tunnbr\u00f6d",
+ UnitPrice: 7.2000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 108.0000,
+ Freight: 64.5600
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10470,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 64,
+ ProductName: "Wimmers gute Semmelkn\u00f6del",
+ UnitPrice: 26.6000,
+ Quantity: 8,
+ Discontinued: false,
+ ExtendedPrice: 212.8000,
+ Freight: 64.5600
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10525,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 36,
+ ProductName: "Inlagd Sill",
+ UnitPrice: 19.0000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 570.0000,
+ Freight: 11.0600
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Janet Leverling",
+ OrderID: 10715,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 10,
+ ProductName: "Ikura",
+ UnitPrice: 31.0000,
+ Quantity: 21,
+ Discontinued: false,
+ ExtendedPrice: 651.0000,
+ Freight: 63.2000
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Janet Leverling",
+ OrderID: 10715,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 71,
+ ProductName: "Flotemysost",
+ UnitPrice: 21.5000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 645.0000,
+ Freight: 63.2000
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Janet Leverling",
+ OrderID: 10732,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 76,
+ ProductName: "Lakkalik\u00f6\u00f6ri",
+ UnitPrice: 18.0000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 360.0000,
+ Freight: 16.9700
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10827,
+ OrderDate: new Date("10/4/2017"),
+ ShipperName: "United Package",
+ ProductID: 10,
+ ProductName: "Ikura",
+ UnitPrice: 31.0000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 465.0000,
+ Freight: 63.5400
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10827,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 39,
+ ProductName: "Chartreuse verte",
+ UnitPrice: 18.0000,
+ Quantity: 21,
+ Discontinued: false,
+ ExtendedPrice: 378.0000,
+ Freight: 63.5400
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Robert King",
+ OrderID: 10876,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 46,
+ ProductName: "Spegesild",
+ UnitPrice: 12.0000,
+ Quantity: 21,
+ Discontinued: false,
+ ExtendedPrice: 252.0000,
+ Freight: 60.4200
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Robert King",
+ OrderID: 10876,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 64,
+ ProductName: "Wimmers gute Semmelkn\u00f6del",
+ UnitPrice: 33.2500,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 665.0000,
+ Freight: 60.4200
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Laura Callahan",
+ OrderID: 10932,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 72,
+ ProductName: "Mozzarella di Giovanni",
+ UnitPrice: 34.8000,
+ Quantity: 16,
+ Discontinued: false,
+ ExtendedPrice: 556.8000,
+ Freight: 134.6400
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Laura Callahan",
+ OrderID: 10940,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 13,
+ ProductName: "Konbu",
+ UnitPrice: 6.0000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 120.0000,
+ Freight: 19.7700
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10340,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 18,
+ ProductName: "Carnarvon Tigers",
+ UnitPrice: 50.0000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 950.0000,
+ Freight: 166.3100
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10340,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 41,
+ ProductName: "Jack's New England Clam Chowder",
+ UnitPrice: 7.7000,
+ Quantity: 12,
+ Discontinued: false,
+ ExtendedPrice: 87.7800,
+ Freight: 166.3100
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10340,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 43,
+ ProductName: "Ipoh Coffee",
+ UnitPrice: 36.8000,
+ Quantity: 40,
+ Discontinued: false,
+ ExtendedPrice: 1398.4000,
+ Freight: 166.3100
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Andrew Fuller",
+ OrderID: 10663,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 40,
+ ProductName: "Boston Crab Meat",
+ UnitPrice: 18.4000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 524.4000,
+ Freight: 113.1500
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Andrew Fuller",
+ OrderID: 10663,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 42,
+ ProductName: "Singaporean Hokkien Fried Mee",
+ UnitPrice: 14.0000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 399.0000,
+ Freight: 113.1500
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Andrew Fuller",
+ OrderID: 10663,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 51,
+ ProductName: "Manjimup Dried Apples",
+ UnitPrice: 53.0000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 1007.0000,
+ Freight: 113.1500
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Steven Buchanan",
+ OrderID: 10730,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 16,
+ ProductName: "Pavlova",
+ UnitPrice: 17.4500,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 248.6600,
+ Freight: 20.1200
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Steven Buchanan",
+ OrderID: 10730,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 31,
+ ProductName: "Gorgonzola Telino",
+ UnitPrice: 12.5000,
+ Quantity: 3,
+ Discontinued: false,
+ ExtendedPrice: 35.6200,
+ Freight: 20.1200
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Steven Buchanan",
+ OrderID: 10730,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 65,
+ ProductName: "Louisiana Fiery Hot Pepper Sauce",
+ UnitPrice: 21.0500,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 199.9700,
+ Freight: 20.1200
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 10871,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 6,
+ ProductName: "Grandma's Boysenberry Spread",
+ UnitPrice: 25.0000,
+ Quantity: 50,
+ Discontinued: false,
+ ExtendedPrice: 1187.5000,
+ Freight: 112.2700
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 10871,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 16,
+ ProductName: "Pavlova",
+ UnitPrice: 17.4500,
+ Quantity: 12,
+ Discontinued: false,
+ ExtendedPrice: 198.9300,
+ Freight: 112.2700
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 10871,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 17,
+ ProductName: "Alice Mutton",
+ UnitPrice: 39.0000,
+ Quantity: 16,
+ Discontinued: false,
+ ExtendedPrice: 592.8000,
+ Freight: 112.2700
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10525,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 40,
+ ProductName: "Boston Crab Meat",
+ UnitPrice: 18.4000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 248.4000,
+ Freight: 11.0600
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Laura Callahan",
+ OrderID: 10932,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 16,
+ ProductName: "Pavlova",
+ UnitPrice: 17.4500,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 471.1500,
+ Freight: 134.6400
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Laura Callahan",
+ OrderID: 10932,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 62,
+ ProductName: "Tarte au sucre",
+ UnitPrice: 49.3000,
+ Quantity: 14,
+ Discontinued: true,
+ ExtendedPrice: 621.1800,
+ Freight: 134.6400
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Laura Callahan",
+ OrderID: 10932,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 75,
+ ProductName: "Rh\u00f6nbr\u00e4u Klosterbier",
+ UnitPrice: 7.7500,
+ Quantity: 20,
+ Discontinued: true,
+ ExtendedPrice: 139.5000,
+ Freight: 134.6400
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10511,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 4,
+ ProductName: "Chef Anton's Cajun Seasoning",
+ UnitPrice: 22.0000,
+ Quantity: 50,
+ Discontinued: true,
+ ExtendedPrice: 935.0000,
+ Freight: 350.6400
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10511,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 7,
+ ProductName: "Uncle Bob's Organic Dried Pears",
+ UnitPrice: 30.0000,
+ Quantity: 50,
+ Discontinued: true,
+ ExtendedPrice: 1275.0000,
+ Freight: 350.6400
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10511,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 8,
+ ProductName: "Northwoods Cranberry Sauce",
+ UnitPrice: 40.0000,
+ Quantity: 10,
+ Discontinued: true,
+ ExtendedPrice: 340.0000,
+ Freight: 350.6400
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10755,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 47,
+ ProductName: "Zaanse koeken",
+ UnitPrice: 9.5000,
+ Quantity: 30,
+ Discontinued: true,
+ ExtendedPrice: 213.7500,
+ Freight: 16.7100
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10755,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 56,
+ ProductName: "Gnocchi di nonna Alice",
+ UnitPrice: 38.0000,
+ Quantity: 30,
+ Discontinued: true,
+ ExtendedPrice: 855.0000,
+ Freight: 16.7100
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10755,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 57,
+ ProductName: "Ravioli Angelo",
+ UnitPrice: 19.5000,
+ Quantity: 14,
+ Discontinued: true,
+ ExtendedPrice: 204.7500,
+ Freight: 16.7100
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10755,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 69,
+ ProductName: "Gudbrandsdalsost",
+ UnitPrice: 36.0000,
+ Quantity: 25,
+ Discontinued: true,
+ ExtendedPrice: 675.0000,
+ Freight: 16.7100
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Margaret Peacock",
+ OrderID: 11076,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 6,
+ ProductName: "Grandma's Boysenberry Spread",
+ UnitPrice: 25.0000,
+ Quantity: 20,
+ Discontinued: true,
+ ExtendedPrice: 375.0000,
+ Freight: 38.2800
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Margaret Peacock",
+ OrderID: 11076,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 14,
+ ProductName: "Tofu",
+ UnitPrice: 23.2500,
+ Quantity: 20,
+ Discontinued: true,
+ ExtendedPrice: 348.7500,
+ Freight: 38.2800
+}, {
+ ShipName: "Bon app'",
+ ShipAddress: "12, rue des Bouchers",
+ ShipCity: "Marseille",
+ ShipRegion: null,
+ ShipPostalCode: "13008",
+ ShipCountry: "France",
+ CustomerID: "BONAP",
+ CustomerName: "Bon app'",
+ Address: "12, rue des Bouchers",
+ City: "Marseille",
+ Region: null,
+ PostalCode: "13008",
+ Country: "France",
+ Salesperson: "Margaret Peacock",
+ OrderID: 11076,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 19,
+ ProductName: "Teatime Chocolate Biscuits",
+ UnitPrice: 9.2000,
+ Quantity: 10,
+ Discontinued: true,
+ ExtendedPrice: 69.0000,
+ Freight: 38.2800
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Toronto Blvd.",
+ ShipCity: "Toronto",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Toronto Blvd.",
+ City: "Toronto",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10389,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 10,
+ ProductName: "Ikura",
+ UnitPrice: 24.8000,
+ Quantity: 16,
+ Discontinued: false,
+ ExtendedPrice: 396.8000,
+ Freight: 47.4200
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Toronto Blvd.",
+ ShipCity: "Toronto",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Toronto Blvd.",
+ City: "Toronto",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10389,
+ OrderDate: new Date("10/4/2016"),
+ ShipperName: "United Package",
+ ProductID: 55,
+ ProductName: "P\u00e2t\u00e9 chinois",
+ UnitPrice: 19.2000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 288.0000,
+ Freight: 47.4200
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10389,
+ OrderDate: new Date("9/4/2018"),
+ ShipperName: "United Package",
+ ProductID: 62,
+ ProductName: "Tarte au sucre",
+ UnitPrice: 39.4000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 788.0000,
+ Freight: 47.4200
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10389,
+ OrderDate: new Date("9/4/2018"),
+ ShipperName: "United Package",
+ ProductID: 70,
+ ProductName: "Outback Lager",
+ UnitPrice: 12.0000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 360.0000,
+ Freight: 47.4200
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Janet Leverling",
+ OrderID: 10410,
+ OrderDate: new Date("9/4/2018"),
+ ShipperName: "Federal Shipping",
+ ProductID: 33,
+ ProductName: "Geitost",
+ UnitPrice: 2.0000,
+ Quantity: 49,
+ Discontinued: false,
+ ExtendedPrice: 98.0000,
+ Freight: 2.4000
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Toronto Blvd.",
+ ShipCity: "Toronto",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Toronto Blvd.",
+ City: "Toronto",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Janet Leverling",
+ OrderID: 10410,
+ OrderDate: new Date("9/4/2018"),
+ ShipperName: "Federal Shipping",
+ ProductID: 59,
+ ProductName: "Raclette Courdavault",
+ UnitPrice: 44.0000,
+ Quantity: 16,
+ Discontinued: false,
+ ExtendedPrice: 704.0000,
+ Freight: 2.4000
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Janet Leverling",
+ OrderID: 10742,
+ OrderDate: new Date("9/4/2018"),
+ ShipperName: "Federal Shipping",
+ ProductID: 3,
+ ProductName: "Aniseed Syrup",
+ UnitPrice: 10.0000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 200.0000,
+ Freight: 243.7300
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Janet Leverling",
+ OrderID: 10742,
+ OrderDate: new Date("9/4/2018"),
+ ShipperName: "Federal Shipping",
+ ProductID: 60,
+ ProductName: "Camembert Pierrot",
+ UnitPrice: 34.0000,
+ Quantity: 50,
+ Discontinued: false,
+ ExtendedPrice: 1700.0000,
+ Freight: 243.7300
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Janet Leverling",
+ OrderID: 10742,
+ OrderDate: new Date("9/4/2018"),
+ ShipperName: "Federal Shipping",
+ ProductID: 72,
+ ProductName: "Mozzarella di Giovanni",
+ UnitPrice: 34.8000,
+ Quantity: 35,
+ Discontinued: false,
+ ExtendedPrice: 1218.0000,
+ Freight: 243.7300
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Toronto Blvd.",
+ ShipCity: "Toronto",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Toronto Blvd.",
+ City: "Toronto",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Michael Suyama",
+ OrderID: 10944,
+ OrderDate: new Date("9/4/2018"),
+ ShipperName: "Federal Shipping",
+ ProductID: 56,
+ ProductName: "Gnocchi di nonna Alice",
+ UnitPrice: 38.0000,
+ Quantity: 18,
+ Discontinued: false,
+ ExtendedPrice: 684.0000,
+ Freight: 52.9200
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Toronto Blvd.",
+ ShipCity: "Toronto",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Toronto Blvd.",
+ City: "Toronto",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Andrew Fuller",
+ OrderID: 10949,
+ OrderDate: new Date("9/4/2018"),
+ ShipperName: "Federal Shipping",
+ ProductID: 6,
+ ProductName: "Grandma's Boysenberry Spread",
+ UnitPrice: 25.0000,
+ Quantity: 12,
+ Discontinued: false,
+ ExtendedPrice: 300.0000,
+ Freight: 74.4400
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Andrew Fuller",
+ OrderID: 10949,
+ OrderDate: new Date("9/4/2018"),
+ ShipperName: "Federal Shipping",
+ ProductID: 10,
+ ProductName: "Ikura",
+ UnitPrice: 31.0000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 930.0000,
+ Freight: 74.4400
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Andrew Fuller",
+ OrderID: 10949,
+ OrderDate: new Date("9/4/2018"),
+ ShipperName: "Federal Shipping",
+ ProductID: 17,
+ ProductName: "Alice Mutton",
+ UnitPrice: 39.0000,
+ Quantity: 6,
+ Discontinued: false,
+ ExtendedPrice: 234.0000,
+ Freight: 74.4400
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Andrew Fuller",
+ OrderID: 10949,
+ OrderDate: new Date("9/4/2018"),
+ ShipperName: "Federal Shipping",
+ ProductID: 62,
+ ProductName: "Tarte au sucre",
+ UnitPrice: 49.3000,
+ Quantity: 60,
+ Discontinued: false,
+ ExtendedPrice: 2958.0000,
+ Freight: 74.4400
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10975,
+ OrderDate: new Date("9/4/2018"),
+ ShipperName: "Federal Shipping",
+ ProductID: 8,
+ ProductName: "Northwoods Cranberry Sauce",
+ UnitPrice: 40.0000,
+ Quantity: 16,
+ Discontinued: false,
+ ExtendedPrice: 640.0000,
+ Freight: 32.2700
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10975,
+ OrderDate: new Date("9/4/2018"),
+ ShipperName: "Federal Shipping",
+ ProductID: 75,
+ ProductName: "Rh\u00f6nbr\u00e4u Klosterbier",
+ UnitPrice: 7.7500,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 77.5000,
+ Freight: 32.2700
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Toronto Blvd.",
+ ShipCity: "Toronto",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Toronto Blvd.",
+ City: "Toronto",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 10411,
+ OrderDate: new Date("5/12/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 41,
+ ProductName: "Jack's New England Clam Chowder",
+ UnitPrice: 7.7000,
+ Quantity: 25,
+ Discontinued: true,
+ ExtendedPrice: 154.0000,
+ Freight: 23.6500
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 10411,
+ OrderDate: new Date("5/12/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 44,
+ ProductName: "Gula Malacca",
+ UnitPrice: 15.5000,
+ Quantity: 40,
+ Discontinued: true,
+ ExtendedPrice: 496.0000,
+ Freight: 23.6500
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 10411,
+ OrderDate: new Date("5/12/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 59,
+ ProductName: "Raclette Courdavault",
+ UnitPrice: 44.0000,
+ Quantity: 9,
+ Discontinued: true,
+ ExtendedPrice: 316.8000,
+ Freight: 23.6500
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10431,
+ OrderDate: new Date("5/12/2017"),
+ ShipperName: "United Package",
+ ProductID: 17,
+ ProductName: "Alice Mutton",
+ UnitPrice: 31.2000,
+ Quantity: 50,
+ Discontinued: true,
+ ExtendedPrice: 1170.0000,
+ Freight: 44.1700
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10431,
+ OrderDate: new Date("5/12/2017"),
+ ShipperName: "United Package",
+ ProductID: 40,
+ ProductName: "Boston Crab Meat",
+ UnitPrice: 14.7000,
+ Quantity: 50,
+ Discontinued: true,
+ ExtendedPrice: 551.2500,
+ Freight: 44.1700
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10431,
+ OrderDate: new Date("5/12/2017"),
+ ShipperName: "United Package",
+ ProductID: 47,
+ ProductName: "Zaanse koeken",
+ UnitPrice: 7.6000,
+ Quantity: 30,
+ Discontinued: true,
+ ExtendedPrice: 171.0000,
+ Freight: 44.1700
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Janet Leverling",
+ OrderID: 10918,
+ OrderDate: new Date("5/12/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 1,
+ ProductName: "Chai",
+ UnitPrice: 18.0000,
+ Quantity: 60,
+ Discontinued: true,
+ ExtendedPrice: 810.0000,
+ Freight: 48.8300
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Janet Leverling",
+ OrderID: 10918,
+ OrderDate: new Date("5/12/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 60,
+ ProductName: "Camembert Pierrot",
+ UnitPrice: 34.0000,
+ Quantity: 25,
+ Discontinued: true,
+ ExtendedPrice: 637.5000,
+ Freight: 48.8300
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Michael Suyama",
+ OrderID: 10944,
+ OrderDate: new Date("5/12/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 11,
+ ProductName: "Queso Cabrales",
+ UnitPrice: 21.0000,
+ Quantity: 5,
+ Discontinued: true,
+ ExtendedPrice: 78.7500,
+ Freight: 52.9200
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Michael Suyama",
+ OrderID: 10944,
+ OrderDate: new Date("5/12/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 44,
+ ProductName: "Gula Malacca",
+ UnitPrice: 19.4500,
+ Quantity: 18,
+ Discontinued: true,
+ ExtendedPrice: 262.5800,
+ Freight: 52.9200
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Nancy Davolio",
+ OrderID: 11027,
+ OrderDate: new Date("5/12/2017"),
+ ShipperName: "Speedy Express",
+ ProductID: 24,
+ ProductName: "Guaran\u00e1 Fant\u00e1stica",
+ UnitPrice: 4.5000,
+ Quantity: 30,
+ Discontinued: true,
+ ExtendedPrice: 101.2500,
+ Freight: 52.5200
+}, {
+ ShipName: "Bottom-Dollar Markets",
+ ShipAddress: "23 Tsawassen Blvd.",
+ ShipCity: "Tsawassen",
+ ShipRegion: "BC",
+ ShipPostalCode: "T2F 8M4",
+ ShipCountry: "Canada",
+ CustomerID: "BOTTM",
+ CustomerName: "Bottom-Dollar Markets",
+ Address: "23 Tsawassen Blvd.",
+ City: "Tsawassen",
+ Region: "BC",
+ PostalCode: "T2F 8M4",
+ Country: "Canada",
+ Salesperson: "Nancy Davolio",
+ OrderID: 11027,
+ OrderDate: new Date("5/12/2017"),
+ ShipperName: "Speedy Express",
+ ProductID: 62,
+ ProductName: "Tarte au sucre",
+ UnitPrice: 49.3000,
+ Quantity: 21,
+ Discontinued: true,
+ ExtendedPrice: 776.4800,
+ Freight: 52.5200
+}, {
+ ShipName: "B's Beverages",
+ ShipAddress: "Fauntleroy Circus",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "EC2 5NT",
+ ShipCountry: "UK",
+ CustomerID: "BSBEV",
+ CustomerName: "B's Beverages",
+ Address: "Fauntleroy Circus",
+ City: "London",
+ Region: null,
+ PostalCode: "EC2 5NT",
+ Country: "UK",
+ Salesperson: "Robert King",
+ OrderID: 10289,
+ OrderDate: new Date("5/12/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 3,
+ ProductName: "Aniseed Syrup",
+ UnitPrice: 8.0000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 240.0000,
+ Freight: 22.7700
+}, {
+ ShipName: "B's Beverages",
+ ShipAddress: "Fauntleroy Circus",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "EC2 5NT",
+ ShipCountry: "UK",
+ CustomerID: "BSBEV",
+ CustomerName: "B's Beverages",
+ Address: "Fauntleroy Circus",
+ City: "London",
+ Region: null,
+ PostalCode: "EC2 5NT",
+ Country: "UK",
+ Salesperson: "Robert King",
+ OrderID: 10289,
+ OrderDate: new Date("5/12/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 64,
+ ProductName: "Wimmers gute Semmelkn\u00f6del",
+ UnitPrice: 26.6000,
+ Quantity: 9,
+ Discontinued: false,
+ ExtendedPrice: 239.4000,
+ Freight: 22.7700
+}, {
+ ShipName: "B's Beverages",
+ ShipAddress: "Fauntleroy Circus",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "EC2 5NT",
+ ShipCountry: "UK",
+ CustomerID: "BSBEV",
+ CustomerName: "B's Beverages",
+ Address: "Fauntleroy Circus",
+ City: "London",
+ Region: null,
+ PostalCode: "EC2 5NT",
+ Country: "UK",
+ Salesperson: "Andrew Fuller",
+ OrderID: 10471,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 7,
+ ProductName: "Uncle Bob's Organic Dried Pears",
+ UnitPrice: 24.0000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 720.0000,
+ Freight: 45.5900
+}, {
+ ShipName: "B's Beverages",
+ ShipAddress: "Fauntleroy Circus",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "EC2 5NT",
+ ShipCountry: "UK",
+ CustomerID: "BSBEV",
+ CustomerName: "B's Beverages",
+ Address: "Fauntleroy Circus",
+ City: "London",
+ Region: null,
+ PostalCode: "EC2 5NT",
+ Country: "UK",
+ Salesperson: "Andrew Fuller",
+ OrderID: 10471,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 56,
+ ProductName: "Gnocchi di nonna Alice",
+ UnitPrice: 30.4000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 608.0000,
+ Freight: 45.5900
+}, {
+ ShipName: "B's Beverages",
+ ShipAddress: "Fauntleroy Circus",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "EC2 5NT",
+ ShipCountry: "UK",
+ CustomerID: "BSBEV",
+ CustomerName: "B's Beverages",
+ Address: "Fauntleroy Circus",
+ City: "London",
+ Region: null,
+ PostalCode: "EC2 5NT",
+ Country: "UK",
+ Salesperson: "Janet Leverling",
+ OrderID: 10484,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 21,
+ ProductName: "Sir Rodney's Scones",
+ UnitPrice: 8.0000,
+ Quantity: 14,
+ Discontinued: false,
+ ExtendedPrice: 112.0000,
+ Freight: 6.8800
+}, {
+ ShipName: "B's Beverages",
+ ShipAddress: "Fauntleroy Circus",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "EC2 5NT",
+ ShipCountry: "UK",
+ CustomerID: "BSBEV",
+ CustomerName: "B's Beverages",
+ Address: "Fauntleroy Circus",
+ City: "London",
+ Region: null,
+ PostalCode: "EC2 5NT",
+ Country: "UK",
+ Salesperson: "Janet Leverling",
+ OrderID: 10484,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 40,
+ ProductName: "Boston Crab Meat",
+ UnitPrice: 14.7000,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 147.0000,
+ Freight: 6.8800
+}, {
+ ShipName: "B's Beverages",
+ ShipAddress: "Fauntleroy Circus",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "EC2 5NT",
+ ShipCountry: "UK",
+ CustomerID: "BSBEV",
+ CustomerName: "B's Beverages",
+ Address: "Fauntleroy Circus",
+ City: "London",
+ Region: null,
+ PostalCode: "EC2 5NT",
+ Country: "UK",
+ Salesperson: "Janet Leverling",
+ OrderID: 10484,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 51,
+ ProductName: "Manjimup Dried Apples",
+ UnitPrice: 42.4000,
+ Quantity: 3,
+ Discontinued: false,
+ ExtendedPrice: 127.2000,
+ Freight: 6.8800
+}, {
+ ShipName: "B's Beverages",
+ ShipAddress: "Fauntleroy Circus",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "EC2 5NT",
+ ShipCountry: "UK",
+ CustomerID: "BSBEV",
+ CustomerName: "B's Beverages",
+ Address: "Fauntleroy Circus",
+ City: "London",
+ Region: null,
+ PostalCode: "EC2 5NT",
+ Country: "UK",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 10538,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 70,
+ ProductName: "Outback Lager",
+ UnitPrice: 15.0000,
+ Quantity: 7,
+ Discontinued: false,
+ ExtendedPrice: 105.0000,
+ Freight: 4.8700
+}, {
+ ShipName: "B's Beverages",
+ ShipAddress: "Fauntleroy Circus",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "EC2 5NT",
+ ShipCountry: "UK",
+ CustomerID: "BSBEV",
+ CustomerName: "B's Beverages",
+ Address: "Fauntleroy Circus",
+ City: "London",
+ Region: null,
+ PostalCode: "EC2 5NT",
+ Country: "UK",
+ Salesperson: "Anne Dodsworth",
+ OrderID: 10538,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 72,
+ ProductName: "Mozzarella di Giovanni",
+ UnitPrice: 34.8000,
+ Quantity: 1,
+ Discontinued: false,
+ ExtendedPrice: 34.8000,
+ Freight: 4.8700
+}, {
+ ShipName: "B's Beverages",
+ ShipAddress: "Fauntleroy Circus",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "EC2 5NT",
+ ShipCountry: "UK",
+ CustomerID: "BSBEV",
+ CustomerName: "B's Beverages",
+ Address: "Fauntleroy Circus",
+ City: "London",
+ Region: null,
+ PostalCode: "EC2 5NT",
+ Country: "UK",
+ Salesperson: "Michael Suyama",
+ OrderID: 10539,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 13,
+ ProductName: "Konbu",
+ UnitPrice: 6.0000,
+ Quantity: 8,
+ Discontinued: false,
+ ExtendedPrice: 48.0000,
+ Freight: 12.3600
+}, {
+ ShipName: "B's Beverages",
+ ShipAddress: "Fauntleroy Circus",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "EC2 5NT",
+ ShipCountry: "UK",
+ CustomerID: "BSBEV",
+ CustomerName: "B's Beverages",
+ Address: "Fauntleroy Circus",
+ City: "London",
+ Region: null,
+ PostalCode: "EC2 5NT",
+ Country: "UK",
+ Salesperson: "Michael Suyama",
+ OrderID: 10539,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 21,
+ ProductName: "Sir Rodney's Scones",
+ UnitPrice: 10.0000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 150.0000,
+ Freight: 12.3600
+}, {
+ ShipName: "B's Beverages",
+ ShipAddress: "Fauntleroy Circus",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "EC2 5NT",
+ ShipCountry: "UK",
+ CustomerID: "BSBEV",
+ CustomerName: "B's Beverages",
+ Address: "Fauntleroy Circus",
+ City: "London",
+ Region: null,
+ PostalCode: "EC2 5NT",
+ Country: "UK",
+ Salesperson: "Michael Suyama",
+ OrderID: 10539,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 33,
+ ProductName: "Geitost",
+ UnitPrice: 2.5000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 37.5000,
+ Freight: 12.3600
+}, {
+ ShipName: "B's Beverages",
+ ShipAddress: "Fauntleroy Circus",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "EC2 5NT",
+ ShipCountry: "UK",
+ CustomerID: "BSBEV",
+ CustomerName: "B's Beverages",
+ Address: "Fauntleroy Circus",
+ City: "London",
+ Region: null,
+ PostalCode: "EC2 5NT",
+ Country: "UK",
+ Salesperson: "Michael Suyama",
+ OrderID: 10539,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 49,
+ ProductName: "Maxilaku",
+ UnitPrice: 20.0000,
+ Quantity: 6,
+ Discontinued: false,
+ ExtendedPrice: 120.0000,
+ Freight: 12.3600
+}, {
+ ShipName: "B's Beverages",
+ ShipAddress: "Fauntleroy Circus",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "EC2 5NT",
+ ShipCountry: "UK",
+ CustomerID: "BSBEV",
+ CustomerName: "B's Beverages",
+ Address: "Fauntleroy Circus",
+ City: "London",
+ Region: null,
+ PostalCode: "EC2 5NT",
+ Country: "UK",
+ Salesperson: "Janet Leverling",
+ OrderID: 10947,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 59,
+ ProductName: "Raclette Courdavault",
+ UnitPrice: 55.0000,
+ Quantity: 4,
+ Discontinued: false,
+ ExtendedPrice: 220.0000,
+ Freight: 3.2600
+}, {
+ ShipName: "B's Beverages",
+ ShipAddress: "Fauntleroy Circus",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "EC2 5NT",
+ ShipCountry: "UK",
+ CustomerID: "BSBEV",
+ CustomerName: "B's Beverages",
+ Address: "Fauntleroy Circus",
+ City: "London",
+ Region: null,
+ PostalCode: "EC2 5NT",
+ Country: "UK",
+ Salesperson: "Nancy Davolio",
+ OrderID: 11023,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 7,
+ ProductName: "Uncle Bob's Organic Dried Pears",
+ UnitPrice: 30.0000,
+ Quantity: 4,
+ Discontinued: false,
+ ExtendedPrice: 120.0000,
+ Freight: 123.8300
+}, {
+ ShipName: "B's Beverages",
+ ShipAddress: "Fauntleroy Circus",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "EC2 5NT",
+ ShipCountry: "UK",
+ CustomerID: "BSBEV",
+ CustomerName: "B's Beverages",
+ Address: "Fauntleroy Circus",
+ City: "London",
+ Region: null,
+ PostalCode: "EC2 5NT",
+ Country: "UK",
+ Salesperson: "Nancy Davolio",
+ OrderID: 11023,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 43,
+ ProductName: "Ipoh Coffee",
+ UnitPrice: 46.0000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 1380.0000,
+ Freight: 123.8300
+}, {
+ ShipName: "Cactus Comidas para llevar",
+ ShipAddress: "Cerrito 333",
+ ShipCity: "Buenos Aires",
+ ShipRegion: null,
+ ShipPostalCode: "1010",
+ ShipCountry: "Argentina",
+ CustomerID: "CACTU",
+ CustomerName: "Cactus Comidas para llevar",
+ Address: "Cerrito 333",
+ City: "Buenos Aires",
+ Region: null,
+ PostalCode: "1010",
+ Country: "Argentina",
+ Salesperson: "Laura Callahan",
+ OrderID: 10521,
+ OrderDate: new Date("4/14/2017"),
+ ShipperName: "United Package",
+ ProductID: 68,
+ ProductName: "Scottish Longbreads",
+ UnitPrice: 12.5000,
+ Quantity: 6,
+ Discontinued: true,
+ ExtendedPrice: 75.0000,
+ Freight: 17.2200
+}, {
+ ShipName: "Cactus Comidas para llevar",
+ ShipAddress: "Cerrito 333",
+ ShipCity: "Buenos Aires",
+ ShipRegion: null,
+ ShipPostalCode: "1010",
+ ShipCountry: "Argentina",
+ CustomerID: "CACTU",
+ CustomerName: "Cactus Comidas para llevar",
+ Address: "Cerrito 333",
+ City: "Buenos Aires",
+ Region: null,
+ PostalCode: "1010",
+ Country: "Argentina",
+ Salesperson: "Laura Callahan",
+ OrderID: 11054,
+ OrderDate: new Date("4/14/2017"),
+ ShipperName: "Speedy Express",
+ ProductID: 33,
+ ProductName: "Geitost",
+ UnitPrice: 2.5000,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 25.0000,
+ Freight: 0.3300
+}, {
+ ShipName: "Cactus Comidas para llevar",
+ ShipAddress: "Cerrito 333",
+ ShipCity: "Buenos Aires",
+ ShipRegion: null,
+ ShipPostalCode: "1010",
+ ShipCountry: "Argentina",
+ CustomerID: "CACTU",
+ CustomerName: "Cactus Comidas para llevar",
+ Address: "Cerrito 333",
+ City: "Buenos Aires",
+ Region: null,
+ PostalCode: "1010",
+ Country: "Argentina",
+ Salesperson: "Laura Callahan",
+ OrderID: 11054,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 67,
+ ProductName: "Laughing Lumberjack Lager",
+ UnitPrice: 14.0000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 280.0000,
+ Freight: 0.3300
+}, {
+ ShipName: "Centro comercial Moctezuma",
+ ShipAddress: "Sierras de Granada 9993",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05022",
+ ShipCountry: "Mexico",
+ CustomerID: "CENTC",
+ CustomerName: "Centro comercial Moctezuma",
+ Address: "Sierras de Granada 9993",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05022",
+ Country: "Mexico",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10259,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 21,
+ ProductName: "Sir Rodney's Scones",
+ UnitPrice: 8.0000,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 80.0000,
+ Freight: 3.2500
+}, {
+ ShipName: "Centro comercial Moctezuma",
+ ShipAddress: "Sierras de Granada 9993",
+ ShipCity: "M\u00e9xico D.F.",
+ ShipRegion: null,
+ ShipPostalCode: "05022",
+ ShipCountry: "Mexico",
+ CustomerID: "CENTC",
+ CustomerName: "Centro comercial Moctezuma",
+ Address: "Sierras de Granada 9993",
+ City: "M\u00e9xico D.F.",
+ Region: null,
+ PostalCode: "05022",
+ Country: "Mexico",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10259,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 37,
+ ProductName: "Gravad lax",
+ UnitPrice: 20.8000,
+ Quantity: 1,
+ Discontinued: false,
+ ExtendedPrice: 20.8000,
+ Freight: 3.2500
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Steven Buchanan",
+ OrderID: 10254,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 74,
+ ProductName: "Longlife Tofu",
+ UnitPrice: 8.0000,
+ Quantity: 21,
+ Discontinued: false,
+ ExtendedPrice: 168.0000,
+ Freight: 22.9800
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Michael Suyama",
+ OrderID: 10370,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 64,
+ ProductName: "Wimmers gute Semmelkn\u00f6del",
+ UnitPrice: 26.6000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 798.0000,
+ Freight: 1.1700
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Michael Suyama",
+ OrderID: 10519,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 56,
+ ProductName: "Gnocchi di nonna Alice",
+ UnitPrice: 38.0000,
+ Quantity: 40,
+ Discontinued: false,
+ ExtendedPrice: 1520.0000,
+ Freight: 91.7600
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10746,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 13,
+ ProductName: "Konbu",
+ UnitPrice: 6.0000,
+ Quantity: 6,
+ Discontinued: false,
+ ExtendedPrice: 36.0000,
+ Freight: 31.4300
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10746,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 42,
+ ProductName: "Singaporean Hokkien Fried Mee",
+ UnitPrice: 14.0000,
+ Quantity: 28,
+ Discontinued: false,
+ ExtendedPrice: 392.0000,
+ Freight: 31.4300
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10746,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 62,
+ ProductName: "Tarte au sucre",
+ UnitPrice: 49.3000,
+ Quantity: 9,
+ Discontinued: false,
+ ExtendedPrice: 443.7000,
+ Freight: 31.4300
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10746,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 69,
+ ProductName: "Gudbrandsdalsost",
+ UnitPrice: 36.0000,
+ Quantity: 40,
+ Discontinued: false,
+ ExtendedPrice: 1440.0000,
+ Freight: 31.4300
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10966,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 37,
+ ProductName: "Gravad lax",
+ UnitPrice: 26.0000,
+ Quantity: 8,
+ Discontinued: false,
+ ExtendedPrice: 208.0000,
+ Freight: 27.1900
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Margaret Peacock",
+ OrderID: 11029,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 56,
+ ProductName: "Gnocchi di nonna Alice",
+ UnitPrice: 38.0000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 760.0000,
+ Freight: 47.8400
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Margaret Peacock",
+ OrderID: 11029,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 63,
+ ProductName: "Vegie-spread",
+ UnitPrice: 43.9000,
+ Quantity: 12,
+ Discontinued: false,
+ ExtendedPrice: 526.8000,
+ Freight: 47.8400
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Janet Leverling",
+ OrderID: 11041,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 63,
+ ProductName: "Vegie-spread",
+ UnitPrice: 43.9000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 1317.0000,
+ Freight: 48.2200
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Michael Suyama",
+ OrderID: 10519,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 10,
+ ProductName: "Ikura",
+ UnitPrice: 31.0000,
+ Quantity: 16,
+ Discontinued: true,
+ ExtendedPrice: 471.2000,
+ Freight: 91.7600
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Michael Suyama",
+ OrderID: 10519,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 60,
+ ProductName: "Camembert Pierrot",
+ UnitPrice: 34.0000,
+ Quantity: 10,
+ Discontinued: true,
+ ExtendedPrice: 323.0000,
+ Freight: 91.7600
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Robert King",
+ OrderID: 10731,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 21,
+ ProductName: "Sir Rodney's Scones",
+ UnitPrice: 10.0000,
+ Quantity: 40,
+ Discontinued: true,
+ ExtendedPrice: 380.0000,
+ Freight: 96.6500
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Robert King",
+ OrderID: 10731,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 51,
+ ProductName: "Manjimup Dried Apples",
+ UnitPrice: 53.0000,
+ Quantity: 30,
+ Discontinued: true,
+ ExtendedPrice: 1510.5000,
+ Freight: 96.6500
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Steven Buchanan",
+ OrderID: 10254,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 24,
+ ProductName: "Guaran\u00e1 Fant\u00e1stica",
+ UnitPrice: 3.6000,
+ Quantity: 15,
+ Discontinued: true,
+ ExtendedPrice: 45.9000,
+ Freight: 22.9800
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Steven Buchanan",
+ OrderID: 10254,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 55,
+ ProductName: "P\u00e2t\u00e9 chinois",
+ UnitPrice: 19.2000,
+ Quantity: 21,
+ Discontinued: true,
+ ExtendedPrice: 342.7200,
+ Freight: 22.9800
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Michael Suyama",
+ OrderID: 10370,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 1,
+ ProductName: "Chai",
+ UnitPrice: 14.4000,
+ Quantity: 15,
+ Discontinued: true,
+ ExtendedPrice: 183.6000,
+ Freight: 1.1700
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Michael Suyama",
+ OrderID: 10370,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 74,
+ ProductName: "Longlife Tofu",
+ UnitPrice: 8.0000,
+ Quantity: 20,
+ Discontinued: true,
+ ExtendedPrice: 136.0000,
+ Freight: 1.1700
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10966,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 56,
+ ProductName: "Gnocchi di nonna Alice",
+ UnitPrice: 38.0000,
+ Quantity: 12,
+ Discontinued: true,
+ ExtendedPrice: 387.6000,
+ Freight: 27.1900
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10966,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 62,
+ ProductName: "Tarte au sucre",
+ UnitPrice: 49.3000,
+ Quantity: 12,
+ Discontinued: true,
+ ExtendedPrice: 502.8600,
+ Freight: 27.1900
+}, {
+ ShipName: "Chop-suey Chinese",
+ ShipAddress: "Hauptstr. 31",
+ ShipCity: "Bern",
+ ShipRegion: null,
+ ShipPostalCode: "3012",
+ ShipCountry: "Switzerland",
+ CustomerID: "CHOPS",
+ CustomerName: "Chop-suey Chinese",
+ Address: "Hauptstr. 29",
+ City: "Bern",
+ Region: null,
+ PostalCode: "3012",
+ Country: "Switzerland",
+ Salesperson: "Janet Leverling",
+ OrderID: 11041,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 2,
+ ProductName: "Chang",
+ UnitPrice: 19.0000,
+ Quantity: 30,
+ Discontinued: true,
+ ExtendedPrice: 456.0000,
+ Freight: 48.2200
+}, {
+ ShipName: "Com\u00e9rcio Mineiro",
+ ShipAddress: "Av. dos Lus\u00edadas, 23",
+ ShipCity: "Rio de Janeiro",
+ ShipRegion: "SP",
+ ShipPostalCode: "05432-043",
+ ShipCountry: "Brazil",
+ CustomerID: "COMMI",
+ CustomerName: "Com\u00e9rcio Mineiro",
+ Address: "Av. dos Lus\u00edadas, 23",
+ City: "Rio de Janeiro",
+ Region: "SP",
+ PostalCode: "05432-043",
+ Country: "Brazil",
+ Salesperson: "Laura Callahan",
+ OrderID: 10290,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 5,
+ ProductName: "Chef Anton's Gumbo Mix",
+ UnitPrice: 17.0000,
+ Quantity: 20,
+ Discontinued: true,
+ ExtendedPrice: 340.0000,
+ Freight: 79.7000
+}, {
+ ShipName: "Com\u00e9rcio Mineiro",
+ ShipAddress: "Av. dos Lus\u00edadas, 23",
+ ShipCity: "Sao Paulo",
+ ShipRegion: "SP",
+ ShipPostalCode: "05432-043",
+ ShipCountry: "Brazil",
+ CustomerID: "COMMI",
+ CustomerName: "Com\u00e9rcio Mineiro",
+ Address: "Av. dos Lus\u00edadas, 23",
+ City: "Sao Paulo",
+ Region: "SP",
+ PostalCode: "05432-043",
+ Country: "Brazil",
+ Salesperson: "Laura Callahan",
+ OrderID: 10290,
+ OrderDate: new Date("2/15/2017"),
+ ShipperName: "Speedy Express",
+ ProductID: 29,
+ ProductName: "Th\u00fcringer Rostbratwurst",
+ UnitPrice: 99.0000,
+ Quantity: 15,
+ Discontinued: true,
+ ExtendedPrice: 1485.0000,
+ Freight: 79.7000
+}, {
+ ShipName: "Com\u00e9rcio Mineiro",
+ ShipAddress: "Av. dos Lus\u00edadas, 23",
+ ShipCity: "Rio de Janeiro",
+ ShipRegion: "SP",
+ ShipPostalCode: "05432-043",
+ ShipCountry: "Brazil",
+ CustomerID: "COMMI",
+ CustomerName: "Com\u00e9rcio Mineiro",
+ Address: "Av. dos Lus\u00edadas, 23",
+ City: "Rio de Janeiro",
+ Region: "SP",
+ PostalCode: "05432-043",
+ Country: "Brazil",
+ Salesperson: "Laura Callahan",
+ OrderID: 10290,
+ OrderDate: new Date("4/14/2017"),
+ ShipperName: "Speedy Express",
+ ProductID: 49,
+ ProductName: "Maxilaku",
+ UnitPrice: 16.0000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 240.0000,
+ Freight: 79.7000
+}, {
+ ShipName: "Com\u00e9rcio Mineiro",
+ ShipAddress: "Av. dos Lus\u00edadas, 23",
+ ShipCity: "Sao Paulo",
+ ShipRegion: "SP",
+ ShipPostalCode: "05432-043",
+ ShipCountry: "Brazil",
+ CustomerID: "COMMI",
+ CustomerName: "Com\u00e9rcio Mineiro",
+ Address: "Av. dos Lus\u00edadas, 23",
+ City: "Sao Paulo",
+ Region: "SP",
+ PostalCode: "05432-043",
+ Country: "Brazil",
+ Salesperson: "Laura Callahan",
+ OrderID: 10290,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 77,
+ ProductName: "Original Frankfurter gr\u00fcne So\u00dfe",
+ UnitPrice: 10.4000,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 104.0000,
+ Freight: 79.7000
+}, {
+ ShipName: "Com\u00e9rcio Mineiro",
+ ShipAddress: "Av. dos Lus\u00edadas, 23",
+ ShipCity: "Sao Paulo",
+ ShipRegion: "SP",
+ ShipPostalCode: "05432-043",
+ ShipCountry: "Brazil",
+ CustomerID: "COMMI",
+ CustomerName: "Com\u00e9rcio Mineiro",
+ Address: "Av. dos Lus\u00edadas, 23",
+ City: "Sao Paulo",
+ Region: "SP",
+ PostalCode: "05432-043",
+ Country: "Brazil",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10466,
+ OrderDate: new Date("5/4/2017"),
+ ShipperName: "Speedy Express",
+ ProductID: 11,
+ ProductName: "Queso Cabrales",
+ UnitPrice: 16.8000,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 168.0000,
+ Freight: 11.9300
+}, {
+ ShipName: "Com\u00e9rcio Mineiro",
+ ShipAddress: "Av. dos Lus\u00edadas, 23",
+ ShipCity: "Sao Paulo",
+ ShipRegion: "SP",
+ ShipPostalCode: "05432-043",
+ ShipCountry: "Brazil",
+ CustomerID: "COMMI",
+ CustomerName: "Com\u00e9rcio Mineiro",
+ Address: "Av. dos Lus\u00edadas, 23",
+ City: "Sao Paulo",
+ Region: "SP",
+ PostalCode: "05432-043",
+ Country: "Brazil",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10466,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 46,
+ ProductName: "Spegesild",
+ UnitPrice: 9.6000,
+ Quantity: 5,
+ Discontinued: false,
+ ExtendedPrice: 48.0000,
+ Freight: 11.9300
+}, {
+ ShipName: "Com\u00e9rcio Mineiro",
+ ShipAddress: "Av. dos Lus\u00edadas, 23",
+ ShipCity: "Rio de Janeiro",
+ ShipRegion: "SP",
+ ShipPostalCode: "05432-043",
+ ShipCountry: "Brazil",
+ CustomerID: "COMMI",
+ CustomerName: "Com\u00e9rcio Mineiro",
+ Address: "Av. dos Lus\u00edadas, 23",
+ City: "Rio de Janeiro",
+ Region: "SP",
+ PostalCode: "05432-043",
+ Country: "Brazil",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10494,
+ OrderDate: new Date("4/1/2017"),
+ ShipperName: "United Package",
+ ProductID: 56,
+ ProductName: "Gnocchi di nonna Alice",
+ UnitPrice: 30.4000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 912.0000,
+ Freight: 65.9900
+}, {
+ ShipName: "Com\u00e9rcio Mineiro",
+ ShipAddress: "Av. dos Lus\u00edadas, 23",
+ ShipCity: "Rio de Janeiro",
+ ShipRegion: "SP",
+ ShipPostalCode: "05432-043",
+ ShipCountry: "Brazil",
+ CustomerID: "COMMI",
+ CustomerName: "Com\u00e9rcio Mineiro",
+ Address: "Av. dos Lus\u00edadas, 23",
+ City: "Rio de Janeiro",
+ Region: "SP",
+ PostalCode: "05432-043",
+ Country: "Brazil",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10969,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 46,
+ ProductName: "Spegesild",
+ UnitPrice: 12.0000,
+ Quantity: 9,
+ Discontinued: false,
+ ExtendedPrice: 108.0000,
+ Freight: 0.2100
+}, {
+ ShipName: "Com\u00e9rcio Mineiro",
+ ShipAddress: "Av. dos Lus\u00edadas, 23",
+ ShipCity: "Sao Paulo",
+ ShipRegion: "SP",
+ ShipPostalCode: "05432-043",
+ ShipCountry: "Brazil",
+ CustomerID: "COMMI",
+ CustomerName: "Com\u00e9rcio Mineiro",
+ Address: "Av. dos Lus\u00edadas, 23",
+ City: "Sao Paulo",
+ Region: "SP",
+ PostalCode: "05432-043",
+ Country: "Brazil",
+ Salesperson: "Andrew Fuller",
+ OrderID: 11042,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 44,
+ ProductName: "Gula Malacca",
+ UnitPrice: 19.4500,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 291.7500,
+ Freight: 29.9900
+}, {
+ ShipName: "Com\u00e9rcio Mineiro",
+ ShipAddress: "Av. dos Lus\u00edadas, 23",
+ ShipCity: "Sao Paulo",
+ ShipRegion: "SP",
+ ShipPostalCode: "05432-043",
+ ShipCountry: "Brazil",
+ CustomerID: "COMMI",
+ CustomerName: "Com\u00e9rcio Mineiro",
+ Address: "Av. dos Lus\u00edadas, 23",
+ City: "Sao Paulo",
+ Region: "SP",
+ PostalCode: "05432-043",
+ Country: "Brazil",
+ Salesperson: "Andrew Fuller",
+ OrderID: 11042,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 61,
+ ProductName: "Sirop d'\u00e9rable",
+ UnitPrice: 28.5000,
+ Quantity: 4,
+ Discontinued: false,
+ ExtendedPrice: 114.0000,
+ Freight: 29.9900
+}, {
+ ShipName: "Consolidated Holdings",
+ ShipAddress: "Berkeley Gardens 12 Brewery",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX1 6LT",
+ ShipCountry: "UK",
+ CustomerID: "CONSH",
+ CustomerName: "Consolidated Holdings",
+ Address: "Berkeley Gardens 12 Brewery",
+ City: "London",
+ Region: null,
+ PostalCode: "WX1 6LT",
+ Country: "UK",
+ Salesperson: "Laura Callahan",
+ OrderID: 10435,
+ OrderDate: new Date("4/16/2016"),
+ ShipperName: "United Package",
+ ProductID: 2,
+ ProductName: "Chang",
+ UnitPrice: 15.2000,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 152.0000,
+ Freight: 9.2100
+}, {
+ ShipName: "Consolidated Holdings",
+ ShipAddress: "Berkeley Gardens 12 Brewery",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX1 6LT",
+ ShipCountry: "UK",
+ CustomerID: "CONSH",
+ CustomerName: "Consolidated Holdings",
+ Address: "Berkeley Gardens 12 Brewery",
+ City: "London",
+ Region: null,
+ PostalCode: "WX1 6LT",
+ Country: "UK",
+ Salesperson: "Laura Callahan",
+ OrderID: 10435,
+ OrderDate: new Date("5/12/2016"),
+ ShipperName: "United Package",
+ ProductID: 22,
+ ProductName: "Gustaf's Kn\u00e4ckebr\u00f6d",
+ UnitPrice: 16.8000,
+ Quantity: 12,
+ Discontinued: false,
+ ExtendedPrice: 201.6000,
+ Freight: 9.2100
+}, {
+ ShipName: "Consolidated Holdings",
+ ShipAddress: "Berkeley Gardens 12 Brewery",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX1 6LT",
+ ShipCountry: "UK",
+ CustomerID: "CONSH",
+ CustomerName: "Consolidated Holdings",
+ Address: "Berkeley Gardens 12 Brewery",
+ City: "London",
+ Region: null,
+ PostalCode: "WX1 6LT",
+ Country: "UK",
+ Salesperson: "Laura Callahan",
+ OrderID: 10435,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 72,
+ ProductName: "Mozzarella di Giovanni",
+ UnitPrice: 27.8000,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 278.0000,
+ Freight: 9.2100
+}, {
+ ShipName: "Consolidated Holdings",
+ ShipAddress: "Berkeley Gardens 12 Brewery",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX1 6LT",
+ ShipCountry: "UK",
+ CustomerID: "CONSH",
+ CustomerName: "Consolidated Holdings",
+ Address: "Berkeley Gardens 12 Brewery",
+ City: "London",
+ Region: null,
+ PostalCode: "WX1 6LT",
+ Country: "UK",
+ Salesperson: "Andrew Fuller",
+ OrderID: 10462,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 13,
+ ProductName: "Konbu",
+ UnitPrice: 4.8000,
+ Quantity: 1,
+ Discontinued: false,
+ ExtendedPrice: 4.8000,
+ Freight: 6.1700
+}, {
+ ShipName: "Consolidated Holdings",
+ ShipAddress: "Berkeley Gardens 12 Brewery",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX1 6LT",
+ ShipCountry: "UK",
+ CustomerID: "CONSH",
+ CustomerName: "Consolidated Holdings",
+ Address: "Berkeley Gardens 12 Brewery",
+ City: "London",
+ Region: null,
+ PostalCode: "WX1 6LT",
+ Country: "UK",
+ Salesperson: "Andrew Fuller",
+ OrderID: 10462,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 23,
+ ProductName: "Tunnbr\u00f6d",
+ UnitPrice: 7.2000,
+ Quantity: 21,
+ Discontinued: false,
+ ExtendedPrice: 151.2000,
+ Freight: 6.1700
+}, {
+ ShipName: "Consolidated Holdings",
+ ShipAddress: "Berkeley Gardens 12 Brewery",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX1 6LT",
+ ShipCountry: "UK",
+ CustomerID: "CONSH",
+ CustomerName: "Consolidated Holdings",
+ Address: "Berkeley Gardens 12 Brewery",
+ City: "London",
+ Region: null,
+ PostalCode: "WX1 6LT",
+ Country: "UK",
+ Salesperson: "Robert King",
+ OrderID: 10848,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 5,
+ ProductName: "Chef Anton's Gumbo Mix",
+ UnitPrice: 21.3500,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 640.5000,
+ Freight: 38.2400
+}, {
+ ShipName: "Consolidated Holdings",
+ ShipAddress: "Berkeley Gardens 12 Brewery",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX1 6LT",
+ ShipCountry: "UK",
+ CustomerID: "CONSH",
+ CustomerName: "Consolidated Holdings",
+ Address: "Berkeley Gardens 12 Brewery",
+ City: "London",
+ Region: null,
+ PostalCode: "WX1 6LT",
+ Country: "UK",
+ Salesperson: "Robert King",
+ OrderID: 10848,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 9,
+ ProductName: "Mishi Kobe Niku",
+ UnitPrice: 97.0000,
+ Quantity: 3,
+ Discontinued: false,
+ ExtendedPrice: 291.0000,
+ Freight: 38.2400
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Laura Callahan",
+ OrderID: 10301,
+ OrderDate: new Date("4/14/2017"),
+ ShipperName: "United Package",
+ ProductID: 40,
+ ProductName: "Boston Crab Meat",
+ UnitPrice: 14.7000,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 147.0000,
+ Freight: 45.0800
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Laura Callahan",
+ OrderID: 10301,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 56,
+ ProductName: "Gnocchi di nonna Alice",
+ UnitPrice: 30.4000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 608.0000,
+ Freight: 45.0800
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Andrew Fuller",
+ OrderID: 10312,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 28,
+ ProductName: "R\u00f6ssle Sauerkraut",
+ UnitPrice: 36.4000,
+ Quantity: 4,
+ Discontinued: false,
+ ExtendedPrice: 145.6000,
+ Freight: 40.2600
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Andrew Fuller",
+ OrderID: 10312,
+ OrderDate: new Date("4/14/2018"),
+ ShipperName: "United Package",
+ ProductID: 43,
+ ProductName: "Ipoh Coffee",
+ UnitPrice: 36.8000,
+ Quantity: 24,
+ Discontinued: false,
+ ExtendedPrice: 883.2000,
+ Freight: 40.2600
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Andrew Fuller",
+ OrderID: 10312,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 53,
+ ProductName: "Perth Pasties",
+ UnitPrice: 26.2000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 524.0000,
+ Freight: 40.2600
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Andrew Fuller",
+ OrderID: 10312,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 75,
+ ProductName: "Rh\u00f6nbr\u00e4u Klosterbier",
+ UnitPrice: 6.2000,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 62.0000,
+ Freight: 40.2600
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10348,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 23,
+ ProductName: "Tunnbr\u00f6d",
+ UnitPrice: 7.2000,
+ Quantity: 25,
+ Discontinued: false,
+ ExtendedPrice: 180.0000,
+ Freight: 0.7800
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Michael Suyama",
+ OrderID: 10356,
+ OrderDate: new Date("4/14/2018"),
+ ShipperName: "United Package",
+ ProductID: 31,
+ ProductName: "Gorgonzola Telino",
+ UnitPrice: 10.0000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 300.0000,
+ Freight: 36.7100
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Michael Suyama",
+ OrderID: 10356,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 55,
+ ProductName: "P\u00e2t\u00e9 chinois",
+ UnitPrice: 19.2000,
+ Quantity: 12,
+ Discontinued: false,
+ ExtendedPrice: 230.4000,
+ Freight: 36.7100
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Michael Suyama",
+ OrderID: 10356,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 69,
+ ProductName: "Gudbrandsdalsost",
+ UnitPrice: 28.8000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 576.0000,
+ Freight: 36.7100
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Laura Callahan",
+ OrderID: 10632,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 2,
+ ProductName: "Chang",
+ UnitPrice: 19.0000,
+ Quantity: 30,
+ Discontinued: true,
+ ExtendedPrice: 541.5000,
+ Freight: 41.3800
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Laura Callahan",
+ OrderID: 10632,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 33,
+ ProductName: "Geitost",
+ UnitPrice: 2.5000,
+ Quantity: 20,
+ Discontinued: true,
+ ExtendedPrice: 47.5000,
+ Freight: 41.3800
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Laura Callahan",
+ OrderID: 11046,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 12,
+ ProductName: "Queso Manchego La Pastora",
+ UnitPrice: 38.0000,
+ Quantity: 20,
+ Discontinued: true,
+ ExtendedPrice: 722.0000,
+ Freight: 71.6400
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Laura Callahan",
+ OrderID: 11046,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 32,
+ ProductName: "Mascarpone Fabioli",
+ UnitPrice: 32.0000,
+ Quantity: 15,
+ Discontinued: true,
+ ExtendedPrice: 456.0000,
+ Freight: 71.6400
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Laura Callahan",
+ OrderID: 11046,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 35,
+ ProductName: "Steeleye Stout",
+ UnitPrice: 18.0000,
+ Quantity: 18,
+ Discontinued: true,
+ ExtendedPrice: 307.8000,
+ Freight: 71.6400
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10668,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 31,
+ ProductName: "Gorgonzola Telino",
+ UnitPrice: 12.5000,
+ Quantity: 8,
+ Discontinued: true,
+ ExtendedPrice: 90.0000,
+ Freight: 47.2200
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10668,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 55,
+ ProductName: "P\u00e2t\u00e9 chinois",
+ UnitPrice: 24.0000,
+ Quantity: 4,
+ Discontinued: true,
+ ExtendedPrice: 86.4000,
+ Freight: 47.2200
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10668,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 64,
+ ProductName: "Wimmers gute Semmelkn\u00f6del",
+ UnitPrice: 33.2500,
+ Quantity: 15,
+ Discontinued: true,
+ ExtendedPrice: 448.8700,
+ Freight: 47.2200
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10348,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 1,
+ ProductName: "Chai",
+ UnitPrice: 14.4000,
+ Quantity: 15,
+ Discontinued: true,
+ ExtendedPrice: 183.6000,
+ Freight: 0.7800
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Robert King",
+ OrderID: 10513,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 21,
+ ProductName: "Sir Rodney's Scones",
+ UnitPrice: 10.0000,
+ Quantity: 40,
+ Discontinued: true,
+ ExtendedPrice: 320.0000,
+ Freight: 105.6500
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Robert King",
+ OrderID: 10513,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 32,
+ ProductName: "Mascarpone Fabioli",
+ UnitPrice: 32.0000,
+ Quantity: 50,
+ Discontinued: true,
+ ExtendedPrice: 1280.0000,
+ Freight: 105.6500
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Robert King",
+ OrderID: 10513,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 61,
+ ProductName: "Sirop d'\u00e9rable",
+ UnitPrice: 28.5000,
+ Quantity: 15,
+ Discontinued: true,
+ ExtendedPrice: 342.0000,
+ Freight: 105.6500
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10640,
+ OrderDate: new Date("4/14/2017"),
+ ShipperName: "Speedy Express",
+ ProductID: 69,
+ ProductName: "Gudbrandsdalsost",
+ UnitPrice: 36.0000,
+ Quantity: 20,
+ Discontinued: true,
+ ExtendedPrice: 540.0000,
+ Freight: 23.5500
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10640,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 70,
+ ProductName: "Outback Lager",
+ UnitPrice: 15.0000,
+ Quantity: 15,
+ Discontinued: true,
+ ExtendedPrice: 168.7500,
+ Freight: 23.5500
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Laura Callahan",
+ OrderID: 10651,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 19,
+ ProductName: "Teatime Chocolate Biscuits",
+ UnitPrice: 9.2000,
+ Quantity: 12,
+ Discontinued: true,
+ ExtendedPrice: 82.8000,
+ Freight: 20.6000
+}, {
+ ShipName: "Die Wandernde Kuh",
+ ShipAddress: "Adenauerallee 900",
+ ShipCity: "Stuttgart",
+ ShipRegion: null,
+ ShipPostalCode: "70563",
+ ShipCountry: "Germany",
+ CustomerID: "WANDK",
+ CustomerName: "Die Wandernde Kuh",
+ Address: "Adenauerallee 900",
+ City: "Stuttgart",
+ Region: null,
+ PostalCode: "70563",
+ Country: "Germany",
+ Salesperson: "Laura Callahan",
+ OrderID: 10651,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 22,
+ ProductName: "Gustaf's Kn\u00e4ckebr\u00f6d",
+ UnitPrice: 21.0000,
+ Quantity: 20,
+ Discontinued: true,
+ ExtendedPrice: 315.0000,
+ Freight: 20.6000
+}, {
+ ShipName: "Drachenblut Delikatessen",
+ ShipAddress: "Walserweg 21",
+ ShipCity: "Aachen",
+ ShipRegion: null,
+ ShipPostalCode: "52066",
+ ShipCountry: "Germany",
+ CustomerID: "DRACD",
+ CustomerName: "Drachenblut Delikatessen",
+ Address: "Walserweg 21",
+ City: "Aachen",
+ Region: null,
+ PostalCode: "52066",
+ Country: "Germany",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10363,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 31,
+ ProductName: "Gorgonzola Telino",
+ UnitPrice: 10.0000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 200.0000,
+ Freight: 30.5400
+}, {
+ ShipName: "Drachenblut Delikatessen",
+ ShipAddress: "Walserweg 21",
+ ShipCity: "Aachen",
+ ShipRegion: null,
+ ShipPostalCode: "52066",
+ ShipCountry: "Germany",
+ CustomerID: "DRACD",
+ CustomerName: "Drachenblut Delikatessen",
+ Address: "Walserweg 21",
+ City: "Aachen",
+ Region: null,
+ PostalCode: "52066",
+ Country: "Germany",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10363,
+ OrderDate: new Date("12/4/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 75,
+ ProductName: "Rh\u00f6nbr\u00e4u Klosterbier",
+ UnitPrice: 6.2000,
+ Quantity: 12,
+ Discontinued: false,
+ ExtendedPrice: 74.4000,
+ Freight: 30.5400
+}, {
+ ShipName: "Drachenblut Delikatessen",
+ ShipAddress: "Walserweg 21",
+ ShipCity: "Aachen",
+ ShipRegion: null,
+ ShipPostalCode: "52066",
+ ShipCountry: "Germany",
+ CustomerID: "DRACD",
+ CustomerName: "Drachenblut Delikatessen",
+ Address: "Walserweg 21",
+ City: "Aachen",
+ Region: null,
+ PostalCode: "52066",
+ Country: "Germany",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10363,
+ OrderDate: new Date("2/8/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 76,
+ ProductName: "Lakkalik\u00f6\u00f6ri",
+ UnitPrice: 14.4000,
+ Quantity: 12,
+ Discontinued: false,
+ ExtendedPrice: 172.8000,
+ Freight: 30.5400
+}, {
+ ShipName: "Drachenblut Delikatessen",
+ ShipAddress: "Walserweg 21",
+ ShipCity: "Aachen",
+ ShipRegion: null,
+ ShipPostalCode: "52066",
+ ShipCountry: "Germany",
+ CustomerID: "DRACD",
+ CustomerName: "Drachenblut Delikatessen",
+ Address: "Walserweg 21",
+ City: "Aachen",
+ Region: null,
+ PostalCode: "52066",
+ Country: "Germany",
+ Salesperson: "Janet Leverling",
+ OrderID: 10391,
+ OrderDate: new Date("4/14/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 13,
+ ProductName: "Konbu",
+ UnitPrice: 4.8000,
+ Quantity: 18,
+ Discontinued: false,
+ ExtendedPrice: 86.4000,
+ Freight: 5.4500
+}, {
+ ShipName: "Drachenblut Delikatessen",
+ ShipAddress: "Walserweg 21",
+ ShipCity: "Aachen",
+ ShipRegion: null,
+ ShipPostalCode: "52066",
+ ShipCountry: "Germany",
+ CustomerID: "DRACD",
+ CustomerName: "Drachenblut Delikatessen",
+ Address: "Walserweg 21",
+ City: "Aachen",
+ Region: null,
+ PostalCode: "52066",
+ Country: "Germany",
+ Salesperson: "Robert King",
+ OrderID: 10797,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 11,
+ ProductName: "Queso Cabrales",
+ UnitPrice: 21.0000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 420.0000,
+ Freight: 33.3500
+}, {
+ ShipName: "Drachenblut Delikatessen",
+ ShipAddress: "Walserweg 21",
+ ShipCity: "Aachen",
+ ShipRegion: null,
+ ShipPostalCode: "52066",
+ ShipCountry: "Germany",
+ CustomerID: "DRACD",
+ CustomerName: "Drachenblut Delikatessen",
+ Address: "Walserweg 21",
+ City: "Aachen",
+ Region: null,
+ PostalCode: "52066",
+ Country: "Germany",
+ Salesperson: "Nancy Davolio",
+ OrderID: 11067,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 41,
+ ProductName: "Jack's New England Clam Chowder",
+ UnitPrice: 9.6500,
+ Quantity: 9,
+ Discontinued: false,
+ ExtendedPrice: 86.8500,
+ Freight: 7.9800
+}, {
+ ShipName: "Du monde entier",
+ ShipAddress: "67, rue des Cinquante Otages",
+ ShipCity: "Nantes",
+ ShipRegion: null,
+ ShipPostalCode: "44000",
+ ShipCountry: "France",
+ CustomerID: "DUMON",
+ CustomerName: "Du monde entier",
+ Address: "67, rue des Cinquante Otages",
+ City: "Nantes",
+ Region: null,
+ PostalCode: "44000",
+ Country: "France",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10311,
+ OrderDate: new Date("8/14/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 42,
+ ProductName: "Singaporean Hokkien Fried Mee",
+ UnitPrice: 11.2000,
+ Quantity: 6,
+ Discontinued: false,
+ ExtendedPrice: 67.2000,
+ Freight: 24.6900
+}, {
+ ShipName: "Du monde entier",
+ ShipAddress: "67, rue des Cinquante Otages",
+ ShipCity: "Nantes",
+ ShipRegion: null,
+ ShipPostalCode: "44000",
+ ShipCountry: "France",
+ CustomerID: "DUMON",
+ CustomerName: "Du monde entier",
+ Address: "67, rue des Cinquante Otages",
+ City: "Nantes",
+ Region: null,
+ PostalCode: "44000",
+ Country: "France",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10311,
+ OrderDate: new Date("4/14/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 69,
+ ProductName: "Gudbrandsdalsost",
+ UnitPrice: 28.8000,
+ Quantity: 7,
+ Discontinued: false,
+ ExtendedPrice: 201.6000,
+ Freight: 24.6900
+}, {
+ ShipName: "Du monde entier",
+ ShipAddress: "67, rue des Cinquante Otages",
+ ShipCity: "Nantes",
+ ShipRegion: null,
+ ShipPostalCode: "44000",
+ ShipCountry: "France",
+ CustomerID: "DUMON",
+ CustomerName: "Du monde entier",
+ Address: "67, rue des Cinquante Otages",
+ City: "Nantes",
+ Region: null,
+ PostalCode: "44000",
+ Country: "France",
+ Salesperson: "Robert King",
+ OrderID: 10609,
+ OrderDate: new Date("6/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 1,
+ ProductName: "Chai",
+ UnitPrice: 18.0000,
+ Quantity: 3,
+ Discontinued: false,
+ ExtendedPrice: 54.0000,
+ Freight: 1.8500
+}, {
+ ShipName: "Du monde entier",
+ ShipAddress: "67, rue des Cinquante Otages",
+ ShipCity: "Nantes",
+ ShipRegion: null,
+ ShipPostalCode: "44000",
+ ShipCountry: "France",
+ CustomerID: "DUMON",
+ CustomerName: "Du monde entier",
+ Address: "67, rue des Cinquante Otages",
+ City: "Nantes",
+ Region: null,
+ PostalCode: "44000",
+ Country: "France",
+ Salesperson: "Robert King",
+ OrderID: 10609,
+ OrderDate: new Date("4/14/2015"),
+ ShipperName: "United Package",
+ ProductID: 10,
+ ProductName: "Ikura",
+ UnitPrice: 31.0000,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 310.0000,
+ Freight: 1.8500
+}, {
+ ShipName: "Du monde entier",
+ ShipAddress: "67, rue des Cinquante Otages",
+ ShipCity: "Nantes",
+ ShipRegion: null,
+ ShipPostalCode: "44000",
+ ShipCountry: "France",
+ CustomerID: "DUMON",
+ CustomerName: "Du monde entier",
+ Address: "67, rue des Cinquante Otages",
+ City: "Nantes",
+ Region: null,
+ PostalCode: "44000",
+ Country: "France",
+ Salesperson: "Robert King",
+ OrderID: 10609,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "United Package",
+ ProductID: 21,
+ ProductName: "Sir Rodney's Scones",
+ UnitPrice: 10.0000,
+ Quantity: 6,
+ Discontinued: false,
+ ExtendedPrice: 60.0000,
+ Freight: 1.8500
+}, {
+ ShipName: "Du monde entier",
+ ShipAddress: "67, rue des Cinquante Otages",
+ ShipCity: "Nantes",
+ ShipRegion: null,
+ ShipPostalCode: "44000",
+ ShipCountry: "France",
+ CustomerID: "DUMON",
+ CustomerName: "Du monde entier",
+ Address: "67, rue des Cinquante Otages",
+ City: "Nantes",
+ Region: null,
+ PostalCode: "44000",
+ Country: "France",
+ Salesperson: "Andrew Fuller",
+ OrderID: 10683,
+ OrderDate: new Date("4/14/2017"),
+ ShipperName: "Speedy Express",
+ ProductID: 52,
+ ProductName: "Filo Mix",
+ UnitPrice: 7.0000,
+ Quantity: 9,
+ Discontinued: false,
+ ExtendedPrice: 63.0000,
+ Freight: 4.4000
+}, {
+ ShipName: "Du monde entier",
+ ShipAddress: "67, rue des Cinquante Otages",
+ ShipCity: "Nantes",
+ ShipRegion: null,
+ ShipPostalCode: "44000",
+ ShipCountry: "France",
+ CustomerID: "DUMON",
+ CustomerName: "Du monde entier",
+ Address: "67, rue des Cinquante Otages",
+ City: "Nantes",
+ Region: null,
+ PostalCode: "44000",
+ Country: "France",
+ Salesperson: "Robert King",
+ OrderID: 10890,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 17,
+ ProductName: "Alice Mutton",
+ UnitPrice: 39.0000,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 585.0000,
+ Freight: 32.7600
+}, {
+ ShipName: "Du monde entier",
+ ShipAddress: "67, rue des Cinquante Otages",
+ ShipCity: "Nantes",
+ ShipRegion: null,
+ ShipPostalCode: "44000",
+ ShipCountry: "France",
+ CustomerID: "DUMON",
+ CustomerName: "Du monde entier",
+ Address: "67, rue des Cinquante Otages",
+ City: "Nantes",
+ Region: null,
+ PostalCode: "44000",
+ Country: "France",
+ Salesperson: "Robert King",
+ OrderID: 10890,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 34,
+ ProductName: "Sasquatch Ale",
+ UnitPrice: 14.0000,
+ Quantity: 10,
+ Discontinued: false,
+ ExtendedPrice: 140.0000,
+ Freight: 32.7600
+}, {
+ ShipName: "Du monde entier",
+ ShipAddress: "67, rue des Cinquante Otages",
+ ShipCity: "Nantes",
+ ShipRegion: null,
+ ShipPostalCode: "44000",
+ ShipCountry: "France",
+ CustomerID: "DUMON",
+ CustomerName: "Du monde entier",
+ Address: "67, rue des Cinquante Otages",
+ City: "Nantes",
+ Region: null,
+ PostalCode: "44000",
+ Country: "France",
+ Salesperson: "Robert King",
+ OrderID: 10890,
+ OrderDate: new Date("2/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 41,
+ ProductName: "Jack's New England Clam Chowder",
+ UnitPrice: 9.6500,
+ Quantity: 14,
+ Discontinued: false,
+ ExtendedPrice: 135.1000,
+ Freight: 32.7600
+}, {
+ ShipName: "Eastern Connection",
+ ShipAddress: "35 King George",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX3 6FW",
+ ShipCountry: "UK",
+ CustomerID: "EASTC",
+ CustomerName: "Eastern Connection",
+ Address: "35 King George",
+ City: "London",
+ Region: null,
+ PostalCode: "WX3 6FW",
+ Country: "UK",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10364,
+ OrderDate: new Date("4/14/2017"),
+ ShipperName: "Speedy Express",
+ ProductID: 69,
+ ProductName: "Gudbrandsdalsost",
+ UnitPrice: 28.8000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 864.0000,
+ Freight: 71.9700
+}, {
+ ShipName: "Eastern Connection",
+ ShipAddress: "35 King George",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX3 6FW",
+ ShipCountry: "UK",
+ CustomerID: "EASTC",
+ CustomerName: "Eastern Connection",
+ Address: "35 King George",
+ City: "London",
+ Region: null,
+ PostalCode: "WX3 6FW",
+ Country: "UK",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10364,
+ OrderDate: new Date("4/4/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 71,
+ ProductName: "Flotemysost",
+ UnitPrice: 17.2000,
+ Quantity: 5,
+ Discontinued: false,
+ ExtendedPrice: 86.0000,
+ Freight: 71.9700
+}, {
+ ShipName: "Eastern Connection",
+ ShipAddress: "35 King George",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX3 6FW",
+ ShipCountry: "UK",
+ CustomerID: "EASTC",
+ CustomerName: "Eastern Connection",
+ Address: "35 King George",
+ City: "London",
+ Region: null,
+ PostalCode: "WX3 6FW",
+ Country: "UK",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10400,
+ OrderDate: new Date("3/12/2016"),
+ ShipperName: "Federal Shipping",
+ ProductID: 29,
+ ProductName: "Th\u00fcringer Rostbratwurst",
+ UnitPrice: 99.0000,
+ Quantity: 21,
+ Discontinued: false,
+ ExtendedPrice: 2079.0000,
+ Freight: 83.9300
+}, {
+ ShipName: "Eastern Connection",
+ ShipAddress: "35 King George",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX3 6FW",
+ ShipCountry: "UK",
+ CustomerID: "EASTC",
+ CustomerName: "Eastern Connection",
+ Address: "35 King George",
+ City: "London",
+ Region: null,
+ PostalCode: "WX3 6FW",
+ Country: "UK",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10400,
+ OrderDate: new Date("4/14/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 35,
+ ProductName: "Steeleye Stout",
+ UnitPrice: 14.4000,
+ Quantity: 35,
+ Discontinued: false,
+ ExtendedPrice: 504.0000,
+ Freight: 83.9300
+}, {
+ ShipName: "Eastern Connection",
+ ShipAddress: "35 King George",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX3 6FW",
+ ShipCountry: "UK",
+ CustomerID: "EASTC",
+ CustomerName: "Eastern Connection",
+ Address: "35 King George",
+ City: "London",
+ Region: null,
+ PostalCode: "WX3 6FW",
+ Country: "UK",
+ Salesperson: "Nancy Davolio",
+ OrderID: 10400,
+ OrderDate: new Date("1/1/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 49,
+ ProductName: "Maxilaku",
+ UnitPrice: 16.0000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 480.0000,
+ Freight: 83.9300
+}, {
+ ShipName: "Eastern Connection",
+ ShipAddress: "35 King George",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX3 6FW",
+ ShipCountry: "UK",
+ CustomerID: "EASTC",
+ CustomerName: "Eastern Connection",
+ Address: "35 King George",
+ City: "London",
+ Region: null,
+ PostalCode: "WX3 6FW",
+ Country: "UK",
+ Salesperson: "Robert King",
+ OrderID: 10532,
+ OrderDate: new Date("4/22/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 30,
+ ProductName: "Nord-Ost Matjeshering",
+ UnitPrice: 25.8900,
+ Quantity: 15,
+ Discontinued: false,
+ ExtendedPrice: 388.3500,
+ Freight: 74.4600
+}, {
+ ShipName: "Eastern Connection",
+ ShipAddress: "35 King George",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX3 6FW",
+ ShipCountry: "UK",
+ CustomerID: "EASTC",
+ CustomerName: "Eastern Connection",
+ Address: "35 King George",
+ City: "London",
+ Region: null,
+ PostalCode: "WX3 6FW",
+ Country: "UK",
+ Salesperson: "Robert King",
+ OrderID: 10532,
+ OrderDate: new Date("9/25/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 66,
+ ProductName: "Louisiana Hot Spiced Okra",
+ UnitPrice: 17.0000,
+ Quantity: 24,
+ Discontinued: false,
+ ExtendedPrice: 408.0000,
+ Freight: 74.4600
+}, {
+ ShipName: "Eastern Connection",
+ ShipAddress: "35 King George",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX3 6FW",
+ ShipCountry: "UK",
+ CustomerID: "EASTC",
+ CustomerName: "Eastern Connection",
+ Address: "35 King George",
+ City: "London",
+ Region: null,
+ PostalCode: "WX3 6FW",
+ Country: "UK",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10726,
+ OrderDate: new Date("4/24/2015"),
+ ShipperName: "Speedy Express",
+ ProductID: 4,
+ ProductName: "Chef Anton's Cajun Seasoning",
+ UnitPrice: 22.0000,
+ Quantity: 25,
+ Discontinued: false,
+ ExtendedPrice: 550.0000,
+ Freight: 16.5600
+}, {
+ ShipName: "Eastern Connection",
+ ShipAddress: "35 King George",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX3 6FW",
+ ShipCountry: "UK",
+ CustomerID: "EASTC",
+ CustomerName: "Eastern Connection",
+ Address: "35 King George",
+ City: "London",
+ Region: null,
+ PostalCode: "WX3 6FW",
+ Country: "UK",
+ Salesperson: "Margaret Peacock",
+ OrderID: 10726,
+ OrderDate: new Date("3/11/2017"),
+ ShipperName: "Speedy Express",
+ ProductID: 11,
+ ProductName: "Queso Cabrales",
+ UnitPrice: 21.0000,
+ Quantity: 5,
+ Discontinued: false,
+ ExtendedPrice: 105.0000,
+ Freight: 16.5600
+}, {
+ ShipName: "Eastern Connection",
+ ShipAddress: "35 King George",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX3 6FW",
+ ShipCountry: "UK",
+ CustomerID: "EASTC",
+ CustomerName: "Eastern Connection",
+ Address: "35 King George",
+ City: "London",
+ Region: null,
+ PostalCode: "WX3 6FW",
+ Country: "UK",
+ Salesperson: "Laura Callahan",
+ OrderID: 10987,
+ OrderDate: new Date("4/14/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 7,
+ ProductName: "Uncle Bob's Organic Dried Pears",
+ UnitPrice: 30.0000,
+ Quantity: 60,
+ Discontinued: false,
+ ExtendedPrice: 1800.0000,
+ Freight: 185.4800
+}, {
+ ShipName: "Eastern Connection",
+ ShipAddress: "35 King George",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX3 6FW",
+ ShipCountry: "UK",
+ CustomerID: "EASTC",
+ CustomerName: "Eastern Connection",
+ Address: "35 King George",
+ City: "London",
+ Region: null,
+ PostalCode: "WX3 6FW",
+ Country: "UK",
+ Salesperson: "Laura Callahan",
+ OrderID: 10987,
+ OrderDate: new Date("1/24/2017"),
+ ShipperName: "Speedy Express",
+ ProductID: 43,
+ ProductName: "Ipoh Coffee",
+ UnitPrice: 46.0000,
+ Quantity: 6,
+ Discontinued: false,
+ ExtendedPrice: 276.0000,
+ Freight: 185.4800
+}, {
+ ShipName: "Eastern Connection",
+ ShipAddress: "35 King George",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX3 6FW",
+ ShipCountry: "UK",
+ CustomerID: "EASTC",
+ CustomerName: "Eastern Connection",
+ Address: "35 King George",
+ City: "London",
+ Region: null,
+ PostalCode: "WX3 6FW",
+ Country: "UK",
+ Salesperson: "Laura Callahan",
+ OrderID: 10987,
+ OrderDate: new Date("3/31/2017"),
+ ShipperName: "Speedy Express",
+ ProductID: 72,
+ ProductName: "Mozzarella di Giovanni",
+ UnitPrice: 34.8000,
+ Quantity: 20,
+ Discontinued: false,
+ ExtendedPrice: 696.0000,
+ Freight: 185.4800
+}, {
+ ShipName: "Eastern Connection",
+ ShipAddress: "35 King George",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX3 6FW",
+ ShipCountry: "UK",
+ CustomerID: "EASTC",
+ CustomerName: "Eastern Connection",
+ Address: "35 King George",
+ City: "London",
+ Region: null,
+ PostalCode: "WX3 6FW",
+ Country: "UK",
+ Salesperson: "Margaret Peacock",
+ OrderID: 11024,
+ OrderDate: new Date("4/15/2018"),
+ ShipperName: "Speedy Express",
+ ProductID: 26,
+ ProductName: "Gumb\u00e4r Gummib\u00e4rchen",
+ UnitPrice: 31.2300,
+ Quantity: 12,
+ Discontinued: false,
+ ExtendedPrice: 374.7600,
+ Freight: 74.3600
+}, {
+ ShipName: "Eastern Connection",
+ ShipAddress: "35 King George",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX3 6FW",
+ ShipCountry: "UK",
+ CustomerID: "EASTC",
+ CustomerName: "Eastern Connection",
+ Address: "35 King George",
+ City: "London",
+ Region: null,
+ PostalCode: "WX3 6FW",
+ Country: "UK",
+ Salesperson: "Margaret Peacock",
+ OrderID: 11024,
+ OrderDate: new Date("5/17/2017"),
+ ShipperName: "Speedy Express",
+ ProductID: 33,
+ ProductName: "Geitost",
+ UnitPrice: 2.5000,
+ Quantity: 30,
+ Discontinued: false,
+ ExtendedPrice: 75.0000,
+ Freight: 74.3600
+}, {
+ ShipName: "Eastern Connection",
+ ShipAddress: "35 King George",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX3 6FW",
+ ShipCountry: "UK",
+ CustomerID: "EASTC",
+ CustomerName: "Eastern Connection",
+ Address: "35 King George",
+ City: "London",
+ Region: null,
+ PostalCode: "WX3 6FW",
+ Country: "UK",
+ Salesperson: "Margaret Peacock",
+ OrderID: 11024,
+ OrderDate: new Date("4/24/2016"),
+ ShipperName: "Speedy Express",
+ ProductID: 65,
+ ProductName: "Louisiana Fiery Hot Pepper Sauce",
+ UnitPrice: 21.0500,
+ Quantity: 21,
+ Discontinued: false,
+ ExtendedPrice: 442.0500,
+ Freight: 74.3600
+}, {
+ ShipName: "Eastern Connection",
+ ShipAddress: "35 King George",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX3 6FW",
+ ShipCountry: "UK",
+ CustomerID: "EASTC",
+ CustomerName: "Eastern Connection",
+ Address: "35 King George",
+ City: "London",
+ Region: null,
+ PostalCode: "WX3 6FW",
+ Country: "UK",
+ Salesperson: "Margaret Peacock",
+ OrderID: 11024,
+ OrderDate: new Date("6/24/2017"),
+ ShipperName: "Speedy Express",
+ ProductID: 71,
+ ProductName: "Flotemysost",
+ UnitPrice: 21.5000,
+ Quantity: 50,
+ Discontinued: false,
+ ExtendedPrice: 1075.0000,
+ Freight: 74.3600
+}, {
+ ShipName: "Eastern Connection",
+ ShipAddress: "35 King George",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX3 6FW",
+ ShipCountry: "UK",
+ CustomerID: "EASTC",
+ CustomerName: "Eastern Connection",
+ Address: "35 King George",
+ City: "London",
+ Region: null,
+ PostalCode: "WX3 6FW",
+ Country: "UK",
+ Salesperson: "Laura Callahan",
+ OrderID: 11056,
+ OrderDate: new Date("4/24/2017"),
+ ShipperName: "United Package",
+ ProductID: 7,
+ ProductName: "Uncle Bob's Organic Dried Pears",
+ UnitPrice: 30.0000,
+ Quantity: 40,
+ Discontinued: false,
+ ExtendedPrice: 1200.0000,
+ Freight: 278.9600
+}, {
+ ShipName: "Eastern Connection",
+ ShipAddress: "35 King George",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX3 6FW",
+ ShipCountry: "UK",
+ CustomerID: "EASTC",
+ CustomerName: "Eastern Connection",
+ Address: "35 King George",
+ City: "London",
+ Region: null,
+ PostalCode: "WX3 6FW",
+ Country: "UK",
+ Salesperson: "Laura Callahan",
+ OrderID: 11056,
+ OrderDate: new Date("3/24/2018"),
+ ShipperName: "United Package",
+ ProductID: 55,
+ ProductName: "P\u00e2t\u00e9 chinois",
+ UnitPrice: 24.0000,
+ Quantity: 35,
+ Discontinued: false,
+ ExtendedPrice: 840.0000,
+ Freight: 278.9600
+}, {
+ ShipName: "Eastern Connection",
+ ShipAddress: "35 King George",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX3 6FW",
+ ShipCountry: "UK",
+ CustomerID: "EASTC",
+ CustomerName: "Eastern Connection",
+ Address: "35 King George",
+ City: "London",
+ Region: null,
+ PostalCode: "WX3 6FW",
+ Country: "UK",
+ Salesperson: "Laura Callahan",
+ OrderID: 11056,
+ OrderDate: new Date("4/28/2018"),
+ ShipperName: "United Package",
+ ProductID: 60,
+ ProductName: "Camembert Pierrot",
+ UnitPrice: 34.0000,
+ Quantity: 50,
+ Discontinued: false,
+ ExtendedPrice: 1700.0000,
+ Freight: 278.9600
+}, {
+ ShipName: "Eastern Connection",
+ ShipAddress: "35 King George",
+ ShipCity: "London",
+ ShipRegion: null,
+ ShipPostalCode: "WX3 6FW",
+ ShipCountry: "UK",
+ CustomerID: "EASTC",
+ CustomerName: "Eastern Connection",
+ Address: "35 King George",
+ City: "London",
+ Region: null,
+ PostalCode: "WX3 6FW",
+ Country: "UK",
+ Salesperson: "Robert King",
+ OrderID: 11047,
+ OrderDate: new Date("4/24/2017"),
+ ShipperName: "Federal Shipping",
+ ProductID: 1,
+ ProductName: "Chai",
+ UnitPrice: 18.0000,
+ Quantity: 25,
+ Discontinued: true,
+ ExtendedPrice: 337.5000,
+ Freight: 46.6200
+}];
+/* tslint:enable */